modelId stringlengths 4 81 | tags list | pipeline_tag stringclasses 17 values | config dict | downloads int64 0 59.7M | first_commit timestamp[ns, tz=UTC] | card stringlengths 51 438k | embedding list |
|---|---|---|---|---|---|---|---|
bert-large-uncased-whole-word-masking-finetuned-squad | [
"pytorch",
"tf",
"jax",
"safetensors",
"bert",
"question-answering",
"en",
"dataset:bookcorpus",
"dataset:wikipedia",
"arxiv:1810.04805",
"transformers",
"license:apache-2.0",
"autotrain_compatible",
"has_space"
] | question-answering | {
"architectures": [
"BertForQuestionAnswering"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 480,510 | 2023-05-17T09:07:46Z | ---
language: en
license: apache-2.0
library_name: pytorch
tags:
- deep-reinforcement-learning
- reinforcement-learning
- DI-engine
- BipedalWalker-v3
benchmark_name: OpenAI/Gym/Box2d
task_name: BipedalWalker-v3
pipeline_tag: reinforcement-learning
model-index:
- name: SAC
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: OpenAI/Gym/Box2d-BipedalWalker-v3
type: OpenAI/Gym/Box2d-BipedalWalker-v3
metrics:
- type: mean_reward
value: 319.48 +/- 0.62
name: mean_reward
---
# Play **BipedalWalker-v3** with **SAC** Policy
## Model Description
<!-- Provide a longer summary of what this model is. -->
This is a simple **SAC** implementation to OpenAI/Gym/Box2d **BipedalWalker-v3** using the [DI-engine library](https://github.com/opendilab/di-engine) and the [DI-zoo](https://github.com/opendilab/DI-engine/tree/main/dizoo).
**DI-engine** is a python library for solving general decision intelligence problems, which is based on implementations of reinforcement learning framework using PyTorch or JAX. This library aims to standardize the reinforcement learning framework across different algorithms, benchmarks, environments, and to support both academic researches and prototype applications. Besides, self-customized training pipelines and applications are supported by reusing different abstraction levels of DI-engine reinforcement learning framework.
## Model Usage
### Install the Dependencies
<details close>
<summary>(Click for Details)</summary>
```shell
# install huggingface_ding
git clone https://github.com/opendilab/huggingface_ding.git
pip3 install -e ./huggingface_ding/
# install environment dependencies if needed
pip3 install DI-engine[common_env]
```
</details>
### Git Clone from Huggingface and Run the Model
<details close>
<summary>(Click for Details)</summary>
```shell
# running with trained model
python3 -u run.py
```
**run.py**
```python
from ding.bonus import SACAgent
from ding.config import Config
from easydict import EasyDict
import torch
# Pull model from files which are git cloned from huggingface
policy_state_dict = torch.load("pytorch_model.bin", map_location=torch.device("cpu"))
cfg = EasyDict(Config.file_to_dict("policy_config.py"))
# Instantiate the agent
agent = SACAgent(
env="bipedalwalker", exp_name="BipedalWalker-v3-SAC", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
)
# Continue training
agent.train(step=5000)
# Render the new agent performance
agent.deploy(enable_save_replay=True)
```
</details>
### Run Model by Using Huggingface_ding
<details close>
<summary>(Click for Details)</summary>
```shell
# running with trained model
python3 -u run.py
```
**run.py**
```python
from ding.bonus import SACAgent
from huggingface_ding import pull_model_from_hub
# Pull model from Hugggingface hub
policy_state_dict, cfg = pull_model_from_hub(repo_id="OpenDILabCommunity/BipedalWalker-v3-SAC")
# Instantiate the agent
agent = SACAgent(
env="bipedalwalker",
exp_name="BipedalWalker-v3-SAC",
cfg=cfg.exp_config,
policy_state_dict=policy_state_dict
)
# Continue training
agent.train(step=5000)
# Render the new agent performance
agent.deploy(enable_save_replay=True)
```
</details>
## Model Training
### Train the Model and Push to Huggingface_hub
<details close>
<summary>(Click for Details)</summary>
```shell
#Training Your Own Agent
python3 -u train.py
```
**train.py**
```python
from ding.bonus import SACAgent
from huggingface_ding import push_model_to_hub
# Instantiate the agent
agent = SACAgent("bipedalwalker", exp_name="BipedalWalker-v3-SAC")
# Train the agent
return_ = agent.train(step=int(200000))
# Push model to huggingface hub
push_model_to_hub(
agent=agent.best,
env_name="OpenAI/Gym/Box2d",
task_name="BipedalWalker-v3",
algo_name="SAC",
wandb_url=return_.wandb_url,
github_repo_url="https://github.com/opendilab/DI-engine",
github_doc_model_url="https://di-engine-docs.readthedocs.io/en/latest/12_policies/sac.html",
github_doc_env_url="https://di-engine-docs.readthedocs.io/en/latest/13_envs/bipedalwalker.html",
installation_guide="pip3 install DI-engine[common_env]",
usage_file_by_git_clone="./sac/bipedalwalker_sac_deploy.py",
usage_file_by_huggingface_ding="./sac/bipedalwalker_sac_download.py",
train_file="./sac/bipedalwalker_sac.py",
repo_id="OpenDILabCommunity/BipedalWalker-v3-SAC"
)
```
</details>
**Configuration**
<details close>
<summary>(Click for Details)</summary>
```python
exp_config = {
'env': {
'manager': {
'episode_num': float("inf"),
'max_retry': 1,
'retry_type': 'reset',
'auto_reset': True,
'step_timeout': None,
'reset_timeout': None,
'retry_waiting_time': 0.1,
'cfg_type': 'BaseEnvManagerDict'
},
'stop_value': 10000000000,
'n_evaluator_episode': 5,
'env_id': 'BipedalWalker-v3',
'collector_env_num': 8,
'evaluator_env_num': 5,
'act_scale': True,
'rew_clip': True
},
'policy': {
'model': {
'twin_critic': True,
'action_space': 'reparameterization',
'obs_shape': 24,
'action_shape': 4,
'actor_head_hidden_size': 128,
'critic_head_hidden_size': 128
},
'learn': {
'learner': {
'train_iterations': 1000000000,
'dataloader': {
'num_workers': 0
},
'log_policy': True,
'hook': {
'load_ckpt_before_run': '',
'log_show_after_iter': 1000,
'save_ckpt_after_iter': 10000,
'save_ckpt_after_run': True
},
'cfg_type': 'BaseLearnerDict'
},
'update_per_collect': 64,
'batch_size': 256,
'learning_rate_q': 0.0003,
'learning_rate_policy': 0.0003,
'learning_rate_alpha': 0.0003,
'target_theta': 0.005,
'discount_factor': 0.99,
'alpha': 0.2,
'auto_alpha': True,
'log_space': True,
'target_entropy': None,
'ignore_done': False,
'init_w': 0.003
},
'collect': {
'collector': {},
'n_sample': 64,
'unroll_len': 1,
'collector_logit': False
},
'eval': {
'evaluator': {
'eval_freq': 1000,
'render': {
'render_freq': -1,
'mode': 'train_iter'
},
'cfg_type': 'InteractionSerialEvaluatorDict',
'stop_value': 10000000000,
'n_episode': 5
}
},
'other': {
'replay_buffer': {
'replay_buffer_size': 300000
}
},
'on_policy': False,
'cuda': True,
'multi_gpu': False,
'bp_update_sync': True,
'traj_len_inf': False,
'type': 'sac',
'priority': False,
'priority_IS_weight': False,
'random_collect_size': 10000,
'transition_with_policy_data': True,
'multi_agent': False,
'cfg_type': 'SACPolicyDict'
},
'exp_name': 'BipedalWalker-v3-SAC',
'seed': 0,
'wandb_logger': {
'gradient_logger': True,
'video_logger': True,
'plot_logger': True,
'action_logger': True,
'return_logger': False
}
}
```
</details>
**Training Procedure**
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
- **Weights & Biases (wandb):** [monitor link](https://wandb.ai/zhangpaipai/BipedalWalker-v3-SAC)
## Model Information
<!-- Provide the basic links for the model. -->
- **Github Repository:** [repo link](https://github.com/opendilab/DI-engine)
- **Doc**: [DI-engine-docs Algorithm link](https://di-engine-docs.readthedocs.io/en/latest/12_policies/sac.html)
- **Configuration:** [config link](https://huggingface.co/OpenDILabCommunity/BipedalWalker-v3-SAC/blob/main/policy_config.py)
- **Demo:** [video](https://huggingface.co/OpenDILabCommunity/BipedalWalker-v3-SAC/blob/main/replay.mp4)
<!-- Provide the size information for the model. -->
- **Parameters total size:** 240.04 KB
- **Last Update Date:** 2023-05-17
## Environments
<!-- Address questions around what environment the model is intended to be trained and deployed at, including the necessary information needed to be provided for future users. -->
- **Benchmark:** OpenAI/Gym/Box2d
- **Task:** BipedalWalker-v3
- **Gym version:** 0.25.1
- **DI-engine version:** v0.4.7
- **PyTorch version:** 1.7.1
- **Doc**: [DI-engine-docs Environments link](https://di-engine-docs.readthedocs.io/en/latest/13_envs/bipedalwalker.html)
| [
-0.04771970584988594,
0.006192488130182028,
-0.00203363667242229,
0.006948614493012428,
0.03565139323472977,
0.017890553921461105,
0.01095751766115427,
-0.026394395157694817,
-0.01850525289773941,
0.06230196729302406,
0.015176407061517239,
-0.012916355393826962,
0.008750656619668007,
0.023621680215001106,
-0.035816337913274765,
-0.03417939692735672,
-0.009613776579499245,
0.0008119656122289598,
-0.01761566288769245,
0.026736056432127953,
-0.012732533738017082,
-0.007210038136690855,
-0.007968162186443806,
0.03020475246012211,
-0.002692638197913766,
0.019763901829719543,
-0.023512473329901695,
0.033262670040130615,
0.02551293559372425,
-0.06045828387141228,
0.001120391651056707,
-0.027583057060837746,
-0.026912149041891098,
-0.012317313812673092,
-0.006399483419954777,
-0.00286693312227726,
0.0048621641471982,
0.023506565019488335,
-0.005440818145871162,
0.037469856441020966,
-0.010228555649518967,
0.029271073639392853,
0.0031209944281727076,
-0.0034747873432934284,
0.026447024196386337,
-0.018647268414497375,
-0.02816854976117611,
-0.024524765089154243,
0.024013157933950424,
-0.011992798186838627,
-0.07586398720741272,
-0.07229068875312805,
-0.030674565583467484,
0.04233964905142784,
-0.009670167230069637,
-0.03198882192373276,
-0.05503254383802414,
-0.023825963959097862,
0.06888546794652939,
-0.08169247955083847,
-0.030374662950634956,
0.020377203822135925,
-0.0640890970826149,
0.014743560925126076,
0.04396440461277962,
-0.009927832521498203,
0.034017398953437805,
-0.04188574105501175,
0.012907342985272408,
-0.050458572804927826,
0.07192671298980713,
-0.034792184829711914,
0.01020914874970913,
-0.09014082700014114,
0.0009405576856806874,
-0.027450012043118477,
0.017904367297887802,
0.0317201092839241,
-0.038872621953487396,
0.0722939595580101,
0.026014646515250206,
0.042375851422548294,
0.02988956868648529,
0.004499584436416626,
0.019573325291275978,
0.056686609983444214,
-0.03586108237504959,
0.01014423742890358,
0.009263657964766026,
0.024025656282901764,
-0.014623953960835934,
-0.025201978161931038,
-0.019310424104332924,
-0.035268090665340424,
-0.010084218345582485,
0.02600318007171154,
0.02662758156657219,
0.004025341477245092,
0.06162706017494202,
0.016230279579758644,
0.04383937269449234,
0.05223672091960907,
0.006104886066168547,
0.07492341101169586,
0.02104821242392063,
-0.012196809984743595,
-0.038704145699739456,
-0.00886514037847519,
-0.04718449339270592,
0.04058951511979103,
0.03275745362043381,
-0.04124131426215172,
-0.034509219229221344,
0.03358808532357216,
-0.004798088688403368,
-0.0025082584470510483,
0.09377416223287582,
-0.04254741221666336,
-0.02939281240105629,
-0.06039111688733101,
0.05705507472157478,
-0.0017581647261977196,
0.010990842245519161,
-0.013004515320062637,
-0.05275031924247742,
-0.00029177224496379495,
-0.03152856603264809,
-0.02318381518125534,
-0.005584071855992079,
0.02309863269329071,
0.008552419021725655,
0.056540463119745255,
0.01535281166434288,
-0.04632945731282234,
-0.0058998651802539825,
0.014879618771374226,
-0.081625796854496,
0.04182584583759308,
0.004345539957284927,
0.12479463964700699,
-0.06424169987440109,
-0.04853663966059685,
0.0014080186374485493,
-0.0027696082834154367,
-0.030682137235999107,
0.0035520282108336687,
0.020986314862966537,
-0.029734468087553978,
-0.04018878936767578,
-0.03367964178323746,
0.06513460725545883,
-0.04879215359687805,
-0.027734557166695595,
0.06712540239095688,
-0.007127776741981506,
0.04431537538766861,
-0.03893733397126198,
-0.01816762425005436,
-0.024597346782684326,
0.01001559104770422,
0.0018179730977863073,
0.05380340665578842,
-0.020266400650143623,
-0.010515935719013214,
-0.03404294699430466,
-0.027821743860840797,
0.010549483820796013,
0.08511973917484283,
-0.014251234009861946,
-0.027516206726431847,
-0.014840330928564072,
0.01767796464264393,
0.030090922489762306,
0.01610620878636837,
-0.01927768997848034,
0.04824163019657135,
0.047535449266433716,
0.02608698420226574,
-0.025020509958267212,
0.04674125090241432,
0.026878220960497856,
-0.016232602298259735,
-0.008048306219279766,
-0.009402466006577015,
0.012401611544191837,
-0.014408552087843418,
0.010659105144441128,
0.03862486407160759,
-0.009325680322945118,
-0.049992792308330536,
-0.03793990612030029,
0.05370619520545006,
-0.005723073147237301,
-0.014556661248207092,
-0.03240494057536125,
-0.006984335836023092,
-0.0031665239948779345,
0.03983963653445244,
-0.02843713015317917,
-0.02646954357624054,
-0.01570066623389721,
-0.011905576102435589,
0.0329604409635067,
0.016069743782281876,
0.0062837544828653336,
0.012966876849532127,
-0.02116931602358818,
0.08176066726446152,
-0.019569162279367447,
-0.004178077448159456,
-0.04664888605475426,
-0.03428686037659645,
0.0012927423231303692,
0.07169312983751297,
0.05904308706521988,
0.05905918776988983,
-0.00022648590675089508,
-0.018561605364084244,
0.030374763533473015,
0.050191257148981094,
0.05582110956311226,
0.004718105774372816,
-0.04474053904414177,
-0.007821331731975079,
0.027544258162379265,
0.058942586183547974,
-0.03762613236904144,
-0.01899731159210205,
0.02211347594857216,
0.023966634646058083,
-0.013850650750100613,
0.012239152565598488,
-0.025354649871587753,
0.03344713896512985,
-0.0432659313082695,
-0.07504864037036896,
0.04153521731495857,
0.019843803718686104,
0.0517832450568676,
0.03686101362109184,
-0.023221245035529137,
-0.016844607889652252,
0.015292204916477203,
0.0131757240742445,
-0.04167518392205238,
-0.0783415138721466,
0.008862968534231186,
0.03632042184472084,
0.06791046261787415,
-0.04612014815211296,
0.07197744399309158,
-0.004393408074975014,
0.011618494056165218,
0.027342090383172035,
-0.01908394694328308,
0.04902644827961922,
0.06965675204992294,
0.01793605647981167,
-0.012940787710249424,
0.03535034880042076,
0.007948248647153378,
0.03703838586807251,
0.057747166603803635,
-0.009451423771679401,
0.07256092876195908,
0.017269596457481384,
0.033231887966394424,
0.0730118453502655,
0.017766490578651428,
0.0028490896802395582,
0.03330212086439133,
0.07971953600645065,
-0.017422083765268326,
-0.010668114759027958,
0.049198128283023834,
-0.047302283346652985,
0.040446698665618896,
-0.028226492926478386,
-0.024341240525245667,
-0.029100749641656876,
-0.028883492574095726,
0.07565220445394516,
0.0181757640093565,
-0.016529405489563942,
0.008760846219956875,
-0.012706289999186993,
-0.013634450733661652,
0.03087601065635681,
-0.03708600997924805,
-0.002275030128657818,
0.02178548276424408,
-0.015266506001353264,
-0.00007968668069224805,
-0.09122149646282196,
-0.06936381757259369,
-0.0208341833204031,
-0.023384450003504753,
-0.004664831794798374,
-0.06039274111390114,
-0.011735290288925171,
-0.06400559097528458,
-0.01007404737174511,
0.014621629379689693,
0.014536720700562,
0.0006229385617189109,
-0.05241622030735016,
0.012382470071315765,
-0.04994145408272743,
-0.019294405356049538,
-0.06305059790611267,
-0.0582239143550396,
-0.05123252421617508,
-0.07085832208395004,
0.026796583086252213,
0.02254103124141693,
0.05281205102801323,
0.0009666119003668427,
-0.008095203898847103,
-0.02707991562783718,
-0.033921483904123306,
0.04523780196905136,
0.04745922237634659,
-0.016107771545648575,
-0.0507095530629158,
0.042643725872039795,
-0.025009844452142715,
-0.0032592134084552526,
-0.019722333177924156,
-0.038265861570835114,
0.07247405499219894,
0.0848919227719307,
-0.0013564773835241795,
0.015124318189918995,
-0.01496952585875988,
-0.049827542155981064,
-0.05263122171163559,
-0.03581694886088371,
-0.03981109336018562,
-0.018772326409816742,
-0.043328702449798584,
-0.030266173183918,
-0.006816493347287178,
-0.03196392580866814,
-0.031183356419205666,
-0.019582990556955338,
0.008618689142167568,
0.029993301257491112,
0.05860357731580734,
-0.0076433755457401276,
0.037677619606256485,
-0.034112829715013504,
0.0004949416616000235,
0.030269866809248924,
0.01856319233775139,
0.027890890836715698,
-0.06195338815450668,
-0.03843041881918907,
0.024612199515104294,
0.009229733608663082,
-0.0059797572903335094,
0.01371553260833025,
0.07869424670934677,
0.03965984657406807,
-0.02304862253367901,
0.004783349577337503,
-0.032185763120651245,
-0.05791258066892624,
-0.025745706632733345,
0.01588839292526245,
-0.010794680565595627,
-0.02678786776959896,
-0.01138963084667921,
0.009861648082733154,
0.03194257616996765,
-0.059941407293081284,
-0.043198466300964355,
0.015321683138608932,
0.029493285343050957,
0.03266213461756706,
0.019655650481581688,
-0.022913049906492233,
0.00541496928781271,
-0.050304777920246124,
-0.0241251103579998,
0.020292215049266815,
-0.02583969570696354,
0.008172811940312386,
0.061925485730171204,
-0.012325529009103775,
0.002820000285282731,
0.053394485265016556,
0.026844628155231476,
0.05446220561861992,
0.017881806939840317,
-0.05247019603848457,
-0.03888383135199547,
-0.01893126405775547,
0.039255719631910324,
0.006754621863365173,
-0.0077043017372488976,
-0.042631421238183975,
-0.10303173214197159,
-0.02410268411040306,
0.005698843859136105,
-0.016195621341466904,
0.0008268255623988807,
0.022211458534002304,
0.01986817829310894,
0.004943183623254299,
0.011356092058122158,
0.0011106905294582248,
0.03221699595451355,
-0.023231996223330498,
0.07293133437633514,
-0.007628743536770344,
0.008093757554888725,
-0.04270852357149124,
0.013614430092275143,
-0.029612084850668907,
-0.010117885656654835,
-0.028212543576955795,
0.051587894558906555,
0.021469874307513237,
0.07924497127532959,
0.05714919790625572,
0.03704223781824112,
-0.04411650821566582,
0.018224967643618584,
0.04755279794335365,
-0.04839085415005684,
-0.027139540761709213,
-0.01434156484901905,
0.0026583911385387182,
0.012655195780098438,
-0.019347885623574257,
-0.03098614141345024,
0.003933802247047424,
0.04163113981485367,
-0.019058791920542717,
-0.017862286418676376,
-0.015610883012413979,
-0.017017167061567307,
-0.028709776699543,
-0.029487188905477524,
0.014487440697848797,
0.024424675852060318,
-0.0016149076400324702,
0.015818865969777107,
0.034556593745946884,
0.047871705144643784,
0.057315532118082047,
0.05693306773900986,
-0.009541432373225689,
-0.061519376933574677,
0.053305596113204956,
0.031430795788764954,
-0.021216819062829018,
-0.06958160549402237,
-0.017217613756656647,
0.02279690094292164,
0.03566580265760422,
-0.0067763193510472775,
-0.08570242673158646,
0.023785792291164398,
0.06841275095939636,
-0.0329737514257431,
0.06596478074789047,
-0.0028188172727823257,
0.01819867268204689,
0.059914495795965195,
-0.018358837813138962,
0.03027386963367462,
-0.01657213643193245,
0.0032652937807142735,
0.019745314493775368,
0.024107981473207474,
-0.019091423600912094,
-0.023242147639393806,
-0.058120474219322205,
0.03585932031273842,
0.03358735889196396,
0.04739357903599739,
0.03844701126217842,
-0.054861195385456085,
-0.043257348239421844,
-0.011347785592079163,
0.030779743567109108,
-0.006459276657551527,
0.01904776692390442,
0.03391570970416069,
0.04395904019474983,
-0.05488854646682739,
-0.06199249252676964,
-0.041525088250637054,
-0.01660744659602642,
0.03827226161956787,
-0.005907734856009483,
-0.014787841588258743,
-0.03623498976230621,
0.04404795914888382,
-0.042956769466400146,
-0.02685241401195526,
-0.07412536442279816,
0.037172582000494,
-0.006697721313685179,
0.0005332000437192619,
0.04004140943288803,
0.0237534511834383,
0.019961029291152954,
0.07445956766605377,
0.019264571368694305,
0.007173782680183649,
-0.038686517626047134,
0.025754228234291077,
-0.03926236927509308,
-0.036627933382987976,
-0.0028885402716696262,
-0.061689428985118866,
0.003940961789339781,
0.0027480057906359434,
-0.0362410694360733,
-0.029445506632328033,
-0.039660558104515076,
0.03825807943940163,
-0.0006254488253034651,
-0.0018334484193474054,
0.009030054323375225,
0.02858000434935093,
-0.033797163516283035,
-0.030311038717627525,
-0.04986899346113205,
-0.029854241758584976,
-0.05585581809282303,
-0.033755309879779816,
0.015798324719071388,
0.014311197213828564,
0.02851278707385063,
0.006947189103811979,
0.03635260835289955,
-0.0014690866228193045,
0.015690337866544724,
-0.04025782644748688,
-0.009679777547717094,
-0.0045820060186088085,
-0.03188316524028778,
-0.01208125427365303,
0.030940985307097435,
-0.011711515486240387,
0.047408126294612885,
-0.01037638634443283,
-0.016488052904605865,
0.034662481397390366,
0.01768903248012066,
-0.027828510850667953,
-0.00482745049521327,
0.031382057815790176,
-0.03274806961417198,
-0.024103090167045593,
-0.02178717404603958,
-0.042218174785375595,
0.020529847592115402,
-0.01948580890893936,
-0.03262312337756157,
0.00922219268977642,
-0.0017079960089176893,
0.03085864894092083,
-0.012511652894318104,
-0.04871489480137825,
0.015273481607437134,
-0.021789245307445526,
0.034653689712285995,
-0.061580590903759,
0.04715337976813316,
-0.02729785069823265,
0.021200310438871384,
-0.02760118804872036,
-0.002726262668147683,
-0.030272042378783226,
0.061703260987997055,
0.02045639045536518,
-0.045027002692222595,
0.010064679197967052,
-0.005770403426140547,
-0.0066183824092149734,
0.026570938527584076,
-0.0007928014383651316,
0.033344898372888565,
-0.05168648809194565,
0.04694915935397148,
-0.03036080114543438,
0.0023425803519785404,
-0.028314411640167236,
0.03404209017753601,
-0.02122536301612854,
0.02107611484825611,
-0.01963902823626995,
-0.012657656334340572,
0.016030702739953995,
0.056216828525066376,
0.015590855851769447,
0.02033703774213791,
-0.03253616765141487,
-0.00025689121684990823,
-0.0018358295783400536,
-0.07243328541517258,
-0.03829781711101532,
-0.017071442678570747,
0.01550956442952156,
-0.003096342785283923,
0.057872168719768524,
0.037971314042806625,
-0.031186342239379883,
-0.052922576665878296,
0.04864225909113884,
0.054603662341833115,
0.02592054009437561,
-0.000006130881047283765,
0.032545242458581924,
0.007034598849713802,
0.06161024793982506,
-0.03829335793852806,
0.014360168017446995,
0.012884578667581081,
-0.015488950535655022,
0.04218580573797226,
-0.00963740423321724,
0.0073793791234493256,
0.03335362300276756,
-0.02748960442841053,
-0.04381674900650978,
0.02946428209543228,
0.06327556073665619,
0.02258681133389473,
-0.019476259127259254,
-0.04798400029540062,
0.037896234542131424,
-0.005930034443736076,
-0.06048638001084328,
0.008997208438813686,
-0.004746914375573397,
-0.020567767322063446,
0.06411810964345932,
-0.02730078063905239,
-0.00996138621121645,
0.02581445686519146,
0.058420754969120026,
-0.021287783980369568,
0.04942020773887634,
-0.0075208707712590694,
0.026612646877765656,
0.06927304714918137,
-0.06683869659900665,
-0.015094174072146416,
-0.03562735393643379,
0.059157222509384155,
-0.06355013698339462,
0.06735017150640488,
0.023758674040436745,
0.000595378689467907,
0.03667553886771202,
-0.017013655975461006,
-0.04566383361816406,
0.0008821950759738684,
-0.04295983165502548,
0.05384112522006035,
-0.01147366315126419,
-0.05475509539246559,
0.07064925134181976,
0.0263736043125391,
-0.04603434354066849,
0.0355486124753952,
0.01822155900299549,
0.03258185833692551,
0.021397780627012253,
0.028334815055131912,
-0.05035315081477165,
-0.0027117158751934767,
-0.054055050015449524,
0.06468848884105682,
-0.07119500637054443,
-0.01987544633448124,
0.023398123681545258,
-0.04790659248828888,
-0.03166626766324043,
0.03983389586210251,
0.002559386193752289,
-0.01979312114417553,
0.041617996990680695,
-0.080237977206707,
-0.06379589438438416,
-0.007707040291279554,
-0.006789343431591988,
-0.020443424582481384,
0.025058560073375702,
-0.02084890566766262,
0.022688405588269234,
0.022475747391581535,
0.016809048131108284,
0.023020219057798386,
-0.0032854978926479816,
0.02746451087296009,
-0.04205251485109329,
-0.040739912539720535,
0.05277702212333679,
0.022160055115818977,
-0.022463038563728333,
0.016475575044751167,
0.01182683277875185,
0.03022714890539646,
0.012073305435478687,
-0.009693744592368603,
-0.00038851157296448946,
-0.04262378811836243,
-0.016628123819828033,
-0.003978134598582983,
-0.009317701682448387,
0.03588685393333435,
-0.02553839050233364,
0.021887965500354767,
0.039504505693912506,
0.020661111921072006,
0.007823356427252293,
-0.017793292179703712,
-0.006581226363778114,
0.027844028547406197,
-0.03628522902727127,
0.044563647359609604,
0.00916561484336853,
-0.04506100341677666,
-0.0321686826646328,
-0.01614375226199627,
-0.012743574567139149,
0.04673701152205467,
-0.046842310577631,
0.0012594284489750862,
0.02258387766778469,
0.013592525385320187,
-0.04695549234747887,
-0.10594852268695831,
-0.010900970548391342,
-0.06684643775224686,
0.025636985898017883,
0.022992337122559547,
-0.02882390096783638,
0.04605729505419731,
-0.002932232338935137,
-0.05784803628921509,
0.03791074827313423,
0.037521906197071075,
-0.024751020595431328,
0.05136983096599579,
0.06300018727779388,
-0.04105836898088455,
0.009817074984312057,
0.02630220353603363,
-0.022787276655435562,
0.019365670159459114,
0.012063572183251381,
0.006510176695883274,
0.042309992015361786,
0.020177733153104782,
-0.03704438731074333,
-0.028655890375375748,
-0.050804756581783295,
-0.029849126935005188,
-0.06453070044517517,
0.013490438461303711,
0.05886681750416756
] |
distilbert-base-uncased-distilled-squad | [
"pytorch",
"tf",
"tflite",
"coreml",
"safetensors",
"distilbert",
"question-answering",
"en",
"dataset:squad",
"arxiv:1910.01108",
"arxiv:1910.09700",
"transformers",
"license:apache-2.0",
"autotrain_compatible",
"has_space"
] | question-answering | {
"architectures": [
"DistilBertForQuestionAnswering"
],
"model_type": "distilbert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 100,097 | 2023-05-17T09:16:52Z | ---
language: ko
tags:
- korean
- klue
mask_token: '[MASK]'
widget:
- text: "이순신 장군은 [MASK] 중기의 무신이다."
--- | [
-0.02211778424680233,
-0.030736533924937248,
0.03264346346259117,
0.013986237347126007,
0.046533964574337006,
0.01716718077659607,
0.011541815474629402,
0.030315225943922997,
-0.024338416755199432,
0.07972699403762817,
0.009514971636235714,
0.0037105747032910585,
0.015702441334724426,
0.027871141210198402,
-0.010130499489605427,
-0.011694797314703465,
-0.020048869773745537,
-0.017265470698475838,
-0.06877626478672028,
-0.0072750793769955635,
0.014719481579959393,
0.01311905961483717,
-0.012287473306059837,
0.03510234132409096,
0.03545324504375458,
-0.006589113734662533,
-0.0019354053074494004,
0.02256575971841812,
0.058485664427280426,
-0.028689034283161163,
-0.015829578042030334,
-0.03199400752782822,
-0.045260027050971985,
-0.036879219114780426,
-0.04088379070162773,
-0.018191741779446602,
0.022758543491363525,
0.020068785175681114,
0.029503947123885155,
0.06304391473531723,
-0.018838534131646156,
0.006891974247992039,
0.0014285377692431211,
-0.041347652673721313,
0.05065500736236572,
-0.012095850892364979,
-0.05610887333750725,
-0.023934774100780487,
0.03063274919986725,
-0.00763521296903491,
-0.05810484290122986,
-0.06290820240974426,
-0.04038727283477783,
-0.012696612626314163,
-0.013392232358455658,
-0.03185758739709854,
-0.04707975313067436,
0.03453827276825905,
0.05629154294729233,
-0.042962778359651566,
-0.04183885082602501,
-0.014395250007510185,
-0.08361583948135376,
0.03576003387570381,
0.028075167909264565,
-0.03413451090455055,
0.030324777588248253,
-0.019905855879187584,
0.024578867480158806,
-0.036115918308496475,
0.04244799539446831,
-0.049548160284757614,
-0.009425037540495396,
-0.07616374641656876,
-0.03558972105383873,
-0.0244648028165102,
0.0560380183160305,
0.031811848282814026,
-0.024748150259256363,
0.08130209892988205,
0.023696182295680046,
0.009510068222880363,
0.04345681145787239,
-0.010669105686247349,
-0.014352413825690746,
0.03486305847764015,
-0.053893107920885086,
0.005393655970692635,
0.023919712752103806,
0.04448314383625984,
-0.020098960027098656,
-0.02442396990954876,
-0.025097627192735672,
-0.040282242000103,
-0.050427138805389404,
0.005586004350334406,
0.065950907766819,
0.004973196424543858,
0.04982156679034233,
0.026853539049625397,
0.01595148630440235,
0.05797327309846878,
-0.027845269069075584,
0.04042518138885498,
-0.003776626428589225,
-0.01956370659172535,
-0.011561086401343346,
-0.019964585080742836,
-0.033095721155405045,
0.034883808344602585,
0.007832285948097706,
-0.05631275475025177,
-0.03636924549937248,
0.04225505143404007,
0.02775174379348755,
-0.020753981545567513,
0.05147888883948326,
-0.036101195961236954,
-0.014055630192160606,
-0.014024607837200165,
0.06928971409797668,
0.00036730256397277117,
-0.008996409364044666,
-0.00891998503357172,
-0.026446295902132988,
0.013538680970668793,
-0.03794549033045769,
-0.01187138631939888,
0.00286876386962831,
0.02337075024843216,
-0.019332123920321465,
0.033031776547431946,
-0.0076700919307768345,
-0.03730387985706329,
-0.0001849064719863236,
0.006385358050465584,
-0.053821977227926254,
0.022114476189017296,
0.0023615588434040546,
0.08942046761512756,
-0.02882983908057213,
-0.054836519062519073,
-0.03274698182940483,
-0.01434696651995182,
-0.02985568717122078,
-0.006024791393429041,
-0.015641240403056145,
-0.03685569763183594,
-0.027207856997847557,
-0.028273262083530426,
0.03562517836689949,
-0.06658389419317245,
0.015927638858556747,
0.06764345616102219,
0.014768287539482117,
0.04160766676068306,
-0.020560547709465027,
0.04496094211935997,
0.006809992250055075,
-0.018140306696295738,
-0.030317191034555435,
0.03535269573330879,
0.015394307672977448,
-0.006513634230941534,
-0.05764582380652428,
-0.057455435395240784,
-0.02268402650952339,
0.04618636518716812,
0.007041583769023418,
-0.009797858074307442,
-0.04036809876561165,
0.028888586908578873,
0.038992740213871,
0.0034753058571368456,
-0.012237866409122944,
0.0269213505089283,
0.03567513823509216,
0.044776465743780136,
-0.012238383293151855,
0.07164362818002701,
0.010999691672623158,
-0.043985866010189056,
-0.029442904517054558,
0.011644473299384117,
0.05648913234472275,
-0.028779854997992516,
-0.019802212715148926,
0.0400627963244915,
0.008372613228857517,
-0.017874304205179214,
0.017144309356808662,
0.011647172272205353,
-0.006618608720600605,
-0.010395675897598267,
-0.00973913911730051,
-0.02376202680170536,
-0.03076937608420849,
0.03700602427124977,
-0.04424556717276573,
-0.018470140174031258,
-0.03449372574687004,
-0.01769120804965496,
0.035607051104307175,
0.05376836284995079,
0.035765886306762695,
0.04037792235612869,
-0.04188017547130585,
0.07151969522237778,
-0.019208736717700958,
0.018124256283044815,
-0.047183312475681305,
-0.07877229154109955,
-0.02250375971198082,
0.025184273719787598,
0.030186442658305168,
0.025269199162721634,
-0.00827888771891594,
-0.038104861974716187,
0.005674200598150492,
0.08872802555561066,
0.06192455813288689,
0.006270308047533035,
-0.043546535074710846,
-0.00401643943041563,
0.027082296088337898,
0.03143663704395294,
-0.05943815037608147,
-0.02350083366036415,
0.043939974159002304,
0.06664526462554932,
-0.0328572541475296,
0.01606600545346737,
0.007750155869871378,
-0.00034809764474630356,
-0.032020971179008484,
-0.07358244806528091,
0.030980821698904037,
-0.003836017334833741,
0.000880529114510864,
0.04264714568853378,
-0.0340985469520092,
0.04396288841962814,
0.03849407657980919,
0.0006395970121957362,
0.0011278840247541666,
-0.03243491053581238,
-0.00010919217311311513,
0.008522378280758858,
0.08620399981737137,
-0.03140973672270775,
0.04159701243042946,
0.005833982955664396,
-0.0007857397431507707,
0.05163111910223961,
-0.049790408462285995,
0.029793571680784225,
0.04283936321735382,
-0.005725863389670849,
-0.03584609180688858,
0.02365371584892273,
0.037989307194948196,
0.03143433853983879,
0.07438056915998459,
0.012303397990763187,
0.06221139430999756,
-0.006180009804666042,
0.06909701228141785,
0.07054196298122406,
-0.00951359048485756,
0.01526331715285778,
0.02440755069255829,
0.0739087387919426,
-0.016624996438622475,
-0.00993055198341608,
0.0788787379860878,
-0.04748864844441414,
0.008912988007068634,
-0.010590587742626667,
0.02794007584452629,
-0.029876666143536568,
-0.0032362486235797405,
0.012555592693388462,
-0.009448546916246414,
-0.015300615690648556,
-0.0017045835265889764,
-0.034098461270332336,
0.010763260535895824,
0.07428429275751114,
-0.010479996912181377,
0.00483931228518486,
-0.00038105392013676465,
-0.03712957724928856,
0.03169984370470047,
-0.06566168367862701,
-0.03581573814153671,
-0.006241498980671167,
-0.04369937628507614,
0.011102354153990746,
-0.07630355656147003,
-0.00990003440529108,
-0.06411587446928024,
-0.020658666267991066,
0.05126405879855156,
0.012799842283129692,
0.02461269684135914,
-0.03835572302341461,
0.026289865374565125,
-0.04718231037259102,
-0.0410318486392498,
-0.023151515051722527,
-0.026233363896608353,
-0.027553005144000053,
-0.07236550748348236,
0.022492559626698494,
0.03014749102294445,
0.037176936864852905,
0.03531012684106827,
-0.0038676373660564423,
-0.017281804233789444,
-0.030594300478696823,
0.04122481495141983,
0.03145061805844307,
-0.02405029907822609,
-0.01403171569108963,
0.03397487476468086,
-0.013056894764304161,
0.004864577669650316,
-0.0033945413306355476,
-0.015241771936416626,
0.09707360714673996,
0.05601081624627113,
0.026091327890753746,
-0.0023873220197856426,
0.03134185075759888,
-0.04843961074948311,
-0.03636809065937996,
-0.05259354040026665,
-0.03920239210128784,
-0.029356688261032104,
-0.02124413102865219,
-0.05170847475528717,
-0.006338271778076887,
-0.0514674074947834,
-0.01641031540930271,
-0.018579009920358658,
0.016693124547600746,
0.014258538372814655,
0.03821861743927002,
0.05816732719540596,
0.03284728527069092,
-0.00820521917194128,
0.006709723267704248,
0.08398634195327759,
-0.02287663146853447,
-0.01348501443862915,
-0.05737492814660072,
-0.040132828056812286,
0.055331576615571976,
0.00853752065449953,
-0.008148136548697948,
-0.015883848071098328,
0.0692509114742279,
0.021916452795267105,
-0.008021077141165733,
0.009792751632630825,
-0.03611670061945915,
-0.0175845455378294,
-0.008887510746717453,
-0.02256322279572487,
-0.0405900776386261,
-0.053936127573251724,
0.0038518800865858793,
-0.006399195175617933,
0.04320862889289856,
-0.07880567014217377,
-0.033781614154577255,
-0.04048340767621994,
0.0029772387351840734,
0.023006867617368698,
-0.02052220143377781,
-0.025328507646918297,
-0.008319277316331863,
-0.03736763074994087,
-0.010562313720583916,
0.0014536477392539382,
0.012695549055933952,
0.022781921550631523,
0.046391673386096954,
0.015650451183319092,
-0.031853653490543365,
0.038741692900657654,
0.02547094039618969,
0.0298239067196846,
0.03383699804544449,
-0.019758757203817368,
0.03071170300245285,
0.002556074410676956,
0.02763773500919342,
-0.0019591436721384525,
-0.026945170015096664,
-0.06922384351491928,
-0.09060082584619522,
-0.0008758521289564669,
0.015534601174294949,
-0.031553927809000015,
0.0012177769094705582,
0.03701149299740791,
-0.04347103089094162,
0.024675849825143814,
-0.02158861979842186,
0.020516766235232353,
0.047167256474494934,
-0.033551476895809174,
0.05204712226986885,
-0.01809385046362877,
0.02194966748356819,
-0.0289101991802454,
0.0021649478003382683,
-0.023795004934072495,
0.006456588860601187,
0.011444793082773685,
0.055640485137701035,
0.025437619537115097,
0.02443172223865986,
0.05730272829532623,
-0.00027011148631572723,
-0.027385428547859192,
0.04698571935296059,
0.05716872960329056,
0.002074985299259424,
-0.057598013430833817,
0.006967524997889996,
-0.004649281967431307,
-0.018701685592532158,
0.004050735384225845,
-0.039986200630664825,
0.0019657365046441555,
0.04056959226727486,
0.0038344378117471933,
-0.0099428566172719,
0.04392169788479805,
-0.03229367733001709,
-0.03882758319377899,
-0.058519747108221054,
0.003566071856766939,
0.014366871677339077,
-0.043011296540498734,
0.007202033419162035,
0.04929821193218231,
0.013645302504301071,
0.07261323928833008,
0.025211438536643982,
-0.05038822069764137,
-0.07438132166862488,
0.018373891711235046,
0.014547327533364296,
-0.04586080461740494,
-0.09743974357843399,
-0.0679059848189354,
0.033187419176101685,
0.030378302559256554,
-0.007054123096168041,
-0.039451826363801956,
0.014930584467947483,
0.01032085157930851,
-0.01636025868356228,
0.07462825626134872,
0.026986753568053246,
0.04629465192556381,
0.04051815718412399,
-0.01571592502295971,
0.02244708128273487,
-0.005379344802349806,
0.013811632990837097,
-0.01778401806950569,
0.03301696479320526,
-0.046472929418087006,
-0.028106030076742172,
-0.03802431374788284,
-0.00615038862451911,
0.01063629426062107,
0.03137373551726341,
0.019676582887768745,
-0.04110400378704071,
-0.0671578198671341,
0.01321770716458559,
0.03821288049221039,
-0.05877634882926941,
0.028784336522221565,
0.038970571011304855,
0.03759104385972023,
-0.028640158474445343,
-0.018246112391352654,
-0.028485635295510292,
0.0014346783282235265,
0.0331001803278923,
-0.03007078729569912,
-0.04942483454942703,
-0.04887344315648079,
0.018607251346111298,
-0.0019725190941244364,
-0.03163575753569603,
-0.09551380574703217,
0.009136765263974667,
-0.01647343300282955,
-0.013549101538956165,
0.057703156024217606,
0.02493186853826046,
0.03436996787786484,
0.035262331366539,
0.03004731796681881,
0.02821376547217369,
-0.04116715490818024,
0.0351693294942379,
-0.03845617175102234,
-0.004135190509259701,
0.0014539436670020223,
-0.04422619566321373,
-0.007261961232870817,
-0.03671418875455856,
-0.06282466650009155,
-0.04975666478276253,
0.01155003160238266,
0.027514709159731865,
0.01154120359569788,
0.01519808080047369,
-0.0038821962662041187,
0.010320233181118965,
0.00022395924315787852,
-0.01383549440652132,
0.011870111338794231,
-0.032068368047475815,
-0.0949302390217781,
-0.027311233803629875,
0.03363821282982826,
-0.009490237571299076,
0.031035782769322395,
0.010580084286630154,
0.0213166456669569,
0.03457549214363098,
-0.0007024632068350911,
-0.023926513269543648,
0.015735134482383728,
0.014235659502446651,
-0.03170733153820038,
-0.012589416466653347,
0.005046827252954245,
0.02960500866174698,
0.06349007040262222,
-0.055510979145765305,
0.02157452329993248,
0.012536002323031425,
-0.03168264031410217,
-0.013967050239443779,
-0.00011068789899582043,
0.009551488794386387,
-0.06053299829363823,
-0.042651671916246414,
-0.005387039389461279,
-0.021011222153902054,
0.0260857492685318,
-0.05818336829543114,
-0.03959677740931511,
0.042904362082481384,
0.03222857415676117,
0.03776736557483673,
-0.006853071972727776,
-0.029263541102409363,
0.0461767241358757,
-0.02436605840921402,
0.010524705052375793,
-0.0724504142999649,
0.004644207656383514,
-0.03672388941049576,
0.010593602433800697,
-0.016617683693766594,
0.006878065411001444,
-0.04674164578318596,
0.031544312834739685,
-0.00011159616406075656,
-0.030981365591287613,
-0.027058525010943413,
-0.018643824383616447,
-0.03128984943032265,
0.06691384315490723,
-0.009783276356756687,
-0.009540330618619919,
-0.031735610216856,
0.012971105054020882,
-0.04865597188472748,
0.017900239676237106,
-0.010494813323020935,
-0.019044671207666397,
-0.04355425760149956,
-0.03281088545918465,
-0.03883535414934158,
-0.06212468072772026,
0.006034118589013815,
0.017977755516767502,
-0.011667827144265175,
0.007673624437302351,
-0.025619706138968468,
0.02771460823714733,
0.04179197922348976,
-0.0681077092885971,
-0.000048703081120038405,
-0.02070196345448494,
0.01159976888448,
0.02302398346364498,
0.04709509760141373,
0.04029179364442825,
-0.04533502459526062,
-0.0686783641576767,
0.056317225098609924,
0.04764365032315254,
0.0027420225087553263,
0.009901970624923706,
0.03322622552514076,
0.05164547264575958,
0.044007591903209686,
-0.015063123777508736,
0.019010677933692932,
-0.01584450528025627,
-0.007024518214166164,
0.009237674064934254,
0.005343439523130655,
-0.016514616087079048,
-0.023755384609103203,
-0.03048456832766533,
-0.047552332282066345,
0.07172562927007675,
0.046743087470531464,
0.05249086767435074,
0.004126128274947405,
-0.01671368069946766,
0.0167826097458601,
0.006472759414464235,
-0.05097278580069542,
0.012746802531182766,
0.023852882906794548,
-0.041629109531641006,
0.03990935906767845,
-0.026570694521069527,
0.02606811746954918,
0.03859627619385719,
0.035421017557382584,
-0.019111599773168564,
0.035760361701250076,
-0.03754982724785805,
0.01547089871019125,
0.029776692390441895,
-0.04071582108736038,
-0.030458051711320877,
-0.025502774864435196,
0.04624910652637482,
-0.08096893876791,
0.0706956759095192,
0.026840155944228172,
-0.004252621438354254,
0.053474344313144684,
-0.01339801587164402,
-0.0278893131762743,
0.014771808870136738,
-0.04966536536812782,
0.08426651358604431,
0.0016025594668462873,
-0.07156115770339966,
0.04746609553694725,
0.02077338472008705,
-0.07337910681962967,
-0.000413189030950889,
0.024025054648518562,
0.008391552604734898,
-0.0112959248945117,
0.040808722376823425,
-0.013023421168327332,
0.05127483606338501,
-0.02412925288081169,
0.02137221209704876,
-0.05679906904697418,
-0.027660919353365898,
0.016726652160286903,
-0.03663374111056328,
-0.020683953538537025,
0.024930791929364204,
-0.014185973443090916,
-0.0037724110297858715,
0.02021666057407856,
-0.05280480161309242,
-0.06638026982545853,
0.011934496462345123,
0.04153702035546303,
0.0036096188705414534,
0.0060242703184485435,
-0.026702746748924255,
0.021407827734947205,
0.018049923703074455,
-0.027155771851539612,
-0.04290771484375,
0.0172357726842165,
0.036663129925727844,
-0.08894826471805573,
-0.04071015492081642,
0.06781499832868576,
0.013114995323121548,
-0.04363834485411644,
-0.009232117794454098,
0.019610723480582237,
0.006671474315226078,
0.02639774978160858,
-0.025429068133234978,
0.01593760773539543,
-0.06753155589103699,
-0.018634483218193054,
0.007779222447425127,
0.004152339417487383,
0.046138666570186615,
-0.03268904238939285,
0.032988540828228,
0.06658820062875748,
0.03508183732628822,
0.011889545246958733,
-0.042708300054073334,
-0.03263871744275093,
0.03354456275701523,
-0.06960975378751755,
0.043301455676555634,
0.009086133912205696,
-0.03173266351222992,
-0.062071967869997025,
0.004727133549749851,
0.017640024423599243,
0.04181359335780144,
-0.023203855380415916,
0.011037228628993034,
0.02575002610683441,
0.009983958676457405,
-0.027571463957428932,
-0.06480978429317474,
-0.04737883433699608,
-0.030396761372685432,
0.04834512621164322,
0.021012935787439346,
-0.0619201622903347,
-0.0030900773126631975,
-0.04235566034913063,
-0.03257405385375023,
0.04263348504900932,
-0.007339822128415108,
-0.014233332127332687,
0.03521774336695671,
0.06699118763208389,
-0.03222242742776871,
0.01284830179065466,
0.03058902733027935,
-0.04215579852461815,
0.06967071443796158,
0.022002870216965675,
0.008024509064853191,
0.012791537679731846,
0.056506115943193436,
0.03020545467734337,
0.006921322084963322,
-0.05755302309989929,
-0.03332214429974556,
-0.009972477331757545,
0.02744295820593834,
0.06828606873750687
] |
distilroberta-base | [
"pytorch",
"tf",
"jax",
"rust",
"safetensors",
"roberta",
"fill-mask",
"en",
"dataset:openwebtext",
"arxiv:1910.01108",
"arxiv:1910.09700",
"transformers",
"exbert",
"license:apache-2.0",
"autotrain_compatible",
"has_space"
] | fill-mask | {
"architectures": [
"RobertaForMaskedLM"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 3,342,240 | 2023-05-17T09:24:29Z | ---
license: apache-2.0
tags:
- generated_from_keras_callback
model-index:
- name: zsomai/bert-finetuned-squad
results: []
---
<!-- 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. -->
# zsomai/bert-finetuned-squad
This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on an unknown dataset.
It achieves the following results on the evaluation set:
- Train Loss: 0.6221
- 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': 'AdamWeightDecay', 'learning_rate': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 765, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}}, 'decay': 0.0, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False, 'weight_decay_rate': 0.01}
- training_precision: mixed_float16
### Training results
| Train Loss | Epoch |
|:----------:|:-----:|
| 1.5436 | 0 |
| 0.8980 | 1 |
| 0.6221 | 2 |
### Framework versions
- Transformers 4.29.2
- TensorFlow 2.12.0
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.03916294127702713,
-0.02728361450135708,
-0.00870378315448761,
0.038077302277088165,
0.0349094457924366,
0.01889440417289734,
-0.03449838235974312,
0.0002389089931966737,
-0.034323256462812424,
0.03748411312699318,
0.022723110392689705,
-0.01583893597126007,
0.031525999307632446,
0.03797512874007225,
-0.031070055440068245,
-0.05570737645030022,
0.007888207212090492,
-0.009450909681618214,
-0.029631879180669785,
-0.010819447226822376,
0.004724373109638691,
0.014045724645256996,
0.006642843596637249,
0.005789963994175196,
0.0009607734973542392,
0.030797233805060387,
-0.022000981494784355,
0.016941050067543983,
0.04017610475420952,
-0.06678398698568344,
0.01980864442884922,
-0.03551584854722023,
-0.05725026875734329,
-0.05458814278244972,
-0.014747566543519497,
-0.004541982430964708,
-0.008265692740678787,
0.01019237469881773,
0.040439408272504807,
0.04635022580623627,
-0.009660953655838966,
0.018256817013025284,
-0.02530169114470482,
-0.02254767343401909,
0.0433850921690464,
0.01566171459853649,
-0.031082915142178535,
-0.008631397038698196,
0.040037933737039566,
-0.020438333973288536,
-0.06976541876792908,
-0.06843587011098862,
-0.03738972917199135,
0.03519328311085701,
-0.015550212003290653,
-0.004857415333390236,
-0.05401903763413429,
0.0125223807990551,
0.07004112005233765,
-0.05913594365119934,
-0.03867321461439133,
0.03020758368074894,
-0.0632806047797203,
0.024459756910800934,
0.03854606673121452,
-0.02725858986377716,
0.02195895090699196,
-0.04656268656253815,
0.04673849046230316,
-0.030742965638637543,
0.05711905285716057,
-0.012179479002952576,
0.008379047736525536,
-0.08434918522834778,
-0.0112828454002738,
0.004638853948563337,
0.043680399656295776,
0.04714032635092735,
-0.028814392164349556,
0.07659953087568283,
0.018107052892446518,
-0.002649544505402446,
0.02402135543525219,
-0.03200172260403633,
-0.0018804019782692194,
0.05690547451376915,
-0.02738535776734352,
0.03355492278933525,
0.016356728971004486,
0.022704893723130226,
-0.03807065635919571,
-0.015284758992493153,
-0.040216945111751556,
-0.036168068647384644,
-0.017384886741638184,
0.03347735479474068,
0.03295490890741348,
0.015468285419046879,
0.03536003455519676,
0.031085113063454628,
0.02182370238006115,
0.03120121918618679,
-0.019294608384370804,
0.07555591315031052,
-0.0046125901862978935,
-0.021151993423700333,
-0.0014253692934289575,
-0.020130636170506477,
-0.03632625192403793,
0.013819903135299683,
0.030942851677536964,
-0.04463550075888634,
-0.04160073399543762,
0.03926859050989151,
0.0219615176320076,
-0.008816413581371307,
0.0876421108841896,
-0.012196282856166363,
-0.0405411496758461,
-0.027203692123293877,
0.03504328802227974,
0.017560690641403198,
0.011057734489440918,
0.0051276227459311485,
-0.04047660529613495,
-0.021226106211543083,
-0.029730575159192085,
-0.04341452196240425,
-0.010120060294866562,
0.019355766475200653,
0.019985737279057503,
0.05329965427517891,
0.014471249654889107,
-0.08727546781301498,
-0.007129218894988298,
0.015831029042601585,
-0.04919736832380295,
0.03324025496840477,
0.0019103550584986806,
0.1241663247346878,
-0.05754862353205681,
-0.07080300152301788,
0.007659483700990677,
0.011970347724854946,
-0.01343680638819933,
0.014271724037826061,
0.00907338410615921,
-0.04643649980425835,
-0.006490659434348345,
0.001012212596833706,
0.06143444776535034,
-0.04181395843625069,
-0.017968064174056053,
0.06988859921693802,
-0.007987515069544315,
0.037304479628801346,
-0.0464663989841938,
-0.012501237913966179,
0.011668131686747074,
-0.002978034084662795,
-0.022690357640385628,
0.0472901351749897,
-0.03091660887002945,
-0.023271672427654266,
-0.019293561577796936,
-0.044536855071783066,
0.0023081169929355383,
0.0829184278845787,
-0.0002015488425968215,
-0.019554054364562035,
-0.023255443200469017,
0.03444991260766983,
0.03694742172956467,
0.037361402064561844,
-0.035173144191503525,
0.041585322469472885,
0.05106167495250702,
0.023233789950609207,
-0.004035904072225094,
0.024570833891630173,
0.028497086837887764,
-0.02518194168806076,
-0.027616256847977638,
0.02305712178349495,
0.009834813885390759,
-0.02707676962018013,
0.04029284045100212,
0.017255866900086403,
-0.006665273103863001,
-0.059214428067207336,
-0.053268276154994965,
0.046617183834314346,
0.00040551918209530413,
-0.0009521676111035049,
0.022150015458464622,
0.009735089726746082,
-0.03350735083222389,
0.05278914049267769,
-0.024092981591820717,
0.0050100842490792274,
-0.04425739869475365,
-0.028801988810300827,
0.03271925076842308,
0.00549664068967104,
0.01799602247774601,
0.052926287055015564,
-0.012318921275436878,
0.09247204661369324,
-0.015356912277638912,
0.03573967143893242,
-0.043997157365083694,
-0.04885357245802879,
0.01722240075469017,
0.05301956832408905,
0.04277047887444496,
0.046749163419008255,
0.006884089671075344,
-0.050077229738235474,
0.025743791833519936,
0.05391216278076172,
0.034796833992004395,
0.019488636404275894,
-0.02399529330432415,
-0.03077375516295433,
0.04444275423884392,
0.04039863497018814,
-0.03840772062540054,
-0.02185204066336155,
-0.0025799197610467672,
0.04644525796175003,
0.024042727425694466,
0.016047988086938858,
-0.009707500226795673,
0.03450167551636696,
-0.04442065581679344,
-0.05689070746302605,
0.03172755613923073,
0.02390671707689762,
-0.03531751409173012,
0.03321687504649162,
0.00047813879791647196,
-0.001607056357897818,
0.017633268609642982,
0.016923585906624794,
-0.002937326207756996,
-0.03872036561369896,
0.014556659385561943,
0.008621263317763805,
0.053461793810129166,
-0.053505003452301025,
0.04631196707487106,
-0.014898757450282574,
0.02267460711300373,
0.03740832954645157,
-0.04110396280884743,
0.03682732582092285,
0.038976557552814484,
0.0354902520775795,
-0.010436851531267166,
0.034288279712200165,
0.038036637008190155,
0.04764178395271301,
0.04327860474586487,
0.0020687973592430353,
0.06884925067424774,
-0.006984103471040726,
0.054403532296419144,
0.06539742648601532,
0.015569312497973442,
0.036051906645298004,
0.023709453642368317,
0.0876309722661972,
0.02992585115134716,
-0.0235451590269804,
0.05117247253656387,
-0.06248699501156807,
0.014530899003148079,
-0.024815136566758156,
-0.004696883261203766,
-0.007202813867479563,
-0.0019255531951785088,
0.03633977845311165,
0.02423820272088051,
0.005528708454221487,
-0.02891627326607704,
0.0036313114687800407,
-0.012751380912959576,
0.018249964341521263,
-0.004455109592527151,
-0.0012410192284733057,
0.01810569316148758,
-0.020851286128163338,
-0.029271334409713745,
-0.059731993824243546,
-0.04450571909546852,
-0.007063114084303379,
-0.025830065831542015,
-0.026081833988428116,
-0.08209934085607529,
-0.02531575597822666,
-0.07509146630764008,
-0.027675176039338112,
0.04529954493045807,
0.012980284169316292,
0.00409621512517333,
-0.06437467783689499,
0.022331602871418,
-0.04314947873353958,
-0.04945751279592514,
-0.05890338122844696,
-0.031081335619091988,
-0.04383690282702446,
-0.05695271119475365,
0.03486952558159828,
0.030335402116179466,
0.017887411639094353,
0.005015065427869558,
0.009778707288205624,
0.002939207013696432,
-0.026810964569449425,
0.05710577219724655,
0.059007298201322556,
-0.04389822855591774,
-0.050995469093322754,
0.015139500610530376,
-0.008005157113075256,
0.0022456583101302385,
-0.009891141206026077,
-0.029875820502638817,
0.09674215316772461,
0.07825644314289093,
0.025713011622428894,
0.02453044056892395,
-0.0069015962071716785,
-0.05161210522055626,
-0.06752149015665054,
-0.036273419857025146,
-0.03779631853103638,
-0.004544898867607117,
-0.04412878304719925,
-0.03900057449936867,
-0.016609719023108482,
-0.0428936630487442,
0.005079899448901415,
-0.010392691940069199,
0.024206966161727905,
0.023310357704758644,
0.05271214619278908,
0.01187515165656805,
0.03413401544094086,
-0.03226762264966965,
-0.03791525587439537,
0.052457600831985474,
-0.008500417694449425,
-0.004516109824180603,
-0.09243988245725632,
-0.009099516086280346,
0.01777065172791481,
0.021966751664876938,
0.01937190629541874,
0.005839432589709759,
0.07255035638809204,
-0.013952900655567646,
0.003786264220252633,
0.02849721908569336,
-0.02019982412457466,
-0.0219464972615242,
-0.011930287815630436,
0.008206191472709179,
-0.015337750315666199,
-0.036227524280548096,
-0.010712512768805027,
0.011522217653691769,
0.03958208113908768,
-0.045683685690164566,
-0.04856729879975319,
0.0029725125059485435,
0.05026845633983612,
0.037922196090221405,
0.0057866619899868965,
-0.05854939669370651,
-0.02765337936580181,
-0.07245716452598572,
-0.028628474101424217,
0.034168045967817307,
0.012845901772379875,
0.013897034339606762,
0.03411596268415451,
0.029199877753853798,
-0.02601027861237526,
0.035988107323646545,
0.03377436473965645,
0.07925723493099213,
0.0010605675633996725,
-0.06312739104032516,
0.006325587164610624,
-0.029765574261546135,
0.043478310108184814,
-0.00034060445614159107,
-0.03587430343031883,
-0.041582074016332626,
-0.09137371182441711,
-0.030595066025853157,
-0.0006869783974252641,
0.002460898831486702,
-0.01590869203209877,
0.03489484637975693,
0.013964548707008362,
-0.02977815829217434,
-0.002356434939429164,
0.01091965101659298,
0.04695851728320122,
-0.022898312658071518,
0.06702593713998795,
-0.026931025087833405,
0.004717228002846241,
-0.03188401833176613,
0.00020239163131918758,
-0.027791162952780724,
-0.014753935858607292,
0.0356164388358593,
0.05619826167821884,
0.003646522294729948,
0.0513300821185112,
0.08000260591506958,
0.03564000129699707,
-0.040460724383592606,
0.038848090916872025,
0.061317939311265945,
-0.01631670631468296,
-0.05371326208114624,
0.01127107534557581,
-0.03656354174017906,
-0.016644645482301712,
-0.0170734953135252,
-0.010309912264347076,
0.03607846051454544,
0.03687477856874466,
-0.008935841731727123,
0.02360197715461254,
-0.00004451528002391569,
-0.015239492058753967,
-0.030896959826350212,
-0.05389906093478203,
-0.0007553321192972362,
0.013983151875436306,
-0.015396379865705967,
0.011308608576655388,
0.037250619381666183,
0.0031757138203829527,
0.0663512572646141,
0.0363907590508461,
-0.025347856804728508,
-0.0272685494273901,
0.02835896797478199,
0.004701915662735701,
-0.03661429136991501,
-0.07977792620658875,
-0.03165115416049957,
0.0457521453499794,
0.045271534472703934,
-0.03040110319852829,
-0.059674471616744995,
0.0033871217165142298,
0.055579062551259995,
-0.03526250645518303,
0.06112678349018097,
-0.013765477575361729,
0.05692513287067413,
0.07030560821294785,
-0.007165133953094482,
0.020884431898593903,
-0.028790416195988655,
-0.010741321370005608,
0.0021337848156690598,
0.03923461213707924,
-0.01928446628153324,
-0.03697867691516876,
-0.052823375910520554,
0.014272433705627918,
0.05434010550379753,
0.038783665746450424,
0.03985534608364105,
-0.03586333617568016,
-0.03297089412808418,
0.022140000015497208,
0.033702343702316284,
-0.043643999844789505,
0.005907220300287008,
0.01941545307636261,
0.03624686226248741,
-0.05396033450961113,
-0.039866525679826736,
-0.03769891336560249,
-0.012530322186648846,
0.02010144665837288,
0.0024655938614159822,
-0.04583243653178215,
-0.05008592829108238,
0.028509559109807014,
0.008789927698671818,
-0.024758098646998405,
-0.06442609429359436,
0.06312230229377747,
-0.00662936782464385,
-0.015124457888305187,
0.04099372401833534,
0.02583245001733303,
0.03552328422665596,
0.04768211022019386,
0.025072092190384865,
0.008038151077926159,
-0.030484817922115326,
0.03796412795782089,
-0.040533509105443954,
-0.043570708483457565,
-0.005114416126161814,
-0.031353674829006195,
-0.02965301088988781,
-0.020851364359259605,
-0.03803910315036774,
-0.04187202826142311,
-0.03756207600235939,
0.00008750858251005411,
0.0014450281159952283,
-0.0074563222005963326,
-0.008461210876703262,
0.03271669149398804,
-0.012590302154421806,
-0.047140855342149734,
-0.020760782063007355,
-0.026742465794086456,
-0.03983272984623909,
-0.047952622175216675,
0.004960514605045319,
0.003430516691878438,
0.01915205456316471,
0.0375293605029583,
0.011422696523368359,
-0.0057561821304261684,
-0.006867922376841307,
-0.0583505742251873,
-0.005199450068175793,
-0.007483124732971191,
-0.009113844484090805,
-0.03742703050374985,
0.024706512689590454,
0.02474525012075901,
0.04563017934560776,
-0.023863110691308975,
0.0320628397166729,
0.021861936897039413,
0.005334516521543264,
-0.01594262756407261,
0.03916808217763901,
0.019387902691960335,
-0.06740209460258484,
-0.02010318636894226,
-0.006769738160073757,
-0.02835782803595066,
0.026487143710255623,
-0.05119263753294945,
-0.014999291859567165,
0.016968054696917534,
0.007904460653662682,
0.0358748733997345,
0.008080758154392242,
-0.026672886684536934,
0.044536713510751724,
-0.017673395574092865,
0.006038273684680462,
-0.06596041470766068,
0.0597524493932724,
-0.04244665801525116,
0.03161311522126198,
-0.01883138343691826,
0.00171961123123765,
-0.05372517555952072,
0.04943792521953583,
-0.026835305616259575,
-0.009708325378596783,
-0.01162580493837595,
0.05319787561893463,
-0.03400944545865059,
0.031202880665659904,
-0.008173372596502304,
0.03764885663986206,
-0.03692956641316414,
0.0731087327003479,
-0.026916570961475372,
0.010157107375562191,
-0.04041178151965141,
0.026004303246736526,
-0.03124416619539261,
0.016962863504886627,
-0.0075978743843734264,
-0.018449967727065086,
0.03278091549873352,
0.06348136067390442,
0.045063566416502,
0.022647053003311157,
-0.01613825373351574,
-0.007991672493517399,
0.02867010049521923,
-0.05195186287164688,
-0.017365118488669395,
0.011548620648682117,
0.018280453979969025,
0.0011975308880209923,
0.056646041572093964,
0.037246596068143845,
-0.06433387845754623,
-0.06662914901971817,
0.03845914453268051,
0.028830330818891525,
-0.009804932400584221,
-0.001134259277023375,
0.03818439319729805,
0.03967002034187317,
0.057901933789253235,
-0.03068295493721962,
-0.005817282944917679,
-0.0047215973027050495,
-0.03900111839175224,
0.0370328463613987,
-0.011796808801591396,
0.02222158946096897,
0.012478118762373924,
-0.030030332505702972,
-0.018226228654384613,
0.05319112166762352,
0.020571645349264145,
0.024548234418034554,
-0.014812102541327477,
-0.040243085473775864,
0.01786731742322445,
0.0055297864601016045,
-0.0375937856733799,
0.0217914879322052,
0.028699366375803947,
-0.04616212844848633,
0.0806213766336441,
0.00540277361869812,
0.004678781609982252,
0.033713191747665405,
0.022841960191726685,
-0.004021660890430212,
0.06988897174596786,
-0.01247668918222189,
0.030247092247009277,
0.03927048295736313,
-0.06178713217377663,
-0.01508956030011177,
-0.03476134315133095,
0.07312287390232086,
-0.06522276997566223,
0.020513411611318588,
0.04393528401851654,
0.013351171277463436,
0.021658098325133324,
-0.026268761605024338,
-0.054905351251363754,
0.018449092283844948,
-0.06123386695981026,
0.06300333887338638,
0.007369386497884989,
-0.07917259633541107,
0.04130014032125473,
0.007852410897612572,
-0.059071026742458344,
0.04228765517473221,
0.04359233006834984,
0.027990655973553658,
0.026470376178622246,
0.04698594659566879,
-0.05256744846701622,
0.023596635088324547,
-0.05077655613422394,
0.03785179927945137,
-0.05894917994737625,
-0.012362509965896606,
0.041043151170015335,
-0.027354711666703224,
-0.010926111601293087,
0.05226316675543785,
-0.005158940330147743,
-0.00939585454761982,
0.044652607291936874,
-0.03457937762141228,
-0.018609823659062386,
0.025184836238622665,
0.019641805440187454,
-0.0193155687302351,
0.017462514340877533,
-0.045534081757068634,
0.02125035971403122,
0.004913175478577614,
0.009355751797556877,
-0.023806408047676086,
0.009683342650532722,
0.03249569609761238,
-0.040178969502449036,
-0.011626536957919598,
0.03756478801369667,
-0.002684737555682659,
-0.044096991419792175,
0.03681478649377823,
0.020786143839359283,
0.020961318165063858,
0.017277829349040985,
-0.0067177023738622665,
0.03472919389605522,
-0.04342988505959511,
-0.024110155180096626,
-0.01540321297943592,
-0.014767693355679512,
0.04000941291451454,
0.0011222085449844599,
0.03431156277656555,
0.052571892738342285,
0.03150271624326706,
-0.0018878830596804619,
-0.039391860365867615,
-0.03926929458975792,
0.03452201187610626,
-0.012330839410424232,
0.0034471384715288877,
-0.02273806743323803,
-0.04266146197915077,
-0.041259706020355225,
0.003324253484606743,
-0.03918725997209549,
0.0349867083132267,
-0.06468901038169861,
0.03399944677948952,
0.03579143062233925,
-0.02042357623577118,
-0.07718168199062347,
-0.07618819922208786,
-0.012716054916381836,
-0.039658233523368835,
0.008306937292218208,
0.03887636587023735,
-0.030651958659291267,
0.026368997991085052,
-0.04312267526984215,
-0.04609627276659012,
0.05590634047985077,
0.013191104866564274,
-0.03423698991537094,
0.054510559886693954,
0.04282785579562187,
-0.03542521968483925,
-0.001531612011604011,
0.020353322848677635,
-0.03167120739817619,
0.011845966801047325,
0.009155601263046265,
0.018850700929760933,
0.018632909283041954,
0.022132325917482376,
-0.040977511554956436,
-0.03466396778821945,
-0.0729978084564209,
-0.04181424900889397,
-0.042210377752780914,
0.01163625530898571,
0.07000815868377686
] |
AK270802/DialoGPT-small-harrypotter | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 10 | 2023-05-17T12:36:13Z | ---
library_name: ml-agents
tags:
- SnowballTarget
- deep-reinforcement-learning
- reinforcement-learning
- ML-Agents-SnowballTarget
---
# **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://github.com/huggingface/ml-agents#get-started
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
### Resume the training
```
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. Go to https://huggingface.co/spaces/unity/ML-Agents-SnowballTarget
2. Step 1: Find your model_id: huanvo88/ppo-SnowballTargetTESTCOLAB
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play 👀
| [
-0.030015964061021805,
-0.005805224645882845,
-0.016619766131043434,
0.05201730877161026,
0.0356871522963047,
0.026653818786144257,
-0.0016045141965150833,
-0.03471609577536583,
-0.024510659277439117,
0.04622461646795273,
0.024749865755438805,
-0.007685714866966009,
0.019093383103609085,
0.030077612027525902,
-0.017332294955849648,
-0.025101328268647194,
-0.034823864698410034,
-0.0011058613890781999,
-0.0057991622015833855,
0.002355963224545121,
0.023977678269147873,
0.00648890808224678,
-0.008625025860965252,
0.03919301927089691,
0.01198451779782772,
0.03136998414993286,
0.013827347196638584,
0.0434129536151886,
0.035382889211177826,
-0.06753687560558319,
0.004510529804974794,
0.0010600417153909802,
-0.013830501586198807,
-0.022197766229510307,
-0.025267556309700012,
-0.014946830458939075,
0.019648252055048943,
0.009191339835524559,
0.03789447247982025,
0.025258708745241165,
-0.026400355622172356,
-0.024583349004387856,
0.012042872607707977,
0.0037494925782084465,
0.02306913584470749,
0.0003367222670931369,
-0.03291847184300423,
-0.0033483009319752455,
0.0314420722424984,
-0.003520948812365532,
-0.05671653151512146,
-0.031715210527181625,
0.0075369845144450665,
0.015623193234205246,
-0.006658860482275486,
-0.02119104377925396,
-0.035543862730264664,
-0.00409395107999444,
0.07829868793487549,
-0.06935083866119385,
-0.05655256286263466,
-0.006552283652126789,
-0.04902120679616928,
0.010369716212153435,
0.03136894851922989,
-0.0030541641172021627,
0.006682374514639378,
-0.07350990921258926,
0.01450395304709673,
0.0042455727234482765,
0.02764001116156578,
-0.039500582963228226,
-0.001387630240060389,
-0.0643388032913208,
-0.018986796960234642,
-0.013129020109772682,
0.04547584801912308,
0.042233508080244064,
-0.03500813990831375,
0.059527963399887085,
0.022548723965883255,
0.009933535940945148,
0.05188923701643944,
-0.021280251443386078,
0.006675024516880512,
0.008030851371586323,
-0.03587188571691513,
-0.038538821041584015,
0.02657283842563629,
0.03851044178009033,
-0.01920708268880844,
-0.02033267356455326,
-0.035211458802223206,
-0.002934441901743412,
0.0028088807594031096,
0.051829829812049866,
0.045316070318222046,
0.002146229613572359,
0.04992823302745819,
0.007482271641492844,
0.04959994554519653,
0.02673032321035862,
-0.0020481892861425877,
0.08623947948217392,
-0.00350617291405797,
-0.0034325660672038794,
-0.01203785091638565,
-0.04780688136816025,
-0.05330485478043556,
0.03019900992512703,
-0.00802658312022686,
-0.04361280798912048,
-0.01833600364625454,
0.026311006397008896,
0.017065949738025665,
0.011877292767167091,
0.05021684616804123,
-0.053064700216054916,
-0.04534286633133888,
-0.060994356870651245,
0.0696563869714737,
0.013547697104513645,
-0.01986725442111492,
-0.044673092663288116,
-0.032296210527420044,
0.01076095923781395,
-0.03524283319711685,
-0.027508819475769997,
-0.017481204122304916,
0.015062673948705196,
0.012143891304731369,
0.03339071571826935,
0.029996391385793686,
-0.06291878968477249,
0.02228531986474991,
-0.010672727599740028,
-0.06649697571992874,
0.034710001200437546,
-0.006261649075895548,
0.11348012089729309,
-0.07491534948348999,
-0.06541813910007477,
0.03904306888580322,
0.021855928003787994,
-0.04075813293457031,
-0.03776569664478302,
0.008974594995379448,
-0.05123656615614891,
-0.053075820207595825,
-0.004883361980319023,
0.035936933010816574,
-0.06725290417671204,
-0.03622617945075035,
0.07923322916030884,
0.004323883913457394,
0.044493287801742554,
-0.03833625465631485,
0.01123421173542738,
-0.014228819869458675,
-0.0023768439423292875,
-0.01748226396739483,
0.059754129499197006,
-0.028527619317173958,
-0.022934583947062492,
-0.03486175090074539,
-0.03903937339782715,
0.02525642141699791,
0.05638892203569412,
-0.026193490251898766,
-0.007783215958625078,
-0.04562610015273094,
0.03440680727362633,
0.023895027115941048,
-0.02990812063217163,
-0.0066391099244356155,
0.023805253207683563,
0.06401452422142029,
0.040634993463754654,
-0.043725814670324326,
0.024505509063601494,
0.015965651720762253,
-0.046124085783958435,
-0.030759036540985107,
0.0012490286026149988,
0.036243077367544174,
0.011219899170100689,
0.01909145526587963,
0.0301541518419981,
0.03621354699134827,
-0.02290561981499195,
-0.0008748414111323655,
-0.009360900148749352,
0.0076077827252447605,
0.001201409031637013,
-0.021975692361593246,
-0.029604263603687286,
-0.03069179877638817,
0.06344528496265411,
-0.03012613207101822,
-0.019579483196139336,
-0.055523745715618134,
-0.04560575261712074,
0.018853595480322838,
0.021216612309217453,
0.03634404018521309,
0.03420492261648178,
0.001168687827885151,
0.09511039406061172,
-0.01738680712878704,
0.004827223252505064,
-0.04625669866800308,
-0.028422275558114052,
0.020338496193289757,
0.05396536365151405,
0.03779342770576477,
0.041012074798345566,
0.006425026338547468,
-0.04024817794561386,
0.05502172186970711,
0.06646894663572311,
0.04803590476512909,
0.01212999690324068,
-0.04308723658323288,
-0.013177892193198204,
0.017070626839995384,
0.03535714000463486,
-0.041184600442647934,
-0.031878262758255005,
0.03471294417977333,
0.053797535598278046,
0.0041504125110805035,
0.017696209251880646,
-0.037636708468198776,
0.022421235218644142,
-0.0697668194770813,
-0.039458200335502625,
0.028699040412902832,
0.015460935421288013,
0.031174492090940475,
0.02554372325539589,
-0.007630646228790283,
-0.006075896788388491,
0.024082375690340996,
0.0028832026291638613,
0.020504320040345192,
-0.034658465534448624,
0.006705928593873978,
0.017262013629078865,
0.05954662337899208,
-0.053830359131097794,
0.02888268418610096,
0.01826590858399868,
-0.020861603319644928,
0.04448371380567551,
-0.06644710898399353,
0.02757476270198822,
0.08039393275976181,
0.010114160366356373,
-0.025486599653959274,
0.005137499421834946,
-0.0007981883245520294,
0.07252024859189987,
0.02601502649486065,
-0.011397119611501694,
0.03678737208247185,
-0.030720362439751625,
0.028130657970905304,
0.060825396329164505,
0.008264047093689442,
-0.0011998622212558985,
0.04412245377898216,
0.04454050213098526,
0.017800960689783096,
0.017792291939258575,
0.04947112500667572,
-0.027505703270435333,
0.0323493629693985,
-0.03578508272767067,
0.0029704507905989885,
-0.027167828753590584,
-0.007867326959967613,
0.06269598752260208,
0.023078327998518944,
-0.05763472616672516,
-0.0036239130422472954,
-0.02671397104859352,
-0.009098964743316174,
0.01917966641485691,
-0.017987076193094254,
0.002831900492310524,
-0.01450725644826889,
0.006414696108549833,
0.02569866180419922,
-0.08776696026325226,
-0.0919906497001648,
-0.022489717230200768,
-0.018990783020853996,
-0.019442781805992126,
-0.07556974142789841,
-0.012743023224174976,
-0.05167580395936966,
-0.024008626118302345,
0.03192589804530144,
0.013346558436751366,
-0.010168001987040043,
-0.025940001010894775,
0.03775523602962494,
-0.03374217823147774,
0.011985515244305134,
-0.055890124291181564,
-0.05220066010951996,
-0.03491155058145523,
-0.07095451653003693,
0.015509111806750298,
0.023461803793907166,
0.024726416915655136,
0.004346398636698723,
0.010356643237173557,
-0.03941318765282631,
-0.015605525113642216,
0.03591329604387283,
0.04182024672627449,
-0.025929126888513565,
-0.053509246557950974,
0.016431566327810287,
-0.009079168550670147,
0.01888004131615162,
-0.0007344104233197868,
-0.04527296498417854,
0.06564000248908997,
0.05688601732254028,
0.02307436428964138,
-0.010796697810292244,
-0.014537885785102844,
-0.06730567663908005,
-0.03886206075549126,
-0.023119868710637093,
-0.03102499432861805,
0.016925666481256485,
-0.03382992744445801,
-0.020136775448918343,
-0.016415787860751152,
-0.03170239180326462,
-0.012465720064938068,
-0.014777266420423985,
0.015294454991817474,
0.02203861065208912,
0.0590658113360405,
0.056664276868104935,
0.02103045955300331,
-0.07237580418586731,
-0.02580791711807251,
0.05689135566353798,
0.018703754991292953,
-0.035623133182525635,
-0.04398994520306587,
-0.058288685977458954,
0.04796459898352623,
0.03224263712763786,
0.005070916842669249,
-0.024941522628068924,
0.06971058249473572,
0.018081476911902428,
0.0003012112865690142,
0.029176827520132065,
-0.02832946926355362,
0.007316900882869959,
-0.045789506286382675,
-0.0163487046957016,
-0.05226250737905502,
-0.03268570825457573,
-0.039633046835660934,
0.018605832010507584,
0.04545605555176735,
-0.06454963237047195,
-0.033133365213871,
-0.03621726483106613,
0.025647765025496483,
0.00828327052295208,
0.01832941733300686,
-0.02901528961956501,
-0.025340648368000984,
-0.06694383174180984,
0.027934668585658073,
0.01811945252120495,
0.0032920511439442635,
0.03507735952734947,
0.01758662797510624,
0.04193980246782303,
-0.010911794379353523,
0.042783208191394806,
0.023236848413944244,
0.03299498185515404,
0.020291566848754883,
-0.04887056723237038,
0.02211918868124485,
-0.01313077099621296,
0.05480729788541794,
-0.0012362288543954492,
-0.03788283094763756,
-0.040404804050922394,
-0.09512225538492203,
-0.019686846062541008,
-0.0034752434585243464,
-0.057794298976659775,
0.02065073326230049,
0.03776443004608154,
-0.005630361847579479,
0.0016456383746117353,
-0.0022529740817844868,
0.00914681889116764,
0.061260707676410675,
-0.03443194553256035,
0.047419723123311996,
0.012236545793712139,
0.07051628082990646,
-0.040045127272605896,
0.020611383020877838,
-0.00825424212962389,
-0.026048216968774796,
0.027877599000930786,
0.019963974133133888,
0.02831759862601757,
0.06899573653936386,
0.03191746771335602,
0.007761679589748383,
-0.06359895318746567,
0.04752267897129059,
0.0737319141626358,
-0.03250380605459213,
-0.05093526467680931,
-0.027952000498771667,
-0.0007086338591761887,
0.005468782037496567,
0.01664612628519535,
-0.0028758214320987463,
0.013613344170153141,
0.08095328509807587,
0.01275884360074997,
0.009840982034802437,
-0.01688672974705696,
-0.01866086572408676,
-0.02872702106833458,
-0.04195135459303856,
0.0012848037295043468,
0.016406407579779625,
-0.035060249269008636,
0.034023039042949677,
0.044033803045749664,
0.05997138470411301,
0.03939760848879814,
0.070598304271698,
-0.025522733107209206,
-0.06434865295886993,
0.04161173105239868,
-0.002289162715896964,
-0.035216718912124634,
-0.04571845754981041,
0.0004956788034178317,
0.024505162611603737,
0.027087727561593056,
-0.007602709345519543,
-0.05287209525704384,
0.0008804122335277498,
0.05170030891895294,
-0.023170284926891327,
0.0680784359574318,
-0.0327816940844059,
0.00920554157346487,
0.03286262974143028,
0.007457615341991186,
0.03801153600215912,
-0.025906167924404144,
-0.03317942097783089,
-0.00047756312415003777,
-0.007664087228477001,
-0.011704371310770512,
-0.014492377638816833,
-0.017299329861998558,
-0.005859582684934139,
0.015451028011739254,
0.044259052723646164,
0.025107217952609062,
-0.06210710480809212,
-0.06359515339136124,
-0.02942952699959278,
0.04063910245895386,
-0.015290524810552597,
-0.022785566747188568,
0.05235239490866661,
0.026865798979997635,
-0.06323108822107315,
-0.02743345871567726,
-0.012616228312253952,
-0.008132051676511765,
0.017192039638757706,
0.014815217815339565,
-0.041254449635744095,
-0.02348770946264267,
0.042366039007902145,
-0.015590889379382133,
-0.01933002658188343,
-0.09728793054819107,
0.05627097934484482,
0.021828938275575638,
0.010960506275296211,
0.04668280482292175,
0.030427783727645874,
0.04031645879149437,
0.042338572442531586,
0.024199044331908226,
0.009221834130585194,
-0.03902705758810043,
0.036058902740478516,
0.00496046943590045,
-0.0029483502730727196,
-0.0003047996142413467,
-0.060002632439136505,
0.012359453365206718,
-0.01516769826412201,
-0.025521038100123405,
-0.04240356385707855,
-0.009627793915569782,
0.04648112878203392,
0.02603260800242424,
0.025823794305324554,
0.009239230304956436,
0.031198961660265923,
-0.004905804991722107,
-0.053018707782030106,
-0.013281880877912045,
-0.00043854524847120047,
-0.05800113454461098,
-0.03855632618069649,
0.05661358684301376,
0.019516604021191597,
0.008193663321435452,
-0.01899491623044014,
0.04912010580301285,
0.04644414037466049,
0.02515513263642788,
-0.003768475726246834,
0.05175726115703583,
0.009253566153347492,
-0.03888976201415062,
-0.0008868284639902413,
-0.00022738517145626247,
0.007794655859470367,
0.03644587844610214,
-0.0402260348200798,
0.01346326619386673,
-0.009198622778058052,
-0.009419845417141914,
-0.017047619447112083,
0.014842652715742588,
0.009634869173169136,
-0.046997636556625366,
0.01933787763118744,
-0.030987735837697983,
-0.02539982460439205,
0.02105657570064068,
-0.009657936170697212,
-0.038310617208480835,
0.015734590590000153,
-0.00933618750423193,
0.028673896566033363,
-0.025868024677038193,
-0.04163751006126404,
0.022770589217543602,
-0.044606152921915054,
0.03999573737382889,
-0.03742476925253868,
0.02694660797715187,
-0.0288857351988554,
-0.0018950181547552347,
-0.03518548235297203,
-0.009276405908167362,
-0.07852347195148468,
0.06429116427898407,
-0.03141533210873604,
-0.014758461154997349,
-0.017788080498576164,
0.04471619054675102,
-0.010347683914005756,
0.047900933772325516,
0.02257869951426983,
0.048135578632354736,
0.0010282929288223386,
0.047365136444568634,
-0.017782654613256454,
0.0017636854900047183,
-0.025262152776122093,
0.043069757521152496,
-0.017841553315520287,
-0.002721307100728154,
-0.03864571452140808,
-0.01823296770453453,
0.0217709019780159,
0.030097411945462227,
0.0436241552233696,
0.03247041627764702,
-0.017476074397563934,
0.012003343552350998,
0.032624904066324234,
-0.027581332251429558,
-0.04274161905050278,
-0.010348169133067131,
0.026982098817825317,
0.0287923701107502,
0.04762067645788193,
0.04854394495487213,
-0.06500045955181122,
-0.051957838237285614,
0.06483880430459976,
0.031073981896042824,
0.024570921435952187,
0.0010039354674518108,
0.02156565710902214,
0.03630086034536362,
0.021755794063210487,
-0.05006628483533859,
-0.01815951056778431,
-0.0038230661302804947,
0.0010902490466833115,
0.008251305669546127,
-0.013075779192149639,
0.014579638838768005,
0.021147724241018295,
-0.03027801774442196,
-0.04791885241866112,
0.06857044994831085,
0.04907457157969475,
-0.00539038609713316,
-0.009741552174091339,
0.0008047997253015637,
0.03794511780142784,
0.0017860408406704664,
-0.017450368031859398,
0.025211172178387642,
0.029314156621694565,
-0.01652330346405506,
0.0602695494890213,
-0.007827027700841427,
0.00780226057395339,
0.05335516110062599,
0.03514544293284416,
-0.009577406570315361,
0.06453090161085129,
-0.027602672576904297,
0.03264840692281723,
0.04562881588935852,
-0.06661999970674515,
-0.007070102263242006,
-0.04990829899907112,
0.07950808852910995,
-0.059202518314123154,
0.08115336298942566,
0.04345703125,
-0.010890273377299309,
-0.007008027285337448,
-0.03561379387974739,
-0.07072814553976059,
-0.0213631521910429,
-0.04399557411670685,
0.059503331780433655,
-0.0008271302212961018,
-0.04736420139670372,
0.04444197565317154,
0.03080516867339611,
-0.07001219689846039,
0.03958664834499359,
0.035283081233501434,
0.027995606884360313,
0.0027425603475421667,
0.026612814515829086,
-0.05625462904572487,
0.026438888162374496,
-0.06802626699209213,
0.07643736153841019,
-0.07594611495733261,
-0.012408980168402195,
0.014585793949663639,
-0.04872264340519905,
-0.04486068710684776,
0.0029466638807207346,
-0.009096656925976276,
-0.0028328541666269302,
0.04004741832613945,
-0.06110384315252304,
-0.06521178036928177,
-0.0017050671158358455,
0.009117432869970798,
0.0046274480409920216,
0.03491044044494629,
-0.0037370924837887287,
-0.007819663733243942,
0.030441563576459885,
0.00992677267640829,
0.004459947347640991,
-0.016979504376649857,
-0.002688515232875943,
-0.0568474605679512,
-0.054297011345624924,
0.05747295171022415,
-0.0007558485376648605,
-0.007026056759059429,
0.021752623841166496,
-0.01662566140294075,
-0.0018637343309819698,
-0.00904964841902256,
0.0065687247551977634,
0.018606923520565033,
-0.06047684699296951,
-0.012249473482370377,
0.045670922845602036,
0.01283952221274376,
0.040593914687633514,
-0.005376685410737991,
0.03921814635396004,
0.04873381182551384,
0.04067827761173248,
0.004470453597605228,
-0.02217358537018299,
0.012160577811300755,
0.0176165122538805,
-0.057887736707925797,
0.022274155169725418,
-0.003415467217564583,
-0.04137060418725014,
-0.011284038424491882,
-0.03988602012395859,
-0.04387678578495979,
0.00834871456027031,
-0.02695636637508869,
-0.00795014388859272,
0.02692391350865364,
0.007401417940855026,
-0.03896688297390938,
-0.08549825102090836,
-0.013258193619549274,
-0.04191402718424797,
0.009133047424256802,
0.02713320031762123,
-0.057816047221422195,
0.01621740497648716,
-0.039381179958581924,
-0.033957965672016144,
0.08937472850084305,
0.025576258078217506,
-0.01483117789030075,
0.03962588682770729,
0.024117304012179375,
-0.01672990992665291,
-0.0016864954959601164,
0.03470904007554054,
-0.07300130277872086,
-0.004495406989008188,
-0.0025943517684936523,
0.020919999107718468,
0.04060922935605049,
0.0010549257276579738,
-0.055921804159879684,
0.011552911251783371,
-0.045664895325899124,
-0.05547063425183296,
-0.05409214273095131,
0.0019773663952946663,
0.08927010744810104
] |
ALINEAR/albert-japanese-v2 | [
"pytorch",
"albert",
"fill-mask",
"transformers",
"autotrain_compatible"
] | fill-mask | {
"architectures": [
"AlbertForMaskedLM"
],
"model_type": "albert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 20,882 | 2023-05-17T12:48:41Z | ---
license: creativeml-openrail-m
tags:
- stablediffusionapi.com
- stable-diffusion-api
- text-to-image
- ultra-realistic
pinned: true
---
# hc-any-v3-fp32-better-vae API Inference

## Get API Key
Get API key from [Stable Diffusion API](http://stablediffusionapi.com/), No Payment needed.
Replace Key in below code, change **model_id** to "hc-any-v3-fp32-bette"
Coding in PHP/Node/Java etc? Have a look at docs for more code examples: [View docs](https://stablediffusionapi.com/docs)
Model link: [View model](https://stablediffusionapi.com/models/hc-any-v3-fp32-bette)
Credits: [View credits](https://civitai.com/?query=hc-any-v3-fp32-better-vae)
View all models: [View Models](https://stablediffusionapi.com/models)
import requests
import json
url = "https://stablediffusionapi.com/api/v3/dreambooth"
payload = json.dumps({
"key": "",
"model_id": "hc-any-v3-fp32-bette",
"prompt": "actual 8K portrait photo of gareth person, portrait, happy colors, bright eyes, clear eyes, warm smile, smooth soft skin, big dreamy eyes, beautiful intricate colored hair, symmetrical, anime wide eyes, soft lighting, detailed face, by makoto shinkai, stanley artgerm lau, wlop, rossdraws, concept art, digital painting, looking into camera",
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
"width": "512",
"height": "512",
"samples": "1",
"num_inference_steps": "30",
"safety_checker": "no",
"enhance_prompt": "yes",
"seed": None,
"guidance_scale": 7.5,
"multi_lingual": "no",
"panorama": "no",
"self_attention": "no",
"upscale": "no",
"embeddings": "embeddings_model_id",
"lora": "lora_model_id",
"webhook": None,
"track_id": None
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
> Use this coupon code to get 25% off **DMGG0RBN** | [
-0.029845329001545906,
-0.03940713033080101,
-0.012164780870079994,
0.015939489006996155,
0.04120435193181038,
0.011806366965174675,
-0.0186447836458683,
-0.00467338040471077,
-0.011487438343465328,
0.04457762837409973,
0.03577898070216179,
0.0022074186708778143,
0.016457049176096916,
0.027258602902293205,
-0.021130505949258804,
-0.028090251609683037,
-0.045287083834409714,
0.013455057516694069,
-0.026906508952379227,
0.012901770882308483,
0.05484536290168762,
0.0222025029361248,
-0.0055551109835505486,
0.0023691498208791018,
-0.018444040790200233,
0.007697738707065582,
-0.016968615353107452,
0.0034525920636951923,
0.02219262532889843,
-0.03947365656495094,
-0.0237794928252697,
-0.04468565434217453,
-0.04135962948203087,
-0.0443032942712307,
-0.05994153395295143,
0.0037845633924007416,
0.02280203439295292,
0.030025554820895195,
0.018894121050834656,
0.05160678178071976,
0.0037576453760266304,
0.005515053402632475,
0.01892857439815998,
-0.013939292170107365,
0.062376949936151505,
0.0010321567533537745,
-0.045881785452365875,
-0.03670892491936684,
0.05144072324037552,
-0.012673855759203434,
-0.0838501825928688,
-0.07439574599266052,
-0.019373197108507156,
0.017527222633361816,
-0.0017861718079075217,
-0.02909078449010849,
-0.06599206477403641,
-0.01921059377491474,
0.04495297744870186,
-0.0662946030497551,
-0.01629842258989811,
0.0002777361951302737,
-0.06923503428697586,
0.003422036999836564,
0.017812466248869896,
-0.04000095650553703,
-0.0009586437372490764,
-0.04243873432278633,
0.026252124458551407,
-0.021763982251286507,
0.06899464130401611,
-0.05044116452336311,
0.033896058797836304,
-0.057377833873033524,
-0.006291336379945278,
-0.018526319414377213,
0.06343274563550949,
0.03497948870062828,
-0.036468684673309326,
0.05152200907468796,
0.016686663031578064,
0.02983853593468666,
0.03298909589648247,
-0.0032639908604323864,
-0.021528838202357292,
0.03579281270503998,
-0.03727921098470688,
0.027098461985588074,
0.0072649638168513775,
0.032636336982250214,
-0.051018714904785156,
-0.051905903965234756,
-0.007871957495808601,
-0.04272639378905296,
-0.0035128493327647448,
0.02246783673763275,
0.058060821145772934,
-0.013823842629790306,
0.02138298563659191,
0.020028315484523773,
0.024899501353502274,
0.04965594783425331,
-0.01605273224413395,
0.08627863973379135,
-0.020306408405303955,
-0.02886970154941082,
-0.032492492347955704,
-0.02483784779906273,
-0.042433641850948334,
0.0031443918123841286,
0.04663795977830887,
-0.017029017210006714,
-0.0130455968901515,
0.02285642921924591,
0.03716008737683296,
0.008786305785179138,
0.03769504651427269,
-0.01200784184038639,
-0.03527464717626572,
-0.08064916729927063,
0.046197302639484406,
0.032935772091150284,
-0.01780639961361885,
-0.0050831022672355175,
-0.04350005462765694,
0.02423005923628807,
-0.04079076647758484,
-0.027154352515935898,
0.005283993668854237,
0.02802308090031147,
-0.009059772826731205,
0.027327610179781914,
0.01430352870374918,
-0.07168784737586975,
-0.003557956777513027,
0.0395105816423893,
-0.0384322889149189,
0.03761842101812363,
-0.004324326757341623,
0.12124734371900558,
-0.06559471040964127,
-0.03533830866217613,
0.025933174416422844,
0.018519600853323936,
-0.045372359454631805,
0.03127146512269974,
0.010583029128611088,
-0.0543091781437397,
-0.00018119221203960478,
-0.01862487569451332,
0.03858897089958191,
-0.06323984265327454,
-0.028994712978601456,
0.02405107393860817,
0.008597414940595627,
0.043047383427619934,
-0.026712937280535698,
-0.01236262358725071,
-0.015627529472112656,
-0.00843772292137146,
-0.008073830045759678,
0.02611318603157997,
-0.008467510342597961,
-0.034350715577602386,
-0.01725471019744873,
-0.030646128579974174,
0.03504405915737152,
0.09074699878692627,
-0.023066267371177673,
-0.021164778620004654,
-0.05198704078793526,
0.009962085634469986,
0.036818455904722214,
0.03635288029909134,
-0.014092983677983284,
0.05761604383587837,
0.05803057923913002,
0.025291873142123222,
-0.04479700326919556,
0.056799162179231644,
0.014145725406706333,
-0.012883919291198254,
-0.004557507578283548,
-0.005710319150239229,
0.004379285965114832,
-0.022489091381430626,
-0.013384940102696419,
0.024632606655359268,
-0.020613770931959152,
-0.03224008530378342,
-0.006973652634769678,
0.06661941856145859,
-0.00019270907796453685,
-0.025933261960744858,
-0.005751725286245346,
-0.0023332599084824324,
-0.023061199113726616,
0.048099335283041,
-0.011939655058085918,
-0.006136855110526085,
-0.03428139165043831,
-0.022728148847818375,
0.003174245823174715,
0.010576963424682617,
0.030449308454990387,
0.04368627071380615,
-0.004260780289769173,
0.08769665658473969,
-0.029459640383720398,
0.030233260244131088,
-0.06902412325143814,
-0.06754554808139801,
0.015486175194382668,
0.05924598500132561,
0.026633067056536674,
0.028337884694337845,
-0.020117262378335,
-0.03007904253900051,
0.023218441754579544,
0.053045853972435,
0.043811019510030746,
0.02841775491833687,
-0.02052721567451954,
-0.013341578654944897,
0.031423505395650864,
0.029691550880670547,
-0.06292745471000671,
-0.04201335832476616,
0.02916126139461994,
0.033655811101198196,
-0.04471291974186897,
0.015982428565621376,
-0.00219541578553617,
0.020780719816684723,
-0.0504850409924984,
-0.0670715719461441,
0.03341260179877281,
0.04236657917499542,
0.005687379743903875,
0.03397490084171295,
0.007072152104228735,
-0.0036214804276823997,
0.03105068951845169,
-0.004313412122428417,
0.032131511718034744,
-0.06332819908857346,
0.008007153868675232,
0.011759762652218342,
0.06621801853179932,
-0.04993056878447533,
0.04877714440226555,
-0.007950715720653534,
0.041378170251846313,
0.04372837767004967,
-0.05755359306931496,
0.026200247928500175,
0.10166480392217636,
0.020296212285757065,
-0.04386325180530548,
0.06068130210042,
0.02367536351084709,
0.014712681993842125,
0.050741296261548996,
-0.005910727195441723,
0.05147440358996391,
-0.021328158676624298,
0.052323076874017715,
0.08630657941102982,
0.02984907478094101,
0.017828691750764847,
0.02820291928946972,
0.08531907200813293,
-0.026320692151784897,
-0.015093421563506126,
0.06154840439558029,
-0.042774319648742676,
0.033751148730516434,
-0.035176120698451996,
0.00047199625987559557,
-0.016657443717122078,
0.007387886289507151,
0.051930371671915054,
0.026812532916665077,
-0.04316234588623047,
-0.003709762590005994,
0.017324967309832573,
0.0021039159037172794,
0.031677380204200745,
-0.012675955891609192,
0.004161438439041376,
-0.013151729479432106,
-0.009459161199629307,
0.025052383542060852,
-0.06427251547574997,
-0.04809078201651573,
-0.02523677609860897,
-0.028580058366060257,
0.0184954646974802,
-0.07486683130264282,
-0.0165041945874691,
-0.07884082198143005,
0.00938675832003355,
0.04364173486828804,
0.008902134373784065,
-0.005536109209060669,
-0.04121488705277443,
0.02524111047387123,
-0.05395381525158882,
-0.059012770652770996,
-0.08221131563186646,
-0.04680294170975685,
-0.016913531348109245,
-0.07508210092782974,
0.05187710374593735,
0.016554493457078934,
0.033106934279203415,
-0.004462632350623608,
-0.0022719181142747402,
0.0014774412848055363,
-0.019284019246697426,
0.03553929179906845,
0.03321090713143349,
-0.02820517122745514,
-0.030668849125504494,
-0.004688045475631952,
-0.018735425546765327,
0.011095602996647358,
-0.009005483239889145,
-0.018604280427098274,
0.08886998891830444,
0.030779501423239708,
0.0029753174167126417,
-0.007691146340221167,
-0.00041045621037483215,
-0.02651168964803219,
-0.021309632807970047,
-0.03398214653134346,
-0.058278437703847885,
-0.03754352778196335,
-0.021477501839399338,
-0.05673416331410408,
-0.002735842252150178,
-0.04431941360235214,
-0.04463712126016617,
-0.008756602182984352,
-0.01718078926205635,
0.03626667708158493,
0.055258527398109436,
0.02812785841524601,
0.04828758165240288,
-0.03661276027560234,
-0.03990154340863228,
0.04753868281841278,
0.025497782975435257,
-0.012816643342375755,
-0.06212948262691498,
-0.01684962771832943,
0.011099044233560562,
0.01119394600391388,
-0.028804324567317963,
-0.014989164657890797,
0.06723660230636597,
0.029443519189953804,
-0.05197868123650551,
0.007662900723516941,
-0.02256493829190731,
-0.015244119800627232,
0.009199514053761959,
-0.005045412108302116,
-0.0031386620830744505,
-0.015354398638010025,
0.00923140812665224,
0.008039778098464012,
0.03782735392451286,
-0.06251507252454758,
-0.08669713884592056,
-0.0021754333283752203,
0.017503365874290466,
0.03898882493376732,
0.019673015922307968,
-0.051281269639730453,
-0.010132788680493832,
-0.06809394061565399,
-0.019583335146307945,
0.03166431933641434,
-0.012317126616835594,
0.01820426806807518,
0.025158429518342018,
0.015894955024123192,
-0.017496490851044655,
0.030771559104323387,
0.026039039716124535,
-0.0018614938016980886,
0.006020842120051384,
-0.02089560590684414,
-0.012479379773139954,
-0.02736879326403141,
0.016118718311190605,
0.006943392567336559,
-0.02317512407898903,
-0.06717163324356079,
-0.08930724859237671,
-0.00322193605825305,
0.02749091014266014,
-0.0010383215267211199,
0.015471642836928368,
0.05706434324383736,
0.005917191039770842,
0.0168354082852602,
0.004810249898582697,
0.023021427914500237,
0.04509681835770607,
-0.050941675901412964,
0.07313968241214752,
-0.015518969856202602,
-0.007514163851737976,
-0.0419265553355217,
0.01818947121500969,
-0.018818750977516174,
-0.04065607115626335,
0.017343832179903984,
0.04873433709144592,
0.023726632818579674,
0.08234293013811111,
0.03068564645946026,
0.019897008314728737,
-0.03998952731490135,
0.03997023403644562,
0.04152264818549156,
-0.023188073188066483,
-0.06282977759838104,
-0.006897586397826672,
-0.013428779318928719,
-0.0020533648785203695,
0.013339626602828503,
0.0004084603569936007,
0.03982958570122719,
0.03041459247469902,
-0.04015184938907623,
0.0030652026180177927,
0.002742237877100706,
-0.01368078775703907,
-0.008639585226774216,
-0.05041053891181946,
-0.00024963810574263334,
-0.0025678665842860937,
-0.009921260178089142,
0.0028755785897374153,
0.04239258915185928,
0.04917089268565178,
0.060387175530195236,
0.02756327949464321,
-0.013071872293949127,
-0.044709235429763794,
0.0381743423640728,
0.018455244600772858,
-0.02598973549902439,
-0.10403037071228027,
-0.038935694843530655,
0.00630205450579524,
0.03853154554963112,
-0.01765674538910389,
-0.08577759563922882,
0.055854737758636475,
0.04506905749440193,
-0.051649052649736404,
0.044899385422468185,
-0.001740204868838191,
0.01793815940618515,
0.062055397778749466,
0.006794456392526627,
0.031470682471990585,
-0.035350117832422256,
-0.0002755599853117019,
0.010285831987857819,
0.031104015186429024,
-0.022746121510863304,
-0.024059470742940903,
-0.03781883791089058,
0.03455547243356705,
0.016606861725449562,
0.028067929670214653,
0.04040294140577316,
-0.05145449563860893,
-0.04932068660855293,
-0.04189283773303032,
0.06763850152492523,
-0.02443751133978367,
0.032020337879657745,
0.04731176793575287,
0.031094808131456375,
-0.03477717190980911,
-0.03558538481593132,
0.010648312978446484,
-0.016023673117160797,
0.024660823866724968,
-0.0026877569034695625,
-0.04207009822130203,
-0.012781454250216484,
0.025959985330700874,
0.0026255943812429905,
-0.010573244653642178,
-0.0830271765589714,
0.025820724666118622,
-0.0358719602227211,
-0.0322968028485775,
0.040737055242061615,
0.008531532250344753,
0.05994769558310509,
0.06338023394346237,
-0.005909305065870285,
0.013791266828775406,
-0.0239469762891531,
0.019982261583209038,
-0.045058585703372955,
-0.004561943002045155,
-0.02547290548682213,
-0.06065507233142853,
-0.028289878740906715,
-0.015489989891648293,
-0.06090894341468811,
-0.03460444137454033,
-0.0016100305365398526,
0.03189757466316223,
-0.011507351882755756,
0.006993436254560947,
0.0020751783158630133,
0.009223776869475842,
-0.008976698853075504,
-0.025354359298944473,
-0.05420776456594467,
-0.028306638821959496,
-0.059806548058986664,
-0.03084012307226658,
0.041257813572883606,
0.012779277749359608,
0.03677557036280632,
-0.0066054523922502995,
0.0326571948826313,
0.029108606278896332,
0.020300747826695442,
-0.049151577055454254,
0.0236187856644392,
0.01876486837863922,
-0.03648089990019798,
-0.017940085381269455,
0.017119426280260086,
0.009124623611569405,
0.020244175568223,
-0.051984161138534546,
0.01640460267663002,
0.02303544245660305,
-0.02990882098674774,
-0.031108586117625237,
0.02917568013072014,
0.014945270493626595,
-0.04215254262089729,
0.0030130359809845686,
0.00604422390460968,
-0.03147624060511589,
0.030892429873347282,
-0.03279946744441986,
-0.015766609460115433,
0.0023313171695917845,
0.0032249153591692448,
0.039567071944475174,
-0.000019740284187719226,
-0.06586138904094696,
0.029696989804506302,
-0.012818091548979282,
0.03299274668097496,
-0.06236853078007698,
0.046173714101314545,
-0.014059689827263355,
0.01561055053025484,
-0.010409114882349968,
0.002842575078830123,
-0.023279961198568344,
0.05717522278428078,
-0.004905856680124998,
0.011540192179381847,
-0.02001084014773369,
0.027627605944871902,
-0.04312228783965111,
0.05470750108361244,
-0.020664598792791367,
0.007753794547170401,
-0.008902139961719513,
0.06030644476413727,
-0.04724859818816185,
0.005705995950847864,
-0.020209843292832375,
0.0037435905542224646,
-0.034792523831129074,
0.01347257848829031,
-0.014891961589455605,
-0.006533099338412285,
0.03162430226802826,
0.032168272882699966,
0.014497424475848675,
0.00963733159005642,
-0.054248470813035965,
0.0028857493307441473,
0.01098407432436943,
-0.05829522758722305,
-0.018198423087596893,
0.010839243419468403,
-0.0034958720207214355,
0.029824674129486084,
0.04819825291633606,
0.029805051162838936,
-0.04277898371219635,
-0.06231824681162834,
0.047063615173101425,
0.03788888826966286,
0.009923804551362991,
-0.018814021721482277,
0.010978324338793755,
0.02841774933040142,
0.030129950493574142,
-0.05324073135852814,
0.010020430199801922,
-0.01198859978467226,
0.007351900916546583,
0.0324799008667469,
-0.017187245190143585,
0.017911050468683243,
-0.01718876324594021,
-0.04814921319484711,
-0.011656254529953003,
0.06653226166963577,
0.033786848187446594,
0.042829614132642746,
0.00008762106153881177,
-0.04305686429142952,
0.03369899466633797,
0.02656419202685356,
-0.03974313288927078,
0.03003423474729061,
0.02798520214855671,
-0.010404988192021847,
0.03312065079808235,
-0.005806857720017433,
0.021165115758776665,
0.017100363969802856,
0.04436946660280228,
-0.029863828793168068,
0.06531871855258942,
-0.04734402522444725,
0.03916126862168312,
0.038941461592912674,
-0.06686205416917801,
-0.01075062621384859,
-0.03561543673276901,
0.07128205895423889,
-0.09248249977827072,
0.06353629380464554,
0.0323609784245491,
-0.024489006027579308,
0.011558117344975471,
-0.04716763645410538,
-0.03829177841544151,
0.03284348547458649,
-0.05837664753198624,
0.06794431060552597,
0.004631347954273224,
-0.06412458419799805,
0.07040029764175415,
0.022156665101647377,
-0.0728682354092598,
0.031861014664173126,
0.030074672773480415,
-0.019496427848935127,
0.006396294105798006,
0.04798485338687897,
-0.03400957211852074,
0.033325206488370895,
-0.05333631485700607,
0.04469279944896698,
-0.07184009999036789,
-0.04670688509941101,
0.011208073236048222,
-0.06450260430574417,
-0.03149598464369774,
0.02470133639872074,
-0.014804941602051258,
-0.006458759773522615,
0.03950464725494385,
-0.013818406499922276,
-0.028621429577469826,
0.006301745306700468,
0.002505980897694826,
0.008982124738395214,
0.007264949381351471,
-0.013736991211771965,
0.03406775742769241,
0.023440998047590256,
0.015931330621242523,
-0.030132956802845,
0.009434901177883148,
0.016408609226346016,
-0.06324534863233566,
-0.04655972495675087,
0.04813713952898979,
-0.006002483423799276,
-0.008842254057526588,
0.026724923402071,
0.01156105101108551,
0.028715893626213074,
0.01439918577671051,
-0.021433353424072266,
-0.012383420020341873,
-0.041776131838560104,
-0.025182029232382774,
0.015880612656474113,
0.021229732781648636,
0.029693232849240303,
-0.02116834558546543,
0.010058270767331123,
0.05794355273246765,
0.026723891496658325,
0.017907002940773964,
-0.016474884003400803,
-0.004178342409431934,
0.002568841679021716,
-0.06809651851654053,
0.007253236137330532,
-0.009444912895560265,
-0.029930448159575462,
-0.03542524203658104,
0.006399480625987053,
-0.02023203857243061,
0.039371997117996216,
-0.04081398621201515,
0.0376606360077858,
0.061022378504276276,
-0.004741470795124769,
-0.054596733301877975,
-0.09555099904537201,
-0.025220222771167755,
-0.06470993161201477,
0.018117286264896393,
0.0016463713254779577,
-0.06286744773387909,
-0.0012596786255016923,
-0.03464260697364807,
-0.06496827304363251,
0.014509202912449837,
-0.01891246624290943,
-0.011984322220087051,
0.0534994974732399,
0.052510544657707214,
-0.017688388004899025,
0.01602727174758911,
0.004790828097611666,
-0.03275781497359276,
-0.008377882651984692,
-0.007614679168909788,
-0.0006150309927761555,
0.024602368474006653,
0.03228204697370529,
-0.02158915251493454,
0.008858155459165573,
-0.019958866760134697,
-0.05255551263689995,
-0.048592425882816315,
-0.010914603248238564,
0.06266548484563828
] |
ActivationAI/distilbert-base-uncased-finetuned-emotion | [
"pytorch",
"tensorboard",
"distilbert",
"text-classification",
"dataset:emotion",
"transformers",
"generated_from_trainer",
"license:apache-2.0",
"model-index"
] | text-classification | {
"architectures": [
"DistilBertForSequenceClassification"
],
"model_type": "distilbert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 36 | 2023-05-17T14:44:39Z | ---
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: 266.10 +/- 20.81
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.03727755695581436,
-0.002862154971808195,
-0.005398944485932589,
0.025598639622330666,
0.045709311962127686,
-0.02125483751296997,
-0.005454290192574263,
-0.027955804020166397,
-0.03303873538970947,
0.06641091406345367,
0.032710473984479904,
-0.023677555844187737,
0.02283835969865322,
0.0012618775945156813,
-0.03383101522922516,
-0.026012053713202477,
0.0010378361912444234,
-0.014219098724424839,
-0.01960853300988674,
0.027104414999485016,
0.005129953380674124,
0.036044955253601074,
-0.025525765493512154,
0.03573652356863022,
-0.004053316079080105,
0.03843957185745239,
-0.02313809096813202,
0.05729353427886963,
0.016711045056581497,
-0.04339732229709625,
-0.005736414343118668,
-0.04132566973567009,
-0.02066732943058014,
-0.020385077223181725,
-0.013576856814324856,
0.013934248127043247,
0.0165609922260046,
0.02039637416601181,
0.009554190561175346,
0.03387123718857765,
-0.01243553776293993,
0.02272825874388218,
0.02991729974746704,
-0.002500317757949233,
0.021382972598075867,
-0.011065072380006313,
-0.04925275593996048,
0.010214383713901043,
0.05605987459421158,
-0.0004509358841460198,
-0.04767567291855812,
-0.06222651153802872,
0.02261492609977722,
0.030945613980293274,
-0.0009329632157459855,
-0.01296278741210699,
-0.04284851625561714,
-0.004648047033697367,
0.06194639950990677,
-0.04350731149315834,
-0.04746057838201523,
-0.008006810210645199,
-0.044909365475177765,
0.010313262231647968,
0.026282597333192825,
0.000157531161676161,
0.018641313537955284,
-0.04715248942375183,
0.03586733713746071,
-0.025933705270290375,
0.06957625597715378,
-0.02167706936597824,
0.01375939603894949,
-0.057435136288404465,
-0.0008647985523566604,
0.008916639722883701,
0.03788251802325249,
0.03429779037833214,
-0.013981340453028679,
0.08794928342103958,
0.028657086193561554,
0.012686647474765778,
0.04432317242026329,
0.01318664662539959,
0.01261583436280489,
0.004770053084939718,
-0.03952615335583687,
0.0062500773929059505,
0.021247074007987976,
0.028682705014944077,
-0.011878619901835918,
-0.040771178901195526,
-0.039855360984802246,
-0.022066716104745865,
-0.00016648285964038223,
0.028913704678416252,
0.04701550677418709,
0.00173452019225806,
0.06622446328401566,
0.015550259500741959,
0.002521343296393752,
0.03128433972597122,
-0.031104978173971176,
0.061769191175699234,
-0.014652526937425137,
-0.01974632777273655,
-0.013731284998357296,
-0.023039832711219788,
-0.041222043335437775,
0.054018933326005936,
0.03229055181145668,
-0.047521039843559265,
-0.03707490861415863,
0.04579742252826691,
0.028676295652985573,
-0.021092314273118973,
0.030973507091403008,
-0.03312205895781517,
-0.04019605368375778,
-0.06383976340293884,
0.07063118368387222,
-0.005339352879673243,
-0.007903536781668663,
-0.04036818444728851,
-0.028586801141500473,
-0.017980987206101418,
-0.05242807790637016,
-0.02556714601814747,
-0.025596069172024727,
0.018938083201646805,
0.010036783292889595,
0.032126497477293015,
0.015026369132101536,
-0.08601345121860504,
0.012943580746650696,
-0.011319957673549652,
-0.0875614732503891,
0.029525749385356903,
0.0032678418792784214,
0.14419205486774445,
-0.06081906333565712,
-0.05706442520022392,
0.0271997582167387,
-0.0130538959056139,
-0.05679574981331825,
0.010863997042179108,
-0.0046948017552495,
-0.041439272463321686,
-0.009526868350803852,
-0.027394235134124756,
0.08023211359977722,
-0.05414937436580658,
-0.02258949913084507,
0.059132982045412064,
0.00326741230674088,
0.02220287173986435,
-0.007363921031355858,
0.006822996307164431,
-0.0030162602197378874,
-0.04625866934657097,
-0.00446073105558753,
0.07053360342979431,
-0.01740841194987297,
-0.0324544720351696,
-0.04217052087187767,
-0.0074903531931340694,
0.013521929271519184,
0.07822166383266449,
-0.006961239036172628,
-0.02243513986468315,
-0.02304863929748535,
0.03235820680856705,
0.01705547422170639,
0.018001895397901535,
-0.004153328016400337,
0.03867949917912483,
0.05506999045610428,
0.012424755841493607,
-0.020101606845855713,
0.03999679163098335,
0.025509977713227272,
-0.01844603754580021,
-0.005142722744494677,
0.0022805873304605484,
0.005301284603774548,
0.0011341760400682688,
-0.006367280147969723,
0.029383696615695953,
0.0038891565054655075,
-0.03685525059700012,
-0.02517601288855076,
0.01914522424340248,
0.012167231179773808,
0.007243029307574034,
-0.001680325367487967,
0.011934677138924599,
0.015078224241733551,
0.04177498817443848,
-0.005706744268536568,
-0.014366308227181435,
-0.03386620432138443,
-0.019178682938218117,
0.02838739939033985,
0.008044041693210602,
0.04148828610777855,
0.01095020305365324,
-0.013483081944286823,
0.09218726307153702,
-0.04407411441206932,
0.041858311742544174,
-0.07422162592411041,
-0.050415053963661194,
0.0032352572306990623,
0.03301296383142471,
0.06561040878295898,
0.044353142380714417,
-0.021669287234544754,
-0.044366464018821716,
0.028635090216994286,
0.04439985752105713,
0.059494588524103165,
0.017227713018655777,
-0.041356321424245834,
-0.01450210902839899,
0.03116801381111145,
0.020721042528748512,
-0.02514486387372017,
-0.03924150392413139,
0.013641455210745335,
0.04816225543618202,
0.023373490199446678,
0.0250178724527359,
-0.03249762952327728,
0.024690993130207062,
-0.037921588867902756,
-0.060719333589076996,
0.03979078680276871,
0.026064304634928703,
0.014261385425925255,
0.016775669530034065,
-0.015142804943025112,
0.04105013236403465,
0.01883227750658989,
0.020736759528517723,
0.006117903161793947,
-0.04943695664405823,
0.013366022147238255,
0.030747784301638603,
0.0632786974310875,
-0.03260288015007973,
0.056563910096883774,
-0.004889496602118015,
0.0004127503198105842,
0.0422934852540493,
-0.047423575073480606,
0.015807142481207848,
0.08723583072423935,
0.030496720224618912,
-0.014523748308420181,
0.01900888979434967,
0.005301290657371283,
0.045980148017406464,
0.03343966230750084,
-0.009858584962785244,
0.0689091607928276,
-0.014390820637345314,
0.04667956382036209,
0.06918308138847351,
0.03978041931986809,
-0.005141965113580227,
0.026914969086647034,
0.0758010670542717,
0.003676897380501032,
0.010399730876088142,
0.047988198697566986,
-0.03498117998242378,
0.019603542983531952,
-0.037181589752435684,
0.010558717884123325,
-0.025590695440769196,
-0.00609730277210474,
0.05853278562426567,
0.010245481505990028,
-0.04215237870812416,
-0.018531905487179756,
-0.00012366297596599907,
0.009443046525120735,
-0.006314372643828392,
-0.010889915749430656,
0.0022021227050572634,
0.005251138471066952,
-0.005499564576894045,
-0.008061517030000687,
-0.08454941213130951,
-0.08346159011125565,
-0.027415022253990173,
-0.014899819158017635,
-0.01944739930331707,
-0.07031453400850296,
-0.04329662024974823,
-0.07123655825853348,
-0.013288870453834534,
0.019624022766947746,
-0.021609308198094368,
0.002716079819947481,
-0.05745209380984306,
0.010312340222299099,
-0.0513274222612381,
-0.015144456177949905,
-0.05456072464585304,
-0.06539644300937653,
-0.038667310029268265,
-0.05736399441957474,
0.03212480619549751,
0.021495139226317406,
0.03478223457932472,
-0.0037666228599846363,
-0.0034610573202371597,
-0.02153031900525093,
-0.03835291787981987,
0.055028364062309265,
0.04757620766758919,
-0.017305482178926468,
-0.04345986992120743,
0.012790407054126263,
-0.004141011741012335,
0.026290085166692734,
0.01027349941432476,
-0.03364678844809532,
0.08321288228034973,
0.06181127205491066,
-0.0077235642820596695,
-0.006805017590522766,
-0.00663715461269021,
-0.04594944044947624,
-0.04250844568014145,
-0.04871212691068649,
-0.048373255878686905,
-0.016099384054541588,
-0.04702619090676308,
-0.029377155005931854,
-0.009485944174230099,
-0.012156335636973381,
-0.016429923474788666,
-0.033868078142404556,
-0.001613109023310244,
0.03780572861433029,
0.08339782804250717,
0.006683440413326025,
0.03819088265299797,
-0.057469259947538376,
-0.020200764760375023,
0.0485963374376297,
0.021580111235380173,
0.012130062095820904,
-0.0702853873372078,
-0.02455034852027893,
0.008157283067703247,
0.009536655619740486,
0.00221652933396399,
-0.00018383399583399296,
0.06111275032162666,
0.03450679033994675,
-0.006225964054465294,
0.03031320311129093,
-0.028990209102630615,
-0.02032916434109211,
-0.03791286051273346,
0.004497177433222532,
-0.010910570621490479,
-0.021548444405198097,
0.01708832196891308,
0.0007392678526230156,
0.01056817825883627,
-0.054513197392225266,
-0.05237783491611481,
-0.035871297121047974,
-0.004338779952377081,
0.054398372769355774,
0.0015748145524412394,
-0.04993652552366257,
-0.03293799236416817,
-0.06875624507665634,
0.010910346172749996,
0.039572540670633316,
-0.013075022958219051,
0.008444063365459442,
0.02773096039891243,
0.034837398678064346,
-0.001213281648233533,
0.03809555247426033,
0.03938083350658417,
0.06029663607478142,
0.01644708216190338,
-0.045671217143535614,
0.001255237148143351,
-0.025684984400868416,
0.03969871625304222,
0.008611953817307949,
-0.014451136812567711,
-0.03307089954614639,
-0.10062165558338165,
-0.027945468202233315,
0.023547807708382607,
-0.018315834924578667,
0.005558612756431103,
0.03015792928636074,
-0.01641271822154522,
-0.00795089639723301,
0.0016066082753241062,
-0.0037462334148585796,
0.05054282397031784,
-0.04039815068244934,
0.05769755691289902,
-0.0058983322232961655,
0.02433149889111519,
-0.04322502017021179,
0.027055228129029274,
-0.015617640689015388,
-0.01222301833331585,
-0.003746518399566412,
0.030431272462010384,
0.045712318271398544,
0.06708318740129471,
0.05317511782050133,
0.017942069098353386,
-0.06294489651918411,
0.032439809292554855,
0.059767499566078186,
-0.038874778896570206,
-0.07293789088726044,
-0.028779255226254463,
0.02165287919342518,
-0.010314763523638248,
0.014448996633291245,
-0.008265228942036629,
0.018633395433425903,
0.05863288789987564,
-0.01796264946460724,
-0.019588787108659744,
-0.0002963364531751722,
-0.0086504016071558,
-0.03270494192838669,
-0.022259976714849472,
-0.0033418131060898304,
0.014310109429061413,
-0.016042467206716537,
0.00505131995305419,
0.0436200387775898,
0.024569503962993622,
0.04599016159772873,
0.06421476602554321,
-0.007306491490453482,
-0.046003248542547226,
0.05415128543972969,
0.005559954326599836,
-0.024013765156269073,
-0.08811339735984802,
-0.028877299278974533,
0.023439733311533928,
0.035002537071704865,
0.010138947516679764,
-0.06362661719322205,
0.013585533015429974,
0.02682146243751049,
-0.07016068696975708,
0.053879816085100174,
-0.008482901379466057,
0.016125371679663658,
0.040402766317129135,
0.015899043530225754,
0.03552524372935295,
-0.03716696426272392,
-0.029354041442275047,
0.006783844903111458,
0.03855904936790466,
-0.012692160904407501,
-0.026674814522266388,
-0.02179420180618763,
0.03461940586566925,
0.04203404486179352,
0.06090880185365677,
0.03732601925730705,
-0.04883459582924843,
-0.06983602046966553,
-0.04158729314804077,
0.022562801837921143,
-0.03800396993756294,
-0.0019010126125067472,
0.04940011352300644,
0.04598917439579964,
-0.05853269621729851,
-0.04840482026338577,
-0.031149819493293762,
-0.01187108177691698,
0.03127134218811989,
0.010956349782645702,
-0.020247092470526695,
-0.010659614577889442,
0.04399744048714638,
-0.006623375695198774,
-0.029634850099682808,
-0.06369193643331528,
0.011509343981742859,
0.016646282747387886,
0.006364802364259958,
0.02790059894323349,
0.03199612349271774,
0.05765218660235405,
0.06473997235298157,
0.038482312113046646,
0.01088323350995779,
-0.0436030738055706,
0.031023649498820305,
-0.03919854387640953,
-0.027113202959299088,
0.003345692763105035,
-0.07173526287078857,
0.0028991922736167908,
-0.018709955736994743,
-0.02297866716980934,
-0.04060732200741768,
-0.023862164467573166,
0.020721828565001488,
0.006433776579797268,
0.0022798709105700254,
0.013196992687880993,
0.05334967002272606,
0.005541967228055,
-0.04905280843377113,
-0.0319124199450016,
-0.023709749802947044,
-0.0615670308470726,
-0.06241495907306671,
0.036544330418109894,
-0.007532367017120123,
0.011435908265411854,
0.01850825361907482,
0.05128956213593483,
0.03085913509130478,
0.025904176756739616,
-0.028103042393922806,
0.022154973819851875,
0.0038364888168871403,
-0.04243548959493637,
0.012316035106778145,
0.0156878549605608,
0.010931812226772308,
0.05919494107365608,
-0.013878587633371353,
0.02672542817890644,
-0.0017484212294220924,
-0.026507599279284477,
-0.021161554381251335,
0.010044503025710583,
0.030574925243854523,
-0.04429984837770462,
-0.02502433955669403,
0.009914313443005085,
-0.03263110667467117,
0.026466675102710724,
-0.018264848738908768,
-0.021311236545443535,
-0.017315993085503578,
0.005768523085862398,
0.03332918882369995,
-0.01166010182350874,
-0.055224720388650894,
0.02813926339149475,
-0.04840505123138428,
0.04423408582806587,
-0.07081125676631927,
0.02425975911319256,
-0.039222218096256256,
0.03592688590288162,
-0.01823120005428791,
-0.008457140065729618,
-0.0374782457947731,
0.044768206775188446,
0.016244061291217804,
-0.02761887013912201,
-0.036420583724975586,
0.03578333929181099,
-0.01057474222034216,
0.025449508801102638,
-0.021205635741353035,
0.01710294559597969,
-0.007404207251966,
0.03612209111452103,
-0.012846238911151886,
0.036061372607946396,
-0.01203871238976717,
0.046817436814308167,
-0.039362043142318726,
0.000021819336325279437,
-0.033049166202545166,
-0.03519550710916519,
0.020452158525586128,
0.041756123304367065,
0.025912592187523842,
0.020530831068754196,
-0.014236483722925186,
0.01778070628643036,
0.013416405767202377,
-0.03997425734996796,
-0.0334286242723465,
0.007858829572796822,
0.014749943278729916,
0.020886745303869247,
0.05236530303955078,
0.03203917294740677,
-0.07231114059686661,
-0.036154426634311676,
0.06084531173110008,
0.004897609818726778,
0.024294426664710045,
-0.0014704217901453376,
0.03568918630480766,
0.03394335135817528,
0.05065033584833145,
-0.04657573997974396,
0.019855618476867676,
0.0026206201873719692,
-0.008189400658011436,
0.025684572756290436,
-0.029464444145560265,
0.024864163249731064,
0.021233178675174713,
-0.045086439698934555,
-0.01669204607605934,
0.0723886713385582,
0.03490498661994934,
-0.008095801807940006,
-0.027020158246159554,
-0.038880184292793274,
0.03785119578242302,
0.0004930313443765044,
-0.044440072029829025,
0.01821148581802845,
0.02152424491941929,
-0.016766754910349846,
0.06296823918819427,
-0.035674143582582474,
0.00901678204536438,
0.03964604437351227,
0.05615520849823952,
-0.02286628447473049,
0.06573142856359482,
-0.013666457496583462,
0.06052934750914574,
0.036552101373672485,
-0.07087282091379166,
-0.014901869930326939,
-0.053589414805173874,
0.08718385547399521,
-0.07108159363269806,
0.07893826812505722,
0.04164249449968338,
0.008576318621635437,
0.03070463053882122,
-0.016350112855434418,
-0.046586379408836365,
-0.01325287763029337,
-0.04866741970181465,
0.07392927259206772,
0.0064707850106060505,
-0.04632224515080452,
0.06716586649417877,
0.022720370441675186,
-0.05816883221268654,
0.053514692932367325,
0.024662993848323822,
0.019328271970152855,
0.0013558303471654654,
0.047792088240385056,
-0.050520457327365875,
0.016344958916306496,
-0.06130281463265419,
0.053896863013505936,
-0.051089972257614136,
-0.0038141326513141394,
0.02633952721953392,
-0.05355190113186836,
-0.022452697157859802,
0.048661187291145325,
-0.01387923676520586,
-0.01532574649900198,
0.036021146923303604,
-0.05765338987112045,
-0.06765350699424744,
0.012549118138849735,
-0.0073066032491624355,
0.023317137733101845,
0.012032839469611645,
-0.03424324467778206,
0.034579407423734665,
0.038477469235658646,
0.013881029561161995,
-0.03461461514234543,
0.009366367012262344,
0.02352600172162056,
-0.03756340220570564,
-0.026575135067105293,
0.05368366837501526,
0.01346407551318407,
-0.03572871536016464,
0.003274498740211129,
0.0037755551747977734,
0.003989077173173428,
0.02446644939482212,
0.014306130819022655,
0.01672777161002159,
-0.055815842002630234,
-0.033907629549503326,
0.029989857226610184,
-0.01838614046573639,
0.02652595564723015,
-0.03255774825811386,
0.00847255066037178,
0.021144770085811615,
0.018246660009026527,
0.0028502382338047028,
-0.0371289998292923,
0.014054697938263416,
0.03394470363855362,
-0.055797480046749115,
0.0020371759310364723,
0.0048789093270897865,
-0.052581992000341415,
-0.027139076963067055,
-0.0320979468524456,
-0.019383076578378677,
0.00817952211946249,
-0.029686953872442245,
-0.015419865027070045,
0.05368216335773468,
0.015574226155877113,
-0.05523283779621124,
-0.10124732553958893,
-0.005185290239751339,
-0.04116763919591904,
0.033134955912828445,
0.027019096538424492,
-0.04876045882701874,
-0.011627523228526115,
-0.03151298686861992,
-0.05403253436088562,
0.06414011865854263,
0.04038373753428459,
-0.023563187569379807,
0.0618826188147068,
0.049578502774238586,
-0.017683645710349083,
0.010246706195175648,
0.003972201142460108,
-0.055951349437236786,
0.0038243390154093504,
0.025501679629087448,
0.022000079974532127,
0.025495782494544983,
0.0071226926520466805,
-0.022683333605527878,
-0.022154850885272026,
-0.02738015539944172,
-0.046517349779605865,
-0.024625273421406746,
0.02790270932018757,
0.07044079899787903
] |
AdWeeb/HTI_mbert | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | 2023-05-17T14:45:22Z | ---
tags:
- Taxi-v3
- q-learning
- reinforcement-learning
- custom-implementation
model-index:
- name: q-Taxi-v3
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: Taxi-v3
type: Taxi-v3
metrics:
- type: mean_reward
value: 7.44 +/- 2.73
name: mean_reward
verified: false
---
# **Q-Learning** Agent playing1 **Taxi-v3**
This is a trained model of a **Q-Learning** agent playing **Taxi-v3** .
## Usage
```python
model = load_from_hub(repo_id="kekstroke/q-Taxi-v3", filename="q-learning.pkl")
# Don't forget to check if you need to add additional attributes (is_slippery=False etc)
env = gym.make(model["env_id"])
```
| [
-0.015135408379137516,
-0.021615564823150635,
-0.007397244684398174,
0.022931355983018875,
0.04738180711865425,
-0.00048392871394753456,
-0.018170787021517754,
0.0047845058143138885,
-0.04171835631132126,
0.053547367453575134,
0.018842730671167374,
-0.0040398258715868,
0.01359641458839178,
0.027524452656507492,
-0.05150619521737099,
-0.042188629508018494,
-0.0028788463678210974,
-0.014817900024354458,
-0.02160590887069702,
-0.004876709543168545,
-0.02094186283648014,
0.007223872933536768,
-0.020364470779895782,
0.028635794296860695,
-0.004216764122247696,
0.023241061717271805,
-0.01696150191128254,
0.0486278235912323,
0.02166661247611046,
-0.06386277079582214,
-0.008587083779275417,
-0.02801203355193138,
-0.05455540120601654,
-0.008726763539016247,
-0.015223766677081585,
-0.02983260154724121,
0.011736034415662289,
0.025093017145991325,
-0.008830339647829533,
0.02608470246195793,
-0.016298670321702957,
0.023500492796301842,
0.03588436171412468,
-0.0396125502884388,
0.028791286051273346,
-0.021382220089435577,
-0.004989321809262037,
-0.0008933623321354389,
0.02523745782673359,
-0.015069367364048958,
-0.09606991708278656,
-0.0711725652217865,
-0.02334297075867653,
0.02104509435594082,
-0.026716364547610283,
-0.037891484797000885,
-0.025843555107712746,
-0.009697459638118744,
0.06250163912773132,
-0.07187999784946442,
-0.034981515258550644,
0.014304101467132568,
-0.06485465914011002,
-0.005522406660020351,
0.0001279967400478199,
-0.02465822920203209,
0.000657515658531338,
-0.058548640459775925,
0.008244375698268414,
-0.01478336751461029,
0.08152265101671219,
-0.047977324575185776,
0.006449067033827305,
-0.0685993880033493,
0.02089296281337738,
-0.013429424725472927,
0.0004836335720028728,
0.050150636583566666,
-0.04246354103088379,
0.04603975638747215,
0.014352298341691494,
0.035176102072000504,
0.031000953167676926,
-0.01955125667154789,
0.006028844974935055,
0.0280180424451828,
-0.03609712794423103,
-0.001082360278815031,
-0.010655711404979229,
0.03101169690489769,
-0.007847023196518421,
-0.02101065218448639,
-0.022014042362570763,
-0.01400487869977951,
-0.004712298512458801,
0.021437272429466248,
0.03770710155367851,
0.002781757852062583,
0.05907796323299408,
0.019464358687400818,
0.06327147036790848,
0.015572324395179749,
-0.0018400587141513824,
0.04479832947254181,
-0.0011641733581200242,
0.007216713856905699,
0.009821213781833649,
-0.021516095846891403,
-0.01749901846051216,
0.028183571994304657,
0.025553368031978607,
-0.048334863036870956,
-0.04386262595653534,
0.03474712371826172,
0.003882909193634987,
0.02102823741734028,
0.07306994497776031,
-0.03316105902194977,
-0.014349629171192646,
-0.07621373236179352,
0.06916151195764542,
0.014431964606046677,
0.015475072897970676,
-0.022796770557761192,
-0.02178134024143219,
-0.0063628507778048515,
-0.06240500882267952,
-0.037168897688388824,
-0.02033759467303753,
0.037074461579322815,
0.00011784760135924444,
0.04866436496376991,
0.004216910805553198,
-0.059215251356363297,
0.001356539549306035,
0.00942271389067173,
-0.08071622997522354,
0.02944347821176052,
-0.005525991786271334,
0.10930194705724716,
-0.04679252579808235,
-0.06088583171367645,
-0.0019201230024918914,
0.013792883604764938,
-0.010994642972946167,
-0.0006061694002710283,
-0.010945076122879982,
-0.03151590749621391,
-0.025714855641126633,
-0.013826722279191017,
0.05412142723798752,
-0.06899838894605637,
-0.046005863696336746,
0.051555708050727844,
0.012889202684164047,
0.04315679892897606,
-0.0314907431602478,
0.02659059502184391,
0.0017358066979795694,
-0.014026596210896969,
-0.047098416835069656,
0.06273455917835236,
-0.02787019871175289,
-0.027823615819215775,
-0.031053846701979637,
-0.04685043543577194,
0.01263123657554388,
0.09235377609729767,
0.009432305581867695,
-0.003942976240068674,
-0.024133112281560898,
0.01603543758392334,
0.02103124000132084,
-0.005240010563284159,
-0.003766352776437998,
0.021571306511759758,
0.05321893095970154,
0.03504442051053047,
-0.03900771215558052,
0.03435973823070526,
0.028872353956103325,
-0.047713425010442734,
-0.015185288153588772,
0.01409818697720766,
0.006567420903593302,
-0.016052160412073135,
0.028033731505274773,
0.011839856393635273,
-0.008591201156377792,
-0.05680559575557709,
0.009165072813630104,
0.060025349259376526,
0.008207009173929691,
0.021323585882782936,
-0.023513635620474815,
-0.013676784932613373,
-0.03778647258877754,
0.04920253902673721,
-0.0070572360418736935,
-0.03949442878365517,
-0.04094496741890907,
-0.023208368569612503,
0.030936487019062042,
0.018011530861258507,
0.0014760370831936598,
0.020670810714364052,
-0.01682194136083126,
0.0796523168683052,
-0.03751126304268837,
0.011119533330202103,
-0.05181107670068741,
-0.027299199253320694,
0.01695665903389454,
0.05275585129857063,
0.0241500586271286,
0.030784161761403084,
-0.009730145335197449,
-0.0709381103515625,
0.01282501220703125,
0.046711184084415436,
0.04463597387075424,
-0.007831274531781673,
-0.012787156738340855,
-0.00618578027933836,
0.02210254967212677,
0.04358630254864693,
-0.04798538237810135,
-0.030874211341142654,
0.01713712140917778,
0.05773225054144859,
-0.010803621262311935,
0.006491044070571661,
-0.04493298754096031,
0.015067365020513535,
-0.05630428344011307,
-0.06826145201921463,
0.04102998971939087,
0.04344775527715683,
0.02442343719303608,
0.03342796862125397,
0.002448352752253413,
0.007146097254008055,
0.013837420381605625,
0.03694206848740578,
0.0065204184502363205,
-0.040270376950502396,
0.0034767782781273127,
0.04017392173409462,
0.06935400515794754,
-0.042254384607076645,
0.034231215715408325,
0.0049490793608129025,
0.0034384431783109903,
0.051395583897829056,
-0.06963701546192169,
0.03489421308040619,
0.05662825331091881,
0.012254558503627777,
-0.008791941218078136,
0.013168117962777615,
-0.011595581658184528,
0.016595343127846718,
0.046955656260252,
-0.02693548984825611,
0.0674193724989891,
-0.011941803619265556,
0.02484331652522087,
0.06922579556703568,
0.027337750419974327,
-0.0029133488424122334,
0.020719964057207108,
0.08916798233985901,
0.016945818439126015,
-0.007155113387852907,
0.0370045006275177,
-0.05637660250067711,
0.05363120883703232,
-0.04647892713546753,
-0.0006930435774847865,
-0.008848587982356548,
-0.024771543219685555,
0.06063554435968399,
0.04725433886051178,
-0.020230265334248543,
0.01923176273703575,
0.00455462746322155,
-0.011355963535606861,
0.0291229747235775,
-0.04216991737484932,
-0.004698452539741993,
0.02574874833226204,
-0.0006381529965437949,
0.0016543871024623513,
-0.07727145403623581,
-0.08072970062494278,
-0.040663208812475204,
-0.013568976894021034,
0.011023941449820995,
-0.06079607084393501,
-0.04097999259829521,
-0.08547575026750565,
-0.023608459159731865,
0.03732558339834213,
0.01133027020841837,
-0.00908699445426464,
-0.08181429654359818,
0.005803482607007027,
-0.03728104382753372,
-0.016359012573957443,
-0.045690570026636124,
-0.044524144381284714,
-0.05832266807556152,
-0.06258545815944672,
0.03881564363837242,
0.023132629692554474,
0.023754749447107315,
0.011884246952831745,
-0.0007890579872764647,
-0.03458600863814354,
-0.03001803159713745,
0.03784278780221939,
0.030116772279143333,
-0.012099629268050194,
-0.06823641806840897,
0.02128704823553562,
-0.011692634783685207,
0.005880833603441715,
-0.006800258066505194,
-0.03965706005692482,
0.08154374361038208,
0.048672374337911606,
0.022533584386110306,
-0.007179541978985071,
-0.006647896487265825,
-0.05452950298786163,
-0.04004797711968422,
-0.013089912943542004,
-0.029804952442646027,
-0.0014102550921961665,
-0.020897286012768745,
-0.04139835759997368,
0.0006614089361391962,
-0.036828719079494476,
-0.014556363224983215,
-0.009678183123469353,
0.015575227327644825,
0.03687535226345062,
0.06605183333158493,
0.030874980613589287,
0.05155772715806961,
-0.04803046956658363,
-0.019882773980498314,
0.035854827612638474,
0.005063659977167845,
0.0025125618558377028,
-0.0804515853524208,
-0.05027126520872116,
0.049275681376457214,
-0.006250500679016113,
0.02445434033870697,
-0.013487538322806358,
0.08071599900722504,
0.00018778805679176003,
-0.01944538950920105,
0.03779800608754158,
-0.011872285977005959,
-0.01188579946756363,
-0.04071599617600441,
0.005282950587570667,
-0.031721677631139755,
-0.0357147715985775,
-0.014307191595435143,
0.02102501504123211,
0.03436334803700447,
-0.05770094692707062,
-0.051281753927469254,
0.011234389618039131,
0.01826961524784565,
0.05784059688448906,
-0.0011050461325794458,
-0.0634390115737915,
-0.007411725353449583,
-0.04792603477835655,
-0.002548591000959277,
0.009274750016629696,
0.007789278402924538,
0.006026489660143852,
0.020732184872031212,
0.029792118817567825,
-0.026270026341080666,
0.039950668811798096,
0.0120483273640275,
0.03326771780848503,
0.0072717973962426186,
-0.04159028083086014,
-0.00618209782987833,
-0.0006432363297790289,
0.05146179720759392,
0.0038715610280632973,
0.0007474384037777781,
-0.02948862873017788,
-0.1096511036157608,
-0.021716047078371048,
0.0014261957257986069,
-0.04294268414378166,
0.004618594888597727,
0.05152396112680435,
-0.017358778044581413,
-0.007479488849639893,
-0.014329475350677967,
0.014987113885581493,
0.03386750817298889,
-0.05471913889050484,
0.052621446549892426,
-0.008858554996550083,
0.0396236926317215,
-0.03747747093439102,
0.01563735492527485,
-0.02150941640138626,
0.006073995493352413,
-0.0027101789601147175,
0.024508193135261536,
0.04492264240980148,
0.09742739051580429,
0.06655215471982956,
0.004202332813292742,
-0.037895623594522476,
0.04903576150536537,
0.06992305815219879,
-0.05111610144376755,
-0.03895769640803337,
0.005213585216552019,
0.015962883830070496,
0.014803911559283733,
-0.013430622406303883,
-0.013206470757722855,
-0.009376822970807552,
0.05525040626525879,
-0.0011568121844902635,
-0.0012512154644355178,
-0.00883045606315136,
-0.026605986058712006,
-0.03743572533130646,
-0.05671408772468567,
-0.010245723649859428,
0.04396486282348633,
0.018009087070822716,
0.03473110496997833,
0.05548541620373726,
0.03298332542181015,
0.042077116668224335,
0.04479510337114334,
-0.028068702667951584,
-0.04710366204380989,
0.03937366604804993,
0.019286256283521652,
-0.026741739362478256,
-0.0758320763707161,
-0.060637831687927246,
0.01864881068468094,
0.02140774391591549,
-0.029644116759300232,
-0.056986384093761444,
0.0171229038387537,
0.05506730452179909,
-0.04216676950454712,
0.0736195296049118,
-0.006294333841651678,
0.015493610873818398,
0.062118105590343475,
-0.022056857123970985,
0.028830237686634064,
-0.019195202738046646,
-0.017168795689940453,
0.003424746450036764,
0.02179807238280773,
0.004126423969864845,
-0.021724656224250793,
-0.03395228087902069,
0.04442055523395538,
0.02041211910545826,
0.05547771975398064,
0.03949105367064476,
-0.02641136944293976,
-0.05273071676492691,
0.0001650208287173882,
0.052289001643657684,
-0.022205259650945663,
-0.006279977038502693,
0.05615870654582977,
0.030519869178533554,
-0.054498668760061264,
-0.03823220357298851,
-0.007643456570804119,
-0.009039493277668953,
0.016796432435512543,
0.013555450364947319,
-0.04193492978811264,
-0.04050995036959648,
0.022746741771697998,
-0.007466710638254881,
-0.025252029299736023,
-0.0851762443780899,
0.038597386330366135,
0.002710939384996891,
0.025843016803264618,
0.04536193236708641,
0.0214224960654974,
0.04503414407372475,
0.033798664808273315,
0.016140442341566086,
-0.006199173163622618,
-0.030308909714221954,
0.049249209463596344,
-0.02761419676244259,
-0.03557879850268364,
0.005711645819246769,
-0.06275834143161774,
0.009528841823339462,
-0.019438283517956734,
-0.02855360321700573,
-0.02513323351740837,
-0.019595568999648094,
0.03283310309052467,
0.024576790630817413,
-0.000604179804213345,
-0.004711873829364777,
0.03794030100107193,
-0.014912066049873829,
-0.02570173516869545,
-0.024529248476028442,
-0.016352253034710884,
-0.06358449906110764,
-0.06126520037651062,
0.015867790207266808,
0.014766008593142033,
0.013101112097501755,
0.017399821430444717,
0.05537762492895126,
0.032528139650821686,
0.022199373692274094,
-0.03749888390302658,
0.013001120649278164,
-0.00137794588226825,
-0.013205083087086678,
-0.015852073207497597,
0.007781048770993948,
0.019711410626769066,
0.021785790100693703,
-0.01606314815580845,
0.004442581906914711,
0.04770535230636597,
-0.019070643931627274,
-0.01923162117600441,
-0.01522433664649725,
-0.0009595396113581955,
-0.04306650161743164,
-0.0060130525380373,
-0.01223081536591053,
-0.037316206842660904,
0.01221536099910736,
-0.02825329825282097,
-0.04133472591638565,
-0.01554044522345066,
0.0061635239981114864,
0.04232889413833618,
-0.02583453245460987,
-0.04620988294482231,
-0.0015683172969147563,
-0.032498858869075775,
0.03865674138069153,
-0.05403312295675278,
0.04784534126520157,
-0.005343660246580839,
0.005414091516286135,
-0.009508038870990276,
-0.030998079106211662,
-0.0634932592511177,
0.06827154010534286,
-0.003480097046121955,
-0.03639020398259163,
-0.022818567231297493,
0.03595443442463875,
-0.0013614277122542262,
0.03718755766749382,
-0.0009645266109146178,
0.05361122637987137,
-0.022555500268936157,
0.05972960591316223,
-0.0413045659661293,
0.019682956859469414,
-0.020349085330963135,
0.015542135573923588,
-0.018987488001585007,
0.004340232349932194,
-0.02400135062634945,
-0.03468428924679756,
0.022944986820220947,
0.0318666510283947,
0.05634038522839546,
0.04646720364689827,
-0.007485692854970694,
0.022682523354887962,
0.028780726715922356,
-0.02559668757021427,
-0.032523542642593384,
-0.013539723120629787,
0.02642582170665264,
0.02842576429247856,
0.05906222015619278,
0.03931117430329323,
-0.05664566531777382,
-0.034128639847040176,
0.07402355968952179,
0.036174412816762924,
0.011620627716183662,
0.012231691740453243,
0.02025465853512287,
0.04380503669381142,
0.011339295655488968,
-0.04424494504928589,
0.00725143076851964,
-0.0013628302840515971,
0.009054310619831085,
0.028799640014767647,
-0.014868158847093582,
0.008482911624014378,
-0.011145655065774918,
-0.04627291485667229,
-0.024850662797689438,
0.05042100325226784,
0.051198750734329224,
0.016195334494113922,
-0.020524367690086365,
-0.03622698411345482,
0.04462537169456482,
-0.015193603932857513,
-0.034947145730257034,
0.005254317540675402,
0.00010790782107505947,
-0.04847528412938118,
0.06736192107200623,
-0.019316526129841805,
0.0014199421275407076,
0.039119601249694824,
0.05772467702627182,
-0.019082199782133102,
0.060090236365795135,
-0.006933964788913727,
0.040372155606746674,
0.055354923009872437,
-0.07017499208450317,
-0.016803741455078125,
-0.021974220871925354,
0.0679524764418602,
-0.07665515691041946,
0.05440633371472359,
0.024627139791846275,
0.009620101191103458,
0.03347092866897583,
-0.024145692586898804,
-0.057146135717630386,
-0.00005017651346861385,
-0.05787656828761101,
0.05167632922530174,
0.012379682622849941,
-0.06364671885967255,
0.06920208781957626,
0.0248118843883276,
-0.0554429329931736,
0.04201522469520569,
0.029775766655802727,
0.021546926349401474,
0.00967011135071516,
0.03167485073208809,
-0.03987801820039749,
0.0068864063359797,
-0.043816499412059784,
0.05067841708660126,
-0.041875842958688736,
-0.008221154101192951,
-0.003644488751888275,
-0.04385538026690483,
-0.010180293582379818,
0.03893345594406128,
0.006410971283912659,
-0.01634446531534195,
0.0421411469578743,
-0.05864216387271881,
-0.062244340777397156,
-0.002443003701046109,
0.015111589804291725,
-0.010533527471125126,
0.018239352852106094,
-0.03294781595468521,
0.02134542539715767,
0.035381246358156204,
0.015043273568153381,
-0.017254842445254326,
-0.008557877503335476,
0.02255304530262947,
-0.08323085308074951,
-0.057198263704776764,
0.051655951887369156,
0.0033961664885282516,
-0.04217573255300522,
0.011040208861231804,
-0.0060193100944161415,
0.039798952639102936,
0.02541142888367176,
-0.00527596240863204,
0.010229121893644333,
-0.07875584810972214,
0.00370613019913435,
-0.0021408656612038612,
-0.0010109239956364036,
0.016514481976628304,
-0.025231249630451202,
0.030471010133624077,
0.04583129286766052,
0.03011889010667801,
-0.002956842537969351,
-0.024301718920469284,
-0.005438436754047871,
0.03022126853466034,
-0.050476983189582825,
0.029997097328305244,
0.004320253152400255,
-0.03684749826788902,
-0.04238094389438629,
-0.019994182512164116,
-0.030600223690271378,
0.03441159799695015,
-0.025030750781297684,
0.0039918203838169575,
-0.004726619925349951,
-0.014202970080077648,
-0.057354189455509186,
-0.09473331272602081,
-0.014495284296572208,
-0.049333952367305756,
0.032999906688928604,
0.03685133904218674,
-0.05574197694659233,
0.007745698560029268,
-0.021366486325860023,
-0.05682232230901718,
0.05660773441195488,
0.016567423939704895,
-0.030239861458539963,
0.05131116509437561,
0.07709985971450806,
-0.034948162734508514,
0.021095186471939087,
0.01642143353819847,
-0.027759987860918045,
0.031318388879299164,
0.0007434467552229762,
0.03299836069345474,
0.0664905533194542,
0.020012378692626953,
-0.004105829633772373,
-0.01628878340125084,
-0.04452589899301529,
-0.047737449407577515,
-0.051146578043699265,
-0.012297544628381729,
0.07777967303991318
] |
AdapterHub/bert-base-uncased-pf-art | [
"bert",
"en",
"dataset:art",
"arxiv:2104.08247",
"adapter-transformers"
] | null | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
license: mit
tags:
- generated_from_trainer
metrics:
- accuracy
- f1
model-index:
- name: roberta_crypto_profiling_task1_2
results: []
---
<!-- 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. -->
# roberta_crypto_profiling_task1_2
This model is a fine-tuned version of [cardiffnlp/twitter-roberta-large-2022-154m](https://huggingface.co/cardiffnlp/twitter-roberta-large-2022-154m) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 1.9451
- Accuracy: 0.3765
- F1: 0.3577
## 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: 4
- eval_batch_size: 4
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5
### Training results
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.0268641859292984,
-0.01867426000535488,
-0.008095774799585342,
0.03537797927856445,
0.04891125112771988,
0.017569100484251976,
-0.02553444914519787,
-0.017514929175376892,
-0.04067010432481766,
0.05584169924259186,
0.046926453709602356,
-0.0071801417507231236,
-0.02248106710612774,
0.054756879806518555,
-0.024803290143609047,
-0.0412818007171154,
-0.026961635798215866,
-0.03328189626336098,
-0.015217756852507591,
-0.004444739315658808,
0.006962359417229891,
-0.01827656291425228,
0.010435781441628933,
0.00005074355794931762,
0.0035782961640506983,
-0.01166454702615738,
0.0019074769224971533,
0.011857694014906883,
0.02865220420062542,
-0.07401340454816818,
-0.027707187458872795,
-0.044179484248161316,
-0.03148895874619484,
0.014183235354721546,
-0.009801854379475117,
-0.024045636877417564,
0.008716100826859474,
0.029618917033076286,
0.03649772331118584,
0.045745112001895905,
0.020689288154244423,
-0.008354953490197659,
-0.018738070502877235,
-0.06319333612918854,
0.0671330913901329,
-0.004623113200068474,
-0.04895903915166855,
0.014987088739871979,
0.049809038639068604,
-0.04205228388309479,
-0.06384682655334473,
-0.05014587938785553,
-0.023776957765221596,
0.024751218035817146,
-0.022385019809007645,
-0.0225998405367136,
-0.04307388514280319,
-0.0016600649105384946,
0.0507027767598629,
-0.04254895821213722,
-0.047290317714214325,
-0.022644149139523506,
-0.07195772975683212,
0.02598552592098713,
0.033771269023418427,
-0.03806286305189133,
0.01166797336190939,
-0.03565187752246857,
0.05455910786986351,
0.0031768775079399347,
0.06710996478796005,
-0.0169265978038311,
0.003699196269735694,
-0.058238435536623,
0.008006537333130836,
-0.012768706306815147,
0.04572099447250366,
0.04199298471212387,
-0.008122543804347515,
0.032934363931417465,
0.01808333769440651,
0.0053139375522732735,
0.046460725367069244,
-0.021280797198414803,
0.0067617869935929775,
0.033564429730176926,
-0.0512247271835804,
0.012945147231221199,
0.02580071985721588,
0.04703853279352188,
-0.043208926916122437,
-0.03408810868859291,
-0.0352090485394001,
-0.004005949478596449,
-0.027000125497579575,
0.03314327821135521,
0.03682844713330269,
0.0022107402328401804,
0.02712658792734146,
0.008442978374660015,
0.0540042407810688,
0.027950642630457878,
-0.024094002321362495,
0.06207508593797684,
0.0035859569907188416,
-0.04191158339381218,
-0.002555553801357746,
-0.02343505062162876,
-0.04968538135290146,
0.03725333511829376,
0.03587696701288223,
-0.03231104835867882,
-0.03414396569132805,
0.025555891916155815,
0.03498351201415062,
0.01485495176166296,
0.058077674359083176,
-0.038469348102808,
-0.03952623903751373,
-0.029362335801124573,
0.03870588168501854,
0.016948949545621872,
0.010280055925250053,
0.008358016610145569,
-0.04566902667284012,
-0.004154294263571501,
-0.026106832548975945,
-0.041970767080783844,
0.015952521935105324,
0.006381036713719368,
-0.01638384535908699,
0.040514882653951645,
0.030923452228307724,
-0.05526609718799591,
0.0013336841948330402,
0.02754426747560501,
-0.04652280732989311,
0.03381432965397835,
0.00030409416649490595,
0.10161157697439194,
-0.06687472760677338,
-0.07255583256483078,
0.015350469388067722,
-0.0010564987314864993,
-0.024732893332839012,
0.014697450213134289,
0.012584454379975796,
-0.04084941744804382,
-0.011090733110904694,
-0.018943898379802704,
0.03716379776597023,
-0.04828266799449921,
-0.002596293343231082,
0.058856476098299026,
0.023298440501093864,
0.055211592465639114,
-0.05575081333518028,
-0.03314042463898659,
0.01796155422925949,
-0.01975836232304573,
-0.028344837948679924,
0.04735667258501053,
-0.020097997039556503,
-0.00007105576514732093,
-0.027627870440483093,
-0.029578378424048424,
0.00407138979062438,
0.1004030704498291,
-0.00528543908149004,
-0.02425658330321312,
0.007582859601825476,
0.022137386724352837,
0.06586010754108429,
0.04970812052488327,
-0.030652852728962898,
0.06377103924751282,
0.032884515821933746,
0.04122724384069443,
-0.025650376453995705,
0.02168872393667698,
0.03158539533615112,
-0.06351447850465775,
-0.046146031469106674,
0.02481999434530735,
0.0014364446979016066,
-0.055805303156375885,
0.02479824237525463,
0.012990978546440601,
0.002127481158822775,
-0.058195505291223526,
-0.03632713109254837,
0.0681859627366066,
-0.006884132977575064,
-0.01077844388782978,
0.000645841471850872,
0.016535770148038864,
-0.011279961094260216,
0.04451437294483185,
-0.00864419061690569,
-0.011443844996392727,
-0.011254877783358097,
-0.028743058443069458,
-0.0020100981928408146,
0.01257141400128603,
0.03140142187476158,
0.07040382921695709,
-0.03266725316643715,
0.09596889466047287,
-0.034968290477991104,
0.025592781603336334,
-0.03778737410902977,
-0.051722388714551926,
0.015597558580338955,
0.05138907581567764,
0.0456402488052845,
0.03675128147006035,
0.015073210000991821,
-0.033801425248384476,
0.04631417989730835,
0.06578092277050018,
0.057466547936201096,
0.00957866758108139,
-0.045355867594480515,
0.0038581087719649076,
0.00417032465338707,
0.04554082825779915,
-0.03732678294181824,
-0.025922153145074844,
0.014406753703951836,
0.05757853016257286,
-0.013305846601724625,
0.02137383073568344,
-0.039733607321977615,
0.03361603617668152,
-0.06627022475004196,
-0.08094502240419388,
0.03938150033354759,
0.02725997194647789,
0.010915243066847324,
0.033619415014982224,
-0.013943466357886791,
-0.00871632993221283,
0.008235390298068523,
-0.022298023104667664,
0.011758646927773952,
-0.042139943689107895,
0.011596860364079475,
0.02778412215411663,
0.048387523740530014,
-0.05932242423295975,
0.0218876414000988,
-0.008496176451444626,
-0.02184772863984108,
0.053462736308574677,
-0.03362956643104553,
0.03362597897648811,
0.05299206078052521,
0.03623155876994133,
-0.03081340156495571,
0.030473101884126663,
0.017215870320796967,
0.04233322665095329,
0.03393768146634102,
0.013766519725322723,
0.07820338010787964,
0.008358120918273926,
0.04801090806722641,
0.06453448534011841,
0.015081831254065037,
0.025325030088424683,
0.033076293766498566,
0.07356538623571396,
0.018069609999656677,
-0.017195316031575203,
0.041735172271728516,
-0.0434257946908474,
0.040306806564331055,
-0.056206513196229935,
-0.004626181907951832,
-0.035183560103178024,
-0.03269003704190254,
0.05062025785446167,
0.030639110133051872,
-0.019215794280171394,
-0.02146241068840027,
-0.022565873339772224,
-0.0455225333571434,
0.02765393629670143,
-0.00403343141078949,
-0.016685614362359047,
-0.013501923531293869,
-0.004062964115291834,
0.005961669143289328,
-0.07010545581579208,
-0.022895896807312965,
-0.016230624169111252,
-0.010965704917907715,
-0.024392029270529747,
-0.11676672846078873,
-0.019586948677897453,
-0.05623963475227356,
-0.013625119812786579,
0.045106735080480576,
0.013539351522922516,
-0.01345967035740614,
-0.03524807468056679,
0.009007928892970085,
-0.05540367588400841,
-0.030060729011893272,
-0.05519477650523186,
-0.06153691187500954,
-0.04548238217830658,
-0.08296718448400497,
0.02400866709649563,
0.04564256966114044,
0.019840657711029053,
0.0020460267551243305,
-0.01327789481729269,
-0.006485767662525177,
-0.02439299412071705,
0.03689112886786461,
0.044537343084812164,
0.0013583455001935363,
-0.0637674480676651,
0.01961631141602993,
-0.0031970730051398277,
0.027206989005208015,
0.011378035880625248,
-0.032719045877456665,
0.08077102154493332,
0.057735640555620193,
0.016960907727479935,
-0.00046304016723297536,
-0.031753286719322205,
-0.05159056931734085,
-0.038410574197769165,
-0.02336728200316429,
-0.03358544781804085,
-0.007455664221197367,
-0.05429293215274811,
-0.04701435938477516,
-0.014273549430072308,
-0.03467616066336632,
0.006092594470828772,
-0.009577776305377483,
0.0025332870427519083,
0.02659943327307701,
0.020124338567256927,
0.03633967787027359,
0.03170933574438095,
-0.03229064494371414,
-0.07049376517534256,
0.060055263340473175,
-0.008389960043132305,
-0.020734306424856186,
-0.09450676292181015,
-0.03213440999388695,
0.054812680929899216,
0.02433050237596035,
0.017403706908226013,
-0.014491920359432697,
0.06460175663232803,
0.007572690490633249,
-0.005537312012165785,
0.008288144133985043,
-0.013573361560702324,
0.015126536600291729,
-0.006342470180243254,
-0.011706382036209106,
-0.021648980677127838,
-0.013072843663394451,
-0.0037792965304106474,
-0.02783031389117241,
0.047657560557127,
-0.05370088294148445,
-0.045072127133607864,
-0.008441401645541191,
0.026479585096240044,
0.05243190750479698,
0.013055839575827122,
-0.0400412455201149,
-0.01290668174624443,
-0.04721637815237045,
-0.027296889573335648,
0.02628161571919918,
0.011613198556005955,
0.021856239065527916,
0.035773929208517075,
0.020938146859407425,
-0.009664840064942837,
0.06086963042616844,
0.03687778487801552,
0.08241414278745651,
0.011716305278241634,
-0.06029566377401352,
0.020080434158444405,
-0.012487159110605717,
0.029012417420744896,
-0.020723294466733932,
-0.025482749566435814,
-0.06247610226273537,
-0.09873990714550018,
-0.01075668539851904,
0.00038146282895468175,
-0.007260741665959358,
-0.009483450092375278,
0.04446975886821747,
0.0012314781779423356,
-0.02570788934826851,
-0.00024164721253328025,
0.024635687470436096,
0.053202155977487564,
-0.06291264295578003,
0.07480373978614807,
0.0029305662028491497,
0.011622297577559948,
-0.03660912439227104,
0.01994132064282894,
-0.05693839117884636,
-0.003470183117315173,
0.015444888733327389,
0.0675770565867424,
0.010036302730441093,
0.05464497581124306,
0.0856938436627388,
0.03412804752588272,
-0.04357046261429787,
0.027660928666591644,
0.05963714420795441,
-0.027634473517537117,
-0.02404898591339588,
-0.022033030167222023,
0.011375498957931995,
-0.01788344234228134,
-0.002088029170408845,
0.007391737774014473,
0.04873204603791237,
0.022766239941120148,
-0.0016737543046474457,
0.023376744240522385,
0.012010925449430943,
-0.003910945262759924,
-0.040543243288993835,
-0.07802260667085648,
-0.03282329812645912,
-0.002273084595799446,
-0.019306067377328873,
-0.006240604445338249,
0.037743765860795975,
0.005147382151335478,
0.050820279866456985,
0.024515971541404724,
-0.032395899295806885,
-0.05236745625734329,
0.022402876988053322,
0.02089008130133152,
-0.03391188755631447,
-0.07669249176979065,
-0.03587296977639198,
0.03249523416161537,
0.041928909718990326,
-0.022871622815728188,
-0.07139412313699722,
0.014763089828193188,
0.04540696740150452,
-0.05855362117290497,
0.0630398690700531,
0.008336464874446392,
0.020737865939736366,
0.047887206077575684,
-0.03195222467184067,
0.03508174791932106,
-0.02609826624393463,
0.009038486517965794,
0.009762526489794254,
0.02532891370356083,
-0.000020970242985640652,
-0.020242081955075264,
-0.033788733184337616,
0.02548893541097641,
0.036843497306108475,
0.05677620321512222,
0.05717751011252403,
-0.023663343861699104,
-0.0398990735411644,
0.005368330981582403,
0.05003025010228157,
-0.03930927440524101,
0.010979222133755684,
0.05101454630494118,
0.03310256078839302,
-0.05872678384184837,
-0.045813191682100296,
-0.016189148649573326,
-0.008981732651591301,
0.011584754101932049,
-0.015461143106222153,
-0.05089202895760536,
-0.05507907271385193,
0.03346666693687439,
-0.004799149464815855,
0.0011944163125008345,
-0.06270792335271835,
0.04963462054729462,
0.009448010474443436,
-0.011900736019015312,
0.036511849611997604,
0.022206775844097137,
0.01586086116731167,
0.043429020792245865,
0.009935942478477955,
0.028125079348683357,
-0.05051250383257866,
0.02427533268928528,
-0.01429517287760973,
-0.010542393662035465,
-0.013434172607958317,
-0.048949141055345535,
-0.01984371617436409,
-0.025744549930095673,
-0.05021708831191063,
-0.047896306961774826,
-0.016258753836154938,
-0.004404372535645962,
0.0057481625117361546,
-0.016527507454156876,
-0.0169569943100214,
0.07094668596982956,
-0.02676769159734249,
-0.014971299096941948,
-0.04738698527216911,
-0.02876751311123371,
-0.048560626804828644,
-0.05181359127163887,
0.034104183316230774,
0.019690686836838722,
0.03307376429438591,
0.0203245896846056,
0.029412437230348587,
0.021574271842837334,
0.004769995808601379,
-0.04233061522245407,
0.012596835382282734,
-0.0028673287015408278,
-0.011224858462810516,
-0.022796880453824997,
0.017201628535985947,
0.018052754923701286,
0.025539971888065338,
-0.028740553185343742,
0.043625038117170334,
0.016846410930156708,
-0.015473625622689724,
-0.029214363545179367,
0.027878232300281525,
0.009290097281336784,
-0.06925475597381592,
-0.02292614057660103,
0.009907329455018044,
-0.03206060826778412,
0.019942352548241615,
-0.041841018944978714,
-0.019408883526921272,
-0.023206070065498352,
0.004040663596242666,
0.028539009392261505,
-0.01763412356376648,
-0.022039249539375305,
0.019524451345205307,
-0.03344174847006798,
0.026474617421627045,
-0.04867785796523094,
0.0600065179169178,
-0.03604581579566002,
-0.010223816148936749,
-0.009882978163659573,
-0.014537271112203598,
-0.038315754383802414,
0.04656076431274414,
0.000893126183655113,
-0.016262762248516083,
-0.01629328355193138,
0.04573660343885422,
-0.006168317515403032,
0.027909016236662865,
-0.0270314309746027,
0.021709799766540527,
-0.04252531751990318,
0.06537356972694397,
-0.032300833612680435,
0.0006270880112424493,
-0.042695824056863785,
0.007918083108961582,
-0.02532930299639702,
-0.018456026911735535,
-0.026654114946722984,
-0.043512459844350815,
0.05065307393670082,
0.062412623316049576,
0.02692636474967003,
0.01582932099699974,
0.000981645891442895,
-0.0082396250218153,
0.026977185159921646,
-0.07621904462575912,
-0.03125212714076042,
-0.0160194244235754,
-0.007850865833461285,
0.007976029068231583,
0.03176650404930115,
0.06279648840427399,
-0.03477202355861664,
-0.06651724129915237,
0.02860850654542446,
0.016044877469539642,
0.010005523450672626,
0.009707801043987274,
0.031169472262263298,
0.03566182404756546,
0.04453922435641289,
-0.036416519433259964,
0.01545846275985241,
-0.0010890630073845387,
-0.02886476181447506,
0.03399858623743057,
-0.010887469165027142,
0.030083971098065376,
-0.001631827442906797,
-0.06955280900001526,
-0.024092378094792366,
0.056560173630714417,
0.04456815496087074,
0.0164065882563591,
0.02195468731224537,
-0.03542286530137062,
0.03830140829086304,
0.003532541450113058,
-0.06039319559931755,
-0.0026739027816802263,
-0.004907507449388504,
-0.01713619939982891,
0.04849689453840256,
-0.021356817334890366,
0.004297275096178055,
0.03985996171832085,
0.040105633437633514,
-0.00208977865986526,
0.04136563092470169,
-0.02942594327032566,
0.026146993041038513,
0.03282243758440018,
-0.07973946630954742,
-0.002778146415948868,
-0.026661116629838943,
0.059540942311286926,
-0.06013834476470947,
0.04487651586532593,
0.03996876999735832,
-0.0007380335591733456,
0.0002344021777389571,
-0.010547269135713577,
-0.046713147312402725,
-0.02779623307287693,
-0.039469439536333084,
0.0863381028175354,
0.002036080462858081,
-0.053150251507759094,
0.08617795258760452,
0.03375471383333206,
-0.05746356025338173,
0.04658694937825203,
0.03448573127388954,
0.021648766472935677,
0.021820781752467155,
0.026917723938822746,
-0.024795668199658394,
0.022321097552776337,
-0.07484281063079834,
0.029209023341536522,
-0.036365870386362076,
-0.029742596670985222,
0.053600165992975235,
-0.019382251426577568,
-0.02658197656273842,
0.03405839204788208,
-0.012756622396409512,
-0.026301687583327293,
0.05831752344965935,
-0.058219291269779205,
-0.03171928599476814,
-0.014193717390298843,
0.022389931604266167,
-0.038912247866392136,
0.027431119233369827,
-0.024735206738114357,
0.01589067652821541,
0.01980292610824108,
-0.01906968466937542,
-0.018410561606287956,
0.011084838770329952,
0.0157315731048584,
-0.033565714955329895,
-0.05535095930099487,
0.053211361169815063,
-0.000053865547670284286,
-0.018036432564258575,
0.041701845824718475,
-0.027025850489735603,
0.003413827857002616,
0.032569605857133865,
-0.0034841205924749374,
0.012421399354934692,
-0.05102049559354782,
-0.011230137199163437,
0.026424890384078026,
0.011487774550914764,
0.024033231660723686,
0.0014296435983851552,
0.004954220727086067,
0.03468890115618706,
0.04114966094493866,
-0.020084040239453316,
-0.015322931110858917,
-0.031817980110645294,
0.05036594346165657,
-0.030184505507349968,
-0.01201618928462267,
0.003539366414770484,
-0.043578118085861206,
-0.04357131943106651,
-0.01982971280813217,
-0.05913659557700157,
0.022293593734502792,
-0.05612170323729515,
0.012723532505333424,
0.023942090570926666,
-0.0035465615801513195,
-0.0432143397629261,
-0.08267202973365784,
-0.024304039776325226,
-0.025711582973599434,
0.00010467044921824709,
0.008792354725301266,
-0.02692483738064766,
0.02449794113636017,
-0.04033805429935455,
-0.05139198899269104,
0.04353984445333481,
0.02265177294611931,
-0.035454340279102325,
0.036227110773324966,
0.042226843535900116,
-0.02185419201850891,
-0.0034656748175621033,
0.024598250165581703,
-0.04578625410795212,
0.007148217875510454,
0.026850024238228798,
-0.026427121832966805,
0.026715043932199478,
0.012872004881501198,
-0.04222295060753822,
0.001996516715735197,
-0.03466417267918587,
-0.02238481305539608,
-0.04242140054702759,
0.008127742446959019,
0.06240730360150337
] |
AdapterHub/bert-base-uncased-pf-boolq | [
"bert",
"en",
"dataset:boolq",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification",
"adapterhub:qa/boolq"
] | text-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | 2023-05-17T14:49:33Z | ---
library_name: stable-baselines3
tags:
- PandaReachDense-v2
- deep-reinforcement-learning
- reinforcement-learning
- stable-baselines3
model-index:
- name: A2C
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: PandaReachDense-v2
type: PandaReachDense-v2
metrics:
- type: mean_reward
value: -2.55 +/- 0.85
name: mean_reward
verified: false
---
# **A2C** Agent playing **PandaReachDense-v2**
This is a trained model of a **A2C** agent playing **PandaReachDense-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
...
```
| [
-0.049796607345342636,
-0.01608669012784958,
-0.008849196135997772,
0.03617433086037636,
0.04110312461853027,
0.0029599671252071857,
-0.021573074162006378,
-0.01056178379803896,
-0.03804901987314224,
0.057000186294317245,
0.024936338886618614,
-0.00279002427123487,
0.03132488578557968,
0.0027575776912271976,
-0.0338454395532608,
-0.023338763043284416,
0.013683796860277653,
-0.018354382365942,
-0.011956935748457909,
0.020517338067293167,
0.020817771553993225,
0.015227280557155609,
-0.018050508573651314,
0.05273614078760147,
-0.005290481727570295,
0.03046058863401413,
-0.03469570726156235,
0.043552786111831665,
0.02849661372601986,
-0.05256443843245506,
-0.004266221076250076,
-0.041820310056209564,
-0.007635500747710466,
-0.03564460203051567,
-0.0017393433954566717,
0.007743508089333773,
0.009697578847408295,
0.0268960390239954,
-0.006115894764661789,
0.036449991166591644,
-0.030199188739061356,
0.03155903518199921,
0.021640831604599953,
-0.006785654928535223,
0.03836442902684212,
-0.014977791346609592,
-0.037939686328172684,
-0.00037474912824109197,
0.05971571058034897,
-0.011133777908980846,
-0.05809980258345604,
-0.05222851410508156,
0.009403040632605553,
0.04714671149849892,
-0.017520846799016,
-0.018137885257601738,
-0.032665979117155075,
-0.008026142604649067,
0.06445096433162689,
-0.06504466384649277,
-0.047515012323856354,
-0.0056965528056025505,
-0.05262979120016098,
0.002142317360267043,
0.03702586144208908,
-0.01136185321956873,
0.012286422774195671,
-0.04581587016582489,
0.016468090936541557,
-0.029805734753608704,
0.0698072612285614,
-0.030870933085680008,
0.027345607057213783,
-0.06004714220762253,
0.00897974707186222,
-0.01480468176305294,
0.028315499424934387,
0.03815467283129692,
-0.010856659151613712,
0.08382260054349899,
0.020888110622763634,
0.004351773299276829,
0.043784625828266144,
0.01253529917448759,
0.011988002806901932,
0.01633659563958645,
-0.04411519691348076,
0.012560203671455383,
0.013915462419390678,
0.02434823475778103,
-0.02517305314540863,
-0.025419602170586586,
-0.02835225686430931,
-0.026232412084937096,
-0.007056813687086105,
0.04842550680041313,
0.05496235564351082,
0.007471174001693726,
0.0537819042801857,
0.034879982471466064,
0.013427793979644775,
0.02304638922214508,
-0.02120632492005825,
0.061743929982185364,
0.002349240006878972,
-0.015881195664405823,
-0.022169768810272217,
-0.021848902106285095,
-0.04544902220368385,
0.03734356537461281,
0.04155989736318588,
-0.04226105660200119,
-0.03182053565979004,
0.049538157880306244,
0.021980173885822296,
-0.018649868667125702,
0.037019237875938416,
-0.03984452411532402,
-0.02454613521695137,
-0.05769291892647743,
0.06446199864149094,
-0.0073832497000694275,
-0.006557011511176825,
-0.03251288831233978,
-0.0423530638217926,
-0.022071897983551025,
-0.04531389847397804,
-0.027332313358783722,
-0.034208279103040695,
0.015905331820249557,
0.02016022428870201,
0.05130964517593384,
0.006077841855585575,
-0.08078450709581375,
0.012444548308849335,
-0.012134374119341373,
-0.09423906356096268,
0.03746868669986725,
0.009640377946197987,
0.13487812876701355,
-0.06778058409690857,
-0.04484429582953453,
0.011080367490649223,
0.007293421775102615,
-0.029143614694476128,
0.01352283451706171,
0.020454805344343185,
-0.042690880596637726,
-0.012432904914021492,
-0.03549953177571297,
0.08184085786342621,
-0.06005161628127098,
-0.03158048540353775,
0.03760399669408798,
-0.009565157815814018,
0.0245378278195858,
-0.026112524792551994,
0.016645776107907295,
0.003937278408557177,
-0.03136010468006134,
-0.016370078548789024,
0.06326725333929062,
-0.007277631666511297,
-0.04769193381071091,
-0.056687407195568085,
0.004454963840544224,
0.02524380199611187,
0.07909829914569855,
-0.007644148543477058,
-0.009919032454490662,
-0.026004716753959656,
0.032915253192186356,
0.017015699297189713,
0.036752521991729736,
0.007614361122250557,
0.03625583276152611,
0.04642002657055855,
0.018555661663413048,
-0.017190756276249886,
0.03734631463885307,
0.018758874386548996,
-0.01717882975935936,
-0.0025443050544708967,
0.0008131446084007621,
0.0007030614069662988,
-0.007483575493097305,
0.0033029813785105944,
0.031661257147789,
0.007924828678369522,
-0.04553989693522453,
-0.024234112352132797,
0.035338692367076874,
-0.001199556514620781,
0.012057555839419365,
-0.023584961891174316,
-0.004087344277650118,
0.011404299177229404,
0.0330500602722168,
-0.019710149616003036,
-0.027134951204061508,
-0.03950883820652962,
-0.01896832510828972,
0.0288526713848114,
0.01684814877808094,
0.028786974027752876,
0.01559023093432188,
-0.012785438448190689,
0.08538758754730225,
-0.036610402166843414,
0.031215356662869453,
-0.05692199617624283,
-0.05127178877592087,
-0.00030591635731980205,
0.03100617416203022,
0.06578728556632996,
0.06315052509307861,
-0.014974929392337799,
-0.03280642256140709,
0.02086588181555271,
0.042013902217149734,
0.052441950887441635,
0.03051789477467537,
-0.012961060740053654,
0.0035511283203959465,
0.0363008975982666,
0.02613275870680809,
-0.025039060041308403,
-0.034739743918180466,
0.018235215917229652,
0.05013611912727356,
-0.0014242770848795772,
0.014417695812880993,
-0.03288488835096359,
0.035987164825201035,
-0.055289994925260544,
-0.05743563920259476,
0.02940194308757782,
0.023691944777965546,
0.025183405727148056,
0.02654123492538929,
-0.025185275822877884,
0.02891373634338379,
0.021231835708022118,
0.014441908337175846,
0.01060910988599062,
-0.06393032521009445,
0.018067413941025734,
0.022925585508346558,
0.04981200769543648,
-0.03444383293390274,
0.029036547988653183,
-0.008287891745567322,
-0.0021289964206516743,
0.023961281403899193,
-0.054216183722019196,
0.019033653661608696,
0.08486539870500565,
0.04202529415488243,
-0.012089043855667114,
0.026571253314614296,
0.02090611681342125,
0.03438273444771767,
0.04026802256703377,
-0.00799292977899313,
0.049923885613679886,
-0.031853269785642624,
0.0324242003262043,
0.08743361383676529,
0.02969827689230442,
0.009225177578628063,
0.030671965330839157,
0.07126062363386154,
-0.005850919522345066,
0.017501696944236755,
0.06344272941350937,
-0.03183913603425026,
0.032762523740530014,
-0.03497612476348877,
0.002190834376960993,
-0.022019002586603165,
-0.019572565332055092,
0.04992435872554779,
0.01775635965168476,
-0.04636729881167412,
-0.014189130626618862,
0.002098140772432089,
0.00814155675470829,
0.0028759187553077936,
-0.002326476387679577,
0.004838984459638596,
0.027956148609519005,
-0.010720567777752876,
-0.004274218808859587,
-0.08174345642328262,
-0.06604839861392975,
-0.02157795988023281,
-0.03205740451812744,
-0.01741320826113224,
-0.05996667593717575,
-0.03946071118116379,
-0.08414994925260544,
-0.0385182723402977,
0.017484428361058235,
-0.010718848556280136,
0.011242092587053776,
-0.05338752642273903,
0.030975522473454475,
-0.051757194101810455,
-0.010923458263278008,
-0.05921919271349907,
-0.05459976568818092,
-0.03307262435555458,
-0.053836725652217865,
0.04512957111001015,
0.009642171673476696,
0.041905440390110016,
-0.0000023793793388904305,
-0.01268089935183525,
-0.01795368082821369,
-0.041678715497255325,
0.05969422310590744,
0.05175245180726051,
-0.02995740994811058,
-0.0553908534348011,
0.016179757192730904,
0.004572311881929636,
0.02312410995364189,
0.016596127301454544,
-0.03450286388397217,
0.08059685677289963,
0.07830232381820679,
-0.004825351759791374,
0.0005600207368843257,
-0.0040975953452289104,
-0.038144417107105255,
-0.036131154745817184,
-0.03214031457901001,
-0.056936707347631454,
-0.015690147876739502,
-0.05243563652038574,
-0.035811200737953186,
-0.01416770089417696,
-0.01607310026884079,
-0.02647755853831768,
-0.027804672718048096,
-0.002545516472309828,
0.034667618572711945,
0.08687002956867218,
0.014287619851529598,
0.045083217322826385,
-0.042158640921115875,
-0.022051751613616943,
0.04867120087146759,
0.027056420221924782,
-0.001775221317075193,
-0.07884226739406586,
-0.04066969454288483,
0.04102678224444389,
0.001127065159380436,
0.004376198165118694,
-0.020147761330008507,
0.0647718757390976,
0.03759927675127983,
-0.009714732877910137,
0.05067214369773865,
-0.01644911617040634,
0.0018591942498460412,
-0.033330243080854416,
0.0061584836803376675,
-0.0009666476398706436,
-0.023892885074019432,
-0.007686781231313944,
0.002866508672013879,
0.014889408834278584,
-0.04999870806932449,
-0.04487178474664688,
-0.017487477511167526,
0.0030104604084044695,
0.04405020549893379,
0.0017847802955657244,
-0.053600896149873734,
-0.026294682174921036,
-0.06271552294492722,
-0.007527741137892008,
0.010177142918109894,
-0.024805773049592972,
0.013098309747874737,
0.04052759334445,
0.022439604625105858,
0.0026285056956112385,
0.04537608474493027,
0.029920998960733414,
0.06345599889755249,
0.019469786435365677,
-0.03364451602101326,
0.003350181970745325,
-0.010082942433655262,
0.04154599457979202,
0.019072644412517548,
-0.009210020303726196,
-0.032673951238393784,
-0.1098853126168251,
-0.030056297779083252,
0.0025770312640815973,
-0.018767323344945908,
0.004309194628149271,
0.049136411398649216,
-0.019532907754182816,
-0.009943781420588493,
0.009223035536706448,
0.008357425220310688,
0.06144516170024872,
-0.01505240797996521,
0.06363341212272644,
0.0006171449203975499,
0.022705841809511185,
-0.05033431202173233,
0.024000702425837517,
-0.023364488035440445,
-0.023058025166392326,
-0.008486049249768257,
0.03628015145659447,
0.011672323569655418,
0.0780322328209877,
0.05665008723735809,
0.02503826841711998,
-0.0545249842107296,
0.03582533076405525,
0.048436667770147324,
-0.04143202304840088,
-0.0668051689863205,
-0.02465996891260147,
0.010276165790855885,
-0.010693826712667942,
0.017772844061255455,
-0.029124051332473755,
0.01144278421998024,
0.059791743755340576,
-0.015519076026976109,
-0.012001187540590763,
-0.017710577696561813,
-0.01896136999130249,
-0.029364682734012604,
-0.01896515302360058,
-0.0050980933010578156,
0.012886803597211838,
-0.02161804959177971,
0.013425331562757492,
0.027698904275894165,
0.027194196358323097,
0.06570441275835037,
0.059341296553611755,
-0.000715544621925801,
-0.04458841308951378,
0.050638746470212936,
0.011908155865967274,
-0.013831689022481441,
-0.07931697368621826,
-0.02215728349983692,
0.03391794115304947,
0.01985868066549301,
-0.0002881989348679781,
-0.06240411475300789,
0.026145363226532936,
0.040088724344968796,
-0.06757901608943939,
0.05621205270290375,
-0.002817970234900713,
0.026358501985669136,
0.045915067195892334,
0.017209986224770546,
0.036955639719963074,
-0.02238035947084427,
-0.03658793494105339,
0.01036133337765932,
0.04040765389800072,
-0.022951655089855194,
-0.013380653224885464,
-0.024196164682507515,
0.014913002029061317,
0.01584140956401825,
0.034133732318878174,
0.035542722791433334,
-0.04301301762461662,
-0.06618058681488037,
-0.030861258506774902,
0.036350954324007034,
-0.03016248159110546,
0.0015627248212695122,
0.04842240363359451,
0.03507176414132118,
-0.05031014606356621,
-0.04033587872982025,
-0.031613487750291824,
-0.008930117823183537,
0.032701510936021805,
0.007118826266378164,
-0.009628242813050747,
-0.034701716154813766,
0.029467180371284485,
-0.016077207401394844,
-0.03158555552363396,
-0.06237674504518509,
0.03458607569336891,
0.004625371657311916,
0.008779636584222317,
0.050980933010578156,
0.04121636599302292,
0.06415551155805588,
0.060366030782461166,
0.038807597011327744,
0.0022316263057291508,
-0.028536366298794746,
0.03864547237753868,
-0.04380417987704277,
-0.02552082948386669,
-0.001251037116162479,
-0.07790223509073257,
-0.004435625858604908,
-0.023059086874127388,
-0.0222611166536808,
-0.03507774695754051,
-0.012925012968480587,
0.0340171717107296,
0.01627511903643608,
0.021052565425634384,
0.005070095881819725,
0.028215298429131508,
-0.011031894944608212,
-0.04413675516843796,
-0.027940528467297554,
-0.019089756533503532,
-0.06536613404750824,
-0.05523271858692169,
0.0537877194583416,
-0.0005453558987937868,
0.022368939593434334,
0.00031365398899652064,
0.0499710813164711,
0.020475199446082115,
0.02384585700929165,
-0.04290575534105301,
0.015056625008583069,
-0.006233254447579384,
-0.046358510851860046,
-0.017539463937282562,
0.005191798787564039,
0.009842557832598686,
0.04100332036614418,
-0.017758486792445183,
0.016692131757736206,
0.006800196599215269,
-0.03701595589518547,
-0.02181856893002987,
0.015442869625985622,
0.03406887128949165,
-0.04040692746639252,
-0.024813899770379066,
0.005560662597417831,
-0.027468323707580566,
0.03437253460288048,
-0.016635287553071976,
-0.026885930448770523,
0.012338235042989254,
0.011357398703694344,
0.028670290485024452,
-0.02014254592359066,
-0.0462927408516407,
0.02494102716445923,
-0.04244357347488403,
0.0514555424451828,
-0.06345843523740768,
0.017224960029125214,
-0.02421044372022152,
0.01838470622897148,
-0.020870989188551903,
0.012716132216155529,
-0.04109542444348335,
0.05376141518354416,
0.016155274584889412,
-0.020211786031723022,
-0.04355708509683609,
0.033863313496112823,
-0.0017260133754462004,
0.025412796065211296,
-0.00991169922053814,
0.026838142424821854,
-0.010349329560995102,
0.03623827546834946,
-0.026264403015375137,
0.029130851849913597,
-0.013209306634962559,
0.04314054176211357,
-0.03265037015080452,
0.003407234326004982,
-0.02427232638001442,
-0.029881343245506287,
0.026786139234900475,
0.020299436524510384,
0.03933925926685333,
0.024351730942726135,
-0.04777904599905014,
0.01725718565285206,
0.029401205480098724,
-0.030835159122943878,
-0.02859232947230339,
0.00770950224250555,
0.01547384075820446,
0.01627069152891636,
0.05593204125761986,
0.045291218906641006,
-0.06513404846191406,
-0.02678460069000721,
0.07385487109422684,
0.013163999654352665,
0.019826844334602356,
0.001843489008024335,
0.04226299375295639,
0.03519304096698761,
0.050331927835941315,
-0.04501797631382942,
0.012678461149334908,
0.005020942073315382,
-0.002168194856494665,
0.03346738591790199,
-0.03950909525156021,
0.01633329503238201,
0.015285679139196873,
-0.05959304794669151,
-0.026895027607679367,
0.05304365232586861,
0.043265629559755325,
-0.00829523429274559,
-0.023991715162992477,
-0.03622381389141083,
0.04427710548043251,
0.0031776530668139458,
-0.04923040419816971,
0.01965699903666973,
0.004322152119129896,
-0.019828667864203453,
0.06686973571777344,
-0.023327430710196495,
0.011453259736299515,
0.03329852595925331,
0.0666106790304184,
-0.030228091403841972,
0.06571300327777863,
-0.023842094466090202,
0.06454534083604813,
0.03672131150960922,
-0.05963505432009697,
-0.013863643631339073,
-0.05452277511358261,
0.07518704980611801,
-0.07579199969768524,
0.060880862176418304,
0.05739884078502655,
0.00889537576586008,
0.03315063938498497,
-0.023327363654971123,
-0.049892526119947433,
-0.01243783812969923,
-0.05950559303164482,
0.05501050874590874,
0.0018209872068837285,
-0.0570436455309391,
0.06971187144517899,
0.013773218728601933,
-0.06344340741634369,
0.05226573348045349,
0.025255819782614708,
0.022819051519036293,
0.009079593233764172,
0.042843811213970184,
-0.05461760610342026,
0.029247984290122986,
-0.05811489000916481,
0.05266786739230156,
-0.050059013068675995,
-0.013572641648352146,
0.023277264088392258,
-0.04565073177218437,
-0.022962866351008415,
0.03906240686774254,
-0.004073409829288721,
-0.009042813442647457,
0.03997413441538811,
-0.06284613907337189,
-0.05160517990589142,
0.019956832751631737,
-0.0003305640711914748,
0.0105457603931427,
-0.00880458764731884,
-0.019328372552990913,
0.027621803805232048,
0.046704381704330444,
0.028999118134379387,
-0.013617687858641148,
0.001717764767818153,
0.02013706974685192,
-0.041969407349824905,
-0.04271999001502991,
0.04813479259610176,
0.004276425112038851,
-0.024463308975100517,
0.005441604647785425,
0.007211647927761078,
0.030297961086034775,
0.020007262006402016,
0.01943786069750786,
0.043521128594875336,
-0.05960514396429062,
-0.027493886649608612,
0.02023402228951454,
-0.021432554349303246,
0.026919739320874214,
-0.024826981127262115,
-0.007024980615824461,
0.010596690699458122,
0.01815151236951351,
-0.007124257739633322,
-0.014585219323635101,
0.011964352801442146,
0.028821256011724472,
-0.046732429414987564,
0.016865944489836693,
0.008134657517075539,
-0.04857705160975456,
-0.02919631265103817,
-0.022858629003167152,
-0.014163114130496979,
0.022200049832463264,
-0.05256226658821106,
-0.0033295105677098036,
0.04168344661593437,
-0.007620185613632202,
-0.04933656007051468,
-0.1071925014257431,
-0.014195623807609081,
-0.0466412715613842,
0.0075727649964392185,
0.040586721152067184,
-0.06226374953985214,
0.010624028742313385,
-0.0258756373077631,
-0.054817769676446915,
0.049662549048662186,
0.04320435971021652,
-0.022272668778896332,
0.06968815624713898,
0.0663219541311264,
-0.027194928377866745,
0.02251337096095085,
0.013526751659810543,
-0.05077315494418144,
0.0012335596838966012,
0.020832926034927368,
0.017310498282313347,
0.04690001159906387,
0.02194436639547348,
-0.031848832964897156,
-0.016489574685692787,
-0.03799871355295181,
-0.06227429211139679,
-0.03173262998461723,
0.023656515404582024,
0.07371345907449722
] |
AdapterHub/bert-base-uncased-pf-commonsense_qa | [
"bert",
"en",
"dataset:commonsense_qa",
"arxiv:2104.08247",
"adapter-transformers",
"adapterhub:comsense/csqa"
] | null | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | 2023-05-17T14:53:26Z | ---
library_name: ml-agents
tags:
- Pyramids
- deep-reinforcement-learning
- reinforcement-learning
- ML-Agents-Pyramids
---
# **ppo** Agent playing **Pyramids**
This is a trained model of a **ppo** agent playing **Pyramids** using the [Unity ML-Agents Library](https://github.com/Unity-Technologies/ml-agents).
## Usage (with ML-Agents)
The Documentation: https://github.com/huggingface/ml-agents#get-started
We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub:
### Resume the training
```
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. Go to https://huggingface.co/spaces/unity/ML-Agents-Pyramids
2. Step 1: Find your model_id: afos950/ppo-PyramidTraining
3. Step 2: Select your *.nn /*.onnx file
4. Click on Watch the agent play 👀
| [
-0.05249173194169998,
0.0012946032220497727,
-0.005144625436514616,
0.050079766660928726,
0.025181928649544716,
0.031332943588495255,
-0.00880813505500555,
-0.021621260792016983,
-0.0010864691575989127,
0.0500449612736702,
0.023248735815286636,
-0.013944505713880062,
0.005883275531232357,
0.023319412022829056,
-0.024932892993092537,
-0.021702038124203682,
-0.04073441028594971,
-0.004953352268785238,
-0.0141446553170681,
0.02007346600294113,
0.02290792390704155,
0.0012426391476765275,
0.001198996091261506,
0.025008343160152435,
0.012551003135740757,
0.029586834833025932,
0.02920432947576046,
0.03977135196328163,
0.036005403846502304,
-0.04507029056549072,
-0.004087377339601517,
-0.03969517722725868,
-0.020750174298882484,
-0.001038731774315238,
-0.032092802226543427,
-0.00745003717020154,
0.020684579387307167,
0.01858380250632763,
0.03129854425787926,
0.04775085672736168,
-0.03719000518321991,
-0.02572524920105934,
0.02702709473669529,
-0.0015411460772156715,
0.019581733271479607,
0.013928503729403019,
-0.02083473838865757,
-0.027073096483945847,
0.03697697073221207,
0.006427764426916838,
-0.05714482069015503,
-0.05469449982047081,
-0.014844883233308792,
0.015167434699833393,
-0.010126915760338306,
-0.026306606829166412,
-0.02573375403881073,
-0.04048721492290497,
0.06788847595453262,
-0.08005201816558838,
-0.028906894847750664,
0.015302103944122791,
-0.05783340334892273,
0.00404701242223382,
0.04611292853951454,
-0.0074855429120361805,
0.0007425420335493982,
-0.07057929039001465,
0.017228245735168457,
-0.02453293465077877,
0.018691828474402428,
-0.027417603880167007,
0.00007397722220048308,
-0.07911311835050583,
-0.012588990852236748,
-0.016898173838853836,
0.05354585871100426,
0.051758959889411926,
-0.024019530043005943,
0.06941180676221848,
0.009206056594848633,
0.0016259864205494523,
0.05709342285990715,
-0.017793351784348488,
0.006376034580171108,
-0.008272210136055946,
-0.038079023361206055,
-0.021677400916814804,
0.02260632812976837,
0.04745170846581459,
-0.03697506710886955,
-0.03763221204280853,
-0.02139812707901001,
-0.005278150085359812,
0.006747016217559576,
0.043464187532663345,
0.03295333310961723,
0.01335062924772501,
0.05758967995643616,
0.012260367162525654,
0.03336278721690178,
0.03745684772729874,
-0.01276391465216875,
0.09257017076015472,
0.004006264731287956,
-0.037611257284879684,
-0.01387217827141285,
-0.04935738816857338,
-0.041862454265356064,
0.017387041822075844,
0.0016163461841642857,
-0.05222196504473686,
-0.03354789316654205,
0.0293271504342556,
0.02589629404246807,
0.013676725327968597,
0.05246569216251373,
-0.048991020768880844,
-0.04483811557292938,
-0.042070116847753525,
0.0606839582324028,
0.0025497782044112682,
-0.009265572763979435,
-0.05039454251527786,
-0.037344466894865036,
0.012004435993731022,
-0.0587446466088295,
-0.023899080231785774,
-0.014563551172614098,
0.02172766625881195,
-0.0007963828975334764,
0.045897651463747025,
0.016533730551600456,
-0.05221238732337952,
0.011940033175051212,
-0.017705267295241356,
-0.06889424473047256,
0.044757600873708725,
-0.004740932025015354,
0.11212996393442154,
-0.071616992354393,
-0.05816737562417984,
0.030726930126547813,
0.007652969099581242,
-0.07675182074308395,
-0.0369010828435421,
0.0009040606091730297,
-0.04516454413533211,
-0.045632254332304,
-0.012092573568224907,
0.05095008388161659,
-0.037800345569849014,
-0.051094263792037964,
0.06217300519347191,
0.0054471660405397415,
0.04727250337600708,
-0.040289223194122314,
0.017888842150568962,
-0.0200226791203022,
0.008499995805323124,
-0.011246857233345509,
0.06989441812038422,
-0.03784850239753723,
-0.02879895269870758,
-0.03246021643280983,
-0.035781655460596085,
0.006588032469153404,
0.05975060164928436,
-0.024142833426594734,
-0.030493009835481644,
-0.027942009270191193,
0.02552923560142517,
0.027015263214707375,
-0.013184402137994766,
-0.012572194449603558,
0.02964707650244236,
0.0475495345890522,
0.027397694066166878,
-0.03830111399292946,
0.018553312867879868,
0.007386104203760624,
-0.02980414405465126,
-0.013193483464419842,
-0.01354670338332653,
0.020214976742863655,
-0.0032742174807935953,
0.02127678506076336,
0.024447094649076462,
0.030257826671004295,
-0.04232044517993927,
-0.006272612605243921,
0.020877860486507416,
0.007219337858259678,
0.0014444049447774887,
-0.01966695673763752,
-0.0327707901597023,
-0.018367949873209,
0.05690472573041916,
-0.04266487807035446,
-0.013956529088318348,
-0.03137797489762306,
-0.025677455589175224,
0.02330017276108265,
0.023093998432159424,
0.02911350503563881,
0.020302144810557365,
-0.009089802391827106,
0.10513666272163391,
-0.02938774600625038,
-0.001587368780747056,
-0.040204256772994995,
-0.02775128185749054,
0.01656075194478035,
0.04967694357037544,
0.05517759546637535,
0.03056703321635723,
-0.013836381956934929,
-0.07308969646692276,
0.06365644931793213,
0.03955778479576111,
0.04619883373379707,
0.025197932496666908,
-0.026722978800535202,
-0.014743966981768608,
0.01443121675401926,
0.042038921266794205,
-0.03925570100545883,
-0.02099214866757393,
0.02004138194024563,
0.044752880930900574,
-0.0169510580599308,
0.023591460660099983,
-0.03829490765929222,
0.027486175298690796,
-0.0702010840177536,
-0.04976627603173256,
0.031006786972284317,
0.02219495177268982,
0.0023729524109512568,
0.02785954251885414,
-0.008271529339253902,
-0.012780750170350075,
0.025846656411886215,
0.017522308975458145,
0.003672701073810458,
-0.028194058686494827,
-0.0012629223056137562,
0.028576213866472244,
0.07876656204462051,
-0.029102040454745293,
0.02786744385957718,
0.003907667472958565,
-0.004653999116271734,
0.02805974707007408,
-0.052976228296756744,
0.02187417820096016,
0.07991334795951843,
-0.019121771678328514,
-0.026758238673210144,
0.02894156239926815,
-0.013226304203271866,
0.03597439453005791,
0.02728821523487568,
-0.018585633486509323,
0.04443745315074921,
-0.011465175077319145,
0.028698334470391273,
0.05617087334394455,
0.013795488514006138,
0.0003208483103662729,
0.017875071614980698,
0.07617612183094025,
0.01098345685750246,
0.006300663109868765,
0.04546300321817398,
-0.017226567491889,
0.015856701880693436,
-0.022875960916280746,
0.004634535871446133,
-0.02400166355073452,
-0.021977877244353294,
0.06018497794866562,
0.028483938425779343,
-0.032326627522706985,
-0.0029691976960748434,
-0.011760033667087555,
-0.007162091322243214,
0.003714407794177532,
-0.039177704602479935,
-0.019702618941664696,
-0.026351120322942734,
-0.006241971161216497,
0.003745496040210128,
-0.09584648907184601,
-0.08092407882213593,
-0.025504378601908684,
-0.016632644459605217,
-0.04557172209024429,
-0.05896914377808571,
-0.029315650463104248,
-0.05597963556647301,
-0.01674042083323002,
0.029119765385985374,
0.0017709826352074742,
-0.008417470380663872,
-0.05215056613087654,
0.02286238968372345,
-0.02492382377386093,
0.003582775592803955,
-0.0470539852976799,
-0.05680282786488533,
-0.04126762971282005,
-0.06515038758516312,
0.026807166635990143,
0.00830897781997919,
0.012971755117177963,
0.003969990648329258,
-0.004455968737602234,
-0.04917091876268387,
-0.007224458735436201,
0.03696439415216446,
0.04328024387359619,
-0.011368662118911743,
-0.06590341776609421,
0.01800657995045185,
-0.004491728730499744,
0.018143966794013977,
0.0047455644235014915,
-0.057153090834617615,
0.09475965052843094,
0.05357884615659714,
0.022127430886030197,
-0.015935726463794708,
0.00570476520806551,
-0.05525096133351326,
-0.02753354050219059,
-0.02416345849633217,
-0.031334441155195236,
-0.0012925987830385566,
-0.017767759039998055,
-0.026509320363402367,
-0.03288481384515762,
-0.04516737163066864,
-0.028004812076687813,
-0.010795940645039082,
0.03041107766330242,
0.004568752367049456,
0.067040354013443,
0.049474552273750305,
0.024526264518499374,
-0.052603110671043396,
-0.025081129744648933,
0.05908772349357605,
0.020920054987072945,
-0.019094500690698624,
-0.048378899693489075,
-0.07067832350730896,
0.05865410715341568,
0.03380653262138367,
0.003942963667213917,
-0.024664249271154404,
0.06059939041733742,
0.022033540531992912,
-0.001792378374375403,
0.034214235842227936,
-0.01597883179783821,
-0.03573727607727051,
-0.04333969205617905,
-0.014043278992176056,
-0.03705461323261261,
-0.04026011750102043,
-0.024119751527905464,
0.02073879912495613,
0.05582311749458313,
-0.05985720083117485,
-0.060380421578884125,
-0.014839391224086285,
0.028188494965434074,
0.020517949014902115,
0.01146613247692585,
-0.04350947216153145,
-0.00836916919797659,
-0.07835392653942108,
0.0300973579287529,
0.016560427844524384,
-0.004765861667692661,
0.04730607941746712,
0.017334023490548134,
0.02944987639784813,
-0.003010390792042017,
0.04825155436992645,
0.014263598248362541,
0.04069771245121956,
0.01590276136994362,
-0.04700377583503723,
0.0030814739875495434,
0.0008305052178911865,
0.04183286800980568,
-0.0032659464050084352,
-0.012715775519609451,
-0.035327885299921036,
-0.10936764627695084,
-0.014968245290219784,
-0.006615223363041878,
-0.03242219239473343,
0.01599770039319992,
0.018465308472514153,
-0.031297095119953156,
-0.0037936808075755835,
0.010269482620060444,
-0.0019293910590931773,
0.05967647582292557,
-0.04257804900407791,
0.03866411745548248,
0.02366071380674839,
0.06698615103960037,
-0.03732240945100784,
0.05275245010852814,
-0.012598671019077301,
-0.010357020422816277,
0.0026987732853740454,
0.032993659377098083,
0.028685005381703377,
0.07975048571825027,
0.04640354588627815,
0.019493000581860542,
-0.03213400021195412,
0.030177991837263107,
0.05042822286486626,
-0.03311961516737938,
-0.04638012498617172,
-0.015596944838762283,
-0.01718098111450672,
0.015026463195681572,
-0.004751903936266899,
0.011068872176110744,
0.007682612165808678,
0.07616343349218369,
0.002716805785894394,
0.013422955758869648,
-0.0023352396674454212,
-0.007047443185001612,
-0.028615601360797882,
-0.03908003866672516,
-0.005326126702129841,
0.029138613492250443,
-0.00848468579351902,
0.02384416200220585,
0.04179716482758522,
0.07588160783052444,
0.04097842425107956,
0.06265688687562943,
-0.01669052056968212,
-0.04872976616024971,
0.03638312965631485,
0.01991826854646206,
-0.026551179587841034,
-0.04011769965291023,
-0.012742354534566402,
0.029543284326791763,
0.02449152246117592,
-0.0061102863401174545,
-0.0697936862707138,
-0.0027087905909866095,
0.054530177265405655,
-0.015325171872973442,
0.0608988031744957,
-0.009180186316370964,
0.007625548634678125,
0.02810419537127018,
-0.013599444180727005,
0.0389375239610672,
-0.03327479958534241,
-0.006073142401874065,
-0.008032320998609066,
-0.010850463062524796,
-0.009456714615225792,
-0.02511376328766346,
-0.02837757021188736,
0.0061353640630841255,
0.03123854473233223,
0.05409100279211998,
0.03147675842046738,
-0.04493310675024986,
-0.04598989337682724,
-0.030844805762171745,
0.041201647371053696,
0.003929238300770521,
-0.015984687954187393,
0.05541783571243286,
0.029866809025406837,
-0.06573600322008133,
-0.032803598791360855,
-0.018353883177042007,
-0.011119570583105087,
0.009041800163686275,
0.0181985255330801,
-0.02757789008319378,
-0.027375178411602974,
0.04152747243642807,
-0.006324770860373974,
-0.0036831970792263746,
-0.11053276807069778,
0.027450568974018097,
0.004211267456412315,
-0.0026982221752405167,
0.040803730487823486,
0.02113674394786358,
0.043796829879283905,
0.03068460151553154,
0.02066158875823021,
0.01752617210149765,
-0.02114846184849739,
0.035658325999975204,
-0.006975294556468725,
0.0018792577320709825,
0.018280448392033577,
-0.06600896269083023,
0.026424236595630646,
-0.02159596048295498,
-0.02717985399067402,
-0.035379402339458466,
-0.015027984976768494,
0.054515767842531204,
-0.008140631020069122,
0.011138809844851494,
0.016542594879865646,
0.039903897792100906,
-0.014570788480341434,
-0.060654789209365845,
-0.020084017887711525,
-0.0023435342591255903,
-0.060489945113658905,
-0.06800595670938492,
0.05569801852107048,
0.014224549755454063,
0.027033234015107155,
-0.019723596051335335,
0.048499297350645065,
0.02335471287369728,
0.02250385470688343,
0.012375209480524063,
0.0653640404343605,
0.01829102262854576,
-0.03656991571187973,
-0.010672063566744328,
0.006527317222207785,
0.017231334000825882,
0.05070463940501213,
-0.015479222871363163,
0.018534502014517784,
0.0024202316999435425,
-0.019021302461624146,
-0.0047424789518117905,
0.017019236460328102,
0.0021197106689214706,
-0.04677651822566986,
0.012941505759954453,
-0.026235055178403854,
-0.02811296097934246,
0.022439241409301758,
-0.013342202641069889,
-0.03641660511493683,
0.0172167606651783,
-0.0003815867530647665,
0.02768629416823387,
0.002134991344064474,
-0.050767917186021805,
0.02894314005970955,
-0.04217768460512161,
0.045623552054166794,
-0.061460573226213455,
0.02748693712055683,
-0.02383306995034218,
0.010144802741706371,
-0.022960679605603218,
-0.013954908587038517,
-0.06615836918354034,
0.07747234404087067,
-0.03099568374454975,
-0.02050364576280117,
-0.028880123049020767,
0.045253850519657135,
-0.007977843284606934,
0.06767316162586212,
-0.0025196592323482037,
0.0418226532638073,
0.0023793906439095736,
0.0466388501226902,
-0.0224002692848444,
-0.011087610386312008,
-0.02701462060213089,
0.04443345591425896,
-0.011143039911985397,
0.01008650567382574,
-0.03750774636864662,
-0.011045138351619244,
-0.012252094224095345,
0.05071316286921501,
0.05741281434893608,
0.03094899281859398,
-0.01685074158012867,
0.011896242387592793,
0.002517217770218849,
-0.03294489160180092,
-0.02939622662961483,
0.000937080301810056,
0.008100362494587898,
0.03935577720403671,
0.06331081688404083,
0.037772540003061295,
-0.06187240779399872,
-0.03100816160440445,
0.060492176562547684,
0.027624331414699554,
0.030365200713276863,
0.006689800415188074,
0.04368690028786659,
0.03217175975441933,
0.05466799810528755,
-0.0434611439704895,
0.005520073231309652,
-0.0033198590390384197,
0.0027365158312022686,
0.01704736053943634,
-0.012459094636142254,
0.018321581184864044,
0.022272512316703796,
-0.028226183727383614,
-0.03415830060839653,
0.07605253159999847,
0.05510327219963074,
-0.01694216951727867,
-0.004625261761248112,
-0.008541221730411053,
0.034499432891607285,
0.009051580913364887,
-0.024173783138394356,
0.023063208907842636,
0.01918424479663372,
-0.03230064734816551,
0.0700695589184761,
-0.009121899493038654,
0.027131952345371246,
0.024185923859477043,
0.04945903643965721,
-0.0019249251345172524,
0.06391352415084839,
-0.0323699489235878,
0.04217510297894478,
0.04378477856516838,
-0.034791115671396255,
0.0057507166638970375,
-0.048840854316949844,
0.05551709607243538,
-0.06223252788186073,
0.08016742020845413,
0.010362273082137108,
-0.0012078043073415756,
-0.0014739814214408398,
-0.05275535583496094,
-0.05644061788916588,
-0.03242575749754906,
-0.04624839499592781,
0.06923004239797592,
-0.0048109665513038635,
-0.05543328821659088,
0.03147047385573387,
0.022526493296027184,
-0.06454384326934814,
0.040824878960847855,
0.04602288082242012,
0.032552920281887054,
0.01565803401172161,
0.029060818254947662,
-0.06095849350094795,
0.03441835939884186,
-0.07521330565214157,
0.06990565359592438,
-0.0678117573261261,
0.010813879780471325,
0.014319263398647308,
-0.04466061666607857,
-0.03605540469288826,
0.005041932221502066,
-0.007144457660615444,
-0.004718933720141649,
0.05402163788676262,
-0.048104606568813324,
-0.06963900476694107,
-0.018236853182315826,
-0.002573216799646616,
0.0028376232367008924,
0.03318249434232712,
-0.007933858782052994,
-0.020543638616800308,
0.016071677207946777,
0.002891517709940672,
-0.005405283998697996,
0.01086612232029438,
0.01922399364411831,
-0.045254647731781006,
-0.052666209638118744,
0.0594642199575901,
0.010740596801042557,
-0.01872982829809189,
0.026201309636235237,
-0.022257346659898758,
0.010374792851507664,
0.005829032976180315,
0.01824839971959591,
-0.0033639282919466496,
-0.0653160810470581,
-0.0030463500879704952,
0.03979003056883812,
-0.013197715394198895,
0.037515658885240555,
-0.033615246415138245,
0.029215967282652855,
0.0443202406167984,
0.02772594429552555,
-0.0011057683732360601,
-0.049988120794296265,
-0.00706391129642725,
0.017534859478473663,
-0.04431721940636635,
0.004686616361141205,
0.0008942437707446516,
-0.03473323956131935,
-0.027366705238819122,
-0.038804713636636734,
-0.030477182939648628,
0.01105937734246254,
-0.030829759314656258,
-0.011048487387597561,
0.01978103630244732,
0.024095121771097183,
-0.03371722996234894,
-0.08461804687976837,
-0.018422521650791168,
-0.04932428151369095,
0.030101565644145012,
0.030220476910471916,
-0.05509013682603836,
0.0035457510966807604,
-0.042736202478408813,
-0.03306608274579048,
0.09599687159061432,
0.01428643986582756,
-0.03164410963654518,
0.06101908162236214,
0.032129447907209396,
-0.023923464119434357,
0.017497733235359192,
0.032313503324985504,
-0.06680615246295929,
0.011233165860176086,
-0.002350582042708993,
0.010879292152822018,
0.03573298826813698,
-0.00877031683921814,
-0.04306718707084656,
0.0074215480126440525,
-0.060039497911930084,
-0.051710471510887146,
-0.04283344745635986,
0.021825537085533142,
0.10280535370111465
] |
AdapterHub/bert-base-uncased-pf-conll2003_pos | [
"bert",
"en",
"dataset:conll2003",
"arxiv:2104.08247",
"adapter-transformers",
"token-classification",
"adapterhub:pos/conll2003"
] | token-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | 2023-05-17T14:57:39Z | ---
license: apache-2.0
datasets:
- mozilla-foundation/common_voice_13_0
language:
- bn
metrics:
- wer
---
wer=57.33751127569672 and normalized_wer=29.29902387732354
{'eval/wer': 57.33751127569672, 'eval/normalized_wer': 29.29902387732354} | [
-0.03973217308521271,
-0.009799283929169178,
0.004275196697562933,
0.005782011430710554,
0.03650445491075516,
0.019038589671254158,
0.003838856238871813,
0.015110056847333908,
-0.013214344158768654,
0.0271206833422184,
0.03720514476299286,
-0.02119622565805912,
0.03574113920331001,
0.031387634575366974,
-0.029620656743645668,
-0.02600858174264431,
-0.013795634731650352,
-0.01664930023252964,
-0.07624392956495285,
0.007420166861265898,
0.026959959417581558,
0.016156291589140892,
-0.033808041363954544,
0.04362344369292259,
0.002269489923492074,
-0.006106293294578791,
-0.021914932876825333,
0.03628069534897804,
0.02981993928551674,
-0.020659539848566055,
0.007366555277258158,
-0.0485723614692688,
-0.0458141565322876,
-0.039624691009521484,
-0.02876141481101513,
0.02186398021876812,
-0.0012365235015749931,
0.021101199090480804,
0.04173543304204941,
0.031576547771692276,
-0.010967163369059563,
0.03821616619825363,
-0.0011100082192569971,
-0.007957679219543934,
0.04865735024213791,
-0.0021818866953253746,
-0.02804180048406124,
-0.05617407336831093,
0.019660823047161102,
-0.04791098088026047,
-0.04786668345332146,
-0.055271346122026443,
-0.013653061352670193,
0.004335996229201555,
-0.021523723378777504,
-0.023559188470244408,
-0.03615989536046982,
-0.0060263145714998245,
0.06746828556060791,
-0.0555155873298645,
-0.03818342462182045,
0.006804151460528374,
-0.08642393350601196,
0.0017195153050124645,
0.019138459116220474,
-0.06959568709135056,
0.05025195702910423,
-0.03229423239827156,
0.03415251523256302,
-0.03480345755815506,
0.06742575019598007,
-0.03453700244426727,
0.009416230022907257,
-0.08205389976501465,
-0.0168492179363966,
-0.036429617553949356,
0.054706018418073654,
0.045681774616241455,
-0.01364900078624487,
0.04979417473077774,
0.031406160444021225,
0.0388798750936985,
0.05090448260307312,
0.011603348888456821,
0.025400299578905106,
0.011830436065793037,
-0.06605132669210434,
0.013396559283137321,
0.0033818285446614027,
0.04541189223527908,
-0.029756994917988777,
-0.03203924372792244,
-0.005184007342904806,
-0.03866035118699074,
-0.0007709113997407258,
0.028140995651483536,
0.0435040108859539,
-0.007970652543008327,
0.00852674525231123,
0.021318091079592705,
0.017948389053344727,
0.04959224909543991,
-0.009645633399486542,
0.05171537026762962,
-0.008824021555483341,
-0.001807698979973793,
-0.022618312388658524,
-0.025684798136353493,
-0.037625186145305634,
0.010871621780097485,
0.023824328556656837,
-0.06020144373178482,
-0.019914856180548668,
0.017696598544716835,
0.01849416270852089,
-0.04301208630204201,
0.051373668015003204,
-0.03812895342707634,
-0.06506485491991043,
-0.03252927213907242,
0.029816459864377975,
0.008838535286486149,
0.017488276585936546,
0.013663942925632,
-0.0426284521818161,
-0.00503239082172513,
-0.03686416894197464,
-0.01469164527952671,
0.020543145015835762,
0.004772494547069073,
0.006848607677966356,
0.03803388774394989,
0.02455621212720871,
-0.08581956475973129,
0.0032798449974507093,
0.01089269295334816,
-0.04530399665236473,
0.002861324232071638,
-0.007001871708780527,
0.05683859810233116,
-0.07525335252285004,
-0.0699676126241684,
-0.00114949862472713,
0.011801136657595634,
0.005024800542742014,
0.03675886616110802,
0.018432380631566048,
-0.013615935109555721,
-0.054523419588804245,
-0.024483028799295425,
0.053161293268203735,
-0.07156244665384293,
-0.0034056897275149822,
0.08496200293302536,
-0.024517850950360298,
0.03542109206318855,
-0.010487430728971958,
0.005249327514320612,
-0.007627284619957209,
-0.02007836475968361,
-0.020703760907053947,
0.059188757091760635,
-0.006994554307311773,
-0.032623350620269775,
-0.022042617201805115,
-0.042865704745054245,
-0.0021282057277858257,
0.07167030870914459,
0.029829172417521477,
-0.02770719677209854,
-0.04374528303742409,
0.015432587824761868,
0.04192761704325676,
0.023493986576795578,
-0.033526819199323654,
0.04676514491438866,
0.039371732622385025,
0.027730505913496017,
0.00018114880367647856,
0.06092669814825058,
0.014592819847166538,
-0.018793875351548195,
-0.029122212901711464,
0.01181923970580101,
0.03510761633515358,
-0.03102779947221279,
-0.026540599763393402,
0.05673927441239357,
0.015912408009171486,
-0.04290836676955223,
-0.016827458515763283,
0.02549946866929531,
-0.033469729125499725,
-0.02240508608520031,
0.01727539859712124,
-0.015774976462125778,
-0.03220358118414879,
0.022054055705666542,
-0.02358834445476532,
0.013473604805767536,
-0.021421832963824272,
-0.01669944077730179,
0.003444031113758683,
0.013610433787107468,
0.019253352656960487,
0.05384343862533569,
-0.0213690847158432,
0.05886415019631386,
-0.06065419316291809,
0.009760781191289425,
-0.02433142066001892,
-0.03481706231832504,
-0.03717900812625885,
0.058456163853406906,
0.044048141688108444,
0.06496348232030869,
-0.02956688031554222,
-0.046353887766599655,
0.04084859788417816,
0.06935960799455643,
0.08168047666549683,
0.06003421172499657,
-0.02211005426943302,
0.008902620524168015,
0.03330017253756523,
0.038826752454042435,
-0.062432024627923965,
-0.04229851812124252,
0.0011303736828267574,
0.026016486808657646,
-0.016261160373687744,
0.0168626606464386,
-0.0219257939606905,
0.029568249359726906,
-0.05098801478743553,
-0.10003679990768433,
0.05513548105955124,
-0.009317254647612572,
-0.014818022958934307,
0.023631738498806953,
-0.04440898448228836,
0.009822516702115536,
0.0475255511701107,
0.023944756016135216,
-0.006124754436314106,
-0.05290835723280907,
0.028392136096954346,
0.024208806455135345,
0.0479617677628994,
-0.06450362503528595,
0.045318376272916794,
-0.025867028161883354,
0.010358045808970928,
0.012892229482531548,
-0.03929375857114792,
0.023384397849440575,
0.03282814845442772,
0.0039706300012767315,
-0.021129919216036797,
0.04201825335621834,
0.03141909837722778,
0.028433676809072495,
0.07749136537313461,
0.025453802198171616,
0.04807528108358383,
0.005443327594548464,
0.039247654378414154,
0.07034852355718613,
0.03945966809988022,
0.016250448301434517,
0.04663120582699776,
0.06615790724754333,
0.0020029842853546143,
-0.009774807840585709,
0.06686727702617645,
-0.06905833631753922,
0.01536913774907589,
-0.024399545043706894,
0.010704230517148972,
-0.007116399705410004,
-0.013672188855707645,
0.04083575680851936,
-0.003673710161820054,
-0.02711106464266777,
-0.0018660043133422732,
-0.043526582419872284,
0.008223515935242176,
0.02454208768904209,
-0.011170119047164917,
-0.009316510520875454,
0.0004087673733010888,
-0.028760168701410294,
0.027677930891513824,
-0.07570646703243256,
-0.005300192628055811,
0.008701496757566929,
-0.05057648941874504,
0.026354465633630753,
-0.05721190199255943,
-0.01922527328133583,
-0.07865183800458908,
-0.0035004408564418554,
0.06484147906303406,
0.023904521018266678,
0.012350293807685375,
-0.016275977715849876,
-0.005494717508554459,
-0.03747335076332092,
-0.04006337374448776,
-0.050130151212215424,
-0.03958039730787277,
-0.0192292258143425,
-0.053460583090782166,
0.045770615339279175,
0.061191730201244354,
0.049477994441986084,
-0.01424645446240902,
-0.014939694665372372,
-0.040432751178741455,
-0.024767279624938965,
0.05516381189227104,
0.04080996289849281,
-0.027646379545331,
-0.04329081252217293,
0.02998059056699276,
-0.005234984215348959,
0.018525095656514168,
0.0013293650699779391,
-0.04206152632832527,
0.06258046627044678,
0.04910943657159805,
0.0358310341835022,
0.017839893698692322,
-0.01709015481173992,
-0.044150836765766144,
-0.05983809009194374,
-0.050478484481573105,
-0.014688602648675442,
-0.045651696622371674,
-0.013945750892162323,
-0.02180013433098793,
-0.013738199137151241,
-0.02918362244963646,
-0.0321209616959095,
0.008034313097596169,
0.0014783750521019101,
0.021702731028199196,
0.04580165445804596,
0.03218803182244301,
0.010568777099251747,
-0.025351496413350105,
-0.008813639171421528,
0.0749797448515892,
0.014029392972588539,
-0.02342812716960907,
-0.07959479838609695,
-0.029278365895152092,
0.026301970705389977,
0.024708105251193047,
0.01688479818403721,
-0.02006816677749157,
0.05088555067777634,
0.016128651797771454,
0.0012146738590672612,
0.018792277202010155,
-0.03943215310573578,
-0.011250938288867474,
-0.011257990263402462,
-0.0009732940816320479,
-0.01575392857193947,
-0.05095299333333969,
-0.005710857920348644,
0.031259313225746155,
0.04542439058423042,
-0.046284019947052,
-0.021539051085710526,
-0.0005305582890287042,
0.003578352043405175,
0.026998743414878845,
-0.03052065148949623,
-0.007600575219839811,
-0.005314532667398453,
-0.04862404987215996,
-0.034609440714120865,
0.016104785725474358,
0.003262026933953166,
0.008570602163672447,
0.04372834786772728,
0.0024127515498548746,
-0.006081167608499527,
0.06796491146087646,
0.02546670474112034,
0.05406209081411362,
0.04485360532999039,
-0.060110095888376236,
-0.0008794866153039038,
-0.03001539781689644,
0.009440934285521507,
-0.00017578518600203097,
-0.03340805694460869,
-0.03687030449509621,
-0.06904975324869156,
-0.050138164311647415,
0.03980625420808792,
-0.019508836790919304,
-0.0306004099547863,
0.027773641049861908,
0.00471074040979147,
-0.0006079780869185925,
-0.014409637078642845,
0.009562044404447079,
0.01951732486486435,
-0.014822333119809628,
0.05971510335803032,
-0.0318245030939579,
0.04338602349162102,
-0.07844281941652298,
0.011952939443290234,
-0.03733817860484123,
-0.02752513624727726,
0.008994710631668568,
0.07182619720697403,
0.02989167906343937,
0.028232380747795105,
0.061921678483486176,
0.022165922448039055,
-0.03408708795905113,
0.03171436861157417,
0.058234576135873795,
-0.033785805106163025,
-0.034283239394426346,
0.03453228250145912,
-0.003253346309065819,
-0.05541510879993439,
0.03994365409016609,
-0.05517108738422394,
0.04673806205391884,
0.03643973916769028,
-0.02297578938305378,
-0.0289682038128376,
0.0030947423074394464,
-0.019469203427433968,
-0.014867228455841541,
-0.05111683905124664,
-0.00135956855956465,
0.004202164709568024,
-0.04310683533549309,
0.05706683546304703,
0.03237096220254898,
0.013517394661903381,
0.08398338407278061,
0.03667551279067993,
-0.04052483290433884,
-0.04399175941944122,
0.03592798113822937,
0.023368990048766136,
-0.04288381710648537,
-0.04855334758758545,
-0.03659386932849884,
0.03549812734127045,
0.029025370255112648,
-0.019960658624768257,
-0.08024922758340836,
0.01271044835448265,
0.061903681606054306,
-0.031139260157942772,
0.05409574508666992,
-0.010160849429666996,
0.043569475412368774,
0.06508612632751465,
-0.0029287373181432486,
0.03664074093103409,
-0.028994189575314522,
-0.0036314434837549925,
-0.02640758641064167,
0.01757124252617359,
-0.030704231932759285,
-0.03156280517578125,
-0.03608057275414467,
0.006729671731591225,
0.04194766655564308,
0.04575769230723381,
0.044863197952508926,
-0.040519531816244125,
-0.03965423256158829,
-0.010048824362456799,
0.025420594960451126,
-0.026654720306396484,
0.023171884939074516,
0.044249869883060455,
0.04269634932279587,
-0.009861506521701813,
-0.022268246859312057,
0.0031371479853987694,
0.024022987112402916,
0.04153230041265488,
-0.026071982458233833,
-0.018987614661455154,
-0.03134416416287422,
0.047659169882535934,
0.0086262421682477,
-0.03926080837845802,
-0.0723840668797493,
0.028652697801589966,
-0.034812476485967636,
-0.015171545557677746,
0.039292749017477036,
0.02377067133784294,
0.020217446610331535,
0.05326869711279869,
-0.008434752002358437,
0.01757323183119297,
-0.0446249358355999,
0.023702790960669518,
-0.031049907207489014,
-0.03624555841088295,
0.0023555357474833727,
-0.027689501643180847,
-0.019896231591701508,
-0.021873218938708305,
-0.043833550065755844,
-0.031847480684518814,
-0.017573000863194466,
0.05864806845784187,
-0.022188959643244743,
0.002659484511241317,
0.002538676606491208,
0.03090994991362095,
-0.026023369282484055,
-0.03937805816531181,
-0.02800259180366993,
-0.041431721299886703,
-0.072114497423172,
-0.017337804660201073,
0.04766390100121498,
-0.018039852380752563,
0.021985067054629326,
0.015000001527369022,
0.03441934287548065,
0.04162018001079559,
-0.0049615721218287945,
-0.012585116550326347,
0.021745670586824417,
-0.0038474583998322487,
-0.06774640828371048,
-0.024720603600144386,
0.024156104773283005,
0.008957797661423683,
0.06015865132212639,
-0.0037123216316103935,
0.029530711472034454,
-0.004201414994895458,
-0.015437181107699871,
-0.033427443355321884,
0.007603717036545277,
0.047683604061603546,
-0.05144781991839409,
-0.061741430312395096,
-0.0054598781280219555,
-0.031531017273664474,
0.025886980816721916,
-0.06694874167442322,
-0.017352202907204628,
0.04768507927656174,
0.031388334929943085,
0.035622335970401764,
-0.007161632180213928,
-0.04859420284628868,
0.010522074066102505,
-0.007911701686680317,
0.0021752044558525085,
-0.042249761521816254,
0.0354326069355011,
-0.018103037029504776,
0.022376028820872307,
-0.012482795864343643,
0.024964796379208565,
-0.05465153977274895,
0.0441058948636055,
-0.0034974743612110615,
-0.012985567562282085,
-0.01646268554031849,
0.00955183245241642,
-0.014468113891780376,
0.016205133870244026,
-0.029486894607543945,
0.033601582050323486,
-0.01770063489675522,
0.056952111423015594,
-0.030561886727809906,
0.0009442687733098865,
-0.007708161137998104,
0.004670997615903616,
-0.049252912402153015,
0.0003248826542403549,
0.010002518072724342,
-0.05775844305753708,
0.0064106653444468975,
0.04157513007521629,
0.004032683093100786,
0.00007371875835815445,
-0.03583439812064171,
-0.02843937836587429,
0.015178817324340343,
-0.05532118305563927,
-0.003639082657173276,
-0.006208532955497503,
0.052294306457042694,
-0.006471985951066017,
0.043121229857206345,
0.025463514029979706,
-0.0811569020152092,
-0.05965721979737282,
0.02702026255428791,
0.006064411718398333,
0.0186089389026165,
0.017922423779964447,
0.041395317763090134,
0.03935268521308899,
0.05789351835846901,
-0.0019917506724596024,
-0.012413541786372662,
-0.036963362246751785,
-0.007171116769313812,
0.014656438492238522,
-0.02296803891658783,
0.0024896194227039814,
0.0072172642685472965,
-0.028447866439819336,
-0.028345990926027298,
0.061797741800546646,
0.0058642723597586155,
0.033516302704811096,
-0.02927689626812935,
-0.05548170953989029,
0.026046164333820343,
0.02420041337609291,
-0.045036595314741135,
0.03248834237456322,
-0.005012823268771172,
-0.01052106823772192,
0.07685825228691101,
-0.0004979358054697514,
0.013197451829910278,
0.055886901915073395,
0.02321283333003521,
-0.011147426441311836,
0.07012923061847687,
-0.03667439892888069,
0.0018445337191224098,
0.05991706997156143,
-0.051900193095207214,
-0.012007750570774078,
-0.02896386757493019,
0.0600552037358284,
-0.0686386227607727,
0.051614176481962204,
0.04704637825489044,
0.013510648161172867,
0.02752435952425003,
-0.021758588030934334,
-0.026259521022439003,
0.007889896631240845,
-0.01752380095422268,
0.08045644313097,
0.004947785288095474,
-0.0723666399717331,
0.06528903543949127,
0.022446058690547943,
-0.09410115331411362,
0.030569855123758316,
0.028919046744704247,
0.046195052564144135,
0.03573736548423767,
0.05840682610869408,
-0.04394150152802467,
0.0024207576643675566,
-0.025566894561052322,
0.05037865415215492,
-0.03380275517702103,
-0.020499074831604958,
0.03295452147722244,
-0.050772521644830704,
-0.024246254935860634,
0.02381274476647377,
-0.04282907769083977,
0.004795119632035494,
0.011901010759174824,
-0.042316142469644547,
-0.05122469738125801,
0.021242639049887657,
0.05061507225036621,
-0.03896380588412285,
-0.022404981777071953,
-0.03160528838634491,
0.03034844808280468,
0.018878905102610588,
0.011756780557334423,
-0.02202957309782505,
-0.01048437599092722,
0.009604592807590961,
-0.0893765389919281,
-0.033084042370319366,
0.043601084500551224,
0.010059584863483906,
-0.028362322598695755,
0.03849745914340019,
0.009650268591940403,
0.00255312817171216,
0.01934303529560566,
-0.00791469868272543,
0.00883777067065239,
-0.039261940866708755,
-0.03350411728024483,
0.0130315525457263,
-0.0011627811472862959,
0.03627066686749458,
0.014628748409450054,
0.019133146852254868,
0.051377810537815094,
0.010065784677863121,
0.004369191359728575,
-0.026789981871843338,
-0.03716970235109329,
0.02586582489311695,
-0.037435077130794525,
0.01795078068971634,
-0.025431791320443153,
-0.04655645042657852,
-0.06114737689495087,
-0.009987877681851387,
-0.01726924069225788,
0.029993977397680283,
-0.05348912626504898,
0.038920946419239044,
0.024893201887607574,
0.00585664389654994,
-0.05231739208102226,
-0.06273134052753448,
-0.04813262075185776,
-0.029636068269610405,
0.03279935568571091,
0.019061056897044182,
-0.033248089253902435,
0.021415604278445244,
-0.05201876536011696,
-0.06374473869800568,
0.014883584342896938,
0.021981190890073776,
-0.041438471525907516,
0.025654735043644905,
0.048846952617168427,
-0.055621128529310226,
0.017965242266654968,
0.05331716686487198,
-0.028042547404766083,
0.06108764931559563,
0.01133106928318739,
0.02983487956225872,
0.03363225981593132,
0.06419459730386734,
-0.03395471349358559,
-0.01737060397863388,
-0.05270817130804062,
-0.04190634563565254,
-0.011383621022105217,
0.012851804494857788,
0.05147178843617439
] |
AdapterHub/bert-base-uncased-pf-copa | [
"bert",
"en",
"arxiv:2104.08247",
"adapter-transformers",
"adapterhub:comsense/copa"
] | null | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
language:
- hi
license: apache-2.0
tags:
- hf-asr-leaderboard
- generated_from_trainer
datasets:
- mozilla-foundation/common_voice_11_0
model-index:
- name: Whisper Small Id - nypnop
results: []
---
<!-- 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. -->
# Whisper Small Id - nypnop
This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the Common Voice 11.0 dataset.
## 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: 16
- 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: 500
- training_steps: 4000
- mixed_precision_training: Native AMP
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.05237686634063721,
0.0010282279690727592,
-0.01949586346745491,
0.02832867205142975,
0.042469386011362076,
0.0006272371974773705,
0.006013127043843269,
-0.0039057431276887655,
-0.022489851340651512,
0.05519887059926987,
0.04233141243457794,
-0.021936599165201187,
0.005758870393037796,
0.03128539398312569,
-0.03948551043868065,
-0.02310137264430523,
-0.0450114905834198,
-0.02086104080080986,
-0.048757243901491165,
0.014342675916850567,
-0.006807200610637665,
0.005069500766694546,
0.008524412289261818,
0.001926010474562645,
-0.033680401742458344,
0.02497747354209423,
-0.024529414251446724,
-0.020588677376508713,
0.04632019251585007,
-0.07307019829750061,
-0.009858859702944756,
-0.06563983112573624,
-0.041076917201280594,
-0.022491710260510445,
-0.03942785784602165,
0.002434824826195836,
0.02292601391673088,
0.02639595791697502,
0.05275663360953331,
0.03391048312187195,
-0.014611326158046722,
-0.001730999443680048,
0.005035856738686562,
0.012004760093986988,
0.044416435062885284,
0.00014482217375189066,
-0.0152176758274436,
-0.0014882683753967285,
0.03557266667485237,
-0.031013991683721542,
-0.046746864914894104,
-0.04093360900878906,
-0.017471589148044586,
0.030677156522870064,
-0.01194892916828394,
-0.05848581716418266,
-0.05873950570821762,
-0.03826838359236717,
0.06696420162916183,
-0.03812210261821747,
-0.019154468551278114,
0.005553559400141239,
-0.06921257078647614,
0.013967914506793022,
0.02934562973678112,
-0.03949769213795662,
0.03806501254439354,
-0.04014867916703224,
0.041204746812582016,
-0.03651689738035202,
0.04519099369645119,
-0.017408667132258415,
-0.001865367405116558,
-0.09817271679639816,
-0.0155463432893157,
-0.020107746124267578,
0.03461155667901039,
0.048843998461961746,
-0.03368634730577469,
0.06014540046453476,
0.0037971409037709236,
0.01611197739839554,
0.04345333203673363,
-0.002948859240859747,
0.04657713323831558,
0.0359615758061409,
-0.03477660194039345,
0.03412403538823128,
-0.018094245344400406,
0.04308265447616577,
-0.04130249097943306,
-0.05011085420846939,
-0.029834682121872902,
-0.04046411067247391,
-0.00649754935875535,
0.02148752100765705,
0.033382151275873184,
0.0017072411719709635,
0.04792524129152298,
0.02185131050646305,
0.0321354903280735,
0.01478579081594944,
-0.03296627849340439,
0.07447727769613266,
-0.018056919798254967,
-0.02147170528769493,
-0.013082521967589855,
-0.03369690105319023,
-0.021390197798609734,
0.030681977048516273,
0.03492041304707527,
-0.030456723645329475,
-0.034868162125349045,
0.024404464289546013,
0.034530047327280045,
-0.005301665049046278,
0.026965659111738205,
-0.04694660007953644,
-0.04778445139527321,
-0.04084145277738571,
0.0398106575012207,
0.017247403040528297,
0.03557286784052849,
0.0084398677572608,
-0.03801349177956581,
0.018113579601049423,
-0.04646782949566841,
-0.025119494646787643,
0.01646478660404682,
-0.007529041264206171,
0.010099885985255241,
0.05188798904418945,
0.0048150490038096905,
-0.04582797363400459,
-0.045810967683792114,
0.014718042686581612,
-0.049014247953891754,
0.025968559086322784,
-0.001401109853759408,
0.09222296625375748,
-0.06466016918420792,
-0.08077645301818848,
0.006877534557133913,
0.000004230219929013401,
-0.03242708370089531,
0.01000247336924076,
0.021922260522842407,
-0.03503420948982239,
-0.044575925916433334,
0.01749236136674881,
0.04413091763854027,
-0.0452217236161232,
-0.016831016167998314,
0.06413490325212479,
0.003450647694990039,
0.027986902743577957,
-0.05924775451421738,
-0.02055460587143898,
0.0034309756010770798,
0.008564907126128674,
-0.02863687463104725,
0.043176740407943726,
-0.019075581803917885,
-0.0016448238166049123,
-0.05043172463774681,
-0.03310185298323631,
-0.01208420842885971,
0.06050453335046768,
-0.0020061165560036898,
-0.03126336261630058,
-0.008858582004904747,
0.05135323479771614,
0.0402693934738636,
0.02310672216117382,
-0.05518403649330139,
0.06375634670257568,
0.06822945177555084,
0.052782244980335236,
-0.029835568740963936,
0.054133638739585876,
0.0011489844182506204,
-0.034780919551849365,
-0.022965241223573685,
0.013274863362312317,
0.01787789724767208,
-0.03011491149663925,
0.0018331008031964302,
0.021947864443063736,
-0.01118022482842207,
-0.07382959127426147,
-0.03827515244483948,
0.06212540343403816,
-0.0075252121314406395,
-0.011430758982896805,
0.005208988673985004,
-0.002412037691101432,
-0.020627297461032867,
0.024994589388370514,
-0.03390070050954819,
-0.005076457280665636,
-0.0355515256524086,
-0.04015636444091797,
-0.007870403118431568,
0.010207567363977432,
0.03510827571153641,
0.07098931074142456,
-0.0024207537062466145,
0.07690998166799545,
-0.016413778066635132,
-0.0012524520279839635,
-0.031737010926008224,
-0.04571644589304924,
0.01042276993393898,
0.06410988420248032,
0.028232233598828316,
0.06263863295316696,
-0.006723728496581316,
-0.049148187041282654,
0.05777939036488533,
0.07469078153371811,
0.05483295023441315,
0.005247409455478191,
-0.037287309765815735,
-0.002374309115111828,
0.0189469363540411,
0.04992102459073067,
-0.04111500456929207,
-0.03405334800481796,
0.009819996543228626,
0.028376389294862747,
0.0025786631740629673,
0.022642549127340317,
-0.02586037665605545,
0.03995074704289436,
-0.06222916021943092,
-0.07590116560459137,
0.029426297172904015,
0.014815068803727627,
0.013037587516009808,
0.025711799040436745,
-0.04350645840167999,
-0.01328411977738142,
0.054440420120954514,
0.0029472466558218002,
0.008152986876666546,
-0.043429020792245865,
0.01906699314713478,
0.0008271285332739353,
0.020400114357471466,
-0.04605153948068619,
0.04197853431105614,
-0.023389551788568497,
-0.002512711565941572,
0.02667556330561638,
-0.04455958679318428,
0.038554057478904724,
0.03941167891025543,
0.03411691263318062,
-0.04175567254424095,
0.022386178374290466,
-0.0018181457417085767,
0.05990465357899666,
0.050193265080451965,
0.028974154964089394,
0.0740971565246582,
-0.01836446300148964,
0.05222897231578827,
0.08285701274871826,
0.037705812603235245,
0.015037646517157555,
0.03377325460314751,
0.05689355358481407,
0.0006704749539494514,
-0.01011272706091404,
0.04438678175210953,
-0.046210840344429016,
0.020409271121025085,
-0.05082361027598381,
0.004878966137766838,
-0.01004181057214737,
0.0010216068476438522,
0.058770790696144104,
0.001126609044149518,
-0.004896754398941994,
0.0004863057693000883,
-0.03638419508934021,
-0.02212797850370407,
0.043677423149347305,
-0.009048646315932274,
-0.010500852018594742,
-0.003464687615633011,
-0.0002662457700353116,
0.0017033416079357266,
-0.10058371722698212,
-0.0318216010928154,
-0.01019388996064663,
-0.0275680311024189,
-0.01190442405641079,
-0.07891125231981277,
0.0009404622833244503,
-0.04708767309784889,
-0.004309821408241987,
0.024732649326324463,
0.026345159858465195,
0.029422827064990997,
-0.03919335454702377,
0.01465113926678896,
-0.05101294815540314,
-0.032959237694740295,
-0.059140052646398544,
-0.04467560350894928,
-0.038391802459955215,
-0.08676519989967346,
0.03857366740703583,
0.037572383880615234,
0.027697104960680008,
0.004732093308120966,
0.010162468999624252,
-0.006120889913290739,
0.008395957760512829,
0.04565979912877083,
0.03522549942135811,
-0.0446978323161602,
-0.057479746639728546,
0.023461773991584778,
-0.040892962366342545,
0.0177152156829834,
-0.014112362638115883,
-0.027810117229819298,
0.07131978124380112,
0.051210127770900726,
0.018861716613173485,
0.013573907315731049,
-0.03244984894990921,
-0.04770636186003685,
-0.061657439917325974,
-0.020290862768888474,
-0.03813992068171501,
-0.03551534563302994,
-0.027797643095254898,
-0.03461300581693649,
0.005919419229030609,
-0.02579110860824585,
-0.01627068966627121,
0.008167412132024765,
0.009687013924121857,
0.030274497345089912,
0.03635626286268234,
0.01974039524793625,
0.02994694374501705,
-0.02791019342839718,
-0.05157339572906494,
0.044519536197185516,
-0.011252537369728088,
0.008472735993564129,
-0.07352035492658615,
-0.019968131557106972,
0.03742023929953575,
0.02609248273074627,
0.028914159163832664,
-0.015084057115018368,
0.07957065850496292,
0.01434785034507513,
-0.01265658438205719,
0.013008315116167068,
-0.016020821407437325,
-0.004398936405777931,
-0.00891235750168562,
-0.004152690060436726,
-0.017215095460414886,
-0.03472646325826645,
-0.0035875351168215275,
0.006122622173279524,
0.05619078874588013,
-0.05545046925544739,
-0.04665791615843773,
-0.02857901155948639,
0.029989970847964287,
0.042743731290102005,
0.010135475546121597,
-0.028480004519224167,
-0.013863187283277512,
-0.07949049770832062,
-0.008138714358210564,
0.021495552733540535,
0.018199186772108078,
0.04630930349230766,
0.02376820333302021,
0.020595520734786987,
-0.01304690819233656,
0.053583767265081406,
0.03516561537981033,
0.06430728733539581,
0.03565876558423042,
-0.06020257994532585,
-0.005163118243217468,
-0.012606486678123474,
0.032634370028972626,
-0.019262660294771194,
-0.015967832878232002,
-0.06874170154333115,
-0.08340417593717575,
-0.02208564057946205,
0.017064571380615234,
-0.019601667299866676,
0.003947665449231863,
0.017054472118616104,
-0.025857292115688324,
-0.00893904734402895,
0.009612939320504665,
0.013335414230823517,
0.03578772023320198,
-0.0513073168694973,
0.04544279724359512,
-0.01257457584142685,
0.03118806891143322,
-0.04739317297935486,
0.02910511940717697,
-0.04775156453251839,
-0.052561692893505096,
0.021896272897720337,
0.07566305249929428,
0.005710508208721876,
0.07122524827718735,
0.0721500888466835,
0.009570874273777008,
-0.043534137308597565,
0.02687814086675644,
0.07383093982934952,
-0.023654945194721222,
-0.03405650705099106,
-0.0038109745364636183,
-0.005605548154562712,
-0.029165830463171005,
0.0006343050627037883,
-0.004484802950173616,
0.05474980175495148,
0.04496204853057861,
-0.014599699527025223,
-0.00016361490997951478,
0.022031275555491447,
-0.009499004110693932,
-0.032321032136678696,
-0.054599206894636154,
-0.0179853904992342,
0.024030590429902077,
-0.026317210868000984,
0.03892239183187485,
0.0042697167955338955,
0.015657389536499977,
0.06121149659156799,
0.05124185234308243,
-0.040176331996917725,
-0.04672693833708763,
0.04017931595444679,
0.05783751606941223,
-0.04468187689781189,
-0.08075641095638275,
-0.02146701142191887,
0.029588546603918076,
0.03657514229416847,
-0.004749929998070002,
-0.06055853143334389,
-0.008260439150035381,
0.03593378886580467,
-0.017335981130599976,
0.05046143755316734,
-0.018825272098183632,
0.013453156687319279,
0.04909433051943779,
-0.005565389525145292,
0.02253470942378044,
-0.02098115161061287,
0.002228513127192855,
0.0035470216535031796,
-0.0036735436879098415,
-0.03417263925075531,
-0.05254756286740303,
-0.0440765842795372,
0.005674128886312246,
0.03057568334043026,
0.02728751115500927,
0.035630688071250916,
-0.04070855677127838,
-0.05988329276442528,
-0.009534494951367378,
0.03668460249900818,
-0.017524512484669685,
-0.004352046176791191,
0.02532736025750637,
0.04873088747262955,
-0.03750227019190788,
-0.034086741507053375,
-0.01829536072909832,
-0.030045073479413986,
0.026209797710180283,
-0.011480003595352173,
-0.04822632297873497,
-0.007443353068083525,
0.04734383895993233,
-0.006146914325654507,
-0.0341915637254715,
-0.09289629757404327,
0.01908438466489315,
-0.022394416853785515,
-0.012140513397753239,
0.044035520404577255,
0.04454654082655907,
0.026088187471032143,
0.04780973121523857,
0.03401841223239899,
0.03715839982032776,
-0.02754603698849678,
0.05607084557414055,
-0.03879382088780403,
-0.0247951652854681,
-0.0009315436473116279,
-0.03732818737626076,
-0.013058684766292572,
-0.03615257516503334,
-0.04223622754216194,
-0.02671477198600769,
-0.016527343541383743,
0.021583424881100655,
-0.008431322872638702,
-0.010795582085847855,
-0.020460380241274834,
0.033363234251737595,
-0.04371466115117073,
-0.016787661239504814,
-0.03421751409769058,
-0.025951258838176727,
-0.05416654795408249,
-0.04359970614314079,
0.04289732873439789,
0.008691991679370403,
0.03421769663691521,
-0.01115696132183075,
0.03441552072763443,
0.0303586944937706,
-0.006043576635420322,
-0.0171488206833601,
0.044677168130874634,
0.0025221852120012045,
-0.04423382133245468,
-0.010186275467276573,
0.03846234455704689,
0.018699290230870247,
0.05176560953259468,
-0.012914999388158321,
0.039105843752622604,
0.007305528502911329,
-0.014888325706124306,
-0.03343065083026886,
0.02723001316189766,
0.01787463016808033,
-0.07288577407598495,
-0.014647702686488628,
0.009428488090634346,
-0.05296739190816879,
0.027325892820954323,
-0.07096932083368301,
-0.007130289915949106,
-0.003014682326465845,
0.0008553359657526016,
0.038976218551397324,
-0.04934561997652054,
-0.04102281108498573,
0.01230325922369957,
-0.03658268600702286,
0.03619471564888954,
-0.03696132078766823,
0.04650292545557022,
-0.04503684863448143,
-0.0004142899124417454,
-0.01396095473319292,
0.024015113711357117,
-0.03960896283388138,
0.03711777925491333,
-0.025254368782043457,
-0.030217435210943222,
-0.009882357902824879,
-0.001955620013177395,
-0.010912158526480198,
0.06258203834295273,
-0.020491933450102806,
0.023399459198117256,
-0.03096947632730007,
0.07139918953180313,
-0.02650180459022522,
0.01125792320817709,
-0.04291931539773941,
-0.00268488097935915,
-0.04504556581377983,
-0.0025581661611795425,
-0.006664858665317297,
-0.027868727222085,
0.02669261023402214,
0.05332903936505318,
0.04232175275683403,
0.02332203835248947,
-0.0368938185274601,
-0.01789255253970623,
0.009127800352871418,
-0.06338194757699966,
-0.03004704788327217,
0.00834787916392088,
0.03038507141172886,
0.013714411295950413,
0.0415029413998127,
0.04094575345516205,
-0.04103844612836838,
-0.08808707445859909,
0.04196889325976372,
0.020417077466845512,
0.014621976763010025,
0.018672794103622437,
0.047128137201070786,
-0.0005285554216243327,
0.05811731144785881,
-0.01863846927881241,
-0.007224459666758776,
-0.0037860285956412554,
-0.031096698716282845,
0.018123947083950043,
0.00008266945951618254,
0.014715705998241901,
-0.00877405796200037,
-0.013460805639624596,
-0.012503506615757942,
0.04204463213682175,
0.03241604194045067,
0.016143258661031723,
-0.007497433107346296,
-0.055038221180438995,
0.0331655852496624,
-0.04419907554984093,
-0.05852030962705612,
0.027659816667437553,
-0.0062164063565433025,
-0.0035348974633961916,
0.060971010476350784,
-0.012760032899677753,
0.017048940062522888,
0.026821808889508247,
0.03462129831314087,
0.006240964867174625,
0.056233447045087814,
-0.03527248650789261,
0.013844904489815235,
0.03151635080575943,
-0.06839893013238907,
-0.008944234810769558,
-0.013518826104700565,
0.06612219661474228,
-0.04349679499864578,
0.052179768681526184,
0.05129653960466385,
0.004569306969642639,
0.023964544758200645,
-0.025759965181350708,
-0.06372100859880447,
0.012612558901309967,
-0.0062170978635549545,
0.08525271713733673,
0.015440181829035282,
-0.03936508670449257,
0.07165685296058655,
0.024438396096229553,
-0.07516851276159286,
0.0446685366332531,
0.036418359726667404,
0.035764988511800766,
0.029876379296183586,
0.03784386068582535,
-0.04136914759874344,
-0.006422019097954035,
-0.03659013658761978,
0.05055810511112213,
-0.0379832424223423,
-0.004310691263526678,
0.012361596338450909,
-0.030377473682165146,
-0.037351928651332855,
0.03574001044034958,
-0.02255752868950367,
-0.0011701862094923854,
0.0561026968061924,
-0.048996202647686005,
-0.01813569851219654,
0.013791434466838837,
0.03460782766342163,
-0.03635486587882042,
-0.012724483385682106,
-0.02830561064183712,
0.01947065256536007,
0.006014391779899597,
-0.003357471665367484,
-0.03271155431866646,
0.018397385254502296,
-0.0011182522866874933,
-0.03318755328655243,
-0.053333479911088943,
0.07120241969823837,
0.02025618404150009,
-0.010026107542216778,
0.04820500314235687,
0.02738075889647007,
0.028275733813643456,
0.02479618601500988,
0.006983380299061537,
0.01867583580315113,
-0.05513160675764084,
-0.03709851950407028,
0.020313670858740807,
0.01719016581773758,
0.03427567705512047,
0.008492675609886646,
0.03928957134485245,
0.07036396861076355,
0.030410682782530785,
0.018422316759824753,
-0.03916740044951439,
-0.019800087437033653,
0.018504666164517403,
-0.009556557051837444,
0.01164210680872202,
0.003964075818657875,
-0.03716054931282997,
-0.04317817464470863,
-0.03238540142774582,
-0.04113372787833214,
0.026554804295301437,
-0.06323768943548203,
0.0058780089020729065,
0.01816960796713829,
-0.0012497530551627278,
-0.049859002232551575,
-0.08212397992610931,
-0.02710842527449131,
-0.0496806763112545,
0.026270989328622818,
0.037643224000930786,
-0.03670915216207504,
0.032333601266145706,
-0.040773313492536545,
-0.03683086484670639,
0.04412904009222984,
0.019076304510235786,
-0.021560654044151306,
0.0131889209151268,
0.05695822089910507,
-0.059177666902542114,
0.014832592569291592,
0.025954117998480797,
-0.03510844707489014,
0.018513457849621773,
0.003171214833855629,
0.019403263926506042,
0.04470265656709671,
0.0038039875216782093,
-0.02488894574344158,
-0.009952450171113014,
-0.06297025084495544,
-0.04078531265258789,
-0.028336036950349808,
0.023456797003746033,
0.058598630130290985
] |
AdapterHub/bert-base-uncased-pf-imdb | [
"bert",
"en",
"dataset:imdb",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification",
"adapterhub:sentiment/imdb"
] | text-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 15 | 2023-05-17T15:17:03Z | ---
license: mit
tags:
- generated_from_trainer
model-index:
- name: donut-base-graph_test
results: []
---
<!-- 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. -->
# donut-base-graph_test
This model is a fine-tuned version of [naver-clova-ix/donut-base](https://huggingface.co/naver-clova-ix/donut-base) on the None dataset.
## 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: 4
- eval_batch_size: 16
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 3
- mixed_precision_training: Native AMP
### Training results
### Framework versions
- Transformers 4.28.1
- Pytorch 2.0.0
- Datasets 2.1.0
- Tokenizers 0.13.3
| [
-0.047043174505233765,
-0.014223560690879822,
-0.011128760874271393,
0.04145333543419838,
0.0144140450283885,
0.021946126595139503,
0.0018908241763710976,
0.004508277401328087,
-0.047582823783159256,
0.03295418992638588,
0.035984382033348083,
-0.02412271872162819,
0.022905446588993073,
0.018112551420927048,
-0.02084179036319256,
-0.03347203880548477,
-0.021317649632692337,
0.0017766996752470732,
-0.014671990647912025,
-0.014643806964159012,
0.02169244922697544,
0.006144814658910036,
-0.0024880352430045605,
0.02252228371798992,
-0.01593060977756977,
0.011922178789973259,
-0.01132772397249937,
0.020495466887950897,
0.04425494745373726,
-0.06185382604598999,
0.004544686526060104,
-0.06908174604177475,
-0.025603866204619408,
-0.01379777118563652,
-0.009567161090672016,
-0.00010991199087584391,
0.03988470137119293,
0.00850661937147379,
0.03902141749858856,
0.05451763793826103,
-0.00005912091364734806,
0.028226718306541443,
-0.037369221448898315,
-0.020129526033997536,
0.04494159668684006,
0.009615745395421982,
-0.0569366030395031,
-0.01942412368953228,
0.04163295403122902,
-0.032637208700180054,
-0.07204854488372803,
-0.06569572538137436,
-0.04881797730922699,
0.03561490401625633,
-0.023902714252471924,
-0.006325105670839548,
-0.05452524498105049,
0.0038127850275486708,
0.048872362822294235,
-0.04846525564789772,
-0.04935663565993309,
0.02051168493926525,
-0.0698571503162384,
0.008684294298291206,
0.02829175814986229,
-0.023787790909409523,
-0.006888726260513067,
-0.027801290154457092,
0.026540691033005714,
-0.04434129595756531,
0.06932966411113739,
-0.00022499443730339408,
0.0014051003381609917,
-0.07140181213617325,
-0.02054744027554989,
-0.003427907358855009,
0.03115054778754711,
0.06477398425340652,
-0.03429502621293068,
0.05062947794795036,
0.0332048200070858,
-0.03174126148223877,
0.039412084966897964,
-0.003583643352612853,
0.003166586859151721,
0.001081220805644989,
-0.040380265563726425,
0.021770961582660675,
0.018790889531373978,
0.02679966203868389,
-0.048885710537433624,
-0.035770513117313385,
-0.028878023847937584,
-0.03334130719304085,
-0.0075744325295090675,
0.014767024666070938,
0.03194650635123253,
0.011732957325875759,
0.020605236291885376,
0.01140314806252718,
0.042653169482946396,
0.021303467452526093,
-0.020749781280755997,
0.04824576899409294,
-0.0014760862104594707,
-0.005766286980360746,
-0.017157291993498802,
-0.018458407372236252,
-0.04559175297617912,
0.01908903941512108,
0.024961259216070175,
-0.04396520182490349,
-0.02276216633617878,
0.03347620368003845,
0.008808671496808529,
-0.002215687884017825,
0.0637182667851448,
-0.025672076269984245,
-0.03737339377403259,
-0.04039556160569191,
0.04700358584523201,
0.001057684887200594,
-0.013432640582323074,
-0.002474624663591385,
-0.05433148890733719,
-0.022350894287228584,
-0.03633040189743042,
-0.050927162170410156,
-0.020531654357910156,
0.01467724610120058,
-0.01669999584555626,
0.03767961263656616,
0.024950627237558365,
-0.05600447207689285,
0.002938144374638796,
0.011032951064407825,
-0.05582554265856743,
0.06852755695581436,
0.0064005181193351746,
0.1156730130314827,
-0.09393204003572464,
-0.05782695859670639,
0.02475656010210514,
0.006834573112428188,
-0.01610400341451168,
0.006856897845864296,
-0.021485812962055206,
-0.05786867439746857,
-0.010233541950583458,
-0.004561475943773985,
0.04804283753037453,
-0.05957508832216263,
-0.01664251647889614,
0.0714414194226265,
-0.02411225438117981,
0.05167819932103157,
-0.03293878212571144,
-0.011261805891990662,
0.01269645243883133,
0.0004674543743021786,
-0.03647654503583908,
0.029616205021739006,
0.005644410848617554,
0.007942565716803074,
-0.024834511801600456,
-0.048101525753736496,
0.01889699324965477,
0.07869964092969894,
-0.020412059500813484,
-0.0028246964793652296,
-0.03218407183885574,
0.04482515901327133,
0.05375818535685539,
0.04645258188247681,
-0.02235981822013855,
0.04400811344385147,
0.0650767832994461,
0.04257773235440254,
-0.04542425647377968,
0.04187772795557976,
0.01589270308613777,
-0.05427158251404762,
-0.028657549992203712,
0.021705307066440582,
-0.006030440330505371,
-0.056162089109420776,
0.023265255615115166,
0.01927296817302704,
0.0011296062730252743,
-0.06293778121471405,
-0.010412455536425114,
0.02376379258930683,
0.012577876448631287,
-0.016628270968794823,
0.01133769005537033,
-0.011047146283090115,
-0.005863701459020376,
0.012549793347716331,
-0.02875826321542263,
0.016278265044093132,
-0.03421764820814133,
-0.005175483413040638,
0.018771661445498466,
-0.0040655238553881645,
0.021750548854470253,
0.059165775775909424,
-0.015597883611917496,
0.09373009204864502,
-0.04297285154461861,
0.005563668441027403,
-0.022902464494109154,
-0.028579646721482277,
-0.000794836669228971,
0.06238351762294769,
0.09606462717056274,
0.03609859570860863,
0.004880506545305252,
-0.06180945411324501,
0.026422906666994095,
0.061367522925138474,
0.028217773884534836,
-0.02369089238345623,
-0.026720592752099037,
-0.008677653968334198,
0.016687186434864998,
0.04650430753827095,
-0.042079973965883255,
-0.018273914232850075,
0.019974127411842346,
0.02033049240708351,
-0.028324037790298462,
-0.005490468814969063,
0.00003187719266861677,
0.0067102983593940735,
-0.06099492311477661,
-0.08015736192464828,
0.039777178317308426,
0.03185427933931351,
0.0026402012445032597,
0.0077657499350607395,
0.016856277361512184,
0.0125647634267807,
0.014812049455940723,
0.028672654181718826,
0.002118763979524374,
-0.06388456374406815,
0.013728879392147064,
0.016257446259260178,
0.0341947041451931,
-0.048766352236270905,
0.03723733127117157,
-0.03048662096261978,
-0.006141636520624161,
0.05748354271054268,
-0.029628470540046692,
0.014831431210041046,
0.04949921369552612,
0.008754127658903599,
-0.022669611498713493,
0.015763891860842705,
0.024007784202694893,
0.04214967042207718,
0.02764301933348179,
0.01555260457098484,
0.03222796320915222,
-0.010728823952376842,
0.02857033908367157,
0.09042421728372574,
0.038389936089515686,
0.05268952623009682,
0.036239445209503174,
0.07102525234222412,
0.009300081059336662,
-0.014828072860836983,
0.050616711378097534,
-0.06444486230611801,
0.030996836721897125,
-0.05168834328651428,
-0.005269819870591164,
-0.01472092792391777,
-0.022502269595861435,
0.04904748871922493,
0.0028226030990481377,
-0.025066792964935303,
0.001666018390096724,
-0.005101366434246302,
-0.018743837252259254,
0.03104677051305771,
-0.022184697911143303,
0.0036372176837176085,
0.0191874448210001,
0.00914277695119381,
-0.0193403959274292,
-0.06997916102409363,
-0.020487841218709946,
-0.020654091611504555,
-0.028819387778639793,
-0.0224484633654356,
-0.08975517004728317,
0.008263017982244492,
-0.06283460557460785,
-0.022542832419276237,
0.03337614983320236,
-0.019774196669459343,
-0.016854165121912956,
-0.025895610451698303,
0.02570311538875103,
-0.027245618402957916,
-0.05554724112153053,
-0.055559974163770676,
-0.06702430546283722,
-0.04459617659449577,
-0.07807089388370514,
0.03110036440193653,
0.017259251326322556,
0.01694713719189167,
0.011255024932324886,
0.014163442887365818,
0.001916025299578905,
-0.011840605176985264,
0.044670216739177704,
0.05153850466012955,
-0.01249144971370697,
-0.03824978694319725,
0.02851305529475212,
-0.03827928379178047,
0.01467041578143835,
0.014193277806043625,
-0.0144316665828228,
0.10726212710142136,
0.05494700372219086,
-0.0013568747090175748,
0.019691815599799156,
-0.0037250996101647615,
-0.07233285158872604,
-0.060974523425102234,
-0.025763116776943207,
-0.033931914716959,
-0.011709712445735931,
-0.05832574889063835,
-0.036127153784036636,
-0.008814550936222076,
-0.02307557500898838,
-0.025489499792456627,
-0.007423471659421921,
0.02483859471976757,
0.03423730283975601,
0.055316515266895294,
0.039713457226753235,
0.016530442982912064,
-0.023868171498179436,
-0.033724959939718246,
0.06074138358235359,
-0.00022650192840956151,
-0.03653703257441521,
-0.06951963156461716,
-0.01962818205356598,
0.04481792449951172,
0.03150024265050888,
0.026163026690483093,
-0.0001001339842332527,
0.06991978734731674,
0.005181467160582542,
0.010898721404373646,
0.022719357162714005,
-0.029191283509135246,
0.0015026968903839588,
-0.0028130405116826296,
-0.0034773414954543114,
0.0031720686238259077,
-0.02945893444120884,
-0.0051675415597856045,
-0.024438753724098206,
0.04668054357171059,
-0.06922778487205505,
-0.05610812455415726,
-0.021760590374469757,
0.04494032636284828,
0.05240429937839508,
0.014798707328736782,
-0.04516691714525223,
-0.02077700011432171,
-0.0392516627907753,
0.004704413935542107,
0.0016444528009742498,
0.019897209480404854,
0.01763523742556572,
0.04290938377380371,
0.022472262382507324,
-0.03144817426800728,
0.02324743941426277,
0.043941959738731384,
0.048130396753549576,
0.024336792528629303,
-0.05211830511689186,
0.007901684381067753,
0.011792400851845741,
0.010505632497370243,
-0.0017634490504860878,
-0.010420775040984154,
-0.036503713577985764,
-0.10219386219978333,
-0.01951104961335659,
-0.004406656604260206,
-0.011563262902200222,
-0.0019585397094488144,
0.0318143293261528,
0.008480961434543133,
-0.04403294622898102,
-0.00018203096988145262,
0.022969134151935577,
0.027334922924637794,
-0.023835565894842148,
0.053920015692710876,
-0.018513735383749008,
-0.00042030648910440505,
-0.05225445702672005,
0.011285485699772835,
-0.03875518590211868,
-0.03383156657218933,
0.009911967441439629,
0.04903101548552513,
-0.023090947419404984,
0.061751317232847214,
0.0725628063082695,
0.015274771489202976,
-0.042626798152923584,
0.047705039381980896,
0.07988359034061432,
-0.009676333516836166,
-0.045675359666347504,
0.019141793251037598,
-0.010878616012632847,
-0.021993810310959816,
0.0006455196999013424,
-0.005865941289812326,
0.05232871323823929,
0.02043023519217968,
0.013882729224860668,
0.009100656025111675,
-0.018157517537474632,
-0.008399682119488716,
-0.03758833929896355,
-0.06767161935567856,
-0.014661451801657677,
0.0038071058224886656,
-0.016549747437238693,
0.004380769096314907,
0.03213823586702347,
0.016061769798398018,
0.06368856877088547,
0.02289450913667679,
-0.05115583539009094,
-0.016497379168868065,
0.034108832478523254,
0.033468686044216156,
-0.020800268277525902,
-0.06527668237686157,
-0.04205382615327835,
0.03240855038166046,
0.037830788642168045,
-0.05352456122636795,
-0.07104574143886566,
-0.011826220899820328,
0.046655893325805664,
-0.02928101271390915,
0.04033378139138222,
0.008893380872905254,
0.054036419838666916,
0.062008630484342575,
-0.025632064789533615,
0.03716650605201721,
-0.0504254586994648,
-0.022903505712747574,
0.0009773748461157084,
0.014783348888158798,
-0.03934266045689583,
-0.0462365560233593,
-0.013255628757178783,
0.011542800813913345,
0.05572563782334328,
0.05474952235817909,
0.014993859454989433,
-0.04729871451854706,
-0.06395582854747772,
0.008494064211845398,
0.06022687628865242,
-0.03339395672082901,
-0.00816158764064312,
0.0395708829164505,
0.04009599611163139,
-0.05735120177268982,
-0.03458356857299805,
-0.04460254684090614,
-0.030703311786055565,
0.02138296514749527,
0.016389694064855576,
-0.045348674058914185,
-0.0529031865298748,
0.03332984820008278,
0.011593841947615147,
-0.028999434784054756,
-0.09966637194156647,
0.009496254846453667,
-0.006421802099794149,
-0.00823106151074171,
0.06075962632894516,
0.035340242087841034,
0.031815726310014725,
0.053680047392845154,
0.01362138893455267,
0.012613222002983093,
-0.025852326303720474,
0.026832671836018562,
-0.02677692100405693,
-0.014539585448801517,
0.014740617014467716,
-0.06516887992620468,
-0.020075101405382156,
-0.03247492387890816,
-0.055498041212558746,
-0.035790786147117615,
-0.037729933857917786,
0.014165178872644901,
-0.013459981419146061,
-0.005049512721598148,
-0.010766453109681606,
0.033695437014102936,
-0.018876492977142334,
-0.025749368593096733,
-0.04580202326178551,
-0.013128956779837608,
-0.053234074264764786,
-0.024413464590907097,
0.04665293172001839,
0.011185741983354092,
0.06802871823310852,
0.045689914375543594,
0.017493389546871185,
0.031749140471220016,
0.013763993047177792,
-0.012873846106231213,
0.020065929740667343,
0.004049725364893675,
-0.009800759144127369,
-0.029337670654058456,
0.03274426609277725,
0.023766500875353813,
0.04552321508526802,
-0.02681684121489525,
0.022499607875943184,
0.035282108932733536,
-0.009434673003852367,
-0.01154235191643238,
0.02793543040752411,
0.00902115274220705,
-0.029411863535642624,
-0.013436664827167988,
-0.0020279770251363516,
-0.028644505888223648,
0.015537150204181671,
-0.02866642363369465,
-0.02484366111457348,
0.024143574759364128,
-0.001180674065835774,
0.045313965529203415,
-0.020403806120157242,
-0.02822865918278694,
0.027557343244552612,
-0.017607377842068672,
0.03526933118700981,
-0.06343316286802292,
0.049469102174043655,
-0.031943581998348236,
0.00625046668574214,
-0.016516435891389847,
0.030036717653274536,
-0.03410150855779648,
0.05407971143722534,
-0.006901954300701618,
-0.01392744854092598,
-0.027449140325188637,
0.03872599080204964,
-0.01559360045939684,
0.03256034478545189,
0.002785010728985071,
0.009780115447938442,
-0.01947297528386116,
0.04117993265390396,
-0.05337631702423096,
0.020802119746804237,
-0.03859779238700867,
0.012232107110321522,
-0.029172077775001526,
0.026607779785990715,
0.007012813352048397,
-0.02371092513203621,
0.04330611974000931,
0.03695369139313698,
0.0305985938757658,
0.009607871994376183,
-0.018829675391316414,
-0.005637065507471561,
0.02620720863342285,
-0.04323689267039299,
-0.01766350120306015,
-0.013156445696949959,
0.0007403913186863065,
-0.007715946529060602,
0.037941232323646545,
0.05543031916022301,
-0.038989610970020294,
-0.06782861799001694,
0.06940627843141556,
0.034022506326436996,
0.01339888945221901,
0.01161789521574974,
0.047254711389541626,
0.029813211411237717,
0.08546600490808487,
-0.011901798658072948,
0.0009364309371449053,
0.01248074509203434,
-0.05302295461297035,
0.01765795610845089,
-0.013519560918211937,
0.05184623599052429,
-0.005528282839804888,
-0.031290557235479355,
-0.0025583284441381693,
0.05860435590147972,
0.03282398730516434,
0.030317295342683792,
0.0031560445204377174,
-0.05343083664774895,
0.04789908975362778,
0.01548715215176344,
-0.0514410100877285,
0.020841728895902634,
0.013767404481768608,
-0.01967431604862213,
0.053019944578409195,
0.001769038732163608,
0.0045486195012927055,
0.06187625601887703,
0.046852752566337585,
-0.016422048211097717,
0.04771891608834267,
-0.04370659589767456,
0.012271375395357609,
0.05001789703965187,
-0.07108785212039948,
-0.0133910421282053,
-0.006870853714644909,
0.04893132671713829,
-0.07413986325263977,
0.031637124717235565,
0.048111140727996826,
0.00014365593960974365,
-0.016794327646493912,
-0.05164937674999237,
-0.04915303364396095,
-0.0033279196359217167,
-0.024147696793079376,
0.08855731785297394,
0.005590040702372789,
-0.018780352547764778,
0.06985577195882797,
0.01854790933430195,
-0.0592883862555027,
0.046208810061216354,
0.01849161833524704,
0.037730272859334946,
0.043482549488544464,
0.05047530308365822,
-0.0322522409260273,
0.005914367735385895,
-0.03465163707733154,
0.030097441747784615,
-0.05175384134054184,
-0.022905297577381134,
0.029918372631072998,
-0.03262287378311157,
-0.017650865018367767,
0.01788407191634178,
0.004230720456689596,
-0.008171243593096733,
0.04768999293446541,
-0.036676134914159775,
-0.04619298875331879,
0.015487306751310825,
-0.008909844793379307,
-0.013659556396305561,
0.0038514044135808945,
-0.034763872623443604,
0.008525336161255836,
0.006671293638646603,
-0.025786615908145905,
-0.016373103484511375,
-0.034485019743442535,
0.02431054413318634,
-0.07010173052549362,
-0.043435391038656235,
0.02577071078121662,
0.005135467741638422,
-0.04495396837592125,
0.036539990454912186,
0.007562612649053335,
0.019785543903708458,
0.017427995800971985,
-0.005149403121322393,
0.028081944212317467,
-0.05341680720448494,
-0.010660053230822086,
0.028285425156354904,
-0.009269858710467815,
0.028400877490639687,
-0.004233494400978088,
0.03515619412064552,
0.022154033184051514,
0.01839420199394226,
-0.011703096330165863,
-0.037998370826244354,
-0.034394390881061554,
0.0030045437160879374,
-0.03325370326638222,
-0.004541836678981781,
-0.012584810145199299,
-0.04866528511047363,
-0.05424056574702263,
-0.019275471568107605,
-0.049839332699775696,
0.010677346028387547,
-0.06135959550738335,
-0.004570678807795048,
0.024031685665249825,
-0.0015098103322088718,
-0.07697904109954834,
-0.08428466320037842,
-0.027496442198753357,
-0.07311558723449707,
0.00569536630064249,
0.016078418120741844,
-0.04461138695478439,
0.028826532885432243,
-0.028540197759866714,
-0.02939039096236229,
0.03251797333359718,
0.037878356873989105,
-0.040482357144355774,
0.05642594024538994,
0.044138193130493164,
-0.05924609303474426,
0.023532969877123833,
0.009147516451776028,
-0.028295030817389488,
0.0065895989537239075,
0.011496715247631073,
-0.016145722940564156,
0.03628947213292122,
0.004086656961590052,
-0.06304428726434708,
-0.02304731123149395,
-0.07593599706888199,
-0.03669781982898712,
-0.027708275243639946,
0.003691324032843113,
0.0877571627497673
] |
AdapterHub/bert-base-uncased-pf-mrpc | [
"bert",
"en",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification",
"adapterhub:sts/mrpc"
] | text-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 52 | 2023-05-17T15:22:02Z | ---
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: 262.96 +/- 20.76
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.03700953349471092,
-0.0027696876786649227,
-0.005345209501683712,
0.025957928970456123,
0.045705646276474,
-0.02105722390115261,
-0.005502005573362112,
-0.027476131916046143,
-0.033326417207717896,
0.06658775359392166,
0.032601214945316315,
-0.023357685655355453,
0.02315843105316162,
0.001191341900266707,
-0.03383714705705643,
-0.026235384866595268,
0.0013670505722984672,
-0.014655854552984238,
-0.020069291815161705,
0.027179192751646042,
0.005386675707995892,
0.03639524430036545,
-0.025975586846470833,
0.03605882450938225,
-0.0041292328387498856,
0.03813023865222931,
-0.023750482127070427,
0.05737762153148651,
0.01709095761179924,
-0.04314020276069641,
-0.005332030821591616,
-0.04091522470116615,
-0.02099340781569481,
-0.020760904997587204,
-0.01366370264440775,
0.013883039355278015,
0.01678890734910965,
0.020471449941396713,
0.009126683697104454,
0.034548383206129074,
-0.012362060137093067,
0.023319048807024956,
0.030283497646450996,
-0.0026358915492892265,
0.02186076156795025,
-0.011539662256836891,
-0.04926884174346924,
0.010025002993643284,
0.05644327402114868,
-0.0007676025852560997,
-0.0479862242937088,
-0.062275223433971405,
0.022557036951184273,
0.030932122841477394,
-0.001606664853170514,
-0.013601990416646004,
-0.04268629476428032,
-0.004534565377980471,
0.061770275235176086,
-0.043307751417160034,
-0.04778603836894035,
-0.007631976157426834,
-0.04490951821208,
0.0102470051497221,
0.02570033073425293,
-0.0001936989719979465,
0.018508167937397957,
-0.04659466817975044,
0.03552238643169403,
-0.026019390672445297,
0.07027120888233185,
-0.021767698228359222,
0.013932282105088234,
-0.05700264498591423,
-0.0008669071248732507,
0.00835238303989172,
0.037807855755090714,
0.03446665033698082,
-0.014122205786406994,
0.08775515109300613,
0.028781142085790634,
0.01241123303771019,
0.044255346059799194,
0.013257959857583046,
0.012549445964396,
0.004826926160603762,
-0.039843227714300156,
0.006236951798200607,
0.020862804725766182,
0.028689971193671227,
-0.011786621063947678,
-0.040928035974502563,
-0.04015715792775154,
-0.02238146960735321,
-0.0005182038294151425,
0.028907334432005882,
0.047373395413160324,
0.002109257970005274,
0.06534884870052338,
0.01585625857114792,
0.0018177895108237863,
0.031586725264787674,
-0.031025491654872894,
0.06143316254019737,
-0.014942418783903122,
-0.01943538896739483,
-0.013938875868916512,
-0.022517645731568336,
-0.04050242900848389,
0.05385882034897804,
0.03292956203222275,
-0.04680078476667404,
-0.03741823136806488,
0.045920323580503464,
0.028720077127218246,
-0.021496422588825226,
0.030461248010396957,
-0.032642822712659836,
-0.03996970131993294,
-0.06389236450195312,
0.07102155685424805,
-0.005898554343730211,
-0.008662059903144836,
-0.039790112525224686,
-0.028559958562254906,
-0.018031559884548187,
-0.05249164626002312,
-0.025833334773778915,
-0.025788849219679832,
0.01886744052171707,
0.010283203795552254,
0.03318379819393158,
0.014809411019086838,
-0.08581167459487915,
0.013288970105350018,
-0.0112735191360116,
-0.08752163499593735,
0.03033224493265152,
0.004176338203251362,
0.14458972215652466,
-0.0610165074467659,
-0.05730096623301506,
0.027103900909423828,
-0.012689219787716866,
-0.056850310415029526,
0.011206489987671375,
-0.004580437671393156,
-0.041097939014434814,
-0.00940244272351265,
-0.027323398739099503,
0.08016170561313629,
-0.05388089269399643,
-0.022256633266806602,
0.0586959607899189,
0.0034129046835005283,
0.02216838300228119,
-0.007905931212008,
0.006762771401554346,
-0.002465778263285756,
-0.046748872846364975,
-0.004883341491222382,
0.07017532736063004,
-0.017447911202907562,
-0.033138372004032135,
-0.04171660169959068,
-0.007219394668936729,
0.012983017601072788,
0.0778958797454834,
-0.006852664053440094,
-0.021972382441163063,
-0.023155488073825836,
0.032073281705379486,
0.016706274822354317,
0.01807597279548645,
-0.0037735970690846443,
0.038582827895879745,
0.05515347421169281,
0.012658731080591679,
-0.020206691697239876,
0.040797241032123566,
0.025712810456752777,
-0.018079157918691635,
-0.005222567822784185,
0.0022779598366469145,
0.004882430657744408,
0.0011942818528041244,
-0.006161937024444342,
0.02917364425957203,
0.004081841558218002,
-0.03701728582382202,
-0.025007231160998344,
0.018778955563902855,
0.012610986828804016,
0.007310740649700165,
-0.0017892802134156227,
0.011859540827572346,
0.015081265941262245,
0.04165005311369896,
-0.005219792015850544,
-0.014611169695854187,
-0.03396770358085632,
-0.01925487630069256,
0.02841799147427082,
0.008833508938550949,
0.041437696665525436,
0.010397111065685749,
-0.01295944768935442,
0.09182905405759811,
-0.043944101780653,
0.04210355132818222,
-0.07364501804113388,
-0.0502450130879879,
0.0029986260924488306,
0.03332684561610222,
0.064989373087883,
0.04467504471540451,
-0.022485636174678802,
-0.044092774391174316,
0.027562521398067474,
0.044337738305330276,
0.059124287217855453,
0.01713436469435692,
-0.04076484218239784,
-0.014610017649829388,
0.03186032548546791,
0.020406700670719147,
-0.025143122300505638,
-0.03930020332336426,
0.014071311801671982,
0.04805593565106392,
0.023212632164359093,
0.02440047077834606,
-0.03240189328789711,
0.02384714037179947,
-0.03783703222870827,
-0.060678038746118546,
0.03998709097504616,
0.026194589212536812,
0.013635275885462761,
0.016282033175230026,
-0.015132207423448563,
0.04121622070670128,
0.019259445369243622,
0.02085701748728752,
0.006233246996998787,
-0.04949942231178284,
0.013711473904550076,
0.030759181827306747,
0.06316899508237839,
-0.03253663703799248,
0.05618612468242645,
-0.0050498321652412415,
0.0009428456542082131,
0.04159853979945183,
-0.04787101224064827,
0.01615484058856964,
0.08679590374231339,
0.03121945634484291,
-0.014403156004846096,
0.01916583813726902,
0.005617177579551935,
0.045574918389320374,
0.03404946252703667,
-0.009931470267474651,
0.06892111897468567,
-0.014973429031670094,
0.046640925109386444,
0.06971810758113861,
0.03952498361468315,
-0.004980552475899458,
0.026849737390875816,
0.07589694112539291,
0.003430441953241825,
0.011108222417533398,
0.04858776926994324,
-0.03496336564421654,
0.019845398142933846,
-0.0377374030649662,
0.010659564286470413,
-0.025245118886232376,
-0.005918434355407953,
0.05726977437734604,
0.010787049308419228,
-0.04252197593450546,
-0.018466101959347725,
0.0001601155090611428,
0.00968928448855877,
-0.006059981416910887,
-0.010450095869600773,
0.0023017884232103825,
0.006527752615511417,
-0.005284243728965521,
-0.007969650439918041,
-0.08448279649019241,
-0.08379899710416794,
-0.027478333562612534,
-0.014616169035434723,
-0.01943488046526909,
-0.07018464803695679,
-0.04320888593792915,
-0.07158596813678741,
-0.013452835381031036,
0.019457846879959106,
-0.02213919907808304,
0.0023188083432614803,
-0.057445283979177475,
0.010409356094896793,
-0.05126846581697464,
-0.015931537374854088,
-0.054553840309381485,
-0.06547362357378006,
-0.03874999284744263,
-0.05687559023499489,
0.032695189118385315,
0.02111574448645115,
0.03502105176448822,
-0.003635512897744775,
-0.0037093276623636484,
-0.02140679582953453,
-0.03878481686115265,
0.05538732931017876,
0.047064159065485,
-0.017561379820108414,
-0.04285627603530884,
0.012763665989041328,
-0.004395543597638607,
0.025637421756982803,
0.010842767544090748,
-0.033601149916648865,
0.08349597454071045,
0.06178264319896698,
-0.007850478403270245,
-0.006966765038669109,
-0.006284821312874556,
-0.045740362256765366,
-0.042542461305856705,
-0.048708364367485046,
-0.048411425203084946,
-0.01610109955072403,
-0.04744976386427879,
-0.028878897428512573,
-0.009487660601735115,
-0.011943269520998001,
-0.016933275386691093,
-0.03411927819252014,
-0.0018170892726629972,
0.03761788830161095,
0.08317224681377411,
0.006945750676095486,
0.0383952297270298,
-0.057159971445798874,
-0.020507799461483955,
0.048519160598516464,
0.021834831684827805,
0.012695533223450184,
-0.07045015692710876,
-0.024503519758582115,
0.008423496969044209,
0.008657179772853851,
0.002120799385011196,
-0.0005359731148928404,
0.061271052807569504,
0.03398645296692848,
-0.006462534889578819,
0.029881348833441734,
-0.028621302917599678,
-0.019697166979312897,
-0.03795718774199486,
0.0042914715595543385,
-0.010098427534103394,
-0.021530484780669212,
0.017159050330519676,
0.00024176207080017775,
0.01082374807447195,
-0.05509791523218155,
-0.05234576016664505,
-0.03588340803980827,
-0.00408624392002821,
0.05431719496846199,
0.0019893646240234375,
-0.05036304146051407,
-0.03299713879823685,
-0.06862206012010574,
0.01064771506935358,
0.03981214761734009,
-0.013496089726686478,
0.008288586512207985,
0.02770162746310234,
0.03384743258357048,
-0.0017579089617356658,
0.03768464922904968,
0.0399431474506855,
0.060250528156757355,
0.01624775305390358,
-0.04534361511468887,
0.0012793114874511957,
-0.0254391860216856,
0.039264120161533356,
0.008595745079219341,
-0.014434054493904114,
-0.032829754054546356,
-0.10032449662685394,
-0.02786535583436489,
0.023364488035440445,
-0.018577372655272484,
0.0058485339395701885,
0.030760066583752632,
-0.01676531322300434,
-0.008206121623516083,
0.0014560522977262735,
-0.0034078904427587986,
0.05020611360669136,
-0.039587218314409256,
0.05760237202048302,
-0.006006448529660702,
0.0238823089748621,
-0.04354004189372063,
0.027238091453909874,
-0.015561804175376892,
-0.012239353731274605,
-0.0039476971141994,
0.030290426686406136,
0.04551894962787628,
0.06757154315710068,
0.05278828367590904,
0.017921207472682,
-0.06309351325035095,
0.03252135217189789,
0.05983429029583931,
-0.03858371078968048,
-0.07305031269788742,
-0.02853863127529621,
0.021852025762200356,
-0.010236892849206924,
0.014286684803664684,
-0.008109514601528645,
0.017806245014071465,
0.058359697461128235,
-0.018087461590766907,
-0.01965871825814247,
-0.0006106207729317248,
-0.00927746668457985,
-0.032485947012901306,
-0.022281289100646973,
-0.003100819420069456,
0.014687474817037582,
-0.016503337770700455,
0.005341227166354656,
0.043766774237155914,
0.024446308612823486,
0.045981645584106445,
0.0640178918838501,
-0.007585165556520224,
-0.04579171538352966,
0.054775748401880264,
0.005688684526830912,
-0.023926181718707085,
-0.08865843713283539,
-0.02850981429219246,
0.02410634234547615,
0.03474642336368561,
0.009933922439813614,
-0.06374453753232956,
0.01360122486948967,
0.026430416852235794,
-0.07074306905269623,
0.05379963293671608,
-0.007888441905379295,
0.016275420784950256,
0.040429193526506424,
0.015622399747371674,
0.03536667674779892,
-0.03707956522703171,
-0.028962252661585808,
0.006876132916659117,
0.03940236195921898,
-0.012872546911239624,
-0.026656629517674446,
-0.021529963240027428,
0.03449968993663788,
0.04159519076347351,
0.06078721582889557,
0.03763207793235779,
-0.048693738877773285,
-0.07010360062122345,
-0.04145330935716629,
0.022574571892619133,
-0.03852459415793419,
-0.001471892581321299,
0.049283239990472794,
0.04618968442082405,
-0.05837331339716911,
-0.048577211797237396,
-0.03104855865240097,
-0.0118296779692173,
0.031551145017147064,
0.010426337830722332,
-0.019835222512483597,
-0.01078610960394144,
0.04343545064330101,
-0.006855194456875324,
-0.02982439287006855,
-0.0639188215136528,
0.011545287445187569,
0.01669692061841488,
0.006343964021652937,
0.028664344921708107,
0.032622888684272766,
0.058374807238578796,
0.06453423202037811,
0.03877251222729683,
0.010235783644020557,
-0.04336397349834442,
0.030995389446616173,
-0.039500586688518524,
-0.0272268857806921,
0.003880237927660346,
-0.07154326140880585,
0.0029084838461130857,
-0.018335210159420967,
-0.023202866315841675,
-0.04022759571671486,
-0.023558035492897034,
0.020909948274493217,
0.006614877376705408,
0.002290089149028063,
0.013172836974263191,
0.05251551792025566,
0.0059530287981033325,
-0.048627838492393494,
-0.031465739011764526,
-0.024158332496881485,
-0.062194690108299255,
-0.06265976279973984,
0.036224428564310074,
-0.007512467447668314,
0.011054236441850662,
0.0188530832529068,
0.05091174691915512,
0.031199369579553604,
0.025874268263578415,
-0.028180666267871857,
0.02164817973971367,
0.003762687323614955,
-0.042648326605558395,
0.011208991520106792,
0.015457240864634514,
0.010965609923005104,
0.059139434248209,
-0.014108583331108093,
0.026675617322325706,
-0.0016361295711249113,
-0.027372611686587334,
-0.021448932588100433,
0.009640253148972988,
0.030568448826670647,
-0.04385394975543022,
-0.024890050292015076,
0.009570945054292679,
-0.03268904983997345,
0.02599557861685753,
-0.017994536086916924,
-0.021305793896317482,
-0.01721269078552723,
0.006003841757774353,
0.03326905518770218,
-0.011785655282437801,
-0.05534932762384415,
0.028259770944714546,
-0.04851711913943291,
0.04417360574007034,
-0.07134784013032913,
0.02448577806353569,
-0.03876915201544762,
0.0360085666179657,
-0.01832641288638115,
-0.008061581291258335,
-0.037011243402957916,
0.04510648921132088,
0.016100915148854256,
-0.027258355170488358,
-0.036405593156814575,
0.03529912605881691,
-0.01047771330922842,
0.025405190885066986,
-0.020224573090672493,
0.016716785728931427,
-0.0070862253196537495,
0.03606240451335907,
-0.013180568814277649,
0.03569204360246658,
-0.011808224953711033,
0.04566233977675438,
-0.03948407620191574,
-0.0004217302775941789,
-0.03297698125243187,
-0.03544233366847038,
0.020160458981990814,
0.04169844090938568,
0.026159264147281647,
0.020506495609879494,
-0.014530627988278866,
0.01822880282998085,
0.0138385109603405,
-0.03961009904742241,
-0.033816833049058914,
0.007806976325809956,
0.015049985609948635,
0.020742515102028847,
0.052975330501794815,
0.03214726597070694,
-0.0718017965555191,
-0.03578953072428703,
0.06117021664977074,
0.00448774266988039,
0.02383241429924965,
-0.0014634516555815935,
0.036008164286613464,
0.03483489155769348,
0.050292883068323135,
-0.04649236798286438,
0.020233938470482826,
0.002796441549435258,
-0.008143951185047626,
0.025603139773011208,
-0.029573185369372368,
0.024292686954140663,
0.020868446677923203,
-0.045550789684057236,
-0.01637084037065506,
0.07222504168748856,
0.03496534377336502,
-0.007752661593258381,
-0.02697920799255371,
-0.03884520009160042,
0.03814919292926788,
0.00044197196257300675,
-0.04509366303682327,
0.018230244517326355,
0.021606076508760452,
-0.017108947038650513,
0.06296730041503906,
-0.03567436337471008,
0.00923080462962389,
0.039203014224767685,
0.05602734908461571,
-0.023074932396411896,
0.06586305797100067,
-0.013686984777450562,
0.060556747019290924,
0.0368032343685627,
-0.07024472206830978,
-0.014530071057379246,
-0.0539325475692749,
0.08673059940338135,
-0.07109590619802475,
0.07856151461601257,
0.041989535093307495,
0.008667079731822014,
0.031116759404540062,
-0.016454314813017845,
-0.04671391099691391,
-0.013114054687321186,
-0.049317289143800735,
0.07363514602184296,
0.006101654376834631,
-0.04707544669508934,
0.06784538924694061,
0.02248992957174778,
-0.05845338851213455,
0.05358176678419113,
0.024825984612107277,
0.019051697105169296,
0.0014332920545712113,
0.04808947816491127,
-0.05072777345776558,
0.016624407842755318,
-0.060908664017915726,
0.05384257063269615,
-0.05071939155459404,
-0.003837758908048272,
0.02567673847079277,
-0.05345848202705383,
-0.022065967321395874,
0.048515982925891876,
-0.013868316076695919,
-0.015099198557436466,
0.03585740178823471,
-0.05750396102666855,
-0.06811685860157013,
0.013082129880785942,
-0.006776891183108091,
0.023014282807707787,
0.011522429063916206,
-0.03425663709640503,
0.03487936407327652,
0.03870381787419319,
0.013897278346121311,
-0.035430993884801865,
0.00933063868433237,
0.023669226095080376,
-0.0379602387547493,
-0.026747144758701324,
0.0537157878279686,
0.013284583576023579,
-0.03543272241950035,
0.002632064977660775,
0.004244233947247267,
0.005084035452455282,
0.02466491051018238,
0.013886994682252407,
0.01682540774345398,
-0.0559600368142128,
-0.033350057899951935,
0.029909102246165276,
-0.018498096615076065,
0.02601664699614048,
-0.03296346217393875,
0.008316398598253727,
0.020882103592157364,
0.018059823662042618,
0.0023440979421138763,
-0.03679701313376427,
0.01404071506112814,
0.03392227739095688,
-0.05586455762386322,
0.0018772055627778172,
0.005030390340834856,
-0.05293821543455124,
-0.027345482259988785,
-0.03170114383101463,
-0.019139766693115234,
0.00882665254175663,
-0.02983187884092331,
-0.015133884735405445,
0.054716382175683975,
0.014863690361380577,
-0.05534215644001961,
-0.10187745094299316,
-0.005022205412387848,
-0.04056580364704132,
0.03231356665492058,
0.027344200760126114,
-0.04893089085817337,
-0.011703905649483204,
-0.030792972072958946,
-0.054107777774333954,
0.06383312493562698,
0.0403754785656929,
-0.0231517031788826,
0.06236347556114197,
0.05056546628475189,
-0.0183686725795269,
0.010197687894105911,
0.003883477533236146,
-0.05574587360024452,
0.0038234107196331024,
0.025298237800598145,
0.022307362407445908,
0.025414997711777687,
0.007719188462942839,
-0.02239559404551983,
-0.022148234769701958,
-0.027385232970118523,
-0.04675920680165291,
-0.024334073066711426,
0.027442144230008125,
0.07048021256923676
] |
AdapterHub/bert-base-uncased-pf-newsqa | [
"bert",
"en",
"dataset:newsqa",
"arxiv:2104.08247",
"adapter-transformers",
"question-answering"
] | question-answering | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 3 | 2023-05-17T15:28:37Z | ---
license: apache-2.0
tags:
- setfit
- sentence-transformers
- text-classification
pipeline_tag: text-classification
---
# nihiluis/argureviews-component-mpnet
This is a [SetFit model](https://github.com/huggingface/setfit) that can be used for text classification. The model has been trained using an efficient few-shot learning technique that involves:
1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
2. Training a classification head with features from the fine-tuned Sentence Transformer.
## Usage
To use this model for inference, first install the SetFit library:
```bash
python -m pip install setfit
```
You can then run inference as follows:
```python
from setfit import SetFitModel
# Download from Hub and run inference
model = SetFitModel.from_pretrained("nihiluis/argureviews-component-mpnet")
# Run inference
preds = model(["i loved the spiderman movie!", "pineapple on pizza is the worst 🤮"])
```
## BibTeX entry and citation info
```bibtex
@article{https://doi.org/10.48550/arxiv.2209.11055,
doi = {10.48550/ARXIV.2209.11055},
url = {https://arxiv.org/abs/2209.11055},
author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {Efficient Few-Shot Learning Without Prompts},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution 4.0 International}
}
```
| [
-0.015334404073655605,
-0.030512766912579536,
-0.011024868115782738,
0.06203365698456764,
0.02883324958384037,
0.022566867992281914,
-0.02228660322725773,
-0.004948662128299475,
-0.04182859882712364,
0.0687912181019783,
0.02903064154088497,
0.02073066309094429,
0.02853400632739067,
0.019820457324385643,
-0.04622003808617592,
-0.02628273330628872,
-0.004095979500561953,
-0.006045322399586439,
-0.014256617985665798,
-0.0052373772487044334,
0.011505329050123692,
-0.007636158727109432,
-0.002854747697710991,
0.022188162431120872,
-0.014976279810070992,
0.02950943633913994,
-0.033678825944662094,
0.018592944368720055,
0.046226244419813156,
-0.07195205241441727,
0.0034904435742646456,
-0.028515568003058434,
-0.03610784187912941,
0.007681114133447409,
-0.022151287645101547,
-0.001968218246474862,
-0.00864669680595398,
-0.00013964569370727986,
0.006913581397384405,
0.051493089646101,
0.0012076945276930928,
0.022065170109272003,
-0.006275252439081669,
-0.013560637831687927,
0.0561634823679924,
0.022103872150182724,
-0.03979819267988205,
-0.01212545670568943,
0.05255637690424919,
-0.026792991906404495,
-0.05712194740772247,
-0.07829982042312622,
-0.03872733563184738,
0.02119634300470352,
-0.03294811397790909,
-0.0070966617204248905,
-0.0596819706261158,
0.000835746934171766,
0.06820636242628098,
-0.05310802161693573,
-0.02170748822391033,
0.015494993887841702,
-0.06213635951280594,
0.022535055875778198,
0.015518959611654282,
-0.04730760306119919,
-0.00818753894418478,
-0.045936230570077896,
0.0007955031469464302,
-0.05138473957777023,
0.06280343979597092,
-0.014770092442631721,
0.025109121575951576,
-0.09466256201267242,
-0.002068490954115987,
-0.012647458352148533,
0.04953118413686752,
0.04496350884437561,
-0.02740979939699173,
0.05340263247489929,
0.03611643612384796,
-0.004213001579046249,
0.021146707236766815,
0.006622740067541599,
-0.015696188434958458,
0.03940960764884949,
-0.04272586107254028,
0.0061867255717515945,
-0.006706021726131439,
0.03094622865319252,
-0.047203756868839264,
-0.03985501080751419,
0.0009805584559217095,
-0.03510123863816261,
-0.03949025645852089,
0.017327934503555298,
0.024798447266221046,
-0.02200155332684517,
0.03278402239084244,
0.03642471879720688,
0.03625604137778282,
0.05089208483695984,
-0.017089730128645897,
0.06914623081684113,
-0.011358927004039288,
0.009221607819199562,
-0.007838875986635685,
-0.030358875170350075,
-0.05518472567200661,
0.03987167775630951,
0.030394725501537323,
-0.007478117942810059,
-0.04288572072982788,
0.05116574466228485,
0.011546481400728226,
0.006508510559797287,
0.059504181146621704,
-0.028461206704378128,
-0.04490464925765991,
-0.05286882072687149,
0.026572372764348984,
-0.014526665210723877,
-0.011910420842468739,
0.005904001649469137,
-0.051599010825157166,
0.02773747593164444,
-0.05054250359535217,
-0.04008059948682785,
-0.0055297198705375195,
0.033502425998449326,
-0.005822743289172649,
0.0455511212348938,
0.024077098816633224,
-0.04647054523229599,
-0.007142859976738691,
0.005986716598272324,
-0.0604199580848217,
0.05219418928027153,
0.04521092399954796,
0.10787863284349442,
-0.07682499289512634,
-0.03998137637972832,
0.023552022874355316,
0.030805598944425583,
-0.026694281026721,
0.001517568831332028,
-0.002815195359289646,
-0.052701685577631,
-0.03130633383989334,
-0.02076856605708599,
0.05682626739144325,
-0.05781993642449379,
-0.012284867465496063,
0.03669275343418121,
-0.02017918787896633,
0.06640160083770752,
-0.07441925257444382,
-0.0022871738765388727,
0.008133998140692711,
0.014412120915949345,
-0.015652282163500786,
0.032747942954301834,
-0.0171262975782156,
-0.0004371456161607057,
-0.023564452305436134,
-0.049304477870464325,
-0.013727731071412563,
0.07058674842119217,
-0.01937531866133213,
-0.02480904571712017,
-0.02415163628757,
0.0010942278895527124,
0.053639017045497894,
0.029097506776452065,
-0.0031053125858306885,
0.030305244028568268,
0.08125743269920349,
0.041582055389881134,
-0.04151410609483719,
0.06391645222902298,
0.010534977540373802,
-0.029603268951177597,
-0.012158230878412724,
0.0075864787213504314,
0.0013610576279461384,
-0.007546855602413416,
0.03335701301693916,
0.05117407813668251,
-0.03121805004775524,
-0.020328298211097717,
-0.02332730032503605,
0.07031696289777756,
0.010089816525578499,
0.002797838067635894,
-0.005375979468226433,
-0.006966177374124527,
-0.02262265235185623,
0.047166332602500916,
-0.01549569796770811,
-0.004643437918275595,
-0.02489670366048813,
-0.04139003902673721,
0.002641561906784773,
0.028581373393535614,
0.01041001919656992,
0.030304940417408943,
-0.009065693244338036,
0.07242012023925781,
-0.03308302164077759,
0.02830125205218792,
-0.04041034355759621,
-0.04053119570016861,
0.010321704670786858,
0.03639400377869606,
0.03435466066002846,
0.0567261204123497,
0.0173588078469038,
-0.043803974986076355,
0.02008015476167202,
0.035559624433517456,
0.013964618556201458,
0.0393008217215538,
-0.025982685387134552,
-0.019500717520713806,
0.025574326515197754,
0.052523136138916016,
-0.04138657823204994,
-0.03835318982601166,
0.019353924319148064,
0.05266778543591499,
-0.010262224823236465,
-0.006875189952552319,
-0.013856001198291779,
0.032323289662599564,
-0.049986548721790314,
-0.06286689639091492,
0.031823743134737015,
0.030037902295589447,
0.012163117527961731,
0.03030851110816002,
-0.013171220198273659,
-0.01187595073133707,
0.04003144055604935,
0.004411743022501469,
-0.007214815821498632,
-0.043884649872779846,
0.0011263223132118583,
0.028720427304506302,
0.04394027218222618,
-0.037886396050453186,
0.038997117429971695,
0.005177498795092106,
0.0026507277507334948,
0.016183363273739815,
-0.014702396467328072,
0.05089635029435158,
0.061676956713199615,
0.008529414422810078,
-0.01900220289826393,
0.04557773098349571,
0.0007308641797862947,
0.0261697880923748,
0.05578986182808876,
0.007187500596046448,
0.05257587879896164,
-0.021398087963461876,
0.05804437771439552,
0.12037394940853119,
0.018331170082092285,
0.016001185402274132,
0.043923165649175644,
0.07592415064573288,
-0.01588386669754982,
-0.02044041082262993,
0.0792304053902626,
-0.06349193304777145,
0.03115217573940754,
-0.045555032789707184,
0.020051259547472,
-0.014066900126636028,
0.008590342476963997,
0.05047111585736275,
0.0236140675842762,
-0.028655607253313065,
0.024242369458079338,
-0.010169635526835918,
0.0019579066429287195,
0.02387043461203575,
-0.02159036695957184,
-0.00023155771486926824,
0.012614763341844082,
-0.030930794775485992,
0.02296236902475357,
-0.06085776537656784,
-0.052102237939834595,
0.007507820148020983,
-0.018765410408377647,
-0.009581555612385273,
-0.07867603003978729,
-0.03072964772582054,
-0.05141264200210571,
-0.015787020325660706,
0.05055410414934158,
0.0233013816177845,
0.00861783791333437,
-0.03361053392291069,
0.021562840789556503,
-0.03383234888315201,
-0.024676408618688583,
-0.03334428742527962,
-0.04860725253820419,
-0.038551561534404755,
-0.05574541538953781,
0.04402073100209236,
0.001503723324276507,
0.009435833431780338,
0.007065492682158947,
-0.0039086733013391495,
-0.011909029446542263,
-0.02824362926185131,
0.054587312042713165,
0.02524370141327381,
-0.021498266607522964,
-0.0586240217089653,
0.028157884255051613,
-0.024279093369841576,
0.005971983540803194,
-0.02187834121286869,
-0.05066762864589691,
0.06836003810167313,
0.07257645577192307,
0.02515358477830887,
0.007272463757544756,
-0.02377043478190899,
-0.06265896558761597,
-0.06255649775266647,
-0.013306637294590473,
-0.03525174409151077,
-0.04561614617705345,
-0.028603242710232735,
-0.042169082909822464,
-0.020362116396427155,
-0.028284261003136635,
-0.02497985027730465,
-0.000731107487808913,
0.01056896336376667,
0.03685406222939491,
0.026766866445541382,
0.044147029519081116,
0.029998546466231346,
-0.04718223959207535,
-0.04620357230305672,
0.06668455898761749,
0.017095224931836128,
0.015090655535459518,
-0.07786184549331665,
-0.02994791604578495,
0.02958328276872635,
0.005946584977209568,
0.017232464626431465,
-0.01364909578114748,
0.0901484414935112,
0.024449165910482407,
-0.0050188410095870495,
0.008280686102807522,
0.016483714804053307,
-0.005856490693986416,
0.005278578028082848,
-0.01636849157512188,
-0.020539483055472374,
-0.05597171187400818,
-0.031415294855833054,
-0.036949921399354935,
0.06424135714769363,
-0.07307904958724976,
-0.06909507513046265,
0.023394513875246048,
0.0377664715051651,
0.011928107589483261,
-0.013181829825043678,
-0.035555239766836166,
-0.004676114767789841,
-0.047138944268226624,
0.002523524919524789,
0.025737471878528595,
-0.006492325104773045,
0.00039635563734918833,
0.034791041165590286,
0.045493725687265396,
-0.017637113109230995,
0.030577514320611954,
0.03629469871520996,
0.04985124245285988,
-0.0025472287088632584,
-0.0492154024541378,
0.03362252190709114,
-0.013282183557748795,
0.0372936949133873,
0.006130359601229429,
-0.022927414625883102,
-0.051545023918151855,
-0.08387227356433868,
0.003943399526178837,
0.0015813717618584633,
-0.0075880479998886585,
-0.0019163122633472085,
0.05025622993707657,
-0.04018048942089081,
-0.012387637048959732,
0.013016626238822937,
0.026324426755309105,
0.028777146711945534,
-0.04117313399910927,
0.03197280317544937,
-0.020654533058404922,
0.0428132526576519,
-0.03581319376826286,
0.023924732580780983,
-0.03815455734729767,
-0.03402181714773178,
0.02469646744430065,
0.06280279904603958,
0.017473334446549416,
0.04537571594119072,
0.05820272117853165,
0.0460575707256794,
-0.027124887332320213,
0.05377315729856491,
0.03377940505743027,
-0.0026100503746420145,
-0.05603555962443352,
-0.003173385513946414,
-0.02228357084095478,
-0.019748505204916,
-0.01796148344874382,
-0.01523919403553009,
0.02422024868428707,
0.025770558044314384,
0.0020312583073973656,
-0.015813954174518585,
-0.020778238773345947,
-0.019330793991684914,
-0.026345763355493546,
-0.057647693902254105,
-0.006624894216656685,
-0.019252769649028778,
-0.014156091026961803,
0.04251060634851456,
0.03783750161528587,
0.014241589233279228,
0.05563275143504143,
0.045545630156993866,
-0.02227051556110382,
-0.03498661518096924,
0.04021598398685455,
0.03899180516600609,
-0.038600992411375046,
-0.041641660034656525,
-0.059529200196266174,
0.03802686557173729,
0.04315996542572975,
-0.02169678919017315,
-0.09612095355987549,
0.01197841390967369,
0.047124218195676804,
-0.054991088807582855,
0.07188498228788376,
0.016004646196961403,
0.04542876034975052,
0.0776120200753212,
-0.029844311997294426,
0.021138310432434082,
-0.00673748180270195,
-0.009334666654467583,
0.0029310546815395355,
0.06054224818944931,
-0.04671192541718483,
-0.04099765792489052,
-0.04009705036878586,
0.057119112461805344,
0.019825322553515434,
0.04362468421459198,
0.04765814542770386,
-0.027537086978554726,
-0.054922159761190414,
0.023239346221089363,
0.027065670117735863,
-0.02737160585820675,
0.0000472808133054059,
0.014305694960057735,
0.03484133630990982,
-0.06391914933919907,
-0.04894201457500458,
-0.019128862768411636,
-0.003083618590608239,
0.03154784440994263,
-0.00484768021851778,
-0.04036993905901909,
-0.0285714752972126,
-0.006541203707456589,
-0.023393886163830757,
-0.019932955503463745,
-0.0872148722410202,
0.03663061931729317,
-0.007302339654415846,
-0.023465266451239586,
0.05613693222403526,
0.041353896260261536,
0.030188128352165222,
0.03793904930353165,
0.0011848919093608856,
0.024317583069205284,
-0.01989378221333027,
0.04165215417742729,
-0.02264622412621975,
-0.022553930059075356,
-0.019938675686717033,
-0.06583014130592346,
-0.019241930916905403,
-0.0281473807990551,
-0.03924642875790596,
-0.043470196425914764,
-0.034676190465688705,
0.008637619204819202,
-0.011189224198460579,
-0.01617627590894699,
-0.012771569192409515,
0.028282765299081802,
-0.04054081067442894,
-0.02642085961997509,
-0.0355229452252388,
-0.03541721776127815,
-0.08418918401002884,
-0.04064536839723587,
-0.006890338379889727,
0.013207764364778996,
0.024333611130714417,
0.011089767329394817,
0.0018638571491464972,
0.00879561435431242,
0.00999373383820057,
-0.02538442425429821,
0.044432949274778366,
0.00027226307429373264,
-0.039072949439287186,
-0.017136773094534874,
0.011392630636692047,
0.012645682319998741,
0.011023089289665222,
-0.019974132999777794,
0.03036491572856903,
0.030995868146419525,
-0.020292403176426888,
-0.014482949860394001,
0.03945423662662506,
-0.0027863180730491877,
-0.07146284729242325,
-0.029313229024410248,
-0.008916178718209267,
-0.04480943828821182,
0.03579912707209587,
0.0023343167267739773,
-0.020756466314196587,
0.004988462198525667,
0.030147455632686615,
0.01835748553276062,
-0.015045064501464367,
-0.028743045404553413,
0.004847629461437464,
-0.023130174726247787,
0.0297458004206419,
-0.0770944356918335,
0.0344730019569397,
-0.05869002640247345,
-0.008601133711636066,
-0.00211624545045197,
-0.011726749129593372,
-0.05684754252433777,
0.05456442013382912,
-0.0007930019055493176,
0.0006469408981502056,
-0.020315101370215416,
0.0004920267383567989,
-0.03352035582065582,
0.028863750398159027,
-0.012608904391527176,
0.002489900216460228,
-0.029729174450039864,
0.03850630670785904,
-0.05433069169521332,
-0.018394505605101585,
-0.022444767877459526,
-0.01585797779262066,
-0.016871033236384392,
-0.023075148463249207,
-0.0242127887904644,
-0.02286529541015625,
0.04454167187213898,
0.009163999930024147,
0.03677058964967728,
0.046669576317071915,
-0.007676929701119661,
0.02751809172332287,
0.022390251979231834,
-0.08324266970157623,
-0.03341515734791756,
0.00279248203150928,
0.014713912270963192,
0.01173313893377781,
0.06561529636383057,
0.03293880447745323,
-0.06540460139513016,
-0.055348772555589676,
0.06066891923546791,
0.015504766255617142,
-0.011376647278666496,
0.006130768917500973,
0.02606303244829178,
0.048293985426425934,
0.024691427126526833,
-0.02849395200610161,
-0.026664484292268753,
-0.007576487027108669,
-0.03855695202946663,
0.010981794446706772,
-0.0027627157978713512,
0.04029228165745735,
0.01844192110002041,
-0.035676728934049606,
-0.005169967655092478,
0.07792213559150696,
0.02822394110262394,
0.01516725867986679,
-0.012375577352941036,
-0.04509756341576576,
0.019725579768419266,
0.0029338893946260214,
-0.050321150571107864,
0.008747216314077377,
0.015385492704808712,
-0.04975659400224686,
0.06336416304111481,
0.0066265384666621685,
0.007844577543437481,
0.04993206635117531,
0.014349360950291157,
-0.023177459836006165,
0.04473728686571121,
-0.04267466813325882,
0.016650749370455742,
0.05339899659156799,
-0.053660545498132706,
-0.008764659985899925,
-0.03431729972362518,
0.07318433374166489,
-0.06267235428094864,
0.059754885733127594,
0.04685656353831291,
0.027660971507430077,
0.0035428202245384455,
-0.0424567312002182,
-0.05031422898173332,
0.03883970156311989,
-0.04296824336051941,
0.08028117567300797,
0.012141866609454155,
-0.05838146060705185,
0.08558180928230286,
0.011867198161780834,
-0.08899489045143127,
0.03379371017217636,
0.04723094031214714,
0.030450204387307167,
0.04524042084813118,
0.0403820164501667,
-0.06535729020833969,
-0.0040508899837732315,
-0.02236844226717949,
0.014497803524136543,
-0.04355625808238983,
-0.008054712787270546,
-0.005827764514833689,
-0.041361354291439056,
0.010497123934328556,
0.05052635446190834,
-0.00506142433732748,
0.00297568435780704,
0.026464609429240227,
-0.03751577436923981,
-0.04598043113946915,
-0.011536248959600925,
0.01576019823551178,
-0.02131146751344204,
0.029615558683872223,
-0.02430102229118347,
0.005460476037114859,
0.01028292253613472,
-0.013953003101050854,
-0.03134125843644142,
-0.008281480520963669,
0.019814275205135345,
-0.057790644466876984,
-0.017930053174495697,
0.03931552171707153,
0.018280649557709694,
-0.029024165123701096,
0.025253640487790108,
0.0092517314478755,
0.02970142476260662,
0.023386888206005096,
-0.02873990498483181,
0.0184442400932312,
-0.06646337360143661,
-0.005944220814853907,
0.04065052792429924,
-0.017799578607082367,
0.027492176741361618,
-0.01015196181833744,
0.038022857159376144,
0.048160213977098465,
0.026464998722076416,
-0.0035110446624457836,
-0.027351003140211105,
-0.010994351468980312,
0.010810903273522854,
-0.030903002247214317,
0.028838099911808968,
0.005764026194810867,
-0.04678205028176308,
-0.02472005784511566,
-0.024742351844906807,
-0.020252281799912453,
0.05091233551502228,
-0.04398975893855095,
0.0005721428897231817,
0.052096109837293625,
-0.028007198125123978,
-0.04216766357421875,
-0.07911479473114014,
-0.029799560084939003,
-0.018222540616989136,
0.03011656366288662,
0.017004281282424927,
-0.011433756910264492,
0.018535476177930832,
-0.020630011335015297,
-0.05099104344844818,
0.028815729543566704,
0.03186001628637314,
-0.042876746505498886,
0.04570091515779495,
0.031710315495729446,
-0.01995805650949478,
0.040187232196331024,
0.04025307297706604,
-0.04788276553153992,
0.0004759807779919356,
0.004272276535630226,
0.03138512000441551,
0.02814648114144802,
0.03025185689330101,
-0.02017935737967491,
-0.013392713852226734,
-0.054397594183683395,
-0.03276670351624489,
-0.061890240758657455,
-0.011391459964215755,
0.052035052329301834
] |
AdapterHub/bert-base-uncased-pf-qnli | [
"bert",
"en",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification",
"adapterhub:nli/qnli"
] | text-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | 2023-05-17T15:29:05Z | ---
language:
- pt
license: apache-2.0
tags:
- hf-asr-leaderboard
- generated_from_trainer
datasets:
- Testes-2-audios
model-index:
- name: whisper-fine-test
results: []
---
<!-- 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. -->
# whisper-fine-test
This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the Modelo-teste dataset.
## 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: 16
- 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: 500
- training_steps: 10
- mixed_precision_training: Native AMP
### Training results
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.02834087610244751,
-0.03096809983253479,
-0.00514422170817852,
0.038485608994960785,
0.043089982122182846,
0.02009267359972,
-0.008468536660075188,
-0.012102929875254631,
-0.038267582654953,
0.049165304750204086,
0.03390274941921234,
-0.013107262551784515,
0.007864823564887047,
0.03610335662961006,
-0.041536856442689896,
-0.04389098286628723,
-0.026436666026711464,
-0.02955351397395134,
-0.027074767276644707,
-0.02446558140218258,
-0.008736547082662582,
-0.001032274216413498,
-0.00004454101144801825,
0.014898874796926975,
-0.029709262773394585,
0.02132151462137699,
-0.028328821063041687,
0.002554233418777585,
0.025705499574542046,
-0.058934640139341354,
0.00465737096965313,
-0.052227314561605453,
-0.027076350525021553,
-0.036100152879953384,
-0.024634048342704773,
0.011140147224068642,
0.03356822207570076,
0.027351532131433487,
0.030684465542435646,
0.022631734609603882,
0.004713374190032482,
0.019237246364355087,
0.0029002109076827765,
0.008008587174117565,
0.04678080976009369,
0.002004335168749094,
-0.02383445017039776,
-0.023643890395760536,
0.03325032815337181,
-0.02922964282333851,
-0.04558509960770607,
-0.07147768884897232,
-0.018790381029248238,
0.0339776873588562,
-0.004184137564152479,
-0.02063046395778656,
-0.056244730949401855,
-0.011793173849582672,
0.05780661106109619,
-0.03990885615348816,
-0.03871706873178482,
0.01673351414501667,
-0.06915215402841568,
0.025068238377571106,
0.03387829661369324,
-0.03886359557509422,
0.0118044912815094,
-0.028122013434767723,
0.046415310353040695,
-0.03428591415286064,
0.05322078615427017,
-0.03517741337418556,
0.026949375867843628,
-0.0995473861694336,
-0.022553855553269386,
-0.017718994989991188,
0.03869573399424553,
0.05538387596607208,
-0.027434535324573517,
0.055985983461141586,
0.032150957733392715,
0.006228292360901833,
0.042518872767686844,
0.00041356051224283874,
0.024166228249669075,
0.06002667918801308,
-0.035144831985235214,
0.021036982536315918,
0.002306287409737706,
0.02688578888773918,
-0.05642033740878105,
-0.05092939734458923,
-0.04421498253941536,
-0.03552679717540741,
0.0005872735637240112,
0.04135707765817642,
0.04729568213224411,
-0.018731841817498207,
0.04476131126284599,
0.029436318203806877,
0.03405521810054779,
0.017870012670755386,
-0.029342209920287132,
0.08555510640144348,
-0.007687632460147142,
-0.027106566354632378,
-0.019181763753294945,
-0.03021908365190029,
-0.04617124795913696,
0.019209658727049828,
0.014826676808297634,
-0.03772848844528198,
-0.040375083684921265,
0.0283442884683609,
0.032704830169677734,
-0.02787606231868267,
0.0364503487944603,
-0.017110850661993027,
-0.04114937782287598,
-0.026715371757745743,
0.05730271711945534,
0.0195347610861063,
0.02216086909174919,
0.007588483393192291,
-0.03782437741756439,
0.014562999829649925,
-0.023106783628463745,
-0.036244798451662064,
0.0025873680133372545,
-0.007852018810808659,
-0.004206549841910601,
0.04056783393025398,
-0.004435248207300901,
-0.05737872049212456,
-0.003973681945353746,
0.014603556133806705,
-0.05895310640335083,
0.018523169681429863,
-0.002508118050172925,
0.10556565225124359,
-0.03875720500946045,
-0.06261028349399567,
0.007317753043025732,
-0.016137851402163506,
-0.018556345254182816,
0.029383506625890732,
0.009655019268393517,
-0.06548744440078735,
-0.028303520753979683,
0.004383680410683155,
0.05668308958411217,
-0.05342995375394821,
-0.015930598601698875,
0.045176465064287186,
-0.00825339276343584,
0.019391147419810295,
-0.05403875932097435,
-0.03062042035162449,
0.002601692918688059,
-0.0025343885645270348,
-0.03567415475845337,
0.026734333485364914,
-0.015974260866642,
-0.011977984569966793,
-0.03918973729014397,
-0.04879562184214592,
-0.003978375345468521,
0.07090523838996887,
-0.004621679894626141,
-0.029825948178768158,
-0.01745538040995598,
0.037646520882844925,
0.04310523346066475,
0.0153969032689929,
-0.028893262147903442,
0.05039571598172188,
0.06230733543634415,
0.030388394370675087,
-0.022078335285186768,
0.044365640729665756,
0.01485530473291874,
-0.041476551443338394,
-0.03740601986646652,
0.006654475349932909,
0.012495455332100391,
-0.04262783005833626,
0.009834015741944313,
0.025519942864775658,
-0.004799755290150642,
-0.041397687047719955,
-0.04233420267701149,
0.06768204271793365,
-0.021407485008239746,
-0.00021447965991683304,
0.010453101247549057,
-0.00311863562092185,
-0.027561109513044357,
0.03262508660554886,
-0.023731963708996773,
0.022226886823773384,
-0.037000905722379684,
-0.040857959538698196,
0.015709267929196358,
-0.014954019337892532,
0.023521510884165764,
0.0664142295718193,
-0.01041372586041689,
0.101168692111969,
-0.0093270568177104,
0.03273342549800873,
-0.03565056249499321,
-0.05915093794465065,
0.014011441729962826,
0.06759736686944962,
0.0327686071395874,
0.05628597363829613,
-0.00043317666859366,
-0.07226701080799103,
0.037119075655937195,
0.06730718165636063,
0.04727436974644661,
0.019987767562270164,
-0.03867585211992264,
-0.005713896360248327,
0.03969911113381386,
0.05225126072764397,
-0.02873975783586502,
-0.03881463408470154,
-0.012285212986171246,
0.024886518716812134,
-0.016046764329075813,
0.024367133155465126,
-0.014803912490606308,
0.04502350836992264,
-0.05016785487532616,
-0.08814743906259537,
0.0305341649800539,
0.022350922226905823,
0.009664284996688366,
0.024043327197432518,
-0.01161690428853035,
-0.007213525474071503,
0.024999646469950676,
-0.0036984675098210573,
0.004788016900420189,
-0.05619063973426819,
0.01981511153280735,
0.001051505678333342,
0.034166935831308365,
-0.05868503078818321,
0.028827575966715813,
-0.03221326693892479,
-0.00001942453491210472,
0.016820833086967468,
-0.05175188556313515,
0.014734757132828236,
0.055833086371421814,
0.04366151615977287,
-0.03533405810594559,
0.005987802054733038,
0.008891725912690163,
0.07999110221862793,
0.05277794227004051,
0.017404183745384216,
0.06879643350839615,
-0.002246059710159898,
0.03534724563360214,
0.08755110949277878,
0.036674246191978455,
0.01729241944849491,
0.027713723480701447,
0.067267045378685,
-0.002239147899672389,
0.000861956796143204,
0.05495661869645119,
-0.06071034073829651,
0.0167342871427536,
-0.03935978189110756,
-0.008641204796731472,
-0.019688302651047707,
0.007658264134079218,
0.04444186016917229,
0.018112188205122948,
-0.008683989755809307,
-0.019001837819814682,
-0.013526981696486473,
-0.029626911506056786,
0.03761066123843193,
-0.016620000824332237,
0.029727712273597717,
0.0003632489824667573,
0.007457793690264225,
-0.030080800876021385,
-0.06797932833433151,
-0.033593546599149704,
-0.012125312350690365,
-0.012595388107001781,
-0.021543269976973534,
-0.07038358598947525,
-0.03414556011557579,
-0.05541449785232544,
0.0004885526141151786,
0.03423617407679558,
0.029358001425862312,
0.017983412370085716,
-0.019244641065597534,
0.0034240621607750654,
-0.05093736574053764,
-0.04288972541689873,
-0.05064604803919792,
-0.0215397160500288,
-0.04711351543664932,
-0.06669884920120239,
0.030526135116815567,
0.043230291455984116,
0.03013959340751171,
-0.0012627693358808756,
0.0072861225344240665,
0.002963252365589142,
-0.0009939121082425117,
0.07141720503568649,
0.03969194367527962,
-0.03442782163619995,
-0.053483325988054276,
0.03351728245615959,
-0.03186366334557533,
0.03203893452882767,
0.014476094394922256,
-0.03453288599848747,
0.09925292432308197,
0.049423083662986755,
0.029232800006866455,
0.016190936788916588,
-0.032902058213949203,
-0.058138683438301086,
-0.07247915118932724,
-0.021442120894789696,
-0.045413363724946976,
-0.027806904166936874,
-0.02635735459625721,
-0.036363475024700165,
-0.006669783033430576,
-0.025313707068562508,
-0.012620094232261181,
-0.021208204329013824,
0.03406612202525139,
0.040251657366752625,
0.04735230654478073,
0.024101225659251213,
0.013930239714682102,
-0.0497010163962841,
-0.03855591267347336,
0.044599127024412155,
-0.002623794600367546,
-0.004736125003546476,
-0.08657269179821014,
-0.027622051537036896,
0.028857527300715446,
-0.007143610622733831,
0.0129235303029418,
0.012460908852517605,
0.0744810402393341,
0.01829233393073082,
0.008927996270358562,
0.03861558064818382,
-0.018932294100522995,
0.0010020172921940684,
-0.010048181749880314,
0.0187930129468441,
-0.02786296047270298,
-0.050571538507938385,
-0.0023998969700187445,
0.01873076520860195,
0.04762507230043411,
-0.04319107532501221,
-0.041246429085731506,
-0.02594710700213909,
0.026055958122015,
0.052535999566316605,
-0.0019803084433078766,
-0.03835194557905197,
-0.0205213762819767,
-0.0873008444905281,
-0.0404723696410656,
0.02760852873325348,
0.010209508240222931,
0.014273310080170631,
0.03205953165888786,
0.009670685976743698,
-0.015145898796617985,
0.05714431032538414,
0.026394929736852646,
0.05905051901936531,
0.008718941360712051,
-0.052396103739738464,
0.008303933776915073,
-0.0282424446195364,
0.024910520762205124,
-0.00015521353634539992,
-0.02045527473092079,
-0.037292540073394775,
-0.09382914751768112,
-0.021633120253682137,
0.0013725702883675694,
-0.0006651919684372842,
-0.012855969369411469,
0.0006230464787222445,
-0.021264366805553436,
-0.011590663343667984,
0.009649577550590038,
0.013425434939563274,
0.04640857130289078,
-0.05657438188791275,
0.06365637481212616,
-0.0060335793532431126,
0.00925432238727808,
-0.05900929495692253,
0.022817961871623993,
-0.058373674750328064,
-0.05321013182401657,
-0.0010753872338682413,
0.04127134755253792,
-0.012105714529752731,
0.06889303028583527,
0.09264160692691803,
0.03073190525174141,
-0.03476596623659134,
0.005362682975828648,
0.06381797045469284,
-0.01503035333007574,
-0.05281737074255943,
0.006413810420781374,
-0.02969561330974102,
-0.03169938921928406,
0.0018999719759449363,
-0.013366135768592358,
0.05095541849732399,
0.03686617314815521,
-0.0014781763311475515,
0.012261194176971912,
-0.02271920070052147,
-0.01938803493976593,
-0.026587797328829765,
-0.06551400572061539,
-0.018813371658325195,
0.02356669306755066,
-0.014429380185902119,
0.0191181730479002,
0.024073662236332893,
0.026970725506544113,
0.05440601333975792,
0.05127725377678871,
-0.011088814586400986,
-0.05024435743689537,
0.011184281669557095,
0.029608801007270813,
-0.045774783939123154,
-0.10518848896026611,
-0.02555180713534355,
0.026661328971385956,
0.032318565994501114,
-0.004283918999135494,
-0.06672538071870804,
-0.004010850563645363,
0.04513194039463997,
-0.04224272072315216,
0.06267184019088745,
-0.012445354834198952,
0.04462353512644768,
0.05572449043393135,
0.002164857229217887,
0.03938012197613716,
-0.024502744898200035,
-0.02236030250787735,
0.013664819300174713,
0.010702596977353096,
-0.02789197862148285,
-0.04300658404827118,
-0.0734916552901268,
0.01281399093568325,
0.03585679456591606,
0.04873238503932953,
0.03292851895093918,
-0.04788496345281601,
-0.04706994444131851,
0.00420387415215373,
0.02398158609867096,
-0.029674679040908813,
-0.007179796230047941,
0.023011744022369385,
0.036743391305208206,
-0.03401809558272362,
-0.0631486102938652,
-0.0331987589597702,
-0.027230361476540565,
0.0253945030272007,
0.008200868964195251,
-0.03580573573708534,
-0.040266409516334534,
0.043332070112228394,
-0.01436937041580677,
-0.019295962527394295,
-0.08500397950410843,
0.02699631080031395,
-0.009224837645888329,
-0.00897730328142643,
0.06797369569540024,
0.03792715072631836,
0.04045075923204422,
0.04252925142645836,
0.04021983966231346,
0.031286004930734634,
-0.033380843698978424,
0.04147826507687569,
-0.04889744892716408,
-0.04057993367314339,
0.0192731786519289,
-0.026790808886289597,
-0.03900543972849846,
-0.03418254107236862,
-0.0492912195622921,
-0.0364118330180645,
-0.02758585289120674,
0.014905260875821114,
0.0038586317095905542,
0.005841312929987907,
-0.006195396650582552,
0.03023315593600273,
-0.015632666647434235,
-0.031645432114601135,
-0.021283946931362152,
-0.027601175010204315,
-0.06913638114929199,
-0.05376864969730377,
0.020277637988328934,
0.01159119512885809,
0.026272958144545555,
0.009799817577004433,
0.024959420785307884,
0.010348434560000896,
-0.000470628758193925,
-0.03139108046889305,
0.015603028237819672,
0.002839626045897603,
-0.03689490258693695,
-0.03142736479640007,
0.03187080845236778,
0.01759849116206169,
0.014215375296771526,
-0.039310093969106674,
0.04345801845192909,
0.007029398810118437,
-0.013766889460384846,
-0.006372571922838688,
0.010527660138905048,
0.0354379303753376,
-0.07620064914226532,
-0.023895882070064545,
-0.011710794642567635,
-0.058002013713121414,
0.035786837339401245,
-0.028624504804611206,
-0.005725490860641003,
0.010577677749097347,
0.002373760100454092,
0.04523279145359993,
-0.01816147193312645,
-0.04001248627901077,
-0.0017476786160841584,
-0.027410147711634636,
0.005481829401105642,
-0.02883472666144371,
0.04475532844662666,
-0.0466853491961956,
0.018021393567323685,
-0.021333977580070496,
0.02666574716567993,
-0.026318632066249847,
0.033077821135520935,
-0.03075196035206318,
-0.008272175677120686,
0.0004741854500025511,
0.012432532384991646,
-0.021794043481349945,
0.06013919785618782,
-0.047397639602422714,
0.012920776382088661,
-0.03518160060048103,
0.06379938870668411,
-0.04087517410516739,
0.007061760872602463,
-0.03212093561887741,
-0.004043736960738897,
-0.027720686048269272,
0.0015053936513140798,
-0.010218429379165173,
-0.01060065720230341,
0.02099003829061985,
0.042454637587070465,
0.0459260419011116,
0.034919701516628265,
-0.03903675824403763,
-0.025093918666243553,
0.003110175719484687,
-0.03669574856758118,
-0.01651197299361229,
0.011453818529844284,
0.019867591559886932,
0.0011482422705739737,
0.03870066627860069,
0.05734553933143616,
-0.039906032383441925,
-0.07541947811841965,
0.03561481833457947,
0.022059930488467216,
0.008465450257062912,
0.009165260009467602,
0.04227740690112114,
0.01986093260347843,
0.03448750823736191,
-0.02065056748688221,
-0.0022803102619946003,
-0.0048609389923512936,
-0.043021392077207565,
0.03642436861991882,
-0.016906842589378357,
0.022529544308781624,
0.0020968483295291662,
-0.03249235451221466,
-0.007527329493314028,
0.04604624584317207,
0.020960045978426933,
0.03495670482516289,
-0.003495053155347705,
-0.04779070243239403,
0.022227155044674873,
-0.02677455171942711,
-0.06044852361083031,
0.02868097461760044,
0.009960919618606567,
0.005734394770115614,
0.055060774087905884,
-0.015376047231256962,
0.017755011096596718,
0.02491196058690548,
0.030234526842832565,
-0.010934505611658096,
0.05687418207526207,
-0.00708285765722394,
0.025031497702002525,
0.041679639369249344,
-0.06693077832460403,
-0.010643267072737217,
-0.030404554679989815,
0.06167024001479149,
-0.056722886860370636,
0.0162031427025795,
0.06226077675819397,
0.004868546035140753,
0.0056624445132911205,
-0.024411017075181007,
-0.04404954984784126,
0.02568214200437069,
-0.024684282019734383,
0.07631567120552063,
0.0001681443100096658,
-0.04235554113984108,
0.05924314633011818,
0.011495034210383892,
-0.0814194306731224,
0.06016087904572487,
0.03787101060152054,
0.02850191853940487,
0.019910182803869247,
0.04543532058596611,
-0.030974075198173523,
-0.0031432900577783585,
-0.021249858662486076,
0.03758382052183151,
-0.0750819519162178,
-0.009171250276267529,
0.03840968385338783,
-0.04197869077324867,
-0.022341933101415634,
0.03560957312583923,
-0.044303711503744125,
-0.0165763758122921,
0.03455263748764992,
-0.05693133920431137,
-0.004519099835306406,
0.028300832957029343,
0.030041828751564026,
-0.034764789044857025,
-0.015616195276379585,
-0.020872002467513084,
0.025720860809087753,
0.013062553480267525,
0.010934212245047092,
-0.022503413259983063,
0.002346237888559699,
-0.0013123451499268413,
-0.03616137430071831,
-0.04521026462316513,
0.05397046357393265,
0.014434140175580978,
-0.004488210193812847,
0.03110624849796295,
0.02749350108206272,
0.029733583331108093,
0.009638018906116486,
0.015835266560316086,
0.037037670612335205,
-0.04612801969051361,
-0.03616120666265488,
0.003899986855685711,
-0.0007224175496958196,
0.03566144406795502,
-0.0002945970045402646,
0.05158165097236633,
0.039034437388181686,
0.010172899812459946,
0.009175024926662445,
-0.05432671681046486,
-0.031719062477350235,
0.01701253466308117,
-0.021808577701449394,
0.013129533268511295,
-0.013471473008394241,
-0.05877141281962395,
-0.045196276158094406,
-0.01087274495512247,
-0.03384464979171753,
0.015773359686136246,
-0.07516436278820038,
-0.009192723780870438,
0.027040963992476463,
0.0011623881291598082,
-0.05531296506524086,
-0.10288230329751968,
-0.04021397978067398,
-0.04798441007733345,
0.018445072695612907,
0.03940649703145027,
-0.0515609011054039,
0.04534465819597244,
-0.05888532102108002,
-0.018496926873922348,
0.04548253118991852,
0.015534213744103909,
-0.005179785192012787,
0.026289520785212517,
0.03962498530745506,
-0.06698765605688095,
-0.005008195526897907,
0.030174171552062035,
-0.031315647065639496,
-0.01603875309228897,
0.005367838777601719,
0.019381083548069,
0.028365779668092728,
-0.009673991240561008,
-0.03905119374394417,
-0.012034334242343903,
-0.05185775086283684,
-0.028895968571305275,
-0.022510046139359474,
-0.009784002788364887,
0.07121185958385468
] |
AdapterHub/bert-base-uncased-pf-scitail | [
"bert",
"en",
"dataset:scitail",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification",
"adapterhub:nli/scitail"
] | text-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
metrics:
- bleu
model-index:
- name: my_awesome_sindarin_model
results: []
---
<!-- 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. -->
# my_awesome_sindarin_model
This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 3.1459
- Bleu: 0.3288
- Gen Len: 12.348
## 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: 16
- eval_batch_size: 16
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss | Bleu | Gen Len |
|:-------------:|:-----:|:----:|:---------------:|:------:|:-------:|
| No log | 1.0 | 199 | 3.6560 | 0.0612 | 17.4414 |
| No log | 2.0 | 398 | 3.4073 | 0.1168 | 12.5788 |
| 3.9239 | 3.0 | 597 | 3.2573 | 0.2427 | 12.3178 |
| 3.9239 | 4.0 | 796 | 3.1767 | 0.2812 | 12.2585 |
| 3.9239 | 5.0 | 995 | 3.1459 | 0.3288 | 12.348 |
### Framework versions
- Transformers 4.28.1
- Pytorch 1.13.1+cu116
- Datasets 2.11.0
- Tokenizers 0.13.3
| [
-0.03326897323131561,
-0.021485639736056328,
-0.008481661789119244,
0.042594924569129944,
0.01705928146839142,
0.0032588501926511526,
-0.016857484355568886,
-0.00744269834831357,
-0.03039940819144249,
0.06104741245508194,
0.015497849322855473,
-0.033552370965480804,
-0.008822135627269745,
0.023863667622208595,
-0.0520188994705677,
-0.012316237203776836,
-0.005157147534191608,
-0.006592346355319023,
-0.018289979547262192,
0.021766966208815575,
0.006286051589995623,
-0.004271788522601128,
-0.013820127584040165,
0.016810989007353783,
0.008599843829870224,
0.02057313360273838,
-0.031571000814437866,
-0.0013891839189454913,
0.03849348425865173,
-0.08680414408445358,
0.017861753702163696,
-0.06269678473472595,
-0.042192257940769196,
-0.025289524346590042,
-0.0047308653593063354,
-0.008061667904257774,
0.003204203210771084,
0.0085254842415452,
0.02892317622900009,
0.058926329016685486,
0.019558211788535118,
0.012367288582026958,
-0.03169107809662819,
-0.01872512325644493,
0.03356245905160904,
0.012908942066133022,
-0.028634289279580116,
-0.018493639305233955,
0.04925282672047615,
-0.03537975251674652,
-0.05804729834198952,
-0.04652600362896919,
-0.014182653278112411,
0.024941077455878258,
-0.017493190243840218,
-0.02108040265738964,
-0.05957940220832825,
-0.016610585153102875,
0.06968457996845245,
-0.04774751141667366,
-0.05762181058526039,
0.0037801258731633425,
-0.09304102510213852,
0.019082199782133102,
0.036391157656908035,
-0.026497269049286842,
0.019534064456820488,
-0.02960732765495777,
0.015622882172465324,
-0.015527759678661823,
0.04905681684613228,
-0.0007158183725550771,
-0.0037240618839859962,
-0.08072054386138916,
-0.02997574582695961,
-0.017137885093688965,
0.030088411644101143,
0.04223126918077469,
-0.04770783707499504,
0.05612235516309738,
0.054626431316137314,
-0.021454758942127228,
0.04007122665643692,
0.007132008671760559,
0.01335930172353983,
0.04618369787931442,
-0.049947310239076614,
0.010359941981732845,
0.04772799089550972,
0.04787943884730339,
-0.04287649691104889,
-0.034274909645318985,
0.013828564435243607,
-0.028628237545490265,
-0.011916120536625385,
0.011026343330740929,
0.03065364435315132,
0.011983268894255161,
0.04586310312151909,
0.0029129714239388704,
0.03247619420289993,
0.031811490654945374,
0.006533175241202116,
0.07849977910518646,
-0.004352359101176262,
-0.01822253130376339,
-0.030324960127472878,
-0.03474891185760498,
-0.0436009019613266,
0.038379788398742676,
0.019137553870677948,
-0.061214253306388855,
-0.026807626709342003,
0.03082042559981346,
0.0034519771579653025,
-0.0014998671831563115,
0.059406112879514694,
-0.035708747804164886,
-0.05408181622624397,
-0.03145000711083412,
0.033546604216098785,
0.021611033007502556,
-0.029150672256946564,
0.0024593197740614414,
-0.052057165652513504,
0.006986469030380249,
-0.024960769340395927,
-0.04259587079286575,
-0.01730211451649666,
0.01765538938343525,
-0.015040101483464241,
0.03975187614560127,
0.004443462006747723,
-0.06698780506849289,
-0.012553292326629162,
0.0010979510843753815,
-0.05543467402458191,
0.04807768017053604,
0.01777118816971779,
0.10401858389377594,
-0.05216521397233009,
-0.07004301995038986,
-0.003127150237560272,
-0.008782726712524891,
-0.038882363587617874,
0.03338676691055298,
-0.00569463474676013,
-0.04417046904563904,
-0.011103159748017788,
-0.020841635763645172,
0.0620269700884819,
-0.06321652978658676,
-0.01525729987770319,
0.0343782976269722,
0.024705857038497925,
0.03920703008770943,
-0.06071937456727028,
-0.028327399864792824,
0.020009012892842293,
-0.004965607542544603,
-0.007973412983119488,
0.030874542891979218,
0.010152225382626057,
0.005298631265759468,
-0.04465251415967941,
-0.04875749722123146,
0.008463948965072632,
0.07497915625572205,
0.0033440792467445135,
-0.008442633785307407,
-0.008877764455974102,
0.030226241797208786,
0.04294174164533615,
0.027704667299985886,
-0.03688555210828781,
0.04401884973049164,
0.046677906066179276,
0.03851857781410217,
-0.031482256948947906,
0.054194994270801544,
0.03634697571396828,
-0.02322804369032383,
-0.021240733563899994,
0.013830803334712982,
0.015915540978312492,
-0.04266880080103874,
0.0037344538141041994,
0.037794504314661026,
0.01484966091811657,
-0.04687047004699707,
-0.03402785211801529,
0.06773186475038528,
-0.01558521669358015,
0.0012123093474656343,
-0.02417141944169998,
0.001854675356298685,
-0.027429616078734398,
0.04745442792773247,
-0.006392476614564657,
-0.000013690056221093982,
-0.029866544529795647,
-0.02331540733575821,
0.007262017112225294,
0.01776188425719738,
0.011851666495203972,
0.044385120272636414,
-0.024613652378320694,
0.09748449921607971,
-0.03993423655629158,
0.015398374758660793,
-0.03132229670882225,
-0.035018350929021835,
0.013505439274013042,
0.0541565977036953,
0.060929182916879654,
0.06065227463841438,
-0.0008851104066707194,
-0.031222572550177574,
0.029596079140901566,
0.0744379535317421,
0.04143430292606354,
0.005755908787250519,
-0.019304467365145683,
0.0013331122463569045,
0.03278970718383789,
0.05320429056882858,
-0.06216306984424591,
-0.02457040548324585,
0.03138582780957222,
0.03380373492836952,
-0.00983340572565794,
0.026310265064239502,
-0.01269571390002966,
0.03679831326007843,
-0.05324671417474747,
-0.056796617805957794,
0.04241316020488739,
0.00500331399962306,
0.012461486272513866,
0.03081933595240116,
0.018965644761919975,
0.006654465105384588,
0.022979848086833954,
0.02421819604933262,
-0.007558286655694246,
-0.05699354037642479,
0.013920135796070099,
-0.0022157917264848948,
0.047276005148887634,
-0.06049362197518349,
0.030166521668434143,
-0.01594519056379795,
-0.005143289919942617,
0.04744286462664604,
-0.06260429322719574,
0.004649999085813761,
0.054792989045381546,
0.021978210657835007,
-0.027151932939887047,
0.011512307450175285,
0.029480861499905586,
0.03742051124572754,
0.048689570277929306,
-0.021475955843925476,
0.059307415038347244,
0.008795789442956448,
0.029051685705780983,
0.07884852588176727,
0.026120226830244064,
0.029274102300405502,
0.03584746643900871,
0.06487777084112167,
0.018125034868717194,
0.010329827666282654,
0.04408574104309082,
-0.05803681164979935,
0.029881728813052177,
-0.038304492831230164,
0.01587061956524849,
-0.020032893866300583,
-0.0032307468354701996,
0.041966456919908524,
0.01343104150146246,
-0.03037508763372898,
-0.012749222107231617,
-0.01026458665728569,
-0.0009959784802049398,
-0.0006469398504123092,
-0.018091147765517235,
-0.009272860363125801,
-0.0024860533885657787,
-0.010393474251031876,
0.0013622258557006717,
-0.05011481046676636,
-0.03761683404445648,
-0.002549407072365284,
-0.012826869264245033,
-0.030776407569646835,
-0.07560848444700241,
-0.006410245317965746,
-0.06238196790218353,
-0.023774130269885063,
0.03186877444386482,
0.009161265566945076,
0.01614217646420002,
-0.054060060530900955,
0.024719035252928734,
-0.05011243000626564,
-0.02954481542110443,
-0.0435321219265461,
-0.05389357730746269,
-0.019859202206134796,
-0.07085702568292618,
0.041746821254491806,
0.05191951245069504,
0.02417558617889881,
0.015657322481274605,
0.021592868492007256,
0.010944748297333717,
-0.031302232295274734,
0.04412548989057541,
0.058494970202445984,
-0.02411319687962532,
-0.04656100645661354,
0.039613813161849976,
-0.01764488033950329,
0.023187078535556793,
-0.008447039872407913,
-0.022354837507009506,
0.09071014076471329,
0.06821084022521973,
-0.00427868589758873,
-0.02166890911757946,
-0.03006152994930744,
-0.048378147184848785,
-0.056503601372241974,
-0.026500249281525612,
-0.03157641366124153,
-0.00895017758011818,
-0.014346116222441196,
-0.02107931114733219,
-0.014242329634726048,
-0.03412986919283867,
0.0022899904288351536,
0.005976093001663685,
-0.005212212912738323,
0.03367600217461586,
0.03493412211537361,
0.019884923473000526,
0.02402743324637413,
-0.021030988544225693,
-0.03355725482106209,
0.05614849925041199,
0.01763617806136608,
0.006356650963425636,
-0.07413852214813232,
-0.01664198376238346,
0.025574229657649994,
0.03056107833981514,
0.005754522979259491,
0.00267095398157835,
0.08902272582054138,
0.011816012673079967,
-0.014856893569231033,
0.0008355462341569364,
-0.017097417265176773,
-0.02179376594722271,
-0.012765120714902878,
-0.0007070928695611656,
0.004267232958227396,
-0.043655574321746826,
-0.007417889311909676,
-0.01640639640390873,
0.043240949511528015,
-0.06106884405016899,
-0.0500321201980114,
-0.024807792156934738,
0.023792004212737083,
0.040188539773225784,
-0.010086250491440296,
-0.042558204382658005,
-0.004754872526973486,
-0.08115889877080917,
-0.010624643415212631,
0.044265810400247574,
0.023111972957849503,
-0.008274270221590996,
0.062577985227108,
0.01252718735486269,
-0.0119473896920681,
0.033404961228370667,
0.028023524209856987,
0.04421573504805565,
0.019229089841246605,
-0.05695286765694618,
-0.0009413918014615774,
-0.023982129991054535,
0.04154173284769058,
-0.00023096553923096508,
-0.013600112870335579,
-0.024601783603429794,
-0.10422046482563019,
-0.043051719665527344,
-0.0030247485265135765,
-0.01962834596633911,
-0.0014703248161822557,
0.04315022751688957,
-0.012700820341706276,
-0.006664593238383532,
-0.004339182283729315,
-0.004863918758928776,
0.027914751321077347,
-0.0631580799818039,
0.05765548348426819,
-0.016910042613744736,
0.01726495288312435,
-0.04479309171438217,
0.013624075800180435,
-0.010334732942283154,
-0.02357541024684906,
0.003089898033067584,
0.048485659062862396,
-0.006477209739387035,
0.05103221535682678,
0.07369469851255417,
0.04250197112560272,
-0.04138360917568207,
0.05949155613780022,
0.058072999119758606,
-0.032482992857694626,
-0.04957043379545212,
0.015933604910969734,
-0.006949001923203468,
-0.017211059108376503,
0.016156872734427452,
-0.01695220358669758,
0.033027730882167816,
0.05353028327226639,
-0.016053158789873123,
0.01985972933471203,
-0.0006935616256669164,
-0.013668746687471867,
-0.022244403138756752,
-0.058601073920726776,
0.006877617910504341,
0.0009572132839821279,
-0.043133240193128586,
0.02615862898528576,
0.038389530032873154,
0.024150870740413666,
0.08706915378570557,
0.028288286179304123,
-0.023896124213933945,
-0.01895378902554512,
0.02040446549654007,
0.02548462152481079,
-0.03189467638731003,
-0.0884331688284874,
-0.016181668266654015,
0.03372859209775925,
0.038722503930330276,
-0.011162174865603447,
-0.03973618894815445,
0.03266347572207451,
0.06680011004209518,
-0.0394778810441494,
0.04737996682524681,
-0.009144158102571964,
0.024204395711421967,
0.060375459492206573,
-0.03357814997434616,
0.045046478509902954,
-0.035829607397317886,
0.011576819233596325,
-0.005046057049185038,
0.04159771651029587,
-0.05057993903756142,
-0.0037941718474030495,
-0.056468427181243896,
0.028881948441267014,
0.042567670345306396,
0.028913356363773346,
0.05350209400057793,
-0.021941758692264557,
-0.054853953421115875,
-0.006026871036738157,
0.039139747619628906,
-0.06271625310182571,
0.0031802135054022074,
0.02965027466416359,
0.0379098542034626,
-0.03025350533425808,
-0.0414634644985199,
-0.033878397196531296,
-0.012606815434992313,
0.032755982130765915,
-0.0014617752749472857,
-0.03901706263422966,
-0.04802507534623146,
0.03522922098636627,
0.0013298008125275373,
-0.007925042882561684,
-0.06296583265066147,
0.03971388190984726,
-0.01382357906550169,
-0.02017991989850998,
0.03957781195640564,
0.026200592517852783,
0.022628268226981163,
0.060153618454933167,
0.02560468018054962,
0.014210105873644352,
-0.02399902231991291,
0.04589460790157318,
-0.04134678468108177,
-0.015257768332958221,
0.007631659507751465,
-0.03991379961371422,
-0.031740982085466385,
-0.013424192555248737,
-0.03676613047719002,
-0.030407877638936043,
-0.03664744272828102,
0.01570945978164673,
-0.006625724956393242,
-0.02988956682384014,
0.011009239591658115,
0.054738614708185196,
-0.019200429320335388,
-0.04300111159682274,
-0.05201207846403122,
-0.025430046021938324,
-0.06423357129096985,
-0.034517329186201096,
0.034462518990039825,
-0.002911351853981614,
0.050821080803871155,
0.024488484486937523,
0.019226809963583946,
0.04570801556110382,
0.009050763212144375,
-0.04435541108250618,
0.03845115751028061,
0.00008825286204228178,
-0.02045644447207451,
-0.03461195528507233,
0.0035034054890275,
0.009714490734040737,
0.031691230833530426,
-0.027172626927495003,
0.030927082523703575,
0.012612291611731052,
-0.007325559854507446,
-0.010906988754868507,
0.011941295117139816,
0.03689613565802574,
-0.05006050691008568,
-0.031580157577991486,
0.011614015325903893,
-0.051216479390859604,
0.02372228167951107,
-0.0308079794049263,
-0.026282893493771553,
0.00983473751693964,
0.010878505185246468,
0.04238707199692726,
-0.0036252359859645367,
-0.024110939353704453,
0.009049702435731888,
-0.010446768254041672,
0.010231459513306618,
-0.0475899800658226,
0.04172484204173088,
-0.033699143677949905,
0.014469683170318604,
-0.017903802916407585,
-0.0015079013537615538,
-0.04883262515068054,
0.050909847021102905,
-0.01845572702586651,
-0.020832788199186325,
0.0007074884488247335,
0.05243373662233353,
-0.018037598580121994,
0.027163302525877953,
-0.0007041705539450049,
0.04588942229747772,
-0.05191849172115326,
0.04759287089109421,
-0.02088402397930622,
0.025972703471779823,
-0.028628608211874962,
0.029263701289892197,
-0.0093048345297575,
0.006510819308459759,
-0.01312269363552332,
-0.04000434651970863,
0.0257521141320467,
0.06224906072020531,
0.025882922112941742,
0.03378600999712944,
-0.029810065403580666,
-0.012311390601098537,
0.012844684533774853,
-0.057213377207517624,
-0.018378635868430138,
0.0009335231152363122,
-0.005862743593752384,
-0.009818162769079208,
0.07325462996959686,
0.04580779746174812,
-0.05198890343308449,
-0.05724230781197548,
0.025320958346128464,
0.0014206344494596124,
0.0002767425903584808,
0.004046421963721514,
0.028724614530801773,
0.01908010058104992,
0.04879828542470932,
-0.03436560928821564,
0.005806304514408112,
-0.00889987125992775,
-0.030063413083553314,
0.04937127232551575,
-0.005758494604378939,
0.020956968888640404,
0.03704145923256874,
-0.013882650062441826,
-0.011141651310026646,
0.0623483806848526,
0.04173792526125908,
0.011575853452086449,
-0.016261471435427666,
-0.05031191185116768,
0.04237136244773865,
-0.0016290934290736914,
-0.046525295823812485,
0.0014731308910995722,
0.02794625237584114,
-0.0163510050624609,
0.06770402193069458,
-0.023611506447196007,
0.016403280198574066,
0.046969223767519,
0.05082087591290474,
-0.006547285709530115,
0.059399839490652084,
-0.02514106221497059,
0.016929151490330696,
0.05118757113814354,
-0.06243719533085823,
0.008178198710083961,
-0.03873485326766968,
0.0736260935664177,
-0.06684065610170364,
0.029734119772911072,
0.07200715690851212,
0.005172031465917826,
0.019188962876796722,
-0.036889851093292236,
-0.051880862563848495,
0.018865101039409637,
-0.03455948829650879,
0.058452680706977844,
0.023206427693367004,
-0.06649554520845413,
0.043400879949331284,
0.004234932363033295,
-0.08736797422170639,
0.03921320661902428,
0.04441531002521515,
0.025801969692111015,
0.04570569470524788,
0.027901850640773773,
-0.07945890724658966,
0.022758904844522476,
-0.01723756454885006,
0.04780806601047516,
-0.05445219948887825,
-0.023701028898358345,
0.05374663695693016,
-0.04402969777584076,
-0.033181652426719666,
0.026009850203990936,
0.0005535971140488982,
-0.021859794855117798,
0.059382881969213486,
-0.05735838785767555,
-0.043621309101581573,
0.019062211737036705,
0.03174380585551262,
-0.023646946996450424,
0.02379480190575123,
-0.04309767857193947,
0.01716434769332409,
-0.000015111349057406187,
0.02327488549053669,
-0.021311119198799133,
0.013704147189855576,
0.027802668511867523,
-0.07441207766532898,
0.0001064018506440334,
0.030878547579050064,
-0.0028140642680227757,
-0.009755265899002552,
0.01723502017557621,
0.012022252194583416,
0.013421549461781979,
0.022724604234099388,
-0.017652805894613266,
0.022153666242957115,
-0.061537966132164,
-0.017893902957439423,
0.018748940899968147,
-0.0027733566239476204,
0.03209790587425232,
0.00292318407446146,
0.027763526886701584,
0.0391857735812664,
-0.003238517791032791,
-0.0023568780161440372,
-0.03180724009871483,
-0.0357484295964241,
0.01578042097389698,
-0.045587703585624695,
0.03347279503941536,
-0.00008955194789450616,
-0.056283749639987946,
-0.046244386583566666,
-0.0012468883069232106,
-0.034951142966747284,
0.028314929455518723,
-0.07375018298625946,
-0.018137319013476372,
0.029235361143946648,
-0.010008275508880615,
-0.04999076575040817,
-0.09488694369792938,
-0.02648235484957695,
-0.049183622002601624,
-0.00397398229688406,
0.04930049926042557,
-0.048982538282871246,
0.025909192860126495,
-0.05507383123040199,
-0.05795932188630104,
0.013226808048784733,
0.03037128783762455,
-0.027061091735959053,
0.03292906656861305,
0.05123421177268028,
-0.04478071257472038,
0.01631425879895687,
0.016897879540920258,
-0.06427700072526932,
0.01818019710481167,
0.01439881231635809,
0.008684584870934486,
0.03008021041750908,
0.0022053008433431387,
-0.016937309876084328,
-0.01813378557562828,
-0.10251881927251816,
-0.05591702461242676,
-0.049042586237192154,
0.023195505142211914,
0.07011313736438751
] |
AdapterHub/bert-base-uncased-pf-squad_v2 | [
"bert",
"en",
"dataset:squad_v2",
"arxiv:2104.08247",
"adapter-transformers",
"question-answering",
"adapterhub:qa/squad2"
] | question-answering | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 10 | null | ---
license: other
datasets:
- OpenAssistant/oasst1
language:
- aa
metrics:
- accuracy
- cer
library_name: open_clip
pipeline_tag: text-to-image
tags:
- art
- medical
--- | [
-0.02098122239112854,
-0.01779630221426487,
-0.002496582455933094,
0.006063664332032204,
0.06096341460943222,
-0.01078901719301939,
-0.008625381626188755,
-0.007940762676298618,
-0.027996685355901718,
0.042398784309625626,
0.02658713422715664,
0.026056447997689247,
-0.0008602867019362748,
0.056248314678668976,
-0.0009203272638842463,
-0.015216721221804619,
-0.019362006336450577,
-0.014265808276832104,
-0.032925307750701904,
-0.010869420133531094,
0.04040145501494408,
-0.018156714737415314,
-0.01877940259873867,
-0.0060378434136509895,
-0.008778747171163559,
-0.0020807702094316483,
0.00670587457716465,
0.007851219736039639,
0.0710325837135315,
-0.046258073300123215,
-0.005152733996510506,
-0.04531502351164818,
-0.025215456262230873,
-0.038062237203121185,
-0.04173004999756813,
-0.0023380813654512167,
0.027805976569652557,
0.010365749709308147,
0.01510846707969904,
0.05206024646759033,
-0.020759863778948784,
0.033049099147319794,
-0.01892354153096676,
-0.03470480069518089,
0.0471796952188015,
-0.03454126417636871,
-0.034595854580402374,
-0.03960195928812027,
0.015336096286773682,
-0.037629492580890656,
-0.06872236728668213,
-0.07580720633268356,
-0.014439348131418228,
0.012686938047409058,
-0.010374610312283039,
-0.03851314261555672,
-0.019710518419742584,
-0.01879562810063362,
0.06393112987279892,
-0.04757820442318916,
-0.04402429237961769,
0.016851756721735,
-0.06349953263998032,
0.002004452748224139,
0.0522756353020668,
-0.042222023010253906,
0.01825861446559429,
-0.048222266137599945,
0.020623687654733658,
-0.023714279755949974,
0.06806369870901108,
-0.02633180096745491,
0.007720057852566242,
-0.07463783770799637,
-0.03194430097937584,
-0.0018977316794916987,
0.023283466696739197,
0.04238307476043701,
-0.03781398385763168,
0.04833680018782616,
0.05574849620461464,
0.018399402499198914,
0.046637676656246185,
-0.028802134096622467,
-0.03750733286142349,
0.034336771816015244,
-0.022136876359581947,
0.008993799798190594,
0.022802090272307396,
0.05160822719335556,
-0.026882342994213104,
-0.032910559326410294,
-0.01512154284864664,
-0.03363568335771561,
-0.009051777422428131,
-0.003131377976387739,
0.05876994505524635,
-0.03800182789564133,
0.003435923717916012,
0.03087383136153221,
0.03178780898451805,
0.04038570076227188,
0.010188651271164417,
0.03621896728873253,
0.006970259360969067,
-0.015255095437169075,
-0.007470354903489351,
-0.008762863464653492,
-0.02875029295682907,
0.011260723695158958,
0.02212934009730816,
-0.009477932006120682,
-0.02939585968852043,
0.04802090302109718,
-0.0005747538525611162,
-0.018725138157606125,
0.0766218826174736,
-0.01482955552637577,
-0.017736006528139114,
-0.058447014540433884,
0.04532467946410179,
0.01936454139649868,
-0.00492596672847867,
-0.017184706404805183,
-0.017785407602787018,
0.008500317111611366,
-0.03489251062273979,
-0.0220489464700222,
0.009114515967667103,
0.021977512165904045,
0.010801478289067745,
0.07237908244132996,
0.008978726342320442,
-0.08135591447353363,
0.026513485237956047,
0.05242149531841278,
-0.0503368005156517,
0.04130907356739044,
0.027744140475988388,
0.11966686695814133,
-0.06784818321466446,
-0.049480412155389786,
0.006132034119218588,
0.016934361308813095,
-0.038957949727773666,
0.009189821779727936,
0.030140331014990807,
-0.040237389504909515,
-0.028959933668375015,
-0.025107039138674736,
0.03610958158969879,
-0.07341867685317993,
-0.0049683754332363605,
0.06870031356811523,
0.018981674686074257,
0.02100859023630619,
-0.019750528037548065,
-0.0060239071026444435,
-0.005194024182856083,
-0.006710897199809551,
-0.027764899656176567,
0.05648632347583771,
-0.018389491364359856,
-0.00024453323567286134,
-0.02119407244026661,
-0.056970369070768356,
-0.02244156412780285,
0.08459781110286713,
0.0006691933958791196,
-0.022965924814343452,
-0.07704073190689087,
0.011532404460012913,
0.021988553926348686,
0.013323147781193256,
-0.0066268485970795155,
0.03425078094005585,
0.03473367169499397,
0.023582998663187027,
-0.004046203102916479,
0.063810795545578,
0.01363383885473013,
-0.02525961399078369,
-0.028072576969861984,
-0.021672019734978676,
0.036657579243183136,
-0.004444357939064503,
-0.00954426359385252,
0.05221622437238693,
0.02378668449819088,
-0.041442956775426865,
-0.01566147245466709,
0.04150978848338127,
-0.0217109527438879,
-0.012033832259476185,
0.022714123129844666,
-0.03107324242591858,
-0.004195208195596933,
0.022769788280129433,
-0.03216041997075081,
-0.0024976409040391445,
-0.010289546102285385,
-0.013084245845675468,
0.0413740798830986,
0.033760592341423035,
0.042806629091501236,
0.042913809418678284,
0.0014378860360011458,
0.07442361861467361,
-0.03285843878984451,
-0.002993025816977024,
-0.02119245007634163,
-0.046824704855680466,
0.0027600887697190046,
0.05738846957683563,
0.04301390424370766,
0.04118790104985237,
-0.03246510028839111,
-0.058490559458732605,
0.025107920169830322,
0.06962783634662628,
0.049340926110744476,
0.03239213302731514,
-0.018088655546307564,
-0.010138594545423985,
0.01933775097131729,
0.011143181473016739,
-0.026770509779453278,
-0.03439478203654289,
0.030328866094350815,
0.02590070106089115,
-0.018249724060297012,
0.009308705106377602,
-0.027821585536003113,
0.015265961177647114,
-0.04308260977268219,
-0.07731922715902328,
0.02824837900698185,
0.03046671859920025,
-0.02314957231283188,
0.03671268746256828,
-0.018479907885193825,
-0.017075084149837494,
0.03808196634054184,
0.010096851736307144,
0.015315573662519455,
-0.04498783499002457,
0.03508646413683891,
0.017627006396651268,
0.06969470530748367,
-0.04763813316822052,
0.030464794486761093,
-0.025702595710754395,
0.0053039537742733955,
0.010609958320856094,
-0.02770712785422802,
0.007253038231283426,
0.058598101139068604,
0.04822804033756256,
-0.014681663364171982,
0.035837844014167786,
0.024837631732225418,
-0.010103018023073673,
0.07819770276546478,
0.0034720380790531635,
0.054061464965343475,
-0.04406208544969559,
0.04531986266374588,
0.070716492831707,
-0.004562097601592541,
0.009362839162349701,
0.02696894109249115,
0.09271763265132904,
-0.029617195948958397,
-0.011624501086771488,
0.05186602100729942,
-0.03015686571598053,
0.0037779416888952255,
-0.04294055700302124,
-0.010559727437794209,
-0.038193196058273315,
0.00865188054740429,
0.04508822038769722,
-0.014539608731865883,
-0.04461381211876869,
0.01111716590821743,
0.002274471567943692,
-0.003810848807916045,
0.040599483996629715,
-0.013260947540402412,
0.005941341165453196,
0.0028119466733187437,
-0.006645492278039455,
0.020163634791970253,
-0.0544138178229332,
-0.02133433148264885,
-0.04116814211010933,
-0.03651187941431999,
-0.003560122800990939,
-0.08354827016592026,
0.019915247336030006,
-0.0805603489279747,
-0.004151014145463705,
0.033894751220941544,
0.036114390939474106,
-0.0037482331972569227,
-0.043408334255218506,
0.020779049023985863,
-0.011716085486114025,
-0.05356135964393616,
-0.044034603983163834,
-0.04068825766444206,
-0.03580200672149658,
-0.05236421898007393,
0.03383487090468407,
0.028686340898275375,
0.021541055291891098,
0.02205248735845089,
0.004320687614381313,
-0.027980901300907135,
-0.013729894533753395,
0.06819722056388855,
0.043877337127923965,
-0.03621898591518402,
-0.02474236860871315,
0.021519362926483154,
-0.014401142485439777,
0.010589312762022018,
0.006160192657262087,
-0.018622037023305893,
0.08334789425134659,
0.04281609505414963,
0.04167431220412254,
-0.03929391875863075,
0.005600119940936565,
-0.04817662760615349,
-0.028720851987600327,
-0.03751165419816971,
-0.03870758041739464,
-0.009325755760073662,
-0.03204360976815224,
-0.041408367455005646,
-0.048055268824100494,
-0.046590741723775864,
-0.011703882366418839,
-0.0078005739487707615,
0.010161817073822021,
0.03285233676433563,
0.03989815339446068,
0.03444512560963631,
0.030488312244415283,
-0.03611532226204872,
-0.015356606803834438,
0.07153424620628357,
0.008107982575893402,
-0.01126160379499197,
-0.05707431957125664,
-0.023688506335020065,
0.04790525510907173,
0.01371630746871233,
0.006429432891309261,
-0.0012892832746729255,
0.04529286175966263,
-0.019268697127699852,
-0.00872035138309002,
0.02714727632701397,
-0.02616485394537449,
-0.02074599266052246,
-0.010325174778699875,
-0.02010200172662735,
-0.03679020702838898,
-0.05935072898864746,
-0.007929784245789051,
0.005542121361941099,
0.057400595396757126,
-0.08459200710058212,
-0.03945823758840561,
-0.018025143072009087,
0.022271638736128807,
0.02490951120853424,
0.012398866936564445,
-0.047890763729810715,
-0.013521675951778889,
-0.04112524166703224,
-0.016699960455298424,
0.040832288563251495,
0.0003656898043118417,
-0.006545031908899546,
0.06499457359313965,
-0.003030376276001334,
-0.02019045129418373,
0.07086560875177383,
0.04533606395125389,
0.05115484818816185,
0.009156018495559692,
-0.04106411337852478,
0.030476676300168037,
-0.011301237158477306,
0.010277299210429192,
0.0019932815339416265,
-0.04289228841662407,
-0.04276285693049431,
-0.09030470252037048,
-0.01039022859185934,
0.012397568672895432,
-0.004900821018964052,
0.00782790407538414,
0.05233709514141083,
-0.025224193930625916,
-0.002966926433146,
-0.0003636456385720521,
-0.0034479887690395117,
0.04637735337018967,
-0.0208392683416605,
0.06769219785928726,
-0.01102904137223959,
0.0186533872038126,
-0.05059415102005005,
0.010098978877067566,
-0.022664884105324745,
-0.02149350382387638,
-0.006773035041987896,
0.06374068558216095,
0.016030216589570045,
0.022850751876831055,
0.05065616965293884,
-0.007958938367664814,
-0.02670343965291977,
0.029384909197688103,
0.041308220475912094,
-0.0078108832240104675,
-0.06804251670837402,
0.016080647706985474,
-0.011128335259854794,
-0.0007889698026701808,
0.004366620443761349,
-0.03573793172836304,
0.022360455244779587,
0.05239799618721008,
-0.015833277255296707,
0.008518298156559467,
-0.0012690582079812884,
-0.05212026834487915,
-0.03221308812499046,
-0.05434873327612877,
-0.02194734662771225,
0.009907352738082409,
-0.028271807357668877,
0.028558040037751198,
0.05937011167407036,
0.040060658007860184,
0.04970449209213257,
0.0177054051309824,
-0.031658243387937546,
-0.03015359863638878,
0.045229487121105194,
0.03292034938931465,
-0.041013769805431366,
-0.09596168994903564,
-0.026666054502129555,
0.03123953752219677,
-0.00024108396610245109,
-0.00019834692648146302,
-0.06372570991516113,
0.007603303529322147,
0.056687042117118835,
-0.05837911739945412,
0.07024632394313812,
0.038127560168504715,
0.04119309410452843,
0.06584304571151733,
-0.01244411151856184,
0.03467441722750664,
-0.05364469438791275,
0.016523461788892746,
-0.0174539964646101,
0.029242832213640213,
-0.04236256703734398,
-0.014567788690328598,
-0.025103813037276268,
0.03278817981481552,
-0.016687821596860886,
0.0303951445966959,
0.04646869748830795,
-0.0641833171248436,
-0.054609231650829315,
-0.021116049960255623,
0.036443669348955154,
-0.06386785954236984,
0.024602973833680153,
0.048874352127313614,
0.06340204924345016,
-0.0499066524207592,
-0.020752109587192535,
-0.024721836671233177,
-0.0035047484561800957,
0.04045819118618965,
-0.013354753144085407,
-0.023161550983786583,
-0.05020342022180557,
0.03559970483183861,
-0.007425344083458185,
-0.04479452222585678,
-0.07952085137367249,
0.019581040367484093,
-0.029634099453687668,
-0.039762306958436966,
0.06298887729644775,
0.0002894753124564886,
0.03764509782195091,
0.06872718036174774,
-0.012001129798591137,
0.03988693654537201,
-0.03802354261279106,
0.03474459424614906,
-0.03807568922638893,
-0.016935307532548904,
0.0015232403529807925,
-0.01320932898670435,
-0.0350685715675354,
-0.01459726132452488,
-0.020414067432284355,
-0.055965494364500046,
-0.0023286109790205956,
0.026571057736873627,
0.0037280370015650988,
-0.006272990722209215,
-0.015535666607320309,
0.02431677095592022,
-0.00030185774085111916,
-0.004211430437862873,
-0.023199675604701042,
-0.03745850920677185,
-0.10364029556512833,
-0.004328751005232334,
0.049536656588315964,
-0.013735669665038586,
0.0038943751715123653,
0.026330754160881042,
0.028040088713169098,
0.022822042927145958,
-0.008272476494312286,
-0.01632167026400566,
0.04464001581072807,
0.018039627000689507,
-0.02441934309899807,
-0.0175020731985569,
0.03369656950235367,
0.0315944105386734,
0.02578359842300415,
-0.0440228171646595,
0.02106030471622944,
-0.0009683151147328317,
-0.028068052604794502,
-0.036390889436006546,
0.0020544787403196096,
-0.0019468197133392096,
-0.057406067848205566,
-0.05071014165878296,
-0.01958857849240303,
-0.019129367545247078,
0.044608499854803085,
-0.029390519484877586,
-0.026112103834748268,
0.04016280174255371,
0.04151635989546776,
0.03403498977422714,
-0.02082439512014389,
-0.026619141921401024,
-0.0008496345835737884,
-0.04179975017905235,
0.007035146467387676,
-0.05342737212777138,
0.02828882448375225,
-0.030094418674707413,
-0.011278047226369381,
-0.019566642120480537,
0.025732262060046196,
-0.02213638462126255,
0.06658822298049927,
-0.014952343888580799,
-0.0109209343791008,
-0.024890100583434105,
0.037993669509887695,
-0.037595584988594055,
0.051196638494729996,
0.010659340769052505,
0.0014072086196392775,
-0.0035589756444096565,
0.03523162379860878,
-0.03937719762325287,
0.022988609969615936,
-0.017399204894900322,
-0.02088470757007599,
-0.03880435228347778,
-0.025391751900315285,
-0.01365187019109726,
-0.02950611710548401,
0.024466926231980324,
0.052295442670583725,
0.021450363099575043,
0.013648251071572304,
-0.012179838493466377,
-0.003409069497138262,
0.021120568737387657,
-0.05959457531571388,
-0.018066519871354103,
-0.02321345917880535,
-0.0032776938751339912,
-0.014951074495911598,
0.042814772576093674,
0.03162489831447601,
-0.04065509885549545,
-0.06715353578329086,
0.03803906589746475,
-0.005311878398060799,
-0.0026112613268196583,
0.0007294293027371168,
0.024416420608758926,
0.07675980776548386,
0.0660979226231575,
-0.0275882501155138,
0.012322395108640194,
0.007385778706520796,
-0.040834978222846985,
0.02825275808572769,
-0.018692852929234505,
0.03084234893321991,
0.003277302486822009,
-0.03607502207159996,
-0.012754600495100021,
0.0801536813378334,
0.014414320699870586,
0.04393646493554115,
-0.012927007861435413,
-0.04985418543219566,
0.04576879367232323,
0.026382870972156525,
-0.05021287128329277,
0.01618320494890213,
0.039163947105407715,
-0.041562341153621674,
0.04201250150799751,
-0.004214902874082327,
0.014216088689863682,
0.019572176039218903,
0.042987722903490067,
-0.029691260308027267,
0.04543384909629822,
-0.023440757766366005,
0.015366047620773315,
0.04232371971011162,
-0.05864087864756584,
-0.021203139796853065,
-0.020004630088806152,
0.04730311781167984,
-0.042616814374923706,
0.06563762575387955,
0.02565927617251873,
0.008434572257101536,
0.018841924145817757,
-0.0482955239713192,
-0.02536690980195999,
0.024987749755382538,
-0.050268907099962234,
0.06890247762203217,
-0.011848440393805504,
-0.0824417695403099,
0.07270663231611252,
0.026463724672794342,
-0.09680444747209549,
0.02641359530389309,
0.009494432248175144,
0.02401207573711872,
0.014925814233720303,
0.016480740159749985,
-0.037103842943906784,
0.03685742989182472,
-0.037078242748975754,
0.0172517579048872,
-0.054516565054655075,
-0.015483272261917591,
0.03513249754905701,
-0.041352856904268265,
-0.0227341428399086,
0.022193487733602524,
-0.023615024983882904,
0.009404312819242477,
-0.0034378294367343187,
-0.019850218668580055,
-0.03516698256134987,
0.03365898132324219,
0.030322842299938202,
-0.013693228363990784,
0.017368828877806664,
-0.024212997406721115,
0.027119725942611694,
0.04215993732213974,
0.014209793880581856,
-0.04355989396572113,
0.009052331559360027,
0.03598320484161377,
-0.08433295041322708,
-0.06409803777933121,
0.037467796355485916,
0.017510337755084038,
-0.03131956234574318,
0.022445183247327805,
0.0161324143409729,
-0.008856557309627533,
0.019399335607886314,
-0.009744107723236084,
-0.012471344321966171,
-0.055502839386463165,
-0.005848075728863478,
0.024780219420790672,
0.02151506394147873,
0.025209179148077965,
-0.0036621945910155773,
0.02952330932021141,
0.04563984274864197,
0.0502447634935379,
0.016454847529530525,
0.00006199117342475802,
0.000970576424151659,
0.03343266248703003,
-0.052139896899461746,
0.01432065386325121,
-0.02752377837896347,
-0.06931234896183014,
-0.018818432465195656,
0.006040547508746386,
-0.015572477132081985,
0.01854669488966465,
-0.05600465461611748,
0.027199577540159225,
0.03220343217253685,
0.01499155443161726,
-0.044618282467126846,
-0.10847963392734528,
-0.03245310112833977,
-0.030667345970869064,
0.056535713374614716,
0.020745499059557915,
-0.07467298209667206,
0.028617078438401222,
-0.03777756169438362,
-0.0396304577589035,
0.05872618034482002,
-0.005728919990360737,
-0.0024211963173002005,
0.06503308564424515,
0.04857202246785164,
-0.045823391526937485,
0.03888951241970062,
0.03428658843040466,
-0.030214346945285797,
0.024515796452760696,
0.0007416747394017875,
0.023930011317133904,
0.011229409836232662,
0.05663573369383812,
0.005966437514871359,
0.0012244631070643663,
-0.03919057175517082,
-0.036764711141586304,
-0.02899761125445366,
0.027567394077777863,
0.08426857739686966
] |
AdapterHub/bert-base-uncased-pf-ud_en_ewt | [
"bert",
"en",
"dataset:universal_dependencies",
"adapter-transformers",
"adapterhub:dp/ud_ewt"
] | null | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
model-index:
- name: masked-sentence-generation-t5-base
results: []
---
<!-- 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. -->
# masked-sentence-generation-t5-base
This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 2.7392
## 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.0001
- train_batch_size: 4
- eval_batch_size: 4
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 4
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:----:|:---------------:|
| 2.9984 | 0.05 | 80 | 2.7041 |
| 2.8752 | 0.1 | 160 | 2.7021 |
| 2.9314 | 0.15 | 240 | 2.6966 |
| 2.8541 | 0.2 | 320 | 2.6968 |
| 2.8674 | 0.25 | 400 | 2.6900 |
| 2.8706 | 0.3 | 480 | 2.6886 |
| 2.7718 | 0.34 | 560 | 2.6908 |
| 2.8503 | 0.39 | 640 | 2.6877 |
| 2.8195 | 0.44 | 720 | 2.6902 |
| 2.8569 | 0.49 | 800 | 2.6893 |
| 2.8372 | 0.54 | 880 | 2.6859 |
| 2.8915 | 0.59 | 960 | 2.6898 |
| 2.9687 | 0.64 | 1040 | 2.6909 |
| 2.832 | 0.69 | 1120 | 2.6841 |
| 2.8425 | 0.74 | 1200 | 2.6842 |
| 2.8114 | 0.79 | 1280 | 2.6766 |
| 2.8101 | 0.84 | 1360 | 2.6783 |
| 2.8837 | 0.89 | 1440 | 2.6781 |
| 2.894 | 0.94 | 1520 | 2.6754 |
| 2.9183 | 0.99 | 1600 | 2.6762 |
| 2.6916 | 1.03 | 1680 | 2.6889 |
| 2.5812 | 1.08 | 1760 | 2.6896 |
| 2.5522 | 1.13 | 1840 | 2.6943 |
| 2.5368 | 1.18 | 1920 | 2.6928 |
| 2.5987 | 1.23 | 2000 | 2.6927 |
| 2.5625 | 1.28 | 2080 | 2.6899 |
| 2.4946 | 1.33 | 2160 | 2.6942 |
| 2.5902 | 1.38 | 2240 | 2.6900 |
| 2.5415 | 1.43 | 2320 | 2.6897 |
| 2.5767 | 1.48 | 2400 | 2.6858 |
| 2.6262 | 1.53 | 2480 | 2.6825 |
| 2.6066 | 1.58 | 2560 | 2.6818 |
| 2.5387 | 1.63 | 2640 | 2.6840 |
| 2.5795 | 1.67 | 2720 | 2.6828 |
| 2.5521 | 1.72 | 2800 | 2.6871 |
| 2.5477 | 1.77 | 2880 | 2.6836 |
| 2.587 | 1.82 | 2960 | 2.6824 |
| 2.529 | 1.87 | 3040 | 2.6871 |
| 2.6221 | 1.92 | 3120 | 2.6838 |
| 2.6353 | 1.97 | 3200 | 2.6803 |
| 2.5419 | 2.02 | 3280 | 2.6879 |
| 2.4521 | 2.07 | 3360 | 2.7027 |
| 2.3415 | 2.12 | 3440 | 2.7105 |
| 2.3483 | 2.17 | 3520 | 2.7140 |
| 2.3493 | 2.22 | 3600 | 2.7144 |
| 2.3967 | 2.27 | 3680 | 2.7134 |
| 2.3544 | 2.32 | 3760 | 2.7122 |
| 2.3192 | 2.36 | 3840 | 2.7175 |
| 2.3381 | 2.41 | 3920 | 2.7166 |
| 2.3667 | 2.46 | 4000 | 2.7165 |
| 2.3997 | 2.51 | 4080 | 2.7106 |
| 2.3178 | 2.56 | 4160 | 2.7154 |
| 2.4036 | 2.61 | 4240 | 2.7144 |
| 2.3797 | 2.66 | 4320 | 2.7129 |
| 2.3354 | 2.71 | 4400 | 2.7136 |
| 2.4109 | 2.76 | 4480 | 2.7118 |
| 2.387 | 2.81 | 4560 | 2.7097 |
| 2.3934 | 2.86 | 4640 | 2.7103 |
| 2.3956 | 2.91 | 4720 | 2.7103 |
| 2.4086 | 2.96 | 4800 | 2.7111 |
| 2.4083 | 3.0 | 4880 | 2.7110 |
| 2.3121 | 3.05 | 4960 | 2.7230 |
| 2.263 | 3.1 | 5040 | 2.7252 |
| 2.2722 | 3.15 | 5120 | 2.7296 |
| 2.2053 | 3.2 | 5200 | 2.7309 |
| 2.1969 | 3.25 | 5280 | 2.7363 |
| 2.2684 | 3.3 | 5360 | 2.7396 |
| 2.2789 | 3.35 | 5440 | 2.7376 |
| 2.2227 | 3.4 | 5520 | 2.7384 |
| 2.2886 | 3.45 | 5600 | 2.7390 |
| 2.2182 | 3.5 | 5680 | 2.7376 |
| 2.2738 | 3.55 | 5760 | 2.7394 |
| 2.1687 | 3.6 | 5840 | 2.7386 |
| 2.2548 | 3.65 | 5920 | 2.7371 |
| 2.2391 | 3.69 | 6000 | 2.7372 |
| 2.2031 | 3.74 | 6080 | 2.7391 |
| 2.1885 | 3.79 | 6160 | 2.7400 |
| 2.216 | 3.84 | 6240 | 2.7406 |
| 2.272 | 3.89 | 6320 | 2.7401 |
| 2.3455 | 3.94 | 6400 | 2.7395 |
| 2.2889 | 3.99 | 6480 | 2.7392 |
### Framework versions
- Transformers 4.28.1
- Pytorch 2.0.0
- Datasets 2.12.0
- Tokenizers 0.11.0
| [
-0.011681562289595604,
-0.023893997073173523,
-0.00479918671771884,
0.04811219871044159,
0.03575796261429787,
0.016998309642076492,
-0.015134907327592373,
-0.009416865184903145,
-0.04851292818784714,
0.05962146073579788,
0.008005842566490173,
-0.024151327088475227,
0.015564094297587872,
0.02804800495505333,
-0.03841029852628708,
-0.011254264973104,
-0.017551984637975693,
-0.012129006907343864,
-0.021221105009317398,
-0.0011496302904561162,
0.016464395448565483,
0.01162758283317089,
-0.017727306112647057,
0.013587861321866512,
-0.0037526898086071014,
0.02238461747765541,
0.0012248876737430692,
0.013619921170175076,
0.01721765473484993,
-0.06037488579750061,
0.014417151920497417,
-0.04224786534905434,
-0.047455448657274246,
-0.007165786810219288,
-0.0017123614670708776,
0.017871275544166565,
0.0010806471109390259,
0.020080886781215668,
0.030492715537548065,
0.05880692973732948,
0.008801073767244816,
0.02122221514582634,
-0.03007642552256584,
-0.02283303067088127,
0.05208354443311691,
0.014197343960404396,
-0.04155302047729492,
-0.010364577174186707,
0.04385637864470482,
-0.02307324856519699,
-0.06382846087217331,
-0.07203575223684311,
-0.017147960141301155,
0.01920035108923912,
-0.0320802666246891,
-0.0186688881367445,
-0.08350485563278198,
-0.0028100209310650826,
0.07617150992155075,
-0.05110541731119156,
-0.04136018827557564,
0.025622278451919556,
-0.0762537345290184,
0.02870701625943184,
0.047536466270685196,
-0.03564675152301788,
0.02023973874747753,
-0.0475194975733757,
0.013017059303820133,
-0.021889343857765198,
0.028548073023557663,
-0.0006521024624817073,
0.0067971134558320045,
-0.09296150505542755,
-0.03022041916847229,
-0.004758721683174372,
0.045082103461027145,
0.053889114409685135,
-0.03420297056436539,
0.06610124558210373,
0.023764368146657944,
-0.02159087359905243,
0.035986512899398804,
0.009035217575728893,
0.013045125640928745,
0.029129797592759132,
-0.05405180901288986,
0.005599382799118757,
0.007358606904745102,
0.040548089891672134,
-0.032807283103466034,
-0.01981866918504238,
-0.032502684742212296,
-0.036336686462163925,
-0.041080277413129807,
0.016544613987207413,
0.03408549353480339,
0.005686986725777388,
0.040469806641340256,
-0.0008837167988531291,
0.03040381707251072,
0.05832734331488609,
-0.017229024320840836,
0.06800565123558044,
-0.006787905003875494,
-0.011815310455858707,
-0.01803828775882721,
-0.023203948512673378,
-0.04760849475860596,
0.034564755856990814,
0.018129033967852592,
-0.03894771635532379,
-0.05139175057411194,
0.03600645437836647,
0.01996096596121788,
-0.022580647841095924,
0.06895257532596588,
-0.03725386783480644,
-0.040906794369220734,
-0.016021190211176872,
0.04259306937456131,
0.0005399480578489602,
-0.013446778990328312,
-0.008379478007555008,
-0.05241553112864494,
0.008694167248904705,
-0.030292179435491562,
-0.04807669296860695,
-0.001382887945510447,
0.016052257269620895,
-0.009526447393000126,
0.042629413306713104,
0.017043469473719597,
-0.06049066036939621,
-0.015412690117955208,
-0.010415981523692608,
-0.05658391863107681,
0.040939413011074066,
0.017246149480342865,
0.1123618558049202,
-0.05063960701227188,
-0.08189707249403,
-0.0004345850320532918,
0.001971704885363579,
-0.02595926634967327,
0.009709513746201992,
-0.002852856647223234,
-0.0365845263004303,
0.013599301688373089,
-0.01217059325426817,
0.07020524889230728,
-0.0419967882335186,
-0.010225470177829266,
0.04550772160291672,
0.0023437931668013334,
0.03711582347750664,
-0.046924903988838196,
-0.01960112899541855,
0.019471660256385803,
-0.02570279687643051,
0.0015753270126879215,
0.031655218452215195,
-0.021406248211860657,
-0.003556302282959223,
-0.029915818944573402,
-0.033891525119543076,
0.005536640528589487,
0.04210498183965683,
0.00016127141134347767,
-0.026787392795085907,
-0.03263584151864052,
0.00799196120351553,
0.043883904814720154,
0.03854166343808174,
-0.03390207141637802,
0.0315215066075325,
0.057936906814575195,
0.0359213724732399,
-0.02805415727198124,
0.034523848444223404,
0.014342314563691616,
-0.030963104218244553,
-0.015784841030836105,
0.03418681025505066,
0.014314447529613972,
-0.035877712070941925,
0.044785723090171814,
0.03172019124031067,
-0.009035482071340084,
-0.04135289043188095,
-0.041345953941345215,
0.0577767975628376,
-0.001489355694502592,
-0.0025668619200587273,
-0.010072946548461914,
0.013464461080729961,
-0.03141680359840393,
0.03085404820740223,
-0.01646129973232746,
0.013857672922313213,
-0.028514517471194267,
-0.03205912932753563,
0.007411427795886993,
0.015453477390110493,
0.026704924181103706,
0.04395337775349617,
-0.007093364838510752,
0.08865678310394287,
-0.04604838415980339,
0.017746267840266228,
-0.04021560773253441,
-0.05754990130662918,
0.00841214694082737,
0.06324856728315353,
0.04280180111527443,
0.05287034064531326,
0.02743055485188961,
-0.03651919215917587,
0.022054485976696014,
0.06516427546739578,
0.041402578353881836,
0.019054416567087173,
-0.04259471595287323,
-0.015601781196892262,
0.041661929339170456,
0.07698778063058853,
-0.03950372338294983,
-0.008381227031350136,
0.033962681889534,
0.04970337823033333,
-0.01992330513894558,
0.01279847789555788,
0.0032301563769578934,
0.052486173808574677,
-0.0608009435236454,
-0.060009896755218506,
0.033509545028209686,
0.014110724441707134,
0.010450037196278572,
0.031271398067474365,
0.005961061920970678,
0.003985647112131119,
0.045248087495565414,
-0.003922583535313606,
0.00407446501776576,
-0.037899959832429886,
0.016095047816634178,
0.022640405222773552,
0.05349062755703926,
-0.03227495774626732,
0.036346063017845154,
-0.015705183148384094,
-0.0033951192162930965,
0.026775145903229713,
-0.026174338534474373,
0.009856943972408772,
0.05451212450861931,
0.013322195969522,
-0.027168823406100273,
0.020078420639038086,
0.02113027684390545,
0.04297323897480965,
0.023472530767321587,
-0.009489423595368862,
0.0848487988114357,
0.012053608894348145,
0.039701152592897415,
0.09240850061178207,
0.03518237546086311,
0.029818886891007423,
0.030387725681066513,
0.07467328757047653,
0.016613084822893143,
0.007903245277702808,
0.0614529587328434,
-0.06791914999485016,
0.03472480922937393,
-0.046677444130182266,
0.036779191344976425,
-0.022289860993623734,
-0.0066370838321745396,
0.03940719738602638,
0.021760253235697746,
-0.02082911878824234,
-0.008676973171532154,
-0.021210046485066414,
-0.02778453752398491,
0.02847142517566681,
-0.015897657722234726,
0.008350753225386143,
-0.004877548664808273,
-0.02384589985013008,
0.001510174828581512,
-0.07030506432056427,
-0.04855411872267723,
-0.005569176282733679,
-0.022908199578523636,
-0.028667138889431953,
-0.09867502003908157,
-0.029938824474811554,
-0.054446544498205185,
-0.022868240252137184,
0.02110382355749607,
0.011276411823928356,
0.001905030687339604,
-0.04042140766978264,
0.03174977749586105,
-0.037099555134773254,
-0.031039537861943245,
-0.05864795297384262,
-0.051594797521829605,
-0.03399709612131119,
-0.07839202880859375,
0.04016664996743202,
0.013660701923072338,
0.0164343174546957,
-0.0008938988321460783,
-0.0026887403801083565,
-0.020598100498318672,
-0.0278466884046793,
0.0389992855489254,
0.044290199875831604,
-0.023246314376592636,
-0.04749509319663048,
0.024813223630189896,
-0.008462470024824142,
0.007912950590252876,
-0.02320951782166958,
-0.004923019092530012,
0.07582802325487137,
0.05647699907422066,
0.020398836582899094,
0.020654918625950813,
-0.028084538877010345,
-0.062322065234184265,
-0.0525800846517086,
-0.017214665189385414,
-0.04025242105126381,
-0.02665289305150509,
-0.032023150473833084,
-0.045511528849601746,
-0.015783093869686127,
-0.033249445259571075,
-0.02119550295174122,
0.0006571770063601434,
0.019542790949344635,
0.04415288195014,
0.033279795199632645,
0.041387222707271576,
0.02876180224120617,
-0.03640487790107727,
-0.03257109597325325,
0.05179596319794655,
0.011865958571434021,
0.025927111506462097,
-0.0791468396782875,
-0.023824837058782578,
0.04638524726033211,
0.026688653975725174,
0.017824262380599976,
-0.0016703560249879956,
0.08304553478956223,
-0.0013468771940097213,
-0.0025047652889043093,
0.026645861566066742,
0.007881111465394497,
-0.014949444681406021,
0.007734506390988827,
-0.002066807821393013,
-0.018809206783771515,
-0.04023671895265579,
-0.015635456889867783,
-0.0400264710187912,
0.048726484179496765,
-0.0584995336830616,
-0.04943156614899635,
-0.01596801169216633,
0.02159394510090351,
0.04729091376066208,
-0.0028454838320612907,
-0.02743266150355339,
-0.01414621714502573,
-0.050619691610336304,
-0.007391430903226137,
0.047733575105667114,
-0.0026564651634544134,
0.0034046568907797337,
0.04372711107134819,
0.033731695264577866,
-0.0061186072416603565,
0.03340708091855049,
0.03562840819358826,
0.04391389712691307,
0.01564355380833149,
-0.059541862457990646,
0.03272463381290436,
-0.015166470780968666,
0.029883889481425285,
0.0018971157260239124,
-0.021388843655586243,
-0.047951821237802505,
-0.1023310050368309,
-0.026114489883184433,
0.008074128068983555,
-0.018201399594545364,
-0.001538679702207446,
0.04640183970332146,
-0.02976924553513527,
-0.025844035670161247,
-0.001197103294543922,
0.00395524688065052,
0.04630354419350624,
-0.05322067067027092,
0.025040410459041595,
-0.028684640303254128,
0.028814395889639854,
-0.05061414837837219,
0.0028754447121173143,
-0.010443894192576408,
-0.02257143333554268,
0.00859308522194624,
0.0705636516213417,
0.004362915642559528,
0.07884755730628967,
0.06843312829732895,
0.06812667846679688,
-0.05188305303454399,
0.03942756727337837,
0.07080074399709702,
-0.009536377154290676,
-0.049253322184085846,
0.014661269262433052,
-0.0091098016127944,
-0.030261961743235588,
0.004791378974914551,
-0.011291448026895523,
0.0326758436858654,
0.03878849372267723,
-0.00941173080354929,
-0.010830529034137726,
0.011135991662740707,
-0.011644483543932438,
-0.02427271381020546,
-0.06206715106964111,
-0.03548689931631088,
-0.016735443845391273,
-0.038396164774894714,
0.034114908427000046,
0.020382346585392952,
0.027571910992264748,
0.05526241287589073,
0.024451367557048798,
-0.05102001503109932,
-0.02562198042869568,
0.011675025336444378,
0.02642708271741867,
-0.04584987834095955,
-0.06644099950790405,
-0.03000170923769474,
0.034014567732810974,
0.04745600372552872,
-0.02850276045501232,
-0.07324632257223129,
0.018717152997851372,
0.06467948108911514,
-0.030346527695655823,
0.033420830965042114,
-0.006057073827832937,
0.038807548582553864,
0.05869697779417038,
-0.00914105772972107,
0.05214923992753029,
-0.01372384000569582,
-0.0002912884228862822,
-0.018294265493750572,
0.03921264782547951,
-0.017252495512366295,
-0.02993498370051384,
-0.05464531108736992,
0.02441529370844364,
0.02571711502969265,
0.03981240838766098,
0.05117601901292801,
-0.030213136225938797,
-0.052670445293188095,
0.019964607432484627,
0.02700965479016304,
-0.04817666858434677,
0.014536830596625805,
0.01472300011664629,
0.050709716975688934,
-0.04812490940093994,
-0.029309304431080818,
-0.04014165699481964,
-0.01118867564946413,
0.04393724352121353,
0.002496387343853712,
-0.027890047058463097,
-0.025135871022939682,
0.028444036841392517,
0.014022096991539001,
-0.026789437979459763,
-0.0600992776453495,
0.02508867345750332,
-0.009381717070937157,
-0.018370550125837326,
0.04072599485516548,
0.03512175753712654,
0.02119312807917595,
0.05962647497653961,
0.01903647556900978,
0.027341803535819054,
-0.03512948006391525,
0.04173807427287102,
-0.01836996152997017,
-0.01000271551311016,
0.006947381887584925,
-0.051490768790245056,
-0.01670154370367527,
-0.04706019163131714,
-0.052038710564374924,
-0.029058678075671196,
-0.03196078538894653,
0.012261402793228626,
-0.018014181405305862,
0.00910998322069645,
0.005751480348408222,
0.03752816841006279,
-0.032822974026203156,
-0.03130558878183365,
-0.01732143573462963,
-0.03877759724855423,
-0.07605740427970886,
-0.050536926835775375,
0.03330245986580849,
0.026961462572216988,
0.04110734164714813,
0.0188500564545393,
0.01659616455435753,
0.02766023389995098,
-0.0013186640571802855,
-0.03276719152927399,
0.035448964685201645,
-0.00813845545053482,
-0.042093418538570404,
-0.027141569182276726,
0.014576952904462814,
0.01308620348572731,
0.01938384212553501,
-0.026550594717264175,
0.039471227675676346,
0.025571437552571297,
-0.01514020562171936,
-0.009979819878935814,
0.017754346132278442,
0.004563411232084036,
-0.06301417946815491,
-0.019558776170015335,
0.004717882256954908,
-0.0324641615152359,
0.03071597032248974,
-0.005324358586221933,
-0.008125863038003445,
-0.0015464590396732092,
0.019203003495931625,
0.02749492973089218,
-0.009977981448173523,
-0.03506087884306908,
0.0025540872011333704,
-0.018236134201288223,
0.013543536886572838,
-0.06788639724254608,
0.03706936910748482,
-0.034010306000709534,
0.0031471189577132463,
-0.03361382335424423,
0.017160257324576378,
-0.04056140407919884,
0.03794625401496887,
-0.012846657074987888,
-0.009004831314086914,
-0.004484637640416622,
0.05888693407177925,
-0.03598370403051376,
0.047921884804964066,
-0.017895469442009926,
0.027782974764704704,
-0.05356195196509361,
0.06071281433105469,
-0.026868268847465515,
0.0031958192121237516,
-0.03546859696507454,
0.010880604386329651,
-0.01939699985086918,
-0.00014336255844682455,
-0.018336988985538483,
-0.028841987252235413,
0.029017874971032143,
0.061322275549173355,
0.04977827146649361,
0.04524313285946846,
-0.01720513589680195,
-0.00501589011400938,
0.0022706107702106237,
-0.0678090751171112,
-0.022691799327731133,
0.008238274604082108,
0.013738052919507027,
-0.020484348759055138,
0.05531541630625725,
0.04812914505600929,
-0.04495585337281227,
-0.05702795088291168,
0.04920739307999611,
0.002536255633458495,
-0.011468466371297836,
0.018393635749816895,
0.02907729521393776,
0.042850662022829056,
0.038230445235967636,
-0.03087635710835457,
-0.0057259127497673035,
-0.0032726472709327936,
-0.03516470640897751,
0.0368533693253994,
-0.020897943526506424,
0.03622356057167053,
0.006261906120926142,
-0.04882641136646271,
-0.023266350850462914,
0.0530361570417881,
0.030622383579611778,
0.02219526469707489,
-0.009196027182042599,
-0.03996925801038742,
0.02320205047726631,
-0.003056659596040845,
-0.04780042916536331,
-0.005314271431416273,
0.011703656986355782,
-0.0121660977602005,
0.04407778009772301,
-0.022774893790483475,
-0.0018034388776868582,
0.06510235369205475,
0.012380983680486679,
-0.02316407486796379,
0.06098397076129913,
-0.03134593367576599,
0.005467585753649473,
0.05454130470752716,
-0.07226142287254333,
-0.0005825331900268793,
-0.049598369747400284,
0.07375210523605347,
-0.054481107741594315,
0.011481070891022682,
0.04408803582191467,
0.02573748305439949,
0.002765861339867115,
-0.018521668389439583,
-0.07117969542741776,
0.010826014913618565,
-0.03785518929362297,
0.07908114790916443,
0.010347969830036163,
-0.06228550150990486,
0.07271932810544968,
0.014965309761464596,
-0.06790263950824738,
0.04871257022023201,
0.033897094428539276,
0.027682088315486908,
0.03696739673614502,
0.03495302423834801,
-0.06022602319717407,
0.007649971637874842,
-0.027445359155535698,
0.044758353382349014,
-0.058649178594350815,
-0.029667433351278305,
0.029752977192401886,
-0.039583057165145874,
-0.027865638956427574,
0.028643544763326645,
-0.021896062418818474,
-0.02220536209642887,
0.05311048775911331,
-0.06578122824430466,
-0.032136470079422,
-0.0019841932225972414,
0.0010119639337062836,
-0.028333423659205437,
-0.003189124632626772,
-0.02939554862678051,
0.007559407036751509,
0.00934865977615118,
0.006804569624364376,
-0.03747588396072388,
-0.0037991581484675407,
0.01429320964962244,
-0.05328766256570816,
-0.03463318198919296,
0.022636720910668373,
0.0034260815009474754,
-0.01934216171503067,
0.0178060382604599,
0.0022938691545277834,
0.01972050778567791,
0.011631685309112072,
-0.014669149182736874,
0.03314560651779175,
-0.05822082236409187,
-0.00864677969366312,
0.022021755576133728,
0.005938963498920202,
0.027906246483325958,
0.0029520797543227673,
0.03695055469870567,
0.01413640845566988,
0.001973186619579792,
-0.004929187707602978,
-0.033640772104263306,
-0.046742022037506104,
0.0429389588534832,
-0.04781718552112579,
0.021699704229831696,
-0.006370375398546457,
-0.04898206889629364,
-0.029457811266183853,
-0.03426896035671234,
-0.02715805359184742,
0.03059549070894718,
-0.06250020861625671,
-0.00885884091258049,
0.06158960610628128,
-0.027933388948440552,
-0.04889772832393646,
-0.09933434426784515,
-0.013050195761024952,
-0.047816887497901917,
0.008069252595305443,
0.043123554438352585,
-0.03384523466229439,
0.03161479905247688,
-0.06861863285303116,
-0.04966937005519867,
0.05663026124238968,
0.028005799278616905,
-0.0319981686770916,
0.018613256514072418,
0.05318048223853111,
-0.04261891543865204,
0.011087585240602493,
0.0357673354446888,
-0.0519162081182003,
0.008916385471820831,
0.01922624744474888,
0.027605703100562096,
0.01573299989104271,
0.029213258996605873,
-0.03307931125164032,
-0.029813649132847786,
-0.0913725271821022,
-0.04904055595397949,
-0.06074189022183418,
0.03168414160609245,
0.0719030350446701
] |
AdapterHub/bert-base-uncased-pf-ud_pos | [
"bert",
"en",
"dataset:universal_dependencies",
"arxiv:2104.08247",
"adapter-transformers",
"token-classification",
"adapterhub:pos/ud_ewt"
] | token-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 1 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
datasets:
- emotion
metrics:
- accuracy
- f1
model-index:
- name: distilbert-base-uncased-finetuned-emotion
results:
- task:
name: Text Classification
type: text-classification
dataset:
name: emotion
type: emotion
config: split
split: validation
args: split
metrics:
- name: Accuracy
type: accuracy
value: 0.9285
- name: F1
type: f1
value: 0.9284458409041368
---
<!-- 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 the emotion dataset.
It achieves the following results on the evaluation set:
- Loss: 0.2192
- Accuracy: 0.9285
- F1: 0.9284
## 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.8301 | 1.0 | 250 | 0.3214 | 0.905 | 0.9010 |
| 0.2508 | 2.0 | 500 | 0.2192 | 0.9285 | 0.9284 |
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0+cu117
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.010365985333919525,
0.010585630312561989,
-0.02796189673244953,
0.036577530205249786,
0.060591548681259155,
0.03205738589167595,
-0.023193763568997383,
-0.03634773939847946,
-0.032974809408187866,
0.0572456531226635,
0.018611889332532883,
-0.04542277008295059,
0.034907132387161255,
0.04489041492342949,
-0.013206453062593937,
-0.034514330327510834,
-0.0318661592900753,
-0.01277601532638073,
-0.023493750020861626,
-0.002040756866335869,
0.0008383332169614732,
0.02577218972146511,
-0.0026075788773596287,
-0.009576158598065376,
-0.008029945194721222,
0.012548763304948807,
-0.01225596945732832,
0.014509986154735088,
0.03155366703867912,
-0.0584581233561039,
0.014322042465209961,
-0.039388351142406464,
-0.051295142620801926,
-0.004506909288465977,
-0.022207679226994514,
0.016367901116609573,
0.006721097510308027,
0.019500071182847023,
0.014055554755032063,
0.026606803759932518,
0.011139367707073689,
0.010444333776831627,
-7.734937526038266e-7,
-0.0131581611931324,
0.04545537009835243,
0.012571151368319988,
-0.039629459381103516,
-0.00017569903866387904,
0.027884121984243393,
-0.021211808547377586,
-0.07104090601205826,
-0.05495608225464821,
-0.0013980584917590022,
0.03619014471769333,
0.000020030178347951733,
-0.004351590294390917,
-0.05314908176660538,
0.011081392876803875,
0.06309428066015244,
-0.04250754415988922,
-0.025956738740205765,
0.012044689618051052,
-0.050537291914224625,
0.0047443704679608345,
0.02398129366338253,
-0.02837117202579975,
0.005135605111718178,
-0.036341529339551926,
0.03104661963880062,
-0.02843746729195118,
0.04647118225693703,
-0.026242703199386597,
0.028240470215678215,
-0.07801079005002975,
-0.015929311513900757,
-0.010797803290188313,
0.06832075119018555,
0.06079975515604019,
-0.01801166869699955,
0.059799425303936005,
0.032938726246356964,
0.010748515836894512,
0.03367740288376808,
-0.012287789024412632,
0.013173475861549377,
0.023509468883275986,
-0.045549675822257996,
0.016748566180467606,
0.015730803832411766,
0.028297314420342445,
-0.03254055604338646,
-0.04205756634473801,
-0.02845548838376999,
-0.024413906037807465,
-0.0085272416472435,
0.03499329090118408,
0.02971750684082508,
0.02627713792026043,
0.036888670176267624,
0.02989843115210533,
0.018228838220238686,
0.037756409496068954,
-0.03942328318953514,
0.06635140627622604,
-0.015867173671722412,
-0.012167779728770256,
-0.006053132936358452,
-0.023935381323099136,
-0.05267166718840599,
0.02728334255516529,
0.0124947689473629,
-0.02316601760685444,
-0.03334805369377136,
0.010375740937888622,
-0.015971818938851357,
-0.030606724321842194,
0.05907312035560608,
-0.030674127861857414,
-0.04948357865214348,
-0.04342777654528618,
0.02552611008286476,
0.02170919068157673,
-0.0027262228541076183,
0.0036698144394904375,
-0.06163899600505829,
-0.006466068793088198,
-0.03441522642970085,
-0.004840717185288668,
-0.03327985107898712,
0.012465342879295349,
0.01994517259299755,
0.06156191602349281,
0.021573366597294807,
-0.0953589677810669,
0.00009733311890158802,
0.01561745535582304,
-0.05585663765668869,
0.032468635588884354,
0.0316375195980072,
0.12784062325954437,
-0.05288352072238922,
-0.055556777864694595,
0.006822893396019936,
0.005370681174099445,
-0.049286093562841415,
0.01691259816288948,
0.0239883866161108,
-0.03933071717619896,
-0.016757521778345108,
0.004605181980878115,
0.04809848591685295,
-0.04726981371641159,
-0.006251445971429348,
0.07193970680236816,
0.019216489046812057,
0.038836680352687836,
-0.04644254595041275,
-0.03383595123887062,
0.009547727182507515,
-0.029883163049817085,
-0.03460226207971573,
0.053704630583524704,
-0.02019379287958145,
-0.03076290711760521,
-0.015048998408019543,
-0.0368160717189312,
0.017255760729312897,
0.07217568159103394,
-0.009549442678689957,
-0.036232300102710724,
-0.02607947774231434,
0.024318303912878036,
0.03596585616469383,
0.033850204199552536,
-0.015787500888109207,
0.015430397354066372,
0.06651882827281952,
0.04458528757095337,
-0.028073104098439217,
0.02863127551972866,
-0.001309623010456562,
-0.03154275193810463,
-0.024697115644812584,
0.005400943104177713,
-0.003721402958035469,
-0.052153490483760834,
0.052584223449230194,
0.005350479390472174,
-0.005776647944003344,
-0.048220135271549225,
-0.04112709313631058,
0.05282788723707199,
-0.013613982126116753,
-0.0011557162506505847,
0.006759217474609613,
-0.004857739433646202,
-0.01781461574137211,
0.05029447749257088,
-0.016103288158774376,
0.02133798785507679,
-0.039478085935115814,
-0.025049623101949692,
0.031234169378876686,
-0.034406665712594986,
0.04109257459640503,
0.037591803818941116,
-0.023320375010371208,
0.08523349463939667,
-0.054408952593803406,
0.022111734375357628,
-0.05690200254321098,
-0.045301247388124466,
0.02837999537587166,
0.059730786830186844,
0.037823621183633804,
0.06032415106892586,
0.004986739717423916,
-0.054588183760643005,
0.020225845277309418,
0.0673680528998375,
0.05370097979903221,
0.002032835502177477,
-0.01991852931678295,
-0.007507163565605879,
0.057146620005369186,
0.06097499653697014,
-0.06134387478232384,
-0.011408867314457893,
0.0038790213875472546,
0.021114040166139603,
-0.00813779141753912,
0.00881959404796362,
-0.028423774987459183,
0.03227725252509117,
-0.04295794293284416,
-0.07577052712440491,
0.06759649515151978,
0.020245542749762535,
-0.00733628123998642,
0.021296968683600426,
0.022997012361884117,
-0.005037257447838783,
0.008690224960446358,
0.013183929026126862,
0.006720718927681446,
-0.0443272590637207,
0.016900306567549706,
-0.002005142392590642,
0.07425443083047867,
-0.04752437770366669,
0.038210730999708176,
-0.0059221042320132256,
0.03309575095772743,
0.04731570556759834,
-0.051976751536130905,
0.038006145507097244,
0.039489198476076126,
0.030338717624545097,
-0.04144083708524704,
0.010700782760977745,
0.02092924155294895,
0.05056416615843773,
0.02261560782790184,
-0.013290325179696083,
0.07730690389871597,
0.017852144315838814,
0.033517301082611084,
0.07175057381391525,
0.021887537091970444,
0.03305215388536453,
0.009145132265985012,
0.05123864859342575,
0.026161588728427887,
-0.028151849284768105,
0.058301039040088654,
-0.055195651948451996,
0.017544927075505257,
-0.04268605262041092,
0.014991466887295246,
-0.006670531816780567,
-0.0006534821004606783,
0.04682663455605507,
0.02443533204495907,
-0.041928719729185104,
-0.023135030642151833,
0.016185736283659935,
-0.005221714731305838,
0.03155139833688736,
0.0061117736622691154,
0.0024274399038404226,
-0.010373810306191444,
-0.04161904379725456,
-0.009227189235389233,
-0.06952793896198273,
-0.05200260132551193,
-0.01237589493393898,
-0.03527288883924484,
-0.03312104195356369,
-0.08899211138486862,
-0.036803238093853,
-0.07012736797332764,
-0.005207967944443226,
0.039664607495069504,
0.024449653923511505,
-0.014097744598984718,
-0.0433519184589386,
0.016405833885073662,
-0.050520651042461395,
-0.05394020304083824,
-0.04006672278046608,
-0.036081571131944656,
-0.037937868386507034,
-0.07202325761318207,
0.026938091963529587,
0.024947665631771088,
0.02268858067691326,
0.002837436506524682,
0.011453162878751755,
-0.009492754936218262,
-0.027010085061192513,
0.05381802096962929,
0.06237516552209854,
-0.036912791430950165,
-0.062199823558330536,
0.015094355680048466,
0.004948108457028866,
0.017267674207687378,
0.026580344885587692,
-0.02137012965977192,
0.09342310577630997,
0.07162359356880188,
0.010247382335364819,
0.034254416823387146,
-0.01896274834871292,
-0.06506530195474625,
-0.057093262672424316,
-0.017019622027873993,
-0.04748937115073204,
-0.026369119063019753,
-0.03956354781985283,
-0.04135197401046753,
-0.0387808121740818,
-0.024408899247646332,
0.0024429811164736748,
-0.01445082388818264,
0.024957703426480293,
0.00018810357141774148,
0.031655363738536835,
0.02526371367275715,
0.038774989545345306,
-0.035657476633787155,
-0.03512577712535858,
0.04587872698903084,
0.01231714803725481,
0.003165475558489561,
-0.09232384711503983,
-0.008642381988465786,
0.01859564334154129,
0.0237136073410511,
-0.01791246421635151,
-0.0038297635037451982,
0.08321240544319153,
0.004871913697570562,
-0.0054558864794671535,
0.01385967805981636,
0.00011561546853045002,
-0.011378984898328781,
-0.017728291451931,
-0.009810776449739933,
0.013130629435181618,
-0.02779962681233883,
-0.037679146975278854,
-0.005100845824927092,
0.04569649323821068,
-0.04796242713928223,
-0.04286109283566475,
-0.017136916518211365,
0.028615746647119522,
0.05521878972649574,
-0.003598614828661084,
-0.045922692865133286,
-0.016844872385263443,
-0.08542810380458832,
-0.01023259200155735,
0.037503473460674286,
0.0019169875886291265,
0.01874835416674614,
0.03145446628332138,
0.012616747058928013,
-0.019007733091711998,
0.027879133820533752,
0.039801761507987976,
0.0649755597114563,
0.0007108434219844639,
-0.0648050308227539,
0.00005395329208113253,
-0.03498448431491852,
0.020793287083506584,
-0.010818039998412132,
-0.0256482120603323,
-0.0340999998152256,
-0.08505994081497192,
-0.03077511489391327,
0.004041507840156555,
0.004602672066539526,
-0.0033606328070163727,
0.02752365544438362,
-0.009291335009038448,
-0.03152208775281906,
0.01360665075480938,
0.015489760786294937,
0.056672897189855576,
-0.031160375103354454,
0.057817962020635605,
-0.02578437328338623,
0.010048873722553253,
-0.059937410056591034,
0.012727206572890282,
-0.02827875316143036,
-0.03026479110121727,
0.003339019138365984,
0.04375828057527542,
-0.005393527448177338,
0.0425221286714077,
0.067677803337574,
0.043764036148786545,
-0.05971655994653702,
0.032729052007198334,
0.06697238236665726,
-0.03815542906522751,
-0.046029288321733475,
-0.004448463674634695,
-0.001486421562731266,
-0.005914878565818071,
-0.011251609772443771,
-0.014459916390478611,
0.04131400212645531,
0.015910033136606216,
-0.0005402059759944677,
-0.0012381161795929074,
0.00447906693443656,
-0.045969344675540924,
-0.027969494462013245,
-0.06219504773616791,
-0.03780683875083923,
-0.0035234091337770224,
-0.028662584722042084,
0.016172893345355988,
0.03037009760737419,
0.021889016032218933,
0.06666982173919678,
0.02888534590601921,
-0.025883255526423454,
-0.014614799991250038,
0.022983774542808533,
0.01846024952828884,
-0.038257207721471786,
-0.07507306337356567,
-0.05023732781410217,
0.03188232704997063,
0.0656953901052475,
-0.019884837791323662,
-0.056318942457437515,
0.01735818013548851,
0.047802962362766266,
-0.06475090235471725,
0.0480365976691246,
-0.02200324647128582,
0.05582297593355179,
0.05179641395807266,
0.016670847311615944,
0.04828983172774315,
-0.02701468952000141,
-0.017931867390871048,
0.016944551840424538,
0.038821201771497726,
-0.03507915511727333,
-0.02913016453385353,
-0.057267919182777405,
0.02987893484532833,
0.04105883464217186,
0.027037493884563446,
0.03673356771469116,
-0.026465818285942078,
-0.03065754845738411,
0.006171860732138157,
0.026517920196056366,
-0.04251273721456528,
-0.004797120112925768,
0.038932327181100845,
0.04708266630768776,
-0.038693878799676895,
-0.016513749957084656,
-0.037240274250507355,
-0.0025198436342179775,
0.04236798733472824,
-0.007436881773173809,
-0.024672657251358032,
-0.029163822531700134,
0.036762237548828125,
-0.01402274239808321,
-0.02823934331536293,
-0.05733351409435272,
0.04377145692706108,
-0.0067290049046278,
-0.008565748110413551,
0.046069178730249405,
0.03216756135225296,
0.03167842701077461,
0.07737218588590622,
0.024216346442699432,
0.007347436156123877,
-0.025073109194636345,
0.03452366217970848,
-0.03160887956619263,
-0.01546108815819025,
0.010118524543941021,
-0.0371810682117939,
-0.03500506281852722,
-0.013342577964067459,
-0.048437636345624924,
-0.045210547745227814,
-0.02711578458547592,
0.030582161620259285,
-0.001895061694085598,
-0.010987463407218456,
0.003603968769311905,
0.03325687721371651,
-0.01009778305888176,
-0.018072854727506638,
-0.052283547818660736,
-0.03363586962223053,
-0.049999117851257324,
-0.06168236583471298,
-0.015388822183012962,
0.0061178929172456264,
0.025205448269844055,
0.03586174547672272,
0.033550046384334564,
0.018419530242681503,
0.021544700488448143,
-0.05145495757460594,
0.0025487144012004137,
0.025573596358299255,
-0.04456951469182968,
-0.035552386194467545,
0.017322611063718796,
0.01951749064028263,
0.029010895639657974,
-0.026296576485037804,
0.04731115698814392,
0.008366397581994534,
-0.015105031430721283,
-0.03894191235303879,
0.02843894436955452,
0.03682183101773262,
-0.06676434725522995,
-0.040964946150779724,
-0.012576713226735592,
-0.013674291782081127,
0.028183752670884132,
-0.02907455712556839,
-0.0072080474346876144,
0.035035181790590286,
0.008818943053483963,
0.039880648255348206,
-0.03401410952210426,
-0.009848869405686855,
0.027823245152831078,
-0.012704546563327312,
0.017590105533599854,
-0.05338400602340698,
0.057215187698602676,
-0.057849328964948654,
0.009177115745842457,
-0.011682230047881603,
-0.004461211618036032,
-0.03215405344963074,
0.038700349628925323,
-0.001216018688865006,
-0.010949804447591305,
0.0031325460877269506,
0.04426281154155731,
-0.01285310834646225,
0.017609398812055588,
-0.030697710812091827,
0.032113976776599884,
-0.02083594724535942,
0.06841044127941132,
-0.0290446188300848,
0.014582657255232334,
-0.029893729835748672,
0.018957337364554405,
-0.046610429883003235,
0.007415535859763622,
-0.0056086573749780655,
-0.02548113837838173,
0.021173786371946335,
0.044070642441511154,
0.025411825627088547,
0.03786417469382286,
-0.008650431409478188,
-0.008477342315018177,
0.011465259827673435,
-0.05692245811223984,
-0.019412683323025703,
-0.010582015849649906,
0.00900028832256794,
-0.022481881082057953,
0.06281343102455139,
0.02934396266937256,
-0.05592402070760727,
-0.06975160539150238,
0.040406446903944016,
0.018110617995262146,
0.0220491960644722,
-0.002153600100427866,
0.04168223217129707,
0.023573992773890495,
0.028664594516158104,
-0.015790659934282303,
-0.01162661798298359,
0.022078566253185272,
-0.044105011969804764,
0.009027732536196709,
-0.004388339351862669,
0.0052572921849787235,
0.029825717210769653,
-0.049015339463949203,
-0.008753078058362007,
0.044599615037441254,
0.026030991226434708,
0.02570534124970436,
0.01910310983657837,
-0.05571034550666809,
0.024140678346157074,
0.010187300853431225,
-0.05044447258114815,
0.0009079261217266321,
0.021197892725467682,
-0.031080622225999832,
0.05629628151655197,
-0.0064379870891571045,
0.002702650846913457,
0.04254491627216339,
0.014273559674620628,
-0.02314387448132038,
0.04910223186016083,
-0.017884721979498863,
0.028158104047179222,
0.046478673815727234,
-0.07562797516584396,
-0.011479930952191353,
-0.06380106508731842,
0.07135438174009323,
-0.060188863426446915,
0.03492772951722145,
0.04205014929175377,
-0.014371253550052643,
0.01637645997107029,
-0.0477217473089695,
-0.05792117863893509,
0.030507521703839302,
-0.0401955209672451,
0.05916156619787216,
0.01839534007012844,
-0.0795651376247406,
0.0434127077460289,
0.007953094318509102,
-0.05488439276814461,
0.033528707921504974,
0.03472005948424339,
0.05969493091106415,
0.00726552726700902,
0.04758644476532936,
-0.02247985638678074,
-0.004469133447855711,
-0.042710285633802414,
0.03140551224350929,
-0.05662619322538376,
-0.028879594057798386,
0.028820563107728958,
-0.04109175503253937,
-0.010104287415742874,
0.04895704239606857,
-0.028838321566581726,
-0.015160216018557549,
0.04365267977118492,
-0.03691209852695465,
-0.027227036654949188,
0.009275427088141441,
-0.01865745708346367,
-0.04065874218940735,
-0.0022760576102882624,
-0.034732382744550705,
0.01841825060546398,
0.004335090517997742,
-0.010690268129110336,
-0.018280833959579468,
-0.014571275562047958,
0.03256493806838989,
-0.03680567070841789,
-0.03781844303011894,
0.028730761259794235,
-0.021487336605787277,
-0.0187398511916399,
0.03897826373577118,
0.04460887983441353,
-0.0006765620200894773,
0.034849267452955246,
-0.01754463091492653,
0.013955540955066681,
-0.04959860444068909,
-0.02504061348736286,
0.016556061804294586,
-0.0027744590770453215,
0.030593333765864372,
-0.015120185911655426,
0.032403625547885895,
0.0522497221827507,
0.018210267648100853,
-0.0009752376354299486,
-0.03732820600271225,
-0.03442639857530594,
0.030620498582720757,
-0.03814652934670448,
0.015022208914160728,
-0.009597317315638065,
-0.04531471058726311,
-0.03407775238156319,
0.011548473499715328,
-0.02889142744243145,
0.031210217624902725,
-0.04750465601682663,
-0.003540223464369774,
0.07589671015739441,
-0.023317698389291763,
-0.05145306885242462,
-0.10090756416320801,
0.0035155683290213346,
-0.02709498442709446,
-0.000048479105316801,
0.045378684997558594,
-0.04462327063083649,
0.04247669875621796,
-0.07445669919252396,
-0.020995762199163437,
0.04697628319263458,
0.03561781719326973,
-0.05264291912317276,
0.07141197472810745,
0.04849690571427345,
-0.05273956060409546,
0.01520588155835867,
0.008195796050131321,
-0.040450241416692734,
0.010936090722680092,
0.01796211674809456,
0.0178785789757967,
0.020408641546964645,
0.007913234643638134,
-0.056975819170475006,
-0.02821769192814827,
-0.0665348470211029,
-0.03721120208501816,
-0.04595745727419853,
0.009770861826837063,
0.06465816497802734
] |
AdapterHub/bert-base-uncased-pf-wnut_17 | [
"bert",
"en",
"dataset:wnut_17",
"arxiv:2104.08247",
"adapter-transformers",
"token-classification"
] | token-classification | {
"architectures": null,
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | null | ---
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: 183.42 +/- 37.73
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.037562549114227295,
-0.0021627843379974365,
-0.004976921249181032,
0.025460202246904373,
0.045461349189281464,
-0.02175159566104412,
-0.00532405823469162,
-0.027988510206341743,
-0.033156078308820724,
0.06668480485677719,
0.03263147920370102,
-0.023303544148802757,
0.02278745174407959,
0.0012006305623799562,
-0.03427492454648018,
-0.025955580174922943,
0.0012511435197666287,
-0.014981191605329514,
-0.020213354378938675,
0.02746064029633999,
0.004804577678442001,
0.036587562412023544,
-0.02620786614716053,
0.0353299044072628,
-0.004106190521270037,
0.03873660787940025,
-0.02336466871201992,
0.057136330753564835,
0.01739884354174137,
-0.043386295437812805,
-0.005836880765855312,
-0.040795035660266876,
-0.02091364376246929,
-0.02068658359348774,
-0.01278411503881216,
0.01350308395922184,
0.016474103555083275,
0.020686084404587746,
0.009238854981958866,
0.034141067415475845,
-0.012101111002266407,
0.023018699139356613,
0.03015797771513462,
-0.002386147854849696,
0.02161736600100994,
-0.011088765226304531,
-0.04915585368871689,
0.01012581679970026,
0.05607055127620697,
-0.0004800893657375127,
-0.04803237318992615,
-0.06241214647889137,
0.02220924198627472,
0.03095841594040394,
-0.0010835874127224088,
-0.01356465183198452,
-0.042735517024993896,
-0.00456138513982296,
0.061914972960948944,
-0.04338100552558899,
-0.047307662665843964,
-0.007870797999203205,
-0.04452867805957794,
0.010021408088505268,
0.026130149140954018,
0.00009422405128134415,
0.018580609932541847,
-0.04692565277218819,
0.03585491329431534,
-0.026395287364721298,
0.06961460411548615,
-0.021515823900699615,
0.014027709141373634,
-0.057779181748628616,
-0.0009253743919543922,
0.008827075362205505,
0.03821592405438423,
0.03435694798827171,
-0.014062155038118362,
0.08781545609235764,
0.029004504904150963,
0.01260463148355484,
0.04451169818639755,
0.013407783582806587,
0.01261954102665186,
0.004601371008902788,
-0.03970141336321831,
0.0064831990748643875,
0.021063823252916336,
0.029411733150482178,
-0.012016800232231617,
-0.04077761992812157,
-0.04019172489643097,
-0.022400034591555595,
-0.00039401082904078066,
0.0288589708507061,
0.0472426563501358,
0.002068873727694154,
0.06609322130680084,
0.01580529287457466,
0.0029680742882192135,
0.031532805413007736,
-0.03118526190519333,
0.06133553758263588,
-0.014552904292941093,
-0.01972133480012417,
-0.013851240277290344,
-0.022613435983657837,
-0.04134339094161987,
0.0544913075864315,
0.032216787338256836,
-0.04686455428600311,
-0.037089183926582336,
0.04547968879342079,
0.02850089780986309,
-0.021350372582674026,
0.030766991898417473,
-0.032946839928627014,
-0.04062451422214508,
-0.0640893504023552,
0.07113635540008545,
-0.005489352624863386,
-0.008133486844599247,
-0.039719097316265106,
-0.028847545385360718,
-0.018246818333864212,
-0.05231504514813423,
-0.025491390377283096,
-0.025325873866677284,
0.01926485449075699,
0.010308632627129555,
0.03252013027667999,
0.015463169664144516,
-0.08617903292179108,
0.012983333319425583,
-0.010977191850543022,
-0.087160624563694,
0.029772616922855377,
0.00285895518027246,
0.14393450319766998,
-0.060456305742263794,
-0.05736852437257767,
0.027132179588079453,
-0.013427396304905415,
-0.056440774351358414,
0.01147717610001564,
-0.004496853332966566,
-0.041297294199466705,
-0.009715809486806393,
-0.02712385542690754,
0.07981996983289719,
-0.05442914366722107,
-0.02238776721060276,
0.05925891548395157,
0.0034486199729144573,
0.022456234320998192,
-0.007195803802460432,
0.0069398172199726105,
-0.002899100072681904,
-0.046292368322610855,
-0.005140725988894701,
0.0703548714518547,
-0.017548996955156326,
-0.032766927033662796,
-0.04212525859475136,
-0.007394307292997837,
0.013049839064478874,
0.07822193950414658,
-0.006789131090044975,
-0.02237299457192421,
-0.023358073085546494,
0.032168250530958176,
0.01700965315103531,
0.017785992473363876,
-0.003819128032773733,
0.038555026054382324,
0.05543527752161026,
0.013058002106845379,
-0.02033393457531929,
0.04019433259963989,
0.025437161326408386,
-0.018368763849139214,
-0.005217801779508591,
0.002010303782299161,
0.005230780225247145,
0.0012701913947239518,
-0.006400307174772024,
0.02940649911761284,
0.003987074829638004,
-0.03699754551053047,
-0.025790223851799965,
0.019153546541929245,
0.011936556547880173,
0.00693158432841301,
-0.0018079490400850773,
0.011262794025242329,
0.014891669154167175,
0.04183579981327057,
-0.005341639276593924,
-0.014491304755210876,
-0.033766407519578934,
-0.01920795999467373,
0.02822679653763771,
0.008241837844252586,
0.04089626669883728,
0.010747046209871769,
-0.0136096877977252,
0.09192220866680145,
-0.04408948868513107,
0.041797857731580734,
-0.07379918545484543,
-0.050804417580366135,
0.003376335371285677,
0.03310336545109749,
0.06499316543340683,
0.044726885855197906,
-0.022209230810403824,
-0.04404143616557121,
0.028099220246076584,
0.04439815506339073,
0.05916526913642883,
0.016783975064754486,
-0.040567126125097275,
-0.014928504824638367,
0.03159000724554062,
0.02048335038125515,
-0.02512197755277157,
-0.039557818323373795,
0.014156871475279331,
0.04786067456007004,
0.023674650117754936,
0.024518245831131935,
-0.032494597136974335,
0.02425047755241394,
-0.03795861452817917,
-0.060907840728759766,
0.03989076614379883,
0.026253443211317062,
0.014175355434417725,
0.016405781731009483,
-0.014756674878299236,
0.041258279234170914,
0.018898924812674522,
0.020499303936958313,
0.006257690954953432,
-0.04914387688040733,
0.01344823744148016,
0.031045665964484215,
0.06345303356647491,
-0.03235066682100296,
0.056688010692596436,
-0.004885244648903608,
0.0004582886176649481,
0.041873957961797714,
-0.047678329050540924,
0.016221655532717705,
0.087102010846138,
0.03071451373398304,
-0.014444434083998203,
0.018977554515004158,
0.005762750748544931,
0.04631185159087181,
0.0333062969148159,
-0.009789750911295414,
0.0687742531299591,
-0.014011314138770103,
0.04691212624311447,
0.06924518942832947,
0.039647288620471954,
-0.005004478618502617,
0.026774832978844643,
0.0755535215139389,
0.0041666291654109955,
0.010342833586037159,
0.04833851382136345,
-0.03446090221405029,
0.01957918331027031,
-0.03747910261154175,
0.010691838338971138,
-0.025612354278564453,
-0.00578296696767211,
0.05830373615026474,
0.010657619684934616,
-0.04237835481762886,
-0.018411966040730476,
0.0006490811938419938,
0.009624154306948185,
-0.006386855151504278,
-0.010580014437437057,
0.001835142495110631,
0.005430435761809349,
-0.005515182390809059,
-0.007921328768134117,
-0.08443745225667953,
-0.08362281322479248,
-0.02724287658929825,
-0.015019478276371956,
-0.01963849365711212,
-0.07025758922100067,
-0.04290185496211052,
-0.07135619223117828,
-0.01326629240065813,
0.01923936977982521,
-0.021768776699900627,
0.0026263894978910685,
-0.05711079761385918,
0.009613499976694584,
-0.05170821025967598,
-0.015675628557801247,
-0.05445347726345062,
-0.06547560542821884,
-0.03848305717110634,
-0.0575319267809391,
0.03254493698477745,
0.021920830011367798,
0.03500860929489136,
-0.003807307919487357,
-0.003392203478142619,
-0.021692922338843346,
-0.038323502987623215,
0.05501266196370125,
0.04708480462431908,
-0.017213601619005203,
-0.04319070652127266,
0.013294446282088757,
-0.004172414541244507,
0.02601483464241028,
0.010112877003848553,
-0.033299412578344345,
0.08287588506937027,
0.061939340084791183,
-0.00807117111980915,
-0.006677013821899891,
-0.006805319804698229,
-0.04598108306527138,
-0.042606234550476074,
-0.048761770129203796,
-0.048323653638362885,
-0.016348998993635178,
-0.046556416898965836,
-0.028962958604097366,
-0.00937521643936634,
-0.011814294382929802,
-0.016263511031866074,
-0.0338442400097847,
-0.0018516290001571178,
0.03755670040845871,
0.0839262381196022,
0.007256409153342247,
0.037880681455135345,
-0.05739647150039673,
-0.0200701542198658,
0.04876941442489624,
0.02158469147980213,
0.012244034558534622,
-0.0706283450126648,
-0.024058034643530846,
0.008154964074492455,
0.009471028111875057,
0.0024054620880633593,
-0.00009751621109899133,
0.061000168323516846,
0.03402557224035263,
-0.006111964117735624,
0.030095474794507027,
-0.028609972447156906,
-0.020685167983174324,
-0.037930678576231,
0.004630023613572121,
-0.010046591982245445,
-0.02171151526272297,
0.01731727458536625,
0.000458818074548617,
0.01057457271963358,
-0.05457885190844536,
-0.05235174670815468,
-0.03596487268805504,
-0.004297522362321615,
0.054319195449352264,
0.0010611130855977535,
-0.04999934509396553,
-0.03273375332355499,
-0.06850993633270264,
0.011213795281946659,
0.04013124480843544,
-0.013192513957619667,
0.008181232027709484,
0.028017573058605194,
0.034455638378858566,
-0.0014868765138089657,
0.038296982645988464,
0.03942985087633133,
0.06019580736756325,
0.016042176634073257,
-0.0454973429441452,
0.0008445329731330276,
-0.02636914700269699,
0.039188481867313385,
0.008797775954008102,
-0.014639031141996384,
-0.03282543271780014,
-0.10071949660778046,
-0.02773076668381691,
0.023899413645267487,
-0.01771238073706627,
0.00510331429541111,
0.030383089557290077,
-0.016335492953658104,
-0.008708501234650612,
0.0012997499434277415,
-0.003546653315424919,
0.05060429498553276,
-0.04039987549185753,
0.05755654349923134,
-0.005751574411988258,
0.023785606026649475,
-0.043776340782642365,
0.027111070230603218,
-0.01551342848688364,
-0.012219489552080631,
-0.004279771354049444,
0.030829252675175667,
0.0454229973256588,
0.06713869422674179,
0.052497148513793945,
0.01816478930413723,
-0.0630822405219078,
0.03223426640033722,
0.059677138924598694,
-0.03865264728665352,
-0.0728386640548706,
-0.027970988303422928,
0.021987980231642723,
-0.010147256776690483,
0.013996626250445843,
-0.008749469183385372,
0.0184743944555521,
0.05845050513744354,
-0.01792026497423649,
-0.01993931271135807,
-0.00034735145163722336,
-0.00918549858033657,
-0.032225362956523895,
-0.022341405972838402,
-0.003610372543334961,
0.014630540274083614,
-0.016336513683199883,
0.005191555712372065,
0.04343186318874359,
0.02450026385486126,
0.0457179993391037,
0.063963882625103,
-0.007647741585969925,
-0.04650123789906502,
0.05446851998567581,
0.005707642994821072,
-0.02414066344499588,
-0.08809719979763031,
-0.028206055983901024,
0.023576436564326286,
0.03504229336977005,
0.010037709027528763,
-0.06382928788661957,
0.01363619789481163,
0.02696257457137108,
-0.07040494680404663,
0.05361851304769516,
-0.008726611733436584,
0.01637115143239498,
0.040707770735025406,
0.016053546220064163,
0.035772617906332016,
-0.036910172551870346,
-0.029240349307656288,
0.006875984370708466,
0.03866954147815704,
-0.01262531615793705,
-0.02671951986849308,
-0.021700026467442513,
0.03427246958017349,
0.041771531105041504,
0.06099614128470421,
0.03753693774342537,
-0.04874961078166962,
-0.06973940879106522,
-0.041619837284088135,
0.0226973257958889,
-0.03833986446261406,
-0.0019087165128439665,
0.04975806921720505,
0.046259619295597076,
-0.05821996182203293,
-0.04888701066374779,
-0.031105341389775276,
-0.01217009499669075,
0.0312594398856163,
0.011025493033230305,
-0.0203420277684927,
-0.010247590020298958,
0.04397781193256378,
-0.0068872529082000256,
-0.029946114867925644,
-0.06377877295017242,
0.0116712786257267,
0.016536708921194077,
0.006444644648581743,
0.027828071266412735,
0.032259583473205566,
0.05814286693930626,
0.0645606741309166,
0.038597822189331055,
0.010815386660397053,
-0.04320012778043747,
0.031022794544696808,
-0.03969224542379379,
-0.027744093909859657,
0.003867881838232279,
-0.07151035964488983,
0.0029294302221387625,
-0.018626634031534195,
-0.023138953372836113,
-0.04101036861538887,
-0.023737028241157532,
0.02094886265695095,
0.006304076407104731,
0.0021209779661148787,
0.013136095367372036,
0.05297432094812393,
0.005634100176393986,
-0.04861769825220108,
-0.032090168446302414,
-0.024594126269221306,
-0.06150607019662857,
-0.06267648935317993,
0.036041148006916046,
-0.007344207726418972,
0.011024865321815014,
0.018928121775388718,
0.05122944340109825,
0.030749687924981117,
0.02564508654177189,
-0.02783200517296791,
0.021768294274806976,
0.003594999900087714,
-0.042754773050546646,
0.011365070007741451,
0.015603417530655861,
0.01075804978609085,
0.05878410488367081,
-0.014050119556486607,
0.02674485743045807,
-0.0014779495541006327,
-0.02658950909972191,
-0.021715635433793068,
0.009624702855944633,
0.030886124819517136,
-0.04394971579313278,
-0.025140861049294472,
0.009597317315638065,
-0.032602161169052124,
0.026318753138184547,
-0.018468253314495087,
-0.020984873175621033,
-0.01690955087542534,
0.005658495239913464,
0.03346935659646988,
-0.011582856997847557,
-0.05532951280474663,
0.02743564173579216,
-0.04861457645893097,
0.04417731240391731,
-0.07085702568292618,
0.02479507587850094,
-0.039143916219472885,
0.03586791455745697,
-0.018048366531729698,
-0.008248723112046719,
-0.03707817569375038,
0.04524477571249008,
0.01597038470208645,
-0.02731299214065075,
-0.036219529807567596,
0.03531157970428467,
-0.011186194606125355,
0.025582091882824898,
-0.020980777218937874,
0.01722654327750206,
-0.007889077067375183,
0.0363302007317543,
-0.012451446615159512,
0.03568260371685028,
-0.012109609320759773,
0.04592990502715111,
-0.03907923400402069,
-0.00020329329709056765,
-0.033038362860679626,
-0.03578433021903038,
0.020020827651023865,
0.04190564900636673,
0.026091480627655983,
0.020590895786881447,
-0.014067132025957108,
0.01778022013604641,
0.013240059837698936,
-0.04003733769059181,
-0.033289726823568344,
0.008148621767759323,
0.014651995152235031,
0.020620174705982208,
0.05198109522461891,
0.03280585631728172,
-0.0721280574798584,
-0.0362623892724514,
0.0610186792910099,
0.004674891009926796,
0.024035049602389336,
-0.0012472844682633877,
0.03561598062515259,
0.034122735261917114,
0.05044681951403618,
-0.04652505740523338,
0.019749024882912636,
0.002417720854282379,
-0.008293833583593369,
0.025561299175024033,
-0.029316464439034462,
0.02448420785367489,
0.021050216630101204,
-0.044984687119722366,
-0.017010338604450226,
0.07241807132959366,
0.035058196634054184,
-0.008327348157763481,
-0.027196165174245834,
-0.03886962682008743,
0.03746088594198227,
0.0004694951348938048,
-0.04457896947860718,
0.018403496593236923,
0.021582096815109253,
-0.016672734171152115,
0.06308910250663757,
-0.0359872430562973,
0.009313500486314297,
0.039894431829452515,
0.056157082319259644,
-0.02335294894874096,
0.06571187824010849,
-0.013521875254809856,
0.060363832861185074,
0.03716818615794182,
-0.07106786221265793,
-0.015149944461882114,
-0.05356999859213829,
0.08709850162267685,
-0.07156755030155182,
0.07910095900297165,
0.04134669899940491,
0.00847520399838686,
0.030557705089449883,
-0.016570579260587692,
-0.046357687562704086,
-0.01239593606442213,
-0.04906750097870827,
0.07387331873178482,
0.00650144973769784,
-0.0465691052377224,
0.06784538179636002,
0.02244763821363449,
-0.058635178953409195,
0.05385126173496246,
0.024373138323426247,
0.018870124593377113,
0.0011895252391695976,
0.04845457151532173,
-0.05071188136935234,
0.01613442599773407,
-0.06129588931798935,
0.05437341704964638,
-0.05064989626407623,
-0.003950444050133228,
0.026230880990624428,
-0.053533438593149185,
-0.022940173745155334,
0.0485864020884037,
-0.013844245113432407,
-0.01496247760951519,
0.03564826399087906,
-0.05751795321702957,
-0.06757240742444992,
0.012637670151889324,
-0.00696553336456418,
0.02317892387509346,
0.012004471383988857,
-0.03429359197616577,
0.03503246605396271,
0.038527291268110275,
0.013637466356158257,
-0.03490051254630089,
0.008947815746068954,
0.023564033210277557,
-0.038087062537670135,
-0.02673949860036373,
0.05410954728722572,
0.013301647268235683,
-0.035703059285879135,
0.0029212976805865765,
0.004508353304117918,
0.004084316547960043,
0.024293234571814537,
0.014221610501408577,
0.016527486965060234,
-0.055696919560432434,
-0.03401242196559906,
0.030517466366291046,
-0.018394410610198975,
0.02664879709482193,
-0.032263342291116714,
0.008512569591403008,
0.021009717136621475,
0.01792190410196781,
0.0028849623631685972,
-0.03712980076670647,
0.013898352161049843,
0.033723559230566025,
-0.05611857771873474,
0.0020372411236166954,
0.0044993688352406025,
-0.05280137434601784,
-0.027252662926912308,
-0.03203810378909111,
-0.019390692934393883,
0.007796337828040123,
-0.029659144580364227,
-0.01536397635936737,
0.054311156272888184,
0.015322861261665821,
-0.05473260208964348,
-0.10151396691799164,
-0.005290880799293518,
-0.04095980152487755,
0.03316056728363037,
0.026983575895428658,
-0.04867567494511604,
-0.011351728811860085,
-0.03131278604269028,
-0.05412783846259117,
0.06369926035404205,
0.04056255891919136,
-0.023359861224889755,
0.061953105032444,
0.04948930814862251,
-0.018100539222359657,
0.010209619998931885,
0.0037411677185446024,
-0.05559283867478371,
0.004016403574496508,
0.02506757527589798,
0.021669119596481323,
0.025660425424575806,
0.007214514538645744,
-0.02238946035504341,
-0.02215460315346718,
-0.02747303806245327,
-0.04657215252518654,
-0.024612635374069214,
0.027555163949728012,
0.07054199278354645
] |
AdapterHub/roberta-base-pf-anli_r3 | [
"roberta",
"en",
"dataset:anli",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification"
] | text-classification | {
"architectures": null,
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
datasets:
- emotion
metrics:
- accuracy
- f1
- precision
model-index:
- name: distilbert-base-uncased_emotion_ft_0517
results:
- task:
name: Text Classification
type: text-classification
dataset:
name: emotion
type: emotion
config: split
split: validation
args: split
metrics:
- name: Accuracy
type: accuracy
value: 0.9345
- name: F1
type: f1
value: 0.9346851141275695
- name: Precision
type: precision
value: 0.9087842847016905
---
<!-- 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_emotion_ft_0517
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the emotion dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1479
- Accuracy: 0.9345
- F1: 0.9347
- Precision: 0.9088
## 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: 4
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision |
|:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|
| 0.7913 | 1.0 | 250 | 0.2689 | 0.918 | 0.9162 | 0.9016 |
| 0.2142 | 2.0 | 500 | 0.1764 | 0.929 | 0.9290 | 0.9109 |
| 0.1415 | 3.0 | 750 | 0.1541 | 0.934 | 0.9345 | 0.8995 |
| 0.1128 | 4.0 | 1000 | 0.1479 | 0.9345 | 0.9347 | 0.9088 |
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.010424517095088959,
0.010761735960841179,
-0.034854430705308914,
0.039843007922172546,
0.06275413930416107,
0.032439958304166794,
-0.017902527004480362,
-0.041190970689058304,
-0.034910254180431366,
0.05814577266573906,
0.015114400535821915,
-0.04743126407265663,
0.025528088212013245,
0.04760311543941498,
-0.010435691103339195,
-0.028053708374500275,
-0.02971239946782589,
-0.012633728794753551,
-0.02397635206580162,
0.0008920112159103155,
0.0013446711236611009,
0.021315284073352814,
-0.007537211291491985,
-0.007653683889657259,
-0.004688827786594629,
0.014418906532227993,
-0.0061620185151696205,
0.019838040694594383,
0.0276128388941288,
-0.061074040830135345,
0.012582652270793915,
-0.03657625615596771,
-0.05152425169944763,
-0.00010516989277675748,
-0.020761335268616676,
0.015372793190181255,
0.004006517585366964,
0.010633093304932117,
0.016733556985855103,
0.024534236639738083,
0.012378958985209465,
0.008441997691988945,
-0.003417382948100567,
-0.015229307115077972,
0.04762731492519379,
0.009251393377780914,
-0.038180846720933914,
-0.002337588695809245,
0.025307457894086838,
-0.019253039732575417,
-0.06993342190980911,
-0.05510862171649933,
0.0020915844943374395,
0.03525068983435631,
-0.0028474084101617336,
-0.010318494401872158,
-0.0525255911052227,
0.011691736988723278,
0.06374535709619522,
-0.04172585904598236,
-0.023913351818919182,
0.008920111693441868,
-0.051964547485113144,
0.0022670321632176638,
0.025648146867752075,
-0.024665040895342827,
0.0071309348568320274,
-0.03529636934399605,
0.027102163061499596,
-0.02724987268447876,
0.04500968009233475,
-0.025413159281015396,
0.025873735547065735,
-0.0825539156794548,
-0.019661402329802513,
-0.01282594259828329,
0.06691449880599976,
0.06502465158700943,
-0.020556116476655006,
0.059772610664367676,
0.03506067767739296,
0.0071672857739031315,
0.03444411978125572,
-0.009179928340017796,
0.011345912702381611,
0.022534815594553947,
-0.04611977934837341,
0.011645541526377201,
0.011520578525960445,
0.03326620161533356,
-0.0305292010307312,
-0.044680383056402206,
-0.027652820572257042,
-0.023936176672577858,
-0.010433284565806389,
0.030500922352075577,
0.02831990271806717,
0.02205921895802021,
0.038478072732686996,
0.03221171349287033,
0.022426389157772064,
0.03639359027147293,
-0.039221227169036865,
0.06560340523719788,
-0.013147367164492607,
-0.012621241621673107,
-0.007315888535231352,
-0.023615684360265732,
-0.05229572206735611,
0.023871101438999176,
0.01461084559559822,
-0.021644793450832367,
-0.029792513698339462,
0.01638212613761425,
-0.013631623238325119,
-0.028315719217061996,
0.06248510628938675,
-0.03376360610127449,
-0.05147003009915352,
-0.037757981568574905,
0.01976189576089382,
0.021591540426015854,
-0.009765461087226868,
0.0033804019913077354,
-0.06255735456943512,
-0.006543844938278198,
-0.032549936324357986,
0.0019552905578166246,
-0.025082504376769066,
0.014334619045257568,
0.021697556599974632,
0.06510625034570694,
0.023143328726291656,
-0.09582502394914627,
0.00379139743745327,
0.015514513477683067,
-0.05123088136315346,
0.034854765981435776,
0.033893901854753494,
0.12328710407018661,
-0.05792975425720215,
-0.05452347174286842,
0.009330498985946178,
0.0038972054608166218,
-0.05526602640748024,
0.015397504903376102,
0.024631502106785774,
-0.03521880507469177,
-0.0224541537463665,
0.00599979143589735,
0.04860839247703552,
-0.046850547194480896,
-0.009938282892107964,
0.0733325183391571,
0.01762588880956173,
0.03690618649125099,
-0.04740745574235916,
-0.03305193781852722,
0.0142380241304636,
-0.03137722238898277,
-0.03453189134597778,
0.051166635006666183,
-0.02344409190118313,
-0.03130504861474037,
-0.017474070191383362,
-0.0338282436132431,
0.021953068673610687,
0.07479460537433624,
-0.009274470619857311,
-0.03964593634009361,
-0.02481357753276825,
0.023205703124403954,
0.038348130881786346,
0.03425760194659233,
-0.022558066993951797,
0.011288948357105255,
0.06854607164859772,
0.042560748755931854,
-0.031238388270139694,
0.02964438870549202,
0.0032938846852630377,
-0.031540267169475555,
-0.024058636277914047,
0.01269510854035616,
-0.0023026205599308014,
-0.046483006328344345,
0.050089869648218155,
0.00395244499668479,
-0.0023107901215553284,
-0.044460099190473557,
-0.036708347499370575,
0.05058685690164566,
-0.012974409386515617,
-0.003098373534157872,
0.0077750710770487785,
0.002552319085225463,
-0.016947923228144646,
0.04291290044784546,
-0.013592816889286041,
0.018802089616656303,
-0.031027531251311302,
-0.018828315660357475,
0.029217401519417763,
-0.031480591744184494,
0.038389142602682114,
0.039261605590581894,
-0.022464733570814133,
0.08109112083911896,
-0.055544663220644,
0.019203796982765198,
-0.060095056891441345,
-0.0440894290804863,
0.023179292678833008,
0.05492360144853592,
0.044149912893772125,
0.0632220134139061,
0.009609456174075603,
-0.05145145207643509,
0.025705335661768913,
0.06749732047319412,
0.053610656410455704,
-0.00383621989749372,
-0.02174536883831024,
-0.0065430947579443455,
0.050323572009801865,
0.06583467125892639,
-0.05774765461683273,
-0.009689148515462875,
0.006281001027673483,
0.02837754227221012,
-0.0066924127750098705,
0.011234450154006481,
-0.03322627767920494,
0.030037418007850647,
-0.043460581451654434,
-0.07372888177633286,
0.06357374787330627,
0.021525761112570763,
-0.0022863789927214384,
0.022701656445860863,
0.02305063046514988,
-0.005650932900607586,
0.00855481717735529,
0.012202170677483082,
0.012262493371963501,
-0.04212884604930878,
0.020264269784092903,
-0.0024992437101900578,
0.07198230177164078,
-0.04607837647199631,
0.038678497076034546,
0.0009077843860723078,
0.028688108548521996,
0.04614148288965225,
-0.04744447022676468,
0.03691184148192406,
0.04217022284865379,
0.029284002259373665,
-0.0422513373196125,
0.010743238963186741,
0.015020373277366161,
0.04300021752715111,
0.02080845832824707,
-0.010530218482017517,
0.07780446112155914,
0.020372482016682625,
0.03261629119515419,
0.0758022889494896,
0.02057088352739811,
0.03928395360708237,
0.013879286125302315,
0.05637146532535553,
0.026300368830561638,
-0.026258908212184906,
0.056466199457645416,
-0.04623895511031151,
0.015346597880125046,
-0.045957501977682114,
0.015399686992168427,
-0.007331003434956074,
-0.0017089094035327435,
0.05140303075313568,
0.020877303555607796,
-0.04803390055894852,
-0.02093685418367386,
0.017800647765398026,
-0.004084226209670305,
0.03305491805076599,
0.006178621202707291,
0.0016245133010670543,
-0.01030748151242733,
-0.043050672858953476,
-0.004998068790882826,
-0.07702972739934921,
-0.047235824167728424,
-0.016566377133131027,
-0.03603281453251839,
-0.029240204021334648,
-0.09182769805192947,
-0.030534539371728897,
-0.0721299797296524,
-0.004925506189465523,
0.03649977222084999,
0.015958717092871666,
-0.020121751353144646,
-0.04169125854969025,
0.013469229452311993,
-0.04708604887127876,
-0.052290402352809906,
-0.03329111635684967,
-0.03873175010085106,
-0.04021986946463585,
-0.07759083807468414,
0.025723017752170563,
0.023874560371041298,
0.01762050949037075,
0.0028529083356261253,
0.007359948009252548,
-0.005260163452476263,
-0.02974962443113327,
0.04812868312001228,
0.06589055806398392,
-0.03472217172384262,
-0.06850183010101318,
0.012321590445935726,
-0.000345232110703364,
0.020098775625228882,
0.0237449798732996,
-0.019771305844187737,
0.09594862908124924,
0.07342252135276794,
0.008389742113649845,
0.03137591853737831,
-0.020988430827856064,
-0.06665758043527603,
-0.056079644709825516,
-0.017152156680822372,
-0.04650519788265228,
-0.02933199517428875,
-0.04685267433524132,
-0.04463553801178932,
-0.04182836040854454,
-0.023668883368372917,
0.006136354058980942,
-0.011361150071024895,
0.02013421803712845,
0.0046108379028737545,
0.03190508857369423,
0.023557722568511963,
0.045969411730766296,
-0.027997618541121483,
-0.030092179775238037,
0.04944673925638199,
0.012596452608704567,
0.00410714466124773,
-0.09134835004806519,
-0.010879323817789555,
0.01857362687587738,
0.021486828103661537,
-0.01790720783174038,
-0.0053473529405891895,
0.08476472645998001,
0.0057617309503257275,
-0.006639108061790466,
0.01038093026727438,
0.0019392292015254498,
-0.011777873151004314,
-0.01936931163072586,
-0.018041878938674927,
0.010166119784116745,
-0.027799077332019806,
-0.03939534351229668,
-0.011361736804246902,
0.04178185760974884,
-0.050967391580343246,
-0.04245168715715408,
-0.01892237551510334,
0.03691885992884636,
0.04769269376993179,
-0.006676735822111368,
-0.041140343993902206,
-0.012218534015119076,
-0.08372128754854202,
-0.014665649272501469,
0.038769759237766266,
-0.0009230162831954658,
0.016551334410905838,
0.03680519759654999,
0.010100345127284527,
-0.01963868923485279,
0.030991509556770325,
0.04207618162035942,
0.06229426711797714,
0.006325146183371544,
-0.07108993828296661,
-0.001518353121355176,
-0.03383570536971092,
0.018108434975147247,
-0.011923749931156635,
-0.02569681964814663,
-0.03149603679776192,
-0.09084584563970566,
-0.026818426325917244,
0.010237275622785091,
0.003771012183278799,
-0.0049464586190879345,
0.034130778163671494,
-0.011158613488078117,
-0.03457743674516678,
0.010663330554962158,
0.016824185848236084,
0.04672764986753464,
-0.03023965284228325,
0.0543646477162838,
-0.02603151835501194,
0.011555109173059464,
-0.061595767736434937,
0.013215313665568829,
-0.030254630371928215,
-0.029249589890241623,
0.0007119555375538766,
0.04620411992073059,
-0.00554322637617588,
0.04119052365422249,
0.06302540004253387,
0.04480466991662979,
-0.059776559472084045,
0.031035063788294792,
0.06552844494581223,
-0.04033759608864784,
-0.042625218629837036,
-0.01094354223459959,
0.0022237077355384827,
-0.005995234940201044,
-0.012113134376704693,
-0.010962026193737984,
0.042127251625061035,
0.016212692484259605,
0.0040058474987745285,
-0.004451498854905367,
0.009429250843822956,
-0.04525207728147507,
-0.022982651367783546,
-0.05781014263629913,
-0.04542514681816101,
-0.00408950075507164,
-0.026618611067533493,
0.017397422343492508,
0.03181750699877739,
0.021915601566433907,
0.06722527742385864,
0.02373686619102955,
-0.029987091198563576,
-0.012979522347450256,
0.0219036266207695,
0.019412843510508537,
-0.034986890852451324,
-0.07302019745111465,
-0.05397127568721771,
0.0331365205347538,
0.060852017253637314,
-0.015604129061102867,
-0.05509776994585991,
0.017639104276895523,
0.04823921620845795,
-0.0657069981098175,
0.04515187069773674,
-0.021518155932426453,
0.0564248226583004,
0.048665013164281845,
0.013618489727377892,
0.046841517090797424,
-0.02866269461810589,
-0.015285208821296692,
0.01232755184173584,
0.04175938665866852,
-0.031904686242341995,
-0.03058275580406189,
-0.05741604045033455,
0.03247586265206337,
0.035524699836969376,
0.029229089617729187,
0.0329664908349514,
-0.023302782326936722,
-0.03464742749929428,
0.011282754130661488,
0.027990441769361496,
-0.03793066367506981,
-0.0029903659597039223,
0.03919980302453041,
0.044691022485494614,
-0.040316201746463776,
-0.016670173034071922,
-0.04072919487953186,
-0.003432702273130417,
0.04245597869157791,
-0.014469818212091923,
-0.021175533533096313,
-0.029143864288926125,
0.035347696393728256,
-0.01740865781903267,
-0.030890924856066704,
-0.06076563149690628,
0.04185754805803299,
-0.008378090336918831,
-0.010876680724322796,
0.045549847185611725,
0.03540872782468796,
0.024666763842105865,
0.081255704164505,
0.019387878477573395,
0.006855030078440905,
-0.022353535518050194,
0.03714677691459656,
-0.03301234170794487,
-0.010499381460249424,
0.008867045864462852,
-0.03844695910811424,
-0.025699574500322342,
-0.013459688052535057,
-0.04415292665362358,
-0.042850252240896225,
-0.028603438287973404,
0.03293295204639435,
-0.0033055339008569717,
-0.011502985842525959,
0.0033970854710787535,
0.03929222747683525,
-0.014050391502678394,
-0.02267882414162159,
-0.05625808611512184,
-0.033646419644355774,
-0.051574695855379105,
-0.06345896422863007,
-0.012639323249459267,
0.006614912301301956,
0.027776069939136505,
0.03377266228199005,
0.0400867685675621,
0.022584816440939903,
0.01629634015262127,
-0.049685992300510406,
0.005025262013077736,
0.026727881282567978,
-0.045695263892412186,
-0.0367002971470356,
0.018334928900003433,
0.018005413934588432,
0.03549245372414589,
-0.027100441977381706,
0.04679294675588608,
0.009719661436975002,
-0.018207594752311707,
-0.04197864234447479,
0.026180202141404152,
0.03571941703557968,
-0.0673651471734047,
-0.04273673892021179,
-0.013764284551143646,
-0.017158351838588715,
0.028948010876774788,
-0.02588755078613758,
-0.0121791772544384,
0.033958252519369125,
0.013162118382751942,
0.04112306982278824,
-0.03686114028096199,
-0.011167877353727818,
0.026566796004772186,
-0.016196489334106445,
0.01837749592959881,
-0.05134357511997223,
0.05700669437646866,
-0.05403342470526695,
0.005768738687038422,
-0.008921707980334759,
-0.003545183688402176,
-0.02942500449717045,
0.03336803987622261,
-0.007283329032361507,
-0.01582099124789238,
0.002191798761487007,
0.04364141821861267,
-0.006623371038585901,
0.022141631692647934,
-0.026495443657040596,
0.03123250976204872,
-0.02285776101052761,
0.06786292046308517,
-0.030752623453736305,
0.013576238416135311,
-0.031262271106243134,
0.017895463854074478,
-0.045214083045721054,
0.009106829762458801,
-0.004173393826931715,
-0.022955331951379776,
0.020655227825045586,
0.04507138952612877,
0.02638355642557144,
0.038643766194581985,
-0.004663319792598486,
-0.007168787065893412,
0.008989588357508183,
-0.0551387183368206,
-0.021975364536046982,
-0.015087700448930264,
0.005117232911288738,
-0.021875277161598206,
0.058215126395225525,
0.027339927852153778,
-0.05941690132021904,
-0.06887177377939224,
0.04241805151104927,
0.020141523331403732,
0.015215907245874405,
-0.0009091314277611673,
0.03862950578331947,
0.026230785995721817,
0.02825251966714859,
-0.016284849494695663,
-0.012577752582728863,
0.01804320700466633,
-0.045006416738033295,
0.006350519601255655,
-0.0048686666414141655,
0.006328195333480835,
0.026091229170560837,
-0.05012046918272972,
-0.014323765411973,
0.048673100769519806,
0.028537051752209663,
0.020349889993667603,
0.01910276524722576,
-0.05223769322037697,
0.027863338589668274,
0.01157110370695591,
-0.0469091422855854,
0.005576018709689379,
0.01690204069018364,
-0.023944418877363205,
0.06436940282583237,
-0.00946120172739029,
0.00020164977468084544,
0.05027541145682335,
0.014848624356091022,
-0.028297724202275276,
0.05260661616921425,
-0.024216366931796074,
0.021941646933555603,
0.04501065984368324,
-0.07473859935998917,
-0.014005536213517189,
-0.058386411517858505,
0.06944673508405685,
-0.06505337357521057,
0.041267964988946915,
0.040132202208042145,
-0.01799282245337963,
0.019077325239777565,
-0.04735155403614044,
-0.0560808926820755,
0.030527759343385696,
-0.04258216917514801,
0.06132856383919716,
0.016105536371469498,
-0.071448914706707,
0.047410763800144196,
0.01583774946630001,
-0.056333061307668686,
0.031412273645401,
0.0333988219499588,
0.05863247811794281,
0.012659646570682526,
0.05167777091264725,
-0.021423526108264923,
-0.009720957837998867,
-0.043272022157907486,
0.028812140226364136,
-0.05443551018834114,
-0.031246405094861984,
0.026064179837703705,
-0.03939952701330185,
-0.01104020792990923,
0.04352644830942154,
-0.025221027433872223,
-0.01946881040930748,
0.04401097074151039,
-0.04244321584701538,
-0.032991211861371994,
0.002977975644171238,
-0.013603916391730309,
-0.04270293936133385,
-0.0009318703669123352,
-0.0369071364402771,
0.023222608491778374,
0.003070391248911619,
-0.01541429664939642,
-0.019961344078183174,
-0.012344719842076302,
0.02954167313873768,
-0.03767108917236328,
-0.039606109261512756,
0.02937312424182892,
-0.01728316955268383,
-0.02032722532749176,
0.03848421573638916,
0.03892514109611511,
-0.0016396582359448075,
0.03511372581124306,
-0.017083533108234406,
0.012484131380915642,
-0.045527197420597076,
-0.02796890027821064,
0.02271185629069805,
0.00298209092579782,
0.02577435038983822,
-0.011533187702298164,
0.031722281128168106,
0.04836435616016388,
0.02114260196685791,
-0.003673809114843607,
-0.03366854041814804,
-0.03621096536517143,
0.03686993569135666,
-0.048599857836961746,
0.016659477725625038,
-0.007594267837703228,
-0.04387076199054718,
-0.031696856021881104,
0.006969409063458443,
-0.029067261144518852,
0.0335162989795208,
-0.04182184487581253,
-0.00425270339474082,
0.07175774872303009,
-0.025435367599129677,
-0.05127379298210144,
-0.10540084540843964,
0.0052111330442130566,
-0.03166021406650543,
0.0038200493436306715,
0.04924840107560158,
-0.04618024453520775,
0.04717081040143967,
-0.07138585299253464,
-0.02450062707066536,
0.041544392704963684,
0.040222447365522385,
-0.05764805153012276,
0.07257378846406937,
0.04864993318915367,
-0.05661725625395775,
0.016334224492311478,
0.010006320662796497,
-0.0429893396794796,
0.011388345621526241,
0.02044314332306385,
0.01591872237622738,
0.02096174843609333,
0.014054774306714535,
-0.050495442003011703,
-0.029066061601042747,
-0.06810391694307327,
-0.03942006081342697,
-0.04962308704853058,
0.009657809510827065,
0.0595720037817955
] |
AdapterHub/roberta-base-pf-cola | [
"roberta",
"en",
"arxiv:2104.08247",
"adapter-transformers",
"text-classification",
"adapterhub:lingaccept/cola"
] | text-classification | {
"architectures": null,
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
tags:
- raw pretrained stable diffusion model
---
# raw pretrained stable diffusion model params | [
-0.03312205895781517,
0.014834529720246792,
-0.0051756990142166615,
0.011448903009295464,
0.03212415799498558,
0.0066009145230054855,
-0.015496493317186832,
0.025560956448316574,
-0.030173396691679955,
0.0416468121111393,
0.0036527393385767937,
-0.020807873457670212,
0.0014855002518743277,
0.05881725624203682,
-0.041518885642290115,
-0.057583488523960114,
-0.003954822663217783,
-0.016569148749113083,
-0.031175313517451286,
0.015432287938892841,
0.035318080335855484,
-0.0013517974875867367,
-0.026322828605771065,
0.03924359753727913,
0.03539193421602249,
0.017345545813441277,
-0.03647022321820259,
0.012292234227061272,
0.027373947203159332,
-0.010905185714364052,
-0.006109548732638359,
-0.02663104422390461,
-0.051041129976511,
-0.025455661118030548,
-0.026718592271208763,
-0.015074186027050018,
0.007476312108337879,
0.014746693894267082,
0.011578557081520557,
0.029948897659778595,
-0.003036080626770854,
0.01942366734147072,
0.023529645055532455,
-0.025175847113132477,
0.04609857499599457,
0.012447311542928219,
-0.04051019623875618,
-0.058492086827754974,
0.02825009636580944,
-0.029580391943454742,
-0.07491602748632431,
-0.07561864703893661,
-0.00572273600846529,
-0.018296269699931145,
-0.0018406420713290572,
-0.05145099386572838,
-0.060978878289461136,
0.018639497458934784,
0.06714996695518494,
-0.03631715103983879,
-0.004197184462100267,
-0.025142382830381393,
-0.08200418949127197,
0.027757348492741585,
0.020910058170557022,
-0.03767835721373558,
0.013266541995108128,
-0.06003551185131073,
0.0007169765885919333,
-0.008576185442507267,
0.04600663110613823,
-0.018164081498980522,
0.019344257190823555,
-0.034543655812740326,
-0.033370062708854675,
-0.020288614556193352,
0.04709718003869057,
0.01687605492770672,
-0.04561186581850052,
0.07055437564849854,
0.07444306463003159,
0.011913510039448738,
0.049295563250780106,
-0.0294570941478014,
-0.02149580791592598,
0.046617306768894196,
-0.04644850268959999,
-0.022552242502570152,
-0.005835996475070715,
-0.005109145771712065,
-0.040542349219322205,
-0.04711558297276497,
-0.020117444917559624,
-0.04708997160196304,
-0.021889247000217438,
0.030092300847172737,
0.036549102514982224,
-0.025444472208619118,
0.027007820084691048,
0.02404370717704296,
0.039440009742975235,
0.03696508705615997,
-0.007491098716855049,
0.04004629701375961,
-0.008886552415788174,
-0.015464957803487778,
0.002153939101845026,
0.0001950557780219242,
-0.02946225181221962,
0.03990713506937027,
-0.0051963902078568935,
-0.04519132524728775,
-0.03368387743830681,
0.02956990897655487,
0.005137853790074587,
-0.025816449895501137,
0.036800459027290344,
-0.04919217899441719,
-0.018796997144818306,
-0.04801693931221962,
0.04714864492416382,
-0.006458284333348274,
-0.010648786090314388,
-0.018015580251812935,
-0.047817181795835495,
-0.0019832870457321405,
-0.04336009547114372,
-0.013878842815756798,
-0.029794590547680855,
0.004810010083019733,
0.036469053477048874,
0.03227297216653824,
-0.026248376816511154,
-0.06914395838975906,
-0.016329238191246986,
0.027962306514382362,
-0.09439288824796677,
0.00732874171808362,
0.021609868854284286,
0.09435716271400452,
-0.03803388401865959,
-0.05297236144542694,
-0.008796649985015392,
0.009300999343395233,
-0.04066942259669304,
0.009382800199091434,
-0.028781943023204803,
-0.03431793302297592,
-0.02336401306092739,
-0.0305413156747818,
0.046532146632671356,
-0.03380471095442772,
-0.023654615506529808,
0.03734409809112549,
0.010506284423172474,
0.024028893560171127,
-0.0377458855509758,
0.019874468445777893,
-0.002792617306113243,
-0.02462615817785263,
-0.051063768565654755,
0.023239752277731895,
-0.013962412253022194,
-0.034423828125,
-0.009633339941501617,
-0.00982357282191515,
0.008138472214341164,
0.0769200250506401,
0.013818074017763138,
-0.018131738528609276,
-0.026764236390590668,
0.03322863206267357,
0.04592591151595116,
0.041627783328294754,
-0.013945283368229866,
0.045508526265621185,
0.04369290545582771,
0.025011204183101654,
-0.01466114167124033,
0.057780154049396515,
0.03947356715798378,
0.01024172455072403,
-0.03034280799329281,
-0.019055932760238647,
0.0036215356085449457,
-0.010870462283492088,
0.005762713495641947,
0.03611409291625023,
-0.0062494161538779736,
-0.05012470483779907,
-0.013698887079954147,
0.048166289925575256,
-0.0172096099704504,
-0.021050944924354553,
-0.020130371674895287,
-0.009953559376299381,
-0.016364246606826782,
0.03594599664211273,
-0.009808117523789406,
-0.03769071772694588,
-0.006114525254815817,
-0.01831061951816082,
0.036050502210855484,
0.03043203055858612,
0.010333217680454254,
0.041826099157333374,
-0.013483621180057526,
0.09259220957756042,
-0.03619959577918053,
0.024548282846808434,
-0.0421539731323719,
-0.02459576725959778,
-0.014737308025360107,
0.03330981731414795,
-0.014338997192680836,
0.044341836124658585,
-0.042198993265628815,
-0.052092958241701126,
0.045584212988615036,
0.05157492682337761,
0.029484331607818604,
0.013468297198414803,
-0.02784835174679756,
-0.004406298976391554,
0.03768075630068779,
0.024413827806711197,
-0.04935338720679283,
-0.025407586246728897,
0.021854910999536514,
0.04758584871888161,
-0.05024756118655205,
-0.018851855769753456,
-0.04442774876952171,
0.04653625562787056,
-0.026003150269389153,
-0.008549886755645275,
0.025233089923858643,
0.043949078768491745,
-0.0027897360268980265,
0.06375054270029068,
-0.005881027784198523,
0.014563622884452343,
0.03666600584983826,
0.026539310812950134,
0.025107111781835556,
-0.03806360065937042,
0.03300110995769501,
0.020415743812918663,
0.0923951119184494,
-0.06500743329524994,
0.03319437801837921,
0.007867377251386642,
0.015063141472637653,
0.039565663784742355,
-0.06846164166927338,
0.03619769588112831,
0.06116626411676407,
0.06624478846788406,
-0.01790720783174038,
0.05740504339337349,
0.003710623364895582,
0.02704993449151516,
0.050577763468027115,
0.017853233963251114,
0.08369071781635284,
-0.03235260024666786,
0.0374545082449913,
0.09140954911708832,
0.04155265539884567,
-0.0057926299050450325,
0.044560883194208145,
0.07085293531417847,
-0.0015737945213913918,
0.02360694855451584,
0.04756317287683487,
-0.03193528577685356,
0.01643236353993416,
-0.04189758747816086,
0.002531950594857335,
-0.03028356283903122,
-0.02338588982820511,
0.07299695163965225,
0.016749246045947075,
-0.03241811692714691,
-0.0037503018975257874,
0.015549294650554657,
-0.004057034384459257,
0.03623202070593834,
0.02007495053112507,
0.006148999556899071,
0.005469717085361481,
-0.007236279547214508,
0.011369839310646057,
-0.0419149175286293,
-0.040033917874097824,
-0.01642666943371296,
-0.026486756280064583,
-0.005771078635007143,
-0.050242915749549866,
-0.04298991337418556,
-0.08220742642879486,
-0.02771621011197567,
0.02251216024160385,
0.023024197667837143,
0.017136184498667717,
-0.03645958751440048,
0.03309529274702072,
-0.019267719238996506,
-0.06709133833646774,
-0.05320572108030319,
-0.04003002494573593,
-0.014639275148510933,
-0.04813668876886368,
0.07250720262527466,
0.002821537898853421,
0.03315168619155884,
0.0067231375724077225,
-0.004583478905260563,
-0.02054097317159176,
-0.03426568582653999,
0.05639555677771568,
0.02928958274424076,
-0.060738448053598404,
-0.024556607007980347,
-0.008874229155480862,
0.005321844480931759,
-0.026311086490750313,
-0.03467134013772011,
-0.04014299064874649,
0.07666849344968796,
0.05410956218838692,
0.01228339970111847,
-0.00046279007801786065,
0.012964284978806973,
-0.03001224622130394,
-0.02988668717443943,
-0.0271295215934515,
-0.022754168137907982,
-0.026261968538165092,
-0.026545347645878792,
-0.0319429412484169,
-0.03008764237165451,
-0.03262043744325638,
-0.0350692942738533,
-0.01319100521504879,
-0.004933265969157219,
0.02008672058582306,
0.05592414736747742,
0.026992158964276314,
0.026323851197957993,
-0.021856429055333138,
-0.031941402703523636,
0.04778023064136505,
-0.00927327387034893,
-0.003663941053673625,
-0.05634540319442749,
-0.03721706196665764,
0.04144555702805519,
-0.004401675425469875,
0.016321271657943726,
0.0061478083953261375,
0.07281654328107834,
0.017275197431445122,
-0.01124645210802555,
0.03957432880997658,
-0.042932573705911636,
0.02306826412677765,
-0.020419463515281677,
-0.014591993764042854,
-0.0077439225278794765,
-0.02624829299747944,
-0.0031598093919456005,
0.0008354448946192861,
0.0287306047976017,
-0.08119885623455048,
-0.05329733341932297,
-0.03786497935652733,
0.006943888962268829,
0.0803588256239891,
0.03781062364578247,
-0.06310861557722092,
-0.009365793317556381,
-0.04598966985940933,
-0.007073403336107731,
0.03794112056493759,
-0.01732204481959343,
0.023913642391562462,
0.006643189117312431,
0.010338330641388893,
-0.03345765918493271,
0.04984049126505852,
0.0359230600297451,
0.03588511049747467,
0.0348370224237442,
-0.03260805457830429,
0.007315291091799736,
-0.003884161589667201,
0.0635518804192543,
0.0025156945921480656,
0.008670584298670292,
-0.03459453955292702,
-0.08894180506467819,
-0.04350476711988449,
0.019916115328669548,
-0.0049948007799685,
0.0210875254124403,
0.04935993626713753,
-0.0331234447658062,
-0.0030546756461262703,
-0.018416883423924446,
0.04895913973450661,
0.05873631313443184,
-0.021070631220936775,
0.04753079265356064,
-0.0019009995739907026,
-0.01935628242790699,
-0.04630661755800247,
0.01316300593316555,
-0.03858301788568497,
-0.03936696797609329,
0.014570786617696285,
0.03431045264005661,
0.017992476001381874,
0.06671677529811859,
0.06079995632171631,
0.029348433017730713,
-0.04619043692946434,
0.05450714752078056,
0.07012654095888138,
-0.03391261398792267,
-0.06267508864402771,
-0.008386041969060898,
0.03147563710808754,
-0.00999794714152813,
-0.04124132916331291,
-0.025986606255173683,
0.024998322129249573,
0.02750110998749733,
-0.024016836658120155,
-0.004207665100693703,
-0.0032431259751319885,
-0.020745698362588882,
-0.03315543755888939,
-0.04941412806510925,
0.0340544655919075,
0.014791437424719334,
-0.027645371854305267,
0.019054235890507698,
0.04648713022470474,
0.013951441273093224,
0.06447626650333405,
0.05548439174890518,
-0.033769458532333374,
-0.03357580304145813,
0.01739496923983097,
0.03406263887882233,
-0.011827497743070126,
-0.073884017765522,
-0.03805048018693924,
0.024654312059283257,
0.059685397893190384,
0.0018919791327789426,
-0.05702705308794975,
0.027596918866038322,
0.04355313256382942,
-0.08585704118013382,
0.08308777213096619,
-0.0006718492950312793,
0.037131886929273605,
0.06385406851768494,
-0.013654998503625393,
0.0173522736877203,
-0.05624355748295784,
0.020505260676145554,
-0.003908567130565643,
0.019935766234993935,
-0.02313239686191082,
-0.04672354459762573,
-0.03349701315164566,
0.035471778362989426,
0.028380876407027245,
0.007896780036389828,
0.050814371556043625,
-0.04518440365791321,
-0.0774950236082077,
-0.03411676734685898,
0.04109729081392288,
-0.050779785960912704,
0.013580767437815666,
0.03863075375556946,
0.03324168175458908,
-0.04323645681142807,
-0.018345126882195473,
-0.02937135472893715,
0.010374537669122219,
0.023844564333558083,
-0.008624313399195671,
-0.046208836138248444,
-0.04310017079114914,
0.018914928659796715,
-0.017616238445043564,
-0.016233203932642937,
-0.11981542408466339,
0.01170788798481226,
-0.02779465727508068,
-0.030934644863009453,
0.04118384048342705,
0.04918112978339195,
0.09267840534448624,
0.08387988805770874,
-0.00018808564345818013,
0.039625201374292374,
-0.005752354860305786,
0.016439873725175858,
-0.03197265788912773,
-0.036069128662347794,
0.02867908403277397,
-0.040061868727207184,
-0.042603690177202225,
-0.014941692352294922,
-0.03299785405397415,
-0.03173106536269188,
-0.015818273648619652,
-0.0019093541195616126,
0.010362613946199417,
0.02399292401969433,
0.016332047060132027,
-0.0011838758364319801,
-0.0017491535982117057,
-0.02028365433216095,
-0.008658267557621002,
-0.020246926695108414,
-0.09720753133296967,
-0.0708618089556694,
0.011441790498793125,
-0.018529551103711128,
-0.009896772913634777,
0.0018592148553580046,
0.030878348276019096,
0.01973447948694229,
0.029968883842229843,
-0.03342670574784279,
-0.01503132376819849,
0.047643423080444336,
-0.02611318975687027,
-0.0082801952958107,
0.01113916002213955,
0.006733613554388285,
0.013056095689535141,
-0.025557875633239746,
0.018229397013783455,
0.008695934899151325,
-0.04116366058588028,
-0.02947932295501232,
0.019100720062851906,
0.007957147434353828,
-0.0456099733710289,
-0.007889513857662678,
-0.009162100031971931,
-0.04924878105521202,
0.008322617970407009,
-0.022794155403971672,
-0.0010057123145088553,
-0.025362618267536163,
0.026038959622383118,
0.03130894526839256,
-0.0160063523799181,
-0.014970513060688972,
0.002327937399968505,
-0.032608699053525925,
0.030373817309737206,
-0.07982366532087326,
0.010650387033820152,
-0.018192343413829803,
0.03272693604230881,
0.011786178685724735,
-0.0036666581872850657,
-0.04529232531785965,
0.041586682200431824,
-0.017445143312215805,
-0.007879246957600117,
-0.03928481787443161,
0.000411542016081512,
-0.03925591707229614,
0.023858606815338135,
0.005182433873414993,
0.0036339338403195143,
0.01791319251060486,
0.07926558703184128,
-0.04785381257534027,
0.006322175730019808,
-0.00008528264879714698,
-0.008911719545722008,
-0.006966916844248772,
-0.04302241653203964,
-0.024980196729302406,
-0.030415600165724754,
0.018715975806117058,
0.033425960689783096,
0.01811591349542141,
0.05136025696992874,
-0.018307898193597794,
0.015252544544637203,
0.029897449538111687,
-0.01489515881985426,
-0.032194387167692184,
-0.008388565853238106,
-0.0200404804199934,
0.012874581851065159,
0.08754473179578781,
0.005041632801294327,
-0.042103443294763565,
-0.04847224801778793,
0.06658957898616791,
0.01803131401538849,
0.029876746237277985,
-0.013913439586758614,
0.03059438057243824,
0.032251860946416855,
0.03550577908754349,
-0.03733783960342407,
0.005837247706949711,
-0.022122975438833237,
-0.0015122087206691504,
0.011665974743664265,
-0.010115454904735088,
0.034584514796733856,
-0.0019348624628037214,
-0.059000663459300995,
-0.02064700983464718,
0.06507765501737595,
0.03534770756959915,
0.018526948988437653,
-0.01689811609685421,
-0.04908396303653717,
0.06315366923809052,
-0.011427833698689938,
-0.029879970476031303,
0.014650086872279644,
0.05873285233974457,
-0.046079203486442566,
0.04693147912621498,
-0.027577461674809456,
0.0175555981695652,
0.04875553399324417,
0.02699831873178482,
-0.00985348504036665,
0.06348324567079544,
-0.01932811737060547,
0.034832701086997986,
0.022184640169143677,
-0.04613552615046501,
-0.011658302508294582,
-0.02744104154407978,
0.0708688423037529,
-0.06608607620000839,
0.02590121328830719,
0.049333974719047546,
0.02314804680645466,
0.06849796324968338,
-0.04152665659785271,
-0.025768563151359558,
-0.009215516969561577,
-0.016292130574584007,
0.05852668359875679,
-0.00008224214980145916,
-0.03752080351114273,
0.04428325593471527,
0.013025663793087006,
-0.09024880081415176,
0.028790434822440147,
0.012026979587972164,
0.027435585856437683,
0.03673570603132248,
0.039235807955265045,
-0.05048949271440506,
0.03553440794348717,
-0.034589871764183044,
0.030298108235001564,
-0.049382153898477554,
0.014398188330233097,
0.008226866833865643,
-0.055208466947078705,
-0.023379826918244362,
0.04110013321042061,
-0.002755827736109495,
-0.004838517401367426,
0.029760263860225677,
-0.0070522138848900795,
-0.06017988547682762,
0.013572027906775475,
0.010070288553833961,
0.02020348608493805,
-0.011855577118694782,
-0.027616452425718307,
0.007818813435733318,
0.051256582140922546,
0.007041981443762779,
-0.0429377518594265,
0.015308890491724014,
-0.0020943828858435154,
-0.03586031123995781,
-0.021744370460510254,
0.02172631397843361,
0.0028636360075324774,
-0.03997834771871567,
-0.0034495163708925247,
0.006410247180610895,
0.040082816034555435,
0.03195492550730705,
-0.002738443436101079,
0.01974751427769661,
-0.056007269769907,
-0.01606818661093712,
0.02172929234802723,
-0.007646740414202213,
0.008217470720410347,
-0.0571364164352417,
0.02221037819981575,
0.07876528054475784,
0.03803325071930885,
-0.0020640932489186525,
-0.014105552807450294,
-0.034023236483335495,
0.021543268114328384,
-0.06247619539499283,
0.0025686200242489576,
-0.012211043387651443,
-0.05697816610336304,
-0.04448302090167999,
0.01752333901822567,
-0.026390066370368004,
0.037419743835926056,
-0.04151349142193794,
0.012951922602951527,
0.02797359600663185,
-0.0011727400124073029,
-0.06184377148747444,
-0.09883344173431396,
-0.04870085418224335,
-0.020675819367170334,
-0.0014809552812948823,
0.019528133794665337,
-0.038813021034002304,
0.0067266980186104774,
-0.0036389329470694065,
-0.015021489933133125,
0.0520147867500782,
-0.015117580071091652,
-0.024685783311724663,
0.09298361092805862,
0.06342802941799164,
-0.016711052507162094,
0.01265220157802105,
0.041330788284540176,
-0.05686848238110542,
0.024245619773864746,
0.010276932269334793,
0.01070332434028387,
0.02813107706606388,
0.02165033482015133,
-0.0024893314111977816,
-0.012893309816718102,
-0.015616318210959435,
-0.04216292127966881,
-0.030925465747714043,
-0.012910507619380951,
0.054670240730047226
] |
Aleksandar/electra-srb-ner | [
"pytorch",
"safetensors",
"electra",
"token-classification",
"dataset:wikiann",
"transformers",
"generated_from_trainer",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"ElectraForTokenClassification"
],
"model_type": "electra",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 15 | null | ---
license: mit
---
---
license: mit
---
Base Mode: Llama 7B
LoRA is fully Merged with llama7b, so you do not need to merge it to load the model.
Llama DEUS v3 is the largest dataset I've trained on yet, including:
GPTeacher - General Instruct - Code Instruct - Roleplay Instruct
My unreleased Roleplay V2 Instruct
GPT4-LLM Uncensored + Unnatural Instructions
WizardLM Uncensored
CamelAI's 20k Biology, 20k Physics, 20k Chemistry, and 50k Math GPT4 Datasets
CodeAlpaca
This model was trained for 4 epochs over 1 day of training, it's a rank 128 LORA that targets attention heads, LM_Head, and MLP layers
Prompt format:
```
### Instruction:
<prompt>
### Response:
```
or
```
### Instruction:
<prompt>
### Input:
<input>
### Response:
```
| [
-0.02005857042968273,
-0.017605997622013092,
-0.0069917733781039715,
0.018421301618218422,
0.050250448286533356,
0.017379960045218468,
-0.008811499923467636,
-0.040075793862342834,
-0.0018715892219915986,
0.06768563389778137,
0.05656132474541664,
-0.029365016147494316,
0.028233299031853676,
0.03803623467683792,
-0.058340106159448624,
-0.03447824716567993,
-0.007127453573048115,
0.02512071654200554,
-0.027951473370194435,
0.022150026634335518,
0.010204789228737354,
-0.013635084964334965,
0.005720863584429026,
0.010221372358500957,
0.006951117422431707,
0.01431198325008154,
-0.018219778314232826,
0.037800706923007965,
0.034126535058021545,
-0.07623817771673203,
-0.00747116981074214,
-0.05194714292883873,
-0.015559392049908638,
-0.014286693185567856,
-0.037299878895282745,
-0.026021597906947136,
0.005172898527234793,
-0.004357407800853252,
0.029643839225172997,
0.047618307173252106,
-0.014204489067196846,
0.017636364325881004,
-0.005786010529845953,
-0.04229133948683739,
0.04450505971908569,
-0.009891992434859276,
-0.05470309406518936,
-0.03274640068411827,
0.030109655112028122,
-0.012966505251824856,
-0.04656488075852394,
-0.059490446001291275,
-0.003006543265655637,
0.008082105778157711,
0.020484233275055885,
-0.00005162574598216452,
-0.030037127435207367,
-0.017588650807738304,
0.057055797427892685,
-0.04596967622637749,
-0.025577332824468613,
-0.005764662753790617,
-0.06407816708087921,
0.02273152582347393,
0.028989871963858604,
-0.02657395228743553,
-0.008772040717303753,
-0.044849690049886703,
0.04972868412733078,
-0.006004611495882273,
0.06960636377334595,
-0.06995383650064468,
-0.00009781495464267209,
-0.08398694545030594,
0.02459472417831421,
-0.008780483156442642,
0.04561220481991768,
0.030564697459340096,
-0.05395790934562683,
0.06069217994809151,
0.049691103398799896,
0.005898021161556244,
0.02416232042014599,
-0.01819586753845215,
0.004587840288877487,
0.03211233392357826,
-0.05262216180562973,
-0.014592450112104416,
0.023939788341522217,
0.05022616311907768,
-0.028766971081495285,
-0.04780318960547447,
-0.01950797624886036,
-0.026857545599341393,
-0.005079698283225298,
0.03759843856096268,
0.06014765053987503,
-0.03514360636472702,
0.03749643638730049,
0.02170654386281967,
0.06928349286317825,
0.03745346888899803,
-0.040269892662763596,
0.05056237801909447,
-0.02533830888569355,
-0.017162960022687912,
-0.014138494618237019,
-0.04031996428966522,
-0.048316776752471924,
0.006713029462844133,
0.015143167227506638,
-0.04945196956396103,
-0.03060728684067726,
0.014264400117099285,
0.02035488560795784,
-0.029868513345718384,
0.05357106029987335,
-0.02743815816938877,
-0.07068796455860138,
-0.045111317187547684,
0.06837821751832962,
0.007908903993666172,
-0.017508428543806076,
0.02809375897049904,
-0.0555289052426815,
-0.00043980730697512627,
-0.06313387304544449,
-0.04163213074207306,
0.002631626557558775,
-0.0027039325796067715,
-0.004723188932985067,
0.0345081090927124,
0.02118915133178234,
-0.04839126393198967,
0.018720535561442375,
0.012802225537598133,
-0.06613588333129883,
0.034159887582063675,
0.027209753170609474,
0.1180955246090889,
-0.04545450583100319,
-0.05844830721616745,
0.027563143521547318,
0.018068568781018257,
-0.03344571217894554,
-0.0011259098537266254,
-0.004816186148673296,
-0.006935175508260727,
-0.03255266323685646,
-0.03276079148054123,
0.05380198359489441,
-0.06593750417232513,
0.005561325699090958,
0.05102940648794174,
0.01813323050737381,
0.06508117914199829,
-0.036929789930582047,
-0.025507502257823944,
0.012579763308167458,
0.01714731939136982,
-0.007079200353473425,
0.04814136028289795,
-0.009497089311480522,
-0.01758718118071556,
-0.04415478557348251,
-0.0443899892270565,
0.023994293063879013,
0.08360476791858673,
0.0003053540422115475,
0.007474707905203104,
-0.0032674307003617287,
0.037153374403715134,
0.03410585597157478,
0.03327323496341705,
-0.0025440030731260777,
0.05264333263039589,
0.03316505625844002,
0.015653017908334732,
0.00934472493827343,
0.025001050904393196,
0.0003723599365912378,
-0.03208422660827637,
-0.031821358948946,
-0.008402999490499496,
0.015350922010838985,
-0.023872127756476402,
0.0014615205582231283,
0.02680022642016411,
0.02405950054526329,
-0.03732159733772278,
-0.040264565497636795,
0.052329473197460175,
-0.020754285156726837,
-0.0027655274607241154,
0.019499771296977997,
0.01619533821940422,
-0.030625730752944946,
0.022209689021110535,
-0.03241531923413277,
-0.02040719799697399,
-0.015606582164764404,
0.01311467308551073,
0.03619490563869476,
0.0039524841122329235,
0.030383938923478127,
0.06654028594493866,
-0.006499589420855045,
0.09161746501922607,
-0.023431632667779922,
0.01998608559370041,
-0.05859025567770004,
-0.049462076276540756,
0.031126730144023895,
0.03169132396578789,
0.04515833780169487,
0.03525618836283684,
-0.005706841591745615,
-0.041778065264225006,
0.029649410396814346,
0.0739060714840889,
0.051423002034425735,
-0.009359930641949177,
-0.04313654825091362,
-0.018071360886096954,
0.048155397176742554,
0.05153181403875351,
-0.031601786613464355,
-0.026297032833099365,
0.031684547662734985,
0.035464443266391754,
-0.02970968559384346,
0.02516333945095539,
-0.0381828211247921,
0.030166104435920715,
-0.050752703100442886,
-0.07999854534864426,
0.017483234405517578,
0.024800017476081848,
0.010994339361786842,
0.022490711882710457,
0.000691056891810149,
0.010492730885744095,
0.017777832224965096,
0.020707160234451294,
0.03634393960237503,
-0.05642176419496536,
0.011396076530218124,
0.012740210629999638,
0.029321417212486267,
-0.0431370809674263,
0.04843035712838173,
-0.014394271187484264,
-0.014112241566181183,
0.027836687862873077,
-0.01740449108183384,
0.020490555092692375,
0.07043585926294327,
0.017045864835381508,
-0.02769438363611698,
0.0035766600631177425,
-0.01192337553948164,
0.03354792296886444,
0.025631776079535484,
0.009337512776255608,
0.05301578342914581,
0.012879015877842903,
0.05579393729567528,
0.06536167114973068,
0.020026935264468193,
0.0033034735824912786,
0.03232656046748161,
0.07116297632455826,
0.00045343046076595783,
-0.012360209599137306,
0.05678354948759079,
-0.04732947051525116,
0.019324105232954025,
-0.029362361878156662,
-0.010012862272560596,
-0.016098832711577415,
-0.03337651491165161,
0.06657103449106216,
0.020981336012482643,
-0.009712472558021545,
-0.017614582553505898,
0.0023835357278585434,
-0.0005699490429833531,
0.006893501617014408,
-0.014131368137896061,
-0.018201783299446106,
-0.04007132351398468,
-0.02695484645664692,
0.0028967575635761023,
-0.07535344362258911,
-0.017384760081768036,
-0.009487922303378582,
-0.03819682076573372,
-0.015654306858778,
-0.06244885176420212,
-0.012024713680148125,
-0.054525189101696014,
-0.014039169996976852,
0.030112484470009804,
0.008839685469865799,
-0.002099864184856415,
-0.016203319653868675,
0.015059943310916424,
-0.0548197440803051,
-0.042758770287036896,
-0.05804668366909027,
-0.051289573311805725,
-0.007900306954979897,
-0.06265075504779816,
0.0275332722812891,
0.03531564027070999,
0.014841617085039616,
0.0030594635754823685,
-0.010417620651423931,
-0.006884126923978329,
-0.03387127071619034,
0.031651075929403305,
0.054874978959560394,
-0.014556965790688992,
-0.04608111083507538,
0.01976504735648632,
-0.011561627499759197,
0.005881946999579668,
-0.025896204635500908,
-0.02970176562666893,
0.09353663772344589,
0.06202591955661774,
0.021744675934314728,
-0.042088232934474945,
0.00825865101069212,
-0.04086359590291977,
-0.04610775411128998,
-0.04047197476029396,
-0.04467388242483139,
0.011725934222340584,
-0.033981774002313614,
-0.0397954024374485,
-0.008047278970479965,
-0.046150628477334976,
0.012646565213799477,
-0.024643216282129288,
0.027997054159641266,
0.04956375062465668,
0.055879198014736176,
0.020021803677082062,
0.024048836901783943,
-0.03415520489215851,
-0.009297499433159828,
0.05958407744765282,
0.02572716772556305,
0.026940271258354187,
-0.07666110247373581,
-0.028141651302576065,
0.04650168865919113,
0.0293778907507658,
-0.021378684788942337,
0.026294687762856483,
0.06923720985651016,
0.012539935298264027,
-0.02226010151207447,
0.031504712998867035,
-0.0265197791159153,
-0.01261332631111145,
0.004211839288473129,
-0.00039642705814912915,
-0.02661767229437828,
-0.05250115320086479,
0.015521527267992496,
-0.028710298240184784,
0.06265494972467422,
-0.04999150335788727,
-0.040536630898714066,
-0.02818276546895504,
0.02109953574836254,
0.026574455201625824,
0.01994599774479866,
-0.03750590980052948,
-0.0034324689768254757,
-0.039609458297491074,
0.01545987743884325,
0.03894677758216858,
0.008642517030239105,
0.006754500325769186,
0.06006745994091034,
0.01634996011853218,
-0.011293827556073666,
0.03300882503390312,
0.028082555159926414,
0.07010112702846527,
0.001019924646243453,
-0.05008063092827797,
0.009479392319917679,
0.0013493072474375367,
0.021841537207365036,
-0.012450853362679482,
-0.01094397809356451,
-0.048000846058130264,
-0.08012334257364273,
-0.02687276154756546,
0.021115336567163467,
-0.04043297842144966,
-0.00029090390307828784,
0.07183535397052765,
0.014309314079582691,
-0.014834169298410416,
-0.003192759118974209,
0.013381934724748135,
0.05302630364894867,
-0.0409933440387249,
0.039523303508758545,
0.0037169468123465776,
0.005826601292937994,
-0.056650497019290924,
0.0008462685509584844,
-0.016432272270321846,
-0.029827896505594254,
0.024938976392149925,
0.058482494205236435,
0.03886443004012108,
0.08870829641819,
0.05045372247695923,
0.013521582819521427,
-0.03938577324151993,
0.047813087701797485,
0.04597920924425125,
-0.005942287389189005,
-0.041653089225292206,
0.0039244904182851315,
-0.012332849204540253,
-0.029311036691069603,
0.00820232555270195,
-0.0054633901454508305,
0.031224314123392105,
0.0465739369392395,
0.00892301369458437,
0.0031399568542838097,
-0.000557691149879247,
-0.017808768898248672,
-0.031838759779930115,
-0.04105398803949356,
-0.03433474525809288,
0.0009728965233080089,
-0.035679787397384644,
0.025439780205488205,
0.027787186205387115,
0.03958714380860329,
0.045410942286252975,
0.06654303520917892,
-0.03982311487197876,
-0.046345654875040054,
0.03867153450846672,
0.0042062862776219845,
-0.03286268562078476,
-0.05532791092991829,
-0.02583722211420536,
0.05190989002585411,
0.022555874660611153,
0.00527854822576046,
-0.08443999290466309,
0.0054018534719944,
0.05439881235361099,
-0.08003071695566177,
0.04550213739275932,
-0.014905120246112347,
0.0237404964864254,
0.03852427005767822,
0.018700694665312767,
0.07153365761041641,
-0.026390522718429565,
0.03143027797341347,
0.006698996294289827,
0.05035752058029175,
0.01622394658625126,
-0.023522082716226578,
-0.050558313727378845,
0.047512538731098175,
0.04801403358578682,
0.03881661221385002,
0.020916536450386047,
-0.014978311024606228,
-0.05398247763514519,
-0.033604107797145844,
0.060830313712358475,
-0.03836239501833916,
0.0052968417294323444,
0.018441397696733475,
0.028538405895233154,
-0.04950997605919838,
-0.03646840155124664,
-0.04986565187573433,
0.0053504775278270245,
0.021227343007922173,
0.012621916830539703,
-0.015040568076074123,
-0.03965950012207031,
0.021235020831227303,
-0.026753442361950874,
-0.042901020497083664,
-0.11150043457746506,
0.031171191483736038,
-0.015986768528819084,
-0.018725255504250526,
0.025614624843001366,
0.011657198891043663,
0.051170144230127335,
0.05914607271552086,
0.015115519985556602,
0.013638906180858612,
-0.0408128947019577,
0.05020710453391075,
-0.03302838280797005,
-0.010167945176362991,
0.004022039473056793,
-0.030272090807557106,
-0.023228388279676437,
-0.0247524194419384,
-0.049129389226436615,
-0.012044498696923256,
-0.024057161062955856,
0.032514508813619614,
0.028346555307507515,
0.022696923464536667,
0.0011633572867140174,
0.07060500234365463,
-0.026038015261292458,
-0.027375971898436546,
-0.026127835735678673,
-0.019569825381040573,
-0.06494800001382828,
-0.03307196870446205,
0.0367165207862854,
0.012412113137543201,
0.0032769974786788225,
-0.014024523086845875,
0.029628505930304527,
-0.0010895320447161794,
-0.006079313810914755,
-0.020293621346354485,
0.05912629887461662,
-0.00579441525042057,
-0.044827889651060104,
-0.029604731127619743,
0.008747522719204426,
0.00463901786133647,
0.034136395901441574,
-0.02199956588447094,
0.012243058532476425,
-0.0031489902175962925,
-0.018241077661514282,
0.0033258856274187565,
0.016630876809358597,
0.018500138074159622,
-0.049798060208559036,
-0.0190208088606596,
-0.023879043757915497,
-0.0499684140086174,
0.051938217133283615,
-0.022276496514678,
-0.030040958896279335,
0.014065500348806381,
-0.010901580564677715,
0.04218064993619919,
-0.017410950735211372,
-0.05713411793112755,
0.0019205855205655098,
-0.060831572860479355,
0.0314248725771904,
-0.04109455645084381,
0.028983155265450478,
-0.041369885206222534,
0.020678572356700897,
-0.031185563653707504,
-0.020409272983670235,
-0.02677210606634617,
0.04427003487944603,
-0.006965648848563433,
-0.029382245615124702,
-0.006580888759344816,
0.0029240227304399014,
-0.003999824170023203,
0.048630937933921814,
-0.0006716540083289146,
0.012576092965900898,
-0.06821482628583908,
0.06259635090827942,
-0.03032475896179676,
0.0011618912685662508,
-0.018757289275527,
0.011089091189205647,
-0.057235199958086014,
-0.02420422062277794,
-0.041837386786937714,
-0.01892911270260811,
0.01680518500506878,
0.04853464290499687,
0.028599269688129425,
0.03801220655441284,
-0.01653640903532505,
0.012060249224305153,
-0.0031167760025709867,
-0.06334466487169266,
-0.035553161054849625,
0.0008552210638299584,
-0.007210288196802139,
0.004714482929557562,
0.07473590970039368,
0.05217832326889038,
-0.05827215313911438,
-0.03598632663488388,
0.04931410774588585,
-0.007495315745472908,
0.021343065425753593,
-0.010265132412314415,
0.02811121568083763,
0.027323642745614052,
0.05386698618531227,
-0.05822483450174332,
-0.007974841631948948,
-0.0031952867284417152,
-0.0005845849518664181,
0.01365689281374216,
-0.03548827022314072,
-0.0008858494111336768,
0.004167203325778246,
-0.0307223629206419,
-0.026944002136588097,
0.08744925260543823,
0.02632896788418293,
0.009576733224093914,
-0.025365445762872696,
-0.030078768730163574,
0.045058317482471466,
0.0024360765237361193,
-0.04552548751235008,
0.00046948640374466777,
0.016484463587403297,
-0.021496636793017387,
0.054965391755104065,
-0.006634665187448263,
-0.01876678504049778,
0.04836694151163101,
0.058616962283849716,
-0.03567337617278099,
0.05597248300909996,
-0.018882786855101585,
-0.01042233593761921,
0.02917524054646492,
-0.0389852337539196,
-0.0065282899886369705,
-0.036455702036619186,
0.06470410525798798,
-0.07761844247579575,
0.08353807032108307,
0.03700495511293411,
0.0066479905508458614,
-0.006680023856461048,
-0.03753596171736717,
-0.06152186542749405,
-0.015897877514362335,
-0.021557796746492386,
0.059187211096286774,
-0.020851170644164085,
-0.07220298796892166,
0.06156573444604874,
0.008375178091228008,
-0.062200941145420074,
0.020670127123594284,
0.06491992622613907,
0.03979233652353287,
0.011994976550340652,
0.035886380821466446,
-0.03621683269739151,
0.03920859470963478,
-0.06023562327027321,
0.0295353215187788,
-0.0390169695019722,
-0.01039749663323164,
0.04459488019347191,
-0.024455398321151733,
0.01857554353773594,
0.035237785428762436,
-0.017822060734033585,
-0.005855865310877562,
0.035778678953647614,
-0.05417071282863617,
-0.058260656893253326,
0.01237177662551403,
0.02506914921104908,
-0.0272209495306015,
-0.013898269273340702,
-0.030149072408676147,
0.05982913076877594,
0.015211585909128189,
-0.005190160591155291,
-0.011130288243293762,
0.0049944487400352955,
0.011212436482310295,
-0.06077837944030762,
-0.025610581040382385,
0.051873646676540375,
0.013402757234871387,
-0.033308934420347214,
-0.002788585377857089,
-0.00623036315664649,
0.004117242526262999,
-0.018338099122047424,
0.0016383477486670017,
0.025734547525644302,
-0.06898798048496246,
-0.03514443337917328,
0.017195943742990494,
0.0019182201940566301,
0.013591213151812553,
-0.022984487935900688,
0.010694772936403751,
0.02423710934817791,
0.027341539040207863,
0.020335620269179344,
-0.039948720484972,
-0.0009200014173984528,
0.023091532289981842,
-0.06400541961193085,
0.03164966031908989,
-0.010648020543158054,
-0.051436860114336014,
-0.020235933363437653,
-0.018157711252570152,
-0.04775537550449371,
0.01739419437944889,
-0.021621236577630043,
-0.017060093581676483,
0.020232751965522766,
-0.010467070154845715,
-0.0324721522629261,
-0.07546794414520264,
-0.028155365958809853,
0.0000041598977986723185,
0.013194887898862362,
0.038452062755823135,
-0.044817958027124405,
0.01976977102458477,
-0.04073687270283699,
-0.034555938094854355,
0.04575400799512863,
0.038689639419317245,
0.0010931898141279817,
0.03623266518115997,
0.03399014100432396,
-0.03971055522561073,
0.007893185131251812,
0.04756496474146843,
-0.05607686564326286,
0.002882997505366802,
0.024676335975527763,
0.0052887434139847755,
0.012535220012068748,
-0.007343279663473368,
-0.04899698495864868,
0.00462654884904623,
-0.05246061459183693,
-0.04165256395936012,
-0.05736096575856209,
0.015865987166762352,
0.10854842513799667
] |
AlekseyKulnevich/Pegasus-QuestionGeneration | [
"pytorch",
"pegasus",
"text2text-generation",
"transformers",
"autotrain_compatible"
] | text2text-generation | {
"architectures": [
"PegasusForConditionalGeneration"
],
"model_type": "pegasus",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 17 | null | ---
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: 234.19 +/- 25.25
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.037044841796159744,
-0.0027518724091351032,
-0.004666738212108612,
0.025898458436131477,
0.0457981638610363,
-0.021324627101421356,
-0.00565769337117672,
-0.0275723896920681,
-0.03329692408442497,
0.06650541722774506,
0.03237461671233177,
-0.023374974727630615,
0.022697225213050842,
0.0012247510021552444,
-0.034215714782476425,
-0.02638862282037735,
0.001306106336414814,
-0.014679177664220333,
-0.019646184518933296,
0.027231313288211823,
0.005250970367342234,
0.036521997302770615,
-0.02579180710017681,
0.0362241230905056,
-0.004111609421670437,
0.03826510161161423,
-0.023805497214198112,
0.05733189359307289,
0.01702858693897724,
-0.043046023696660995,
-0.005494511220604181,
-0.04095381498336792,
-0.02079164795577526,
-0.020906472578644753,
-0.013285867869853973,
0.01408291608095169,
0.016975488513708115,
0.02045310288667679,
0.008602308109402657,
0.03439527750015259,
-0.012448071502149105,
0.02351623959839344,
0.03005642630159855,
-0.002470224630087614,
0.021318800747394562,
-0.011358750984072685,
-0.049028582870960236,
0.00999824795871973,
0.05617300793528557,
-0.000407345884013921,
-0.048238325864076614,
-0.06233345717191696,
0.022974053397774696,
0.031010961160063744,
-0.0012234250316396356,
-0.013688183389604092,
-0.0427086241543293,
-0.004644656553864479,
0.061735156923532486,
-0.04364858195185661,
-0.04798891022801399,
-0.007630404084920883,
-0.04492981359362602,
0.009959729388356209,
0.025819649919867516,
-0.00001836348747019656,
0.018571821972727776,
-0.04679522290825844,
0.03587956354022026,
-0.02594807744026184,
0.0706600770354271,
-0.02144087478518486,
0.013883395120501518,
-0.05723873898386955,
-0.0008505618316121399,
0.00845150277018547,
0.03746742755174637,
0.034738168120384216,
-0.014350270852446556,
0.08750741928815842,
0.028592847287654877,
0.012756678275763988,
0.04451138526201248,
0.013474123552441597,
0.012919047847390175,
0.004847089760005474,
-0.03948711231350899,
0.006217182148247957,
0.020876022055745125,
0.028631027787923813,
-0.011861348524689674,
-0.04082037881016731,
-0.04040295630693436,
-0.02220558375120163,
-0.00026206544134765863,
0.028749046847224236,
0.04692547768354416,
0.0020408756099641323,
0.06557607650756836,
0.015611661598086357,
0.002460673451423645,
0.03118034638464451,
-0.03103211335837841,
0.0617436058819294,
-0.014597301371395588,
-0.019536344334483147,
-0.014258715324103832,
-0.022704027593135834,
-0.04089399427175522,
0.05413816496729851,
0.03261952102184296,
-0.04711038991808891,
-0.03715110570192337,
0.04607231169939041,
0.02835267037153244,
-0.02145901508629322,
0.030398327857255936,
-0.03280603140592575,
-0.04009315371513367,
-0.06408645212650299,
0.07104601711034775,
-0.0060866354033350945,
-0.007916124537587166,
-0.03973202034831047,
-0.028735458850860596,
-0.018086450174450874,
-0.052467893809080124,
-0.025717977434396744,
-0.025927981361746788,
0.019131086766719818,
0.010510904714465141,
0.032902706414461136,
0.014961645007133484,
-0.08581387996673584,
0.012963680550456047,
-0.011470169760286808,
-0.08730622380971909,
0.03001382015645504,
0.003773720236495137,
0.14428465068340302,
-0.060558293014764786,
-0.05760793760418892,
0.02748003415763378,
-0.012782535515725613,
-0.056670647114515305,
0.011032496578991413,
-0.004892962984740734,
-0.041155856102705,
-0.009301906451582909,
-0.027145003899931908,
0.08029115945100784,
-0.054186902940273285,
-0.022420817986130714,
0.05877997353672981,
0.003532776376232505,
0.022149719297885895,
-0.007457615341991186,
0.006747562903910875,
-0.0033302707597613335,
-0.0466037355363369,
-0.0048132240772247314,
0.0704035758972168,
-0.0176029484719038,
-0.03271457180380821,
-0.04178839921951294,
-0.006967172957956791,
0.01306888647377491,
0.07761779427528381,
-0.007029442116618156,
-0.022176844999194145,
-0.02284294366836548,
0.03204408288002014,
0.01684378646314144,
0.01803828962147236,
-0.003917782101780176,
0.038568053394556046,
0.05502421781420708,
0.01303400844335556,
-0.020386606454849243,
0.04020210728049278,
0.025609679520130157,
-0.018111951649188995,
-0.005375171545892954,
0.0023743631318211555,
0.005196479614824057,
0.0012062299065291882,
-0.006402012892067432,
0.029077906161546707,
0.003825514344498515,
-0.036670099943876266,
-0.025233924388885498,
0.018848087638616562,
0.012234845198690891,
0.007096446119248867,
-0.001937724300660193,
0.011664582416415215,
0.014926436357200146,
0.041708651930093765,
-0.005429625976830721,
-0.01489573810249567,
-0.034093599766492844,
-0.019001107662916183,
0.02828271873295307,
0.008262276649475098,
0.04113941267132759,
0.010673281736671925,
-0.013090902008116245,
0.09177079796791077,
-0.04393451288342476,
0.041907962411642075,
-0.07386618852615356,
-0.05040997639298439,
0.002870155032724142,
0.03308954834938049,
0.0652347058057785,
0.0449683703482151,
-0.0222394410520792,
-0.044216495007276535,
0.02801387384533882,
0.04414676874876022,
0.058891959488391876,
0.017184851691126823,
-0.04056713730096817,
-0.014556224457919598,
0.03198491781949997,
0.020390044897794724,
-0.024844152852892876,
-0.039301857352256775,
0.014181211590766907,
0.04821731150150299,
0.023097580298781395,
0.02472453936934471,
-0.03268444165587425,
0.02400958351790905,
-0.03798241913318634,
-0.06059933453798294,
0.039605408906936646,
0.02592184953391552,
0.014181431382894516,
0.016297312453389168,
-0.015130802989006042,
0.04098614305257797,
0.018976613879203796,
0.021157169714570045,
0.0062209791503846645,
-0.04936322942376137,
0.013645671308040619,
0.03091614879667759,
0.06344394385814667,
-0.032648663967847824,
0.05641768127679825,
-0.004911151248961687,
0.0003773021453525871,
0.041973721235990524,
-0.04736369103193283,
0.016394896432757378,
0.08726692944765091,
0.03092046268284321,
-0.014186897315084934,
0.018916768953204155,
0.005519466008991003,
0.045708466321229935,
0.03348063305020332,
-0.009650583378970623,
0.06897430866956711,
-0.01495964266359806,
0.046712543815374374,
0.06957212090492249,
0.03990545868873596,
-0.005276951473206282,
0.027178814634680748,
0.07559868693351746,
0.0035434269811958075,
0.010733310133218765,
0.04860376939177513,
-0.03549642488360405,
0.019570602104067802,
-0.03729097917675972,
0.01101709995418787,
-0.025487471371889114,
-0.006110082380473614,
0.05783230811357498,
0.010856726206839085,
-0.04249916970729828,
-0.018221842125058174,
0.00013904976367484778,
0.009745579212903976,
-0.006217673886567354,
-0.011082303710281849,
0.002086828462779522,
0.0058081732131540775,
-0.005271695088595152,
-0.007828540168702602,
-0.08441843092441559,
-0.08372247219085693,
-0.02772527188062668,
-0.014829613268375397,
-0.019411051645874977,
-0.07054048776626587,
-0.04352262243628502,
-0.0718798041343689,
-0.013562366366386414,
0.019412970170378685,
-0.021870553493499756,
0.002733472501859069,
-0.05710078403353691,
0.010655947029590607,
-0.0514792837202549,
-0.015132250264286995,
-0.054580844938755035,
-0.06528168171644211,
-0.03859274089336395,
-0.057008784264326096,
0.03288998827338219,
0.020998045802116394,
0.03518234193325043,
-0.003632941283285618,
-0.0036846662405878305,
-0.021456168964505196,
-0.038545552641153336,
0.05525010824203491,
0.04725046828389168,
-0.017283126711845398,
-0.043073512613773346,
0.012874994426965714,
-0.004177962429821491,
0.025784477591514587,
0.010776068083941936,
-0.03360545635223389,
0.08356153964996338,
0.06151385232806206,
-0.007757142651826143,
-0.007230306509882212,
-0.006254302337765694,
-0.045310359448194504,
-0.04258020967245102,
-0.04859887808561325,
-0.04803187772631645,
-0.016061978414654732,
-0.047038543969392776,
-0.028906404972076416,
-0.009734723716974258,
-0.011753803119063377,
-0.016680778935551643,
-0.03399026393890381,
-0.0018506379565224051,
0.03765316307544708,
0.0833277478814125,
0.007126143202185631,
0.03826989233493805,
-0.057417407631874084,
-0.020100219175219536,
0.04831472784280777,
0.021837390959262848,
0.012543241493403912,
-0.07057678699493408,
-0.024301618337631226,
0.008450858294963837,
0.008879984728991985,
0.0021418954711407423,
-0.00045272556599229574,
0.061014287173748016,
0.033716294914484024,
-0.006500294432044029,
0.030556468293070793,
-0.02849467098712921,
-0.019937623292207718,
-0.03768051043152809,
0.004104043357074261,
-0.01029304601252079,
-0.021358145400881767,
0.017040343955159187,
0.00017836767074186355,
0.010628968477249146,
-0.05446873977780342,
-0.052352458238601685,
-0.035591624677181244,
-0.0042597586289048195,
0.05423315241932869,
0.002055639401078224,
-0.050139378756284714,
-0.03308109566569328,
-0.06872072070837021,
0.010700255632400513,
0.039505429565906525,
-0.013081603683531284,
0.007946078665554523,
0.02796274423599243,
0.0339583158493042,
-0.0017546479357406497,
0.03778586536645889,
0.0393252968788147,
0.06011633202433586,
0.016159143298864365,
-0.04562469944357872,
0.001031452906318009,
-0.025957774370908737,
0.03941182419657707,
0.008791918866336346,
-0.014901064336299896,
-0.032757580280303955,
-0.10005266964435577,
-0.027826393023133278,
0.023340610787272453,
-0.018092483282089233,
0.0059460122138261795,
0.030359288677573204,
-0.016534853726625443,
-0.00812764186412096,
0.00167976098600775,
-0.0037361145950853825,
0.05018836632370949,
-0.03990640863776207,
0.05761769413948059,
-0.006137094460427761,
0.02374139055609703,
-0.043134599924087524,
0.02696109749376774,
-0.015711739659309387,
-0.011837453581392765,
-0.0041702985763549805,
0.030331557616591454,
0.045295219868421555,
0.06742943823337555,
0.05239148065447807,
0.01798798330128193,
-0.06306040287017822,
0.032483868300914764,
0.0599905364215374,
-0.03872986510396004,
-0.07259608805179596,
-0.02856501005589962,
0.021812820807099342,
-0.010260484181344509,
0.014720492996275425,
-0.00819112453609705,
0.017851917073130608,
0.058299750089645386,
-0.018403027206659317,
-0.019635630771517754,
-0.0007749416981823742,
-0.008817263878881931,
-0.0325467586517334,
-0.02201896160840988,
-0.0034872200340032578,
0.014912325888872147,
-0.016239551827311516,
0.005178756546229124,
0.04378395527601242,
0.024389298632740974,
0.04607285186648369,
0.064340740442276,
-0.007587956730276346,
-0.04589182138442993,
0.05478304997086525,
0.005781978834420443,
-0.024037856608629227,
-0.08849812299013138,
-0.028423139825463295,
0.02364734560251236,
0.03505471348762512,
0.010363798588514328,
-0.06376740336418152,
0.013959376141428947,
0.02656654082238674,
-0.07061538100242615,
0.05378739535808563,
-0.008132291957736015,
0.0160016268491745,
0.040289755910634995,
0.016021208837628365,
0.035773906856775284,
-0.03705186769366264,
-0.028971105813980103,
0.006743809673935175,
0.03886181488633156,
-0.012613686732947826,
-0.026790142059326172,
-0.021712874993681908,
0.03471150994300842,
0.041853539645671844,
0.06088421493768692,
0.03757772594690323,
-0.048728689551353455,
-0.07004130631685257,
-0.041517626494169235,
0.022560162469744682,
-0.03838523104786873,
-0.0018383768619969487,
0.04950200393795967,
0.045984696596860886,
-0.05837390199303627,
-0.048823051154613495,
-0.031083060428500175,
-0.011935532093048096,
0.03139711171388626,
0.011067272163927555,
-0.019964028149843216,
-0.011062882840633392,
0.04336824268102646,
-0.006532087456434965,
-0.029633574187755585,
-0.06367837637662888,
0.011692945845425129,
0.016458377242088318,
0.006455807480961084,
0.02809959650039673,
0.03256964311003685,
0.057682786136865616,
0.06440959125757217,
0.03896541893482208,
0.01054110936820507,
-0.04317479953169823,
0.031083298847079277,
-0.039731867611408234,
-0.027300314977765083,
0.0037196658086031675,
-0.07191099226474762,
0.003123045898973942,
-0.018306968733668327,
-0.023033278062939644,
-0.04064622521400452,
-0.023653671145439148,
0.02109690010547638,
0.006614019628614187,
0.0021068339701741934,
0.01315370574593544,
0.05278492346405983,
0.0059475405141711235,
-0.04880790412425995,
-0.031899552792310715,
-0.024106459692120552,
-0.06216595321893692,
-0.06250358372926712,
0.036208510398864746,
-0.007477555889636278,
0.011178958229720592,
0.018703637644648552,
0.05115601047873497,
0.03084791824221611,
0.026113109663128853,
-0.027753397822380066,
0.021868713200092316,
0.003800345351919532,
-0.042465414851903915,
0.011392924934625626,
0.015529897063970566,
0.01099319290369749,
0.05869455635547638,
-0.014096967875957489,
0.026288041844964027,
-0.0016212592599913478,
-0.026985913515090942,
-0.021337926387786865,
0.009841438382863998,
0.030728016048669815,
-0.04399639368057251,
-0.025091031566262245,
0.009612351655960083,
-0.03296603634953499,
0.0259427260607481,
-0.018004002049565315,
-0.02136288210749626,
-0.017100060358643532,
0.006162312347441912,
0.03302166238427162,
-0.011606809683144093,
-0.05577026307582855,
0.027647007256746292,
-0.04846831411123276,
0.04414575546979904,
-0.07124202698469162,
0.024376221001148224,
-0.03837858512997627,
0.03574705496430397,
-0.018066398799419403,
-0.008233386091887951,
-0.03668658807873726,
0.045264046639204025,
0.016126131638884544,
-0.027193354442715645,
-0.03647390007972717,
0.035311371088027954,
-0.010589727200567722,
0.025703564286231995,
-0.02067597210407257,
0.01675020158290863,
-0.007147690746933222,
0.03641728311777115,
-0.012817435897886753,
0.03578643873333931,
-0.012356366030871868,
0.04594110697507858,
-0.03912956640124321,
-0.0001848374813562259,
-0.033351484686136246,
-0.03542980179190636,
0.02021786943078041,
0.04155098274350166,
0.026295145973563194,
0.020279087126255035,
-0.014236504212021828,
0.01813262142241001,
0.013774845749139786,
-0.039967261254787445,
-0.03379298746585846,
0.0077591584995388985,
0.014746909029781818,
0.02132658287882805,
0.05287626013159752,
0.03225032612681389,
-0.07206272333860397,
-0.03575217351317406,
0.061133768409490585,
0.00469603156670928,
0.024256937205791473,
-0.0012642963556572795,
0.036075133830308914,
0.034449201077222824,
0.05051088705658913,
-0.04658659175038338,
0.020055709406733513,
0.002771219238638878,
-0.007924031466245651,
0.02544247917830944,
-0.029251743108034134,
0.024299073964357376,
0.020864417776465416,
-0.045547984540462494,
-0.0167138259857893,
0.07243160903453827,
0.03491074591875076,
-0.008240585215389729,
-0.026523303240537643,
-0.03934997692704201,
0.03775429725646973,
0.0006287094438448548,
-0.04474785923957825,
0.018475478515028954,
0.021426374092698097,
-0.01693073846399784,
0.06319554895162582,
-0.03580842167139053,
0.008735425770282745,
0.039397306740283966,
0.05666147172451019,
-0.02304576151072979,
0.065749391913414,
-0.013512806035578251,
0.06117885932326317,
0.03697216138243675,
-0.07056386023759842,
-0.014849159866571426,
-0.05391440913081169,
0.08724790066480637,
-0.07123887538909912,
0.07847802340984344,
0.0418371744453907,
0.008536803536117077,
0.030653752386569977,
-0.016224225983023643,
-0.046546317636966705,
-0.012801294215023518,
-0.049153540283441544,
0.07374627888202667,
0.0066056689247488976,
-0.04664864391088486,
0.06753775477409363,
0.02225557714700699,
-0.058458101004362106,
0.05376724153757095,
0.025065364316105843,
0.01921124756336212,
0.001428188756108284,
0.048269569873809814,
-0.05068466067314148,
0.01655101403594017,
-0.06090307608246803,
0.05420777574181557,
-0.051272373646497726,
-0.0037606118712574244,
0.0257768202573061,
-0.05345569923520088,
-0.022548438981175423,
0.04865717142820358,
-0.013917014934122562,
-0.015188629738986492,
0.035726357251405716,
-0.05719822272658348,
-0.0678848922252655,
0.012745300307869911,
-0.007376461289823055,
0.02291613630950451,
0.011924069374799728,
-0.03441479802131653,
0.03512391075491905,
0.03863358497619629,
0.013920549303293228,
-0.03504728898406029,
0.009449386969208717,
0.02339976467192173,
-0.03787713497877121,
-0.02702699415385723,
0.05416605621576309,
0.013365723192691803,
-0.03578759357333183,
0.00326406117528677,
0.004251021891832352,
0.004870276898145676,
0.02474924363195896,
0.013986380770802498,
0.016929086297750473,
-0.05581849440932274,
-0.03356032073497772,
0.029838986694812775,
-0.018617287278175354,
0.0262584388256073,
-0.03277071937918663,
0.008566298522055149,
0.020757289603352547,
0.018242746591567993,
0.002464307239279151,
-0.03641081601381302,
0.014339306391775608,
0.03380591422319412,
-0.055743586272001266,
0.00213493499904871,
0.004759142175316811,
-0.052800845354795456,
-0.027290843427181244,
-0.031920917332172394,
-0.019451363012194633,
0.008156566880643368,
-0.030101077631115913,
-0.014998403377830982,
0.05387008935213089,
0.014867027290165424,
-0.055133357644081116,
-0.10163203626871109,
-0.005270129535347223,
-0.04041286185383797,
0.032945599406957626,
0.026885684579610825,
-0.04902714863419533,
-0.011246336624026299,
-0.03071456216275692,
-0.05448154732584953,
0.06383851915597916,
0.040579039603471756,
-0.02281828783452511,
0.0625683143734932,
0.05064170062541962,
-0.01821489818394184,
0.010421300306916237,
0.003872216446325183,
-0.055582690984010696,
0.003745876718312502,
0.025560544803738594,
0.022421589121222496,
0.02558666467666626,
0.0070786247961223125,
-0.0222680252045393,
-0.02231055684387684,
-0.027181049808859825,
-0.046850938349962234,
-0.02465384639799595,
0.02752164751291275,
0.07086705416440964
] |
aisoftware/Loquela | [
"onnx"
] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | # Stable Diffusion web UI
A browser interface based on Gradio library for Stable Diffusion.

## Features
[Detailed feature showcase with images](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features):
- Original txt2img and img2img modes
- One click install and run script (but you still must install python and git)
- Outpainting
- Inpainting
- Color Sketch
- Prompt Matrix
- Stable Diffusion Upscale
- Attention, specify parts of text that the model should pay more attention to
- a man in a `((tuxedo))` - will pay more attention to tuxedo
- a man in a `(tuxedo:1.21)` - alternative syntax
- select text and press `Ctrl+Up` or `Ctrl+Down` to automatically adjust attention to selected text (code contributed by anonymous user)
- Loopback, run img2img processing multiple times
- X/Y/Z plot, a way to draw a 3 dimensional plot of images with different parameters
- Textual Inversion
- have as many embeddings as you want and use any names you like for them
- use multiple embeddings with different numbers of vectors per token
- works with half precision floating point numbers
- train embeddings on 8GB (also reports of 6GB working)
- Extras tab with:
- GFPGAN, neural network that fixes faces
- CodeFormer, face restoration tool as an alternative to GFPGAN
- RealESRGAN, neural network upscaler
- ESRGAN, neural network upscaler with a lot of third party models
- SwinIR and Swin2SR ([see here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/pull/2092)), neural network upscalers
- LDSR, Latent diffusion super resolution upscaling
- Resizing aspect ratio options
- Sampling method selection
- Adjust sampler eta values (noise multiplier)
- More advanced noise setting options
- Interrupt processing at any time
- 4GB video card support (also reports of 2GB working)
- Correct seeds for batches
- Live prompt token length validation
- Generation parameters
- parameters you used to generate images are saved with that image
- in PNG chunks for PNG, in EXIF for JPEG
- can drag the image to PNG info tab to restore generation parameters and automatically copy them into UI
- can be disabled in settings
- drag and drop an image/text-parameters to promptbox
- Read Generation Parameters Button, loads parameters in promptbox to UI
- Settings page
- Running arbitrary python code from UI (must run with `--allow-code` to enable)
- Mouseover hints for most UI elements
- Possible to change defaults/mix/max/step values for UI elements via text config
- Tiling support, a checkbox to create images that can be tiled like textures
- Progress bar and live image generation preview
- Can use a separate neural network to produce previews with almost none VRAM or compute requirement
- Negative prompt, an extra text field that allows you to list what you don't want to see in generated image
- Styles, a way to save part of prompt and easily apply them via dropdown later
- Variations, a way to generate same image but with tiny differences
- Seed resizing, a way to generate same image but at slightly different resolution
- CLIP interrogator, a button that tries to guess prompt from an image
- Prompt Editing, a way to change prompt mid-generation, say to start making a watermelon and switch to anime girl midway
- Batch Processing, process a group of files using img2img
- Img2img Alternative, reverse Euler method of cross attention control
- Highres Fix, a convenience option to produce high resolution pictures in one click without usual distortions
- Reloading checkpoints on the fly
- Checkpoint Merger, a tab that allows you to merge up to 3 checkpoints into one
- [Custom scripts](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Custom-Scripts) with many extensions from community
- [Composable-Diffusion](https://energy-based-model.github.io/Compositional-Visual-Generation-with-Composable-Diffusion-Models/), a way to use multiple prompts at once
- separate prompts using uppercase `AND`
- also supports weights for prompts: `a cat :1.2 AND a dog AND a penguin :2.2`
- No token limit for prompts (original stable diffusion lets you use up to 75 tokens)
- DeepDanbooru integration, creates danbooru style tags for anime prompts
- [xformers](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Xformers), major speed increase for select cards: (add `--xformers` to commandline args)
- via extension: [History tab](https://github.com/yfszzx/stable-diffusion-webui-images-browser): view, direct and delete images conveniently within the UI
- Generate forever option
- Training tab
- hypernetworks and embeddings options
- Preprocessing images: cropping, mirroring, autotagging using BLIP or deepdanbooru (for anime)
- Clip skip
- Hypernetworks
- Loras (same as Hypernetworks but more pretty)
- A sparate UI where you can choose, with preview, which embeddings, hypernetworks or Loras to add to your prompt
- Can select to load a different VAE from settings screen
- Estimated completion time in progress bar
- API
- Support for dedicated [inpainting model](https://github.com/runwayml/stable-diffusion#inpainting-with-stable-diffusion) by RunwayML
- via extension: [Aesthetic Gradients](https://github.com/AUTOMATIC1111/stable-diffusion-webui-aesthetic-gradients), a way to generate images with a specific aesthetic by using clip images embeds (implementation of [https://github.com/vicgalle/stable-diffusion-aesthetic-gradients](https://github.com/vicgalle/stable-diffusion-aesthetic-gradients))
- [Stable Diffusion 2.0](https://github.com/Stability-AI/stablediffusion) support - see [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#stable-diffusion-20) for instructions
- [Alt-Diffusion](https://arxiv.org/abs/2211.06679) support - see [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Features#alt-diffusion) for instructions
- Now without any bad letters!
- Load checkpoints in safetensors format
- Eased resolution restriction: generated image's domension must be a multiple of 8 rather than 64
- Now with a license!
- Reorder elements in the UI from settings screen
## Installation and Running
Make sure the required [dependencies](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Dependencies) are met and follow the instructions available for both [NVidia](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-NVidia-GPUs) (recommended) and [AMD](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Install-and-Run-on-AMD-GPUs) GPUs.
Alternatively, use online services (like Google Colab):
- [List of Online Services](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Online-Services)
### Automatic Installation on Windows
1. Install [Python 3.10.6](https://www.python.org/downloads/release/python-3106/) (Newer version of Python does not support torch), checking "Add Python to PATH".
2. Install [git](https://git-scm.com/download/win).
3. Download the stable-diffusion-webui repository, for example by running `git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui.git`.
4. Run `webui-user.bat` from Windows Explorer as normal, non-administrator, user.
### Automatic Installation on Linux
1. Install the dependencies:
```bash
# Debian-based:
sudo apt install wget git python3 python3-venv
# Red Hat-based:
sudo dnf install wget git python3
# Arch-based:
sudo pacman -S wget git python3
```
2. Navigate to the directory you would like the webui to be installed and execute the following command:
```bash
bash <(wget -qO- https://raw.githubusercontent.com/AUTOMATIC1111/stable-diffusion-webui/master/webui.sh)
```
3. Run `webui.sh`.
4. Check `webui-user.sh` for options.
### Installation on Apple Silicon
Find the instructions [here](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Installation-on-Apple-Silicon).
## Contributing
Here's how to add code to this repo: [Contributing](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Contributing)
## Documentation
The documentation was moved from this README over to the project's [wiki](https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki).
## Credits
Licenses for borrowed code can be found in `Settings -> Licenses` screen, and also in `html/licenses.html` file.
- Stable Diffusion - https://github.com/CompVis/stable-diffusion, https://github.com/CompVis/taming-transformers
- k-diffusion - https://github.com/crowsonkb/k-diffusion.git
- GFPGAN - https://github.com/TencentARC/GFPGAN.git
- CodeFormer - https://github.com/sczhou/CodeFormer
- ESRGAN - https://github.com/xinntao/ESRGAN
- SwinIR - https://github.com/JingyunLiang/SwinIR
- Swin2SR - https://github.com/mv-lab/swin2sr
- LDSR - https://github.com/Hafiidz/latent-diffusion
- MiDaS - https://github.com/isl-org/MiDaS
- Ideas for optimizations - https://github.com/basujindal/stable-diffusion
- Cross Attention layer optimization - Doggettx - https://github.com/Doggettx/stable-diffusion, original idea for prompt editing.
- Cross Attention layer optimization - InvokeAI, lstein - https://github.com/invoke-ai/InvokeAI (originally http://github.com/lstein/stable-diffusion)
- Sub-quadratic Cross Attention layer optimization - Alex Birch (https://github.com/Birch-san/diffusers/pull/1), Amin Rezaei (https://github.com/AminRezaei0x443/memory-efficient-attention)
- Textual Inversion - Rinon Gal - https://github.com/rinongal/textual_inversion (we're not using his code, but we are using his ideas).
- Idea for SD upscale - https://github.com/jquesnelle/txt2imghd
- Noise generation for outpainting mk2 - https://github.com/parlance-zz/g-diffuser-bot
- CLIP interrogator idea and borrowing some code - https://github.com/pharmapsychotic/clip-interrogator
- Idea for Composable Diffusion - https://github.com/energy-based-model/Compositional-Visual-Generation-with-Composable-Diffusion-Models-PyTorch
- xformers - https://github.com/facebookresearch/xformers
- DeepDanbooru - interrogator for anime diffusers https://github.com/KichangKim/DeepDanbooru
- Sampling in float32 precision from a float16 UNet - marunine for the idea, Birch-san for the example Diffusers implementation (https://github.com/Birch-san/diffusers-play/tree/92feee6)
- Instruct pix2pix - Tim Brooks (star), Aleksander Holynski (star), Alexei A. Efros (no star) - https://github.com/timothybrooks/instruct-pix2pix
- Security advice - RyotaK
- UniPC sampler - Wenliang Zhao - https://github.com/wl-zhao/UniPC
- Initial Gradio script - posted on 4chan by an Anonymous user. Thank you Anonymous user.
- (You)
| [
0.00047675715177319944,
-0.02130356803536415,
-0.006602655630558729,
0.046751778572797775,
0.04660175368189812,
0.006533341016620398,
0.008122005499899387,
-0.012774919159710407,
-0.016317181289196014,
0.056060489267110825,
0.02537854015827179,
-0.009427158161997795,
0.02050628513097763,
0.041750017553567886,
-0.03153777867555618,
-0.026718156412243843,
-0.032857418060302734,
0.019412508234381676,
-0.0044515375047922134,
0.009465083479881287,
0.05114955082535744,
-0.0042729685083031654,
-0.011033893562853336,
0.03162262588739395,
0.009726833552122116,
0.00820954516530037,
-0.0151755316182971,
-0.005716897081583738,
0.03392127901315689,
-0.05390425771474838,
-0.002677666023373604,
-0.028055420145392418,
-0.04792402684688568,
-0.009708059951663017,
-0.034685421735048294,
0.0014129322953522205,
0.016252413392066956,
0.016253670677542686,
0.0005982264410704374,
0.04365512356162071,
-0.022801371291279793,
0.010543396696448326,
0.0019219721434637904,
-0.022491948679089546,
0.07205451279878616,
-0.009177719242870808,
-0.04309593141078949,
-0.026193004101514816,
0.012566608376801014,
-0.027937697246670723,
-0.07987084984779358,
-0.09225443750619888,
-0.027175160124897957,
0.009549927897751331,
-0.003381814109161496,
-0.04177147150039673,
-0.06233298033475876,
0.009832189418375492,
0.03374706953763962,
-0.04416144639253616,
-0.017012635245919228,
0.0022860246244817972,
-0.05142873153090477,
0.01597321219742298,
0.038228802382946014,
-0.01320376992225647,
0.0069557554088532925,
-0.03342682123184204,
0.039266858249902725,
-0.011316327378153801,
0.02746269665658474,
-0.05778367817401886,
0.025915462523698807,
-0.060754500329494476,
-0.021153438836336136,
-0.011600138619542122,
0.0447462759912014,
0.04274774342775345,
-0.03307940065860748,
0.05997820571064949,
0.022101039066910744,
0.009299218654632568,
0.022673137485980988,
-0.01277253683656454,
-0.04132824018597603,
0.05575823038816452,
-0.025601118803024292,
0.01588083989918232,
0.010020177811384201,
0.026151781901717186,
-0.039679087698459625,
-0.04465539753437042,
-0.03158007934689522,
-0.05066986382007599,
0.01645280234515667,
0.05035675689578056,
0.023749442771077156,
-0.016093971207737923,
0.03345286101102829,
0.034615445882081985,
0.03990379348397255,
0.03216053918004036,
-0.001956240041181445,
0.06229680776596069,
-0.008446008898317814,
-0.0013982981909066439,
-0.03983829915523529,
-0.03567322716116905,
-0.08301325887441635,
0.014198580756783485,
0.04049352556467056,
-0.005911116022616625,
-0.02750949189066887,
0.02781926468014717,
0.0013946430990472436,
-0.027638742700219154,
0.04562291502952576,
-0.013217220082879066,
-0.01712612807750702,
-0.06280513852834702,
0.05672527477145195,
0.037653807550668716,
0.013123581185936928,
0.019313577562570572,
-0.053069718182086945,
0.023880379274487495,
-0.021694045513868332,
-0.028065968304872513,
-0.041130416095256805,
0.03476487845182419,
0.03501052409410477,
0.03096659854054451,
0.025600921362638474,
-0.06615832448005676,
0.027830639854073524,
0.012784507125616074,
-0.06717297434806824,
0.029591308906674385,
0.029969748109579086,
0.10102732479572296,
-0.04810873419046402,
-0.04727929085493088,
0.022708546370267868,
0.04471990466117859,
-0.011009068228304386,
0.002858941676095128,
0.0157906636595726,
-0.043315984308719635,
-0.006727875210344791,
-0.005681938957422972,
0.05124044045805931,
-0.047191087156534195,
-0.010557770729064941,
0.035812120884656906,
0.014234859496355057,
0.04415110871195793,
-0.05555383488535881,
-0.01918940618634224,
-0.010509232059121132,
0.006033866200596094,
-0.024420853704214096,
0.029739558696746826,
-0.004720473662018776,
-0.06671226024627686,
-0.037986818701028824,
-0.011358382180333138,
-0.006049429532140493,
0.09006787836551666,
-0.007611067034304142,
-0.031550582498311996,
-0.030695883557200432,
0.04989486187696457,
0.02765863761305809,
0.04472529888153076,
0.0067957136780023575,
0.037891048938035965,
0.053547922521829605,
0.023290326818823814,
-0.012406201101839542,
0.05753778666257858,
0.03427007794380188,
-0.002147883176803589,
-0.023066341876983643,
-0.005063882563263178,
0.00473619531840086,
-0.04439428448677063,
-0.00793199148029089,
0.03047284670174122,
0.0008890666649676859,
-0.039504729211330414,
-0.04500596597790718,
0.07887002825737,
-0.000610227813012898,
-0.034766294062137604,
0.008830335922539234,
-0.02196308597922325,
-0.008544113487005234,
0.04245935007929802,
-0.019349774345755577,
-0.03410080820322037,
-0.03012239933013916,
-0.01841779239475727,
0.00716581242159009,
0.003427183022722602,
0.03557179868221283,
0.050704557448625565,
0.01752525009214878,
0.07087437808513641,
-0.042357929050922394,
0.018113935366272926,
-0.05857051908969879,
-0.058396343141794205,
0.007953178137540817,
0.03956497460603714,
0.04637416824698448,
0.05967048183083534,
0.000579877698328346,
-0.02453191950917244,
0.025970574468374252,
0.042321257293224335,
0.03237977996468544,
0.03178665414452553,
-0.01462667714804411,
-0.011679436080157757,
0.05924022197723389,
0.051146768033504486,
-0.052423592656850815,
-0.04590931162238121,
0.037508901208639145,
0.007135643158107996,
-0.03555929660797119,
0.011321385391056538,
-0.040925074368715286,
0.0699426531791687,
-0.05320807918906212,
-0.056975580751895905,
0.04573794826865196,
0.04506351798772812,
-0.0275250356644392,
0.030088849365711212,
0.021424606442451477,
0.009750314056873322,
0.03576432541012764,
0.007037972565740347,
0.013476011343300343,
-0.03476078808307648,
0.038720253854990005,
0.033382587134838104,
0.042696088552474976,
-0.052110202610492706,
0.03266388177871704,
0.0040899901650846004,
0.008018831722438335,
0.034546829760074615,
-0.03987741842865944,
0.010687259957194328,
0.05246194824576378,
0.03408089280128479,
-0.01933557167649269,
0.03223821520805359,
0.040947359055280685,
0.025059672072529793,
0.056588008999824524,
0.008436108939349651,
0.07121431827545166,
-0.0037058466114103794,
0.033796291798353195,
0.1004454493522644,
0.004012403544038534,
-0.003915262874215841,
0.060166001319885254,
0.07957814633846283,
-0.013957024551928043,
-0.0038192765787243843,
0.07437215745449066,
-0.07097692042589188,
0.01652313768863678,
0.000797875109128654,
0.008256928995251656,
-0.00391237111762166,
-0.02172577753663063,
0.05103320628404617,
0.02439814805984497,
-0.046179573982954025,
-0.011462554335594177,
0.018500877544283867,
0.0031221904791891575,
0.039419643580913544,
-0.03874997794628143,
-0.00032738628215156496,
0.010117967613041401,
-0.02322389744222164,
-0.01011408306658268,
-0.05139641836285591,
-0.05489322543144226,
-0.025345485657453537,
-0.02481554076075554,
-0.005878168623894453,
-0.07404575496912003,
-0.0323832631111145,
-0.08541066199541092,
0.004309477750211954,
0.02926001138985157,
0.010148369707167149,
-0.012973902747035027,
-0.021983519196510315,
0.029287252575159073,
-0.015680959448218346,
-0.059490129351615906,
-0.06627584993839264,
-0.027499081566929817,
-0.009874231182038784,
-0.0602954737842083,
0.03318476304411888,
0.015222416259348392,
0.03231649473309517,
0.0051636542193591595,
0.012555578723549843,
-0.01177026703953743,
-0.041353948414325714,
0.05617368221282959,
0.04502616822719574,
-0.03649768605828285,
-0.044479306787252426,
-0.0004695022071246058,
-0.005321044009178877,
0.020836414769291878,
-0.016450224444270134,
-0.025006327778100967,
0.0914611965417862,
0.06695231050252914,
0.01149671245366335,
-0.002989738481119275,
0.018654976040124893,
-0.044765032827854156,
-0.056785859167575836,
-0.02354065142571926,
-0.015757182613015175,
-0.03203665465116501,
-0.043673720210790634,
-0.055594805628061295,
-0.035271722823381424,
-0.05325104296207428,
-0.015390388667583466,
-0.015054915100336075,
-0.0005236713332124054,
0.01684494875371456,
0.0497937873005867,
0.04993491619825363,
0.05183767154812813,
-0.05031124874949455,
-0.028523806482553482,
0.0531235970556736,
0.012395083904266357,
-0.016049018129706383,
-0.06680068373680115,
-0.018482748419046402,
0.016892069950699806,
0.016399795189499855,
-0.031817853450775146,
0.007417924236506224,
0.09505795687437057,
0.02237875573337078,
-0.03775961697101593,
0.006441196892410517,
-0.02513737417757511,
0.006627656985074282,
0.0016623260453343391,
-0.006751965265721083,
-0.013302642852067947,
-0.031478311866521835,
-0.007455017883330584,
0.0076789697632193565,
0.029658691957592964,
-0.08735737949609756,
-0.09232785552740097,
-0.03602620214223862,
0.027816809713840485,
0.03413322940468788,
0.008064533583819866,
-0.05226525291800499,
-0.0350673645734787,
-0.06761272251605988,
-0.016233235597610474,
0.044423721730709076,
0.004411256406456232,
0.013597168028354645,
0.034261554479599,
0.0000030709234124515206,
0.0033736417535692453,
0.05767577514052391,
0.04267488792538643,
0.031814493238925934,
-0.0055699036456644535,
-0.03067599982023239,
0.005627364385873079,
-0.029028572142124176,
0.03779732063412666,
0.01927032880485058,
0.007015499286353588,
-0.03392313793301582,
-0.08426640182733536,
-0.022875366732478142,
0.010687651112675667,
0.018222179263830185,
-0.011977465823292732,
0.03080156445503235,
-0.020261405035853386,
-0.035415127873420715,
0.005420300643891096,
0.01461368054151535,
0.04433223605155945,
-0.04322313889861107,
0.07212673127651215,
-0.01557374931871891,
0.01612180657684803,
-0.0529511421918869,
0.014315299689769745,
-0.028263496235013008,
-0.033928606659173965,
0.008609282784163952,
0.053409744054079056,
0.010422519408166409,
0.047777436673641205,
0.028605589643120766,
0.008530993945896626,
-0.03751124069094658,
0.03728049248456955,
0.026141474023461342,
-0.02107030525803566,
-0.05882296711206436,
-0.0064799296669662,
-0.013954512774944305,
-0.008259130641818047,
-0.013978986069560051,
0.007505941670387983,
0.016083896160125732,
0.021923519670963287,
-0.03205510601401329,
0.018874602392315865,
-0.020719973370432854,
-0.03198700025677681,
-0.0056389011442661285,
-0.05352676659822464,
0.002367030829191208,
-0.015376277267932892,
-0.012476986274123192,
0.005649307742714882,
0.02703057788312435,
0.03178311511874199,
0.06418560445308685,
0.04544597119092941,
-0.008944662287831306,
-0.061232082545757294,
0.05507120490074158,
0.011202896945178509,
-0.019923066720366478,
-0.08001767098903656,
-0.009876163676381111,
0.019083455204963684,
0.03185531869530678,
0.003336483146995306,
-0.07987165451049805,
0.022227764129638672,
0.05482829362154007,
-0.07398907095193863,
0.06138622760772705,
0.02043696865439415,
0.04032520204782486,
0.05199335515499115,
0.01035193633288145,
0.042890675365924835,
-0.013813035562634468,
-0.0022870427928864956,
-0.0225176140666008,
0.055703304708004,
-0.013701672665774822,
-0.009048807434737682,
-0.04948914423584938,
0.038067638874053955,
0.023380698636174202,
0.013723152689635754,
0.05612025037407875,
-0.04718686640262604,
-0.08208301663398743,
-0.022380489856004715,
0.04188400134444237,
-0.041545599699020386,
0.03255929797887802,
0.03289855271577835,
0.022256849333643913,
-0.048402201384305954,
-0.046210091561079025,
-0.011090931482613087,
0.007384559139609337,
0.026621753349900246,
-0.005890371277928352,
-0.01841692067682743,
-0.02931399643421173,
0.04455510899424553,
-0.00969009380787611,
-0.021954184398055077,
-0.07239805161952972,
0.01831052452325821,
-0.018706077709794044,
-0.010608107782900333,
0.03782982379198074,
0.018032250925898552,
0.059183698147535324,
0.07051210105419159,
-0.01418577041476965,
0.017767898738384247,
-0.04742389917373657,
0.03954525291919708,
-0.028287425637245178,
-0.006787362042814493,
-0.012351378798484802,
-0.02653438039124012,
-0.053474247455596924,
-0.005906278733164072,
-0.06489907205104828,
-0.04437188431620598,
-0.020066766068339348,
0.04337901249527931,
0.006691280286759138,
0.0028946262318640947,
0.006391911767423153,
0.029586272314190865,
0.005039556417614222,
-0.01041697058826685,
-0.035915859043598175,
-0.03156841918826103,
-0.07553986459970474,
-0.04083104804158211,
0.02743205986917019,
-0.02120853401720524,
0.029124271124601364,
-0.006610890384763479,
0.017388705164194107,
-0.0017731264233589172,
0.04800626263022423,
-0.010294418781995773,
0.001827190280891955,
0.031858887523412704,
-0.05868274345993996,
-0.019127706065773964,
0.015574093908071518,
0.014648247510194778,
0.03163857012987137,
-0.03345579281449318,
0.03312646225094795,
0.007190258242189884,
-0.03146893531084061,
-0.03247342258691788,
0.019429421052336693,
0.029276743531227112,
-0.0450744591653347,
-0.03096294216811657,
-0.0047400277107954025,
-0.024967508390545845,
0.04074962064623833,
-0.0013340369332581758,
-0.026887381449341774,
-0.0022244758438318968,
0.030547484755516052,
0.03738448768854141,
-0.015642821788787842,
-0.03909659385681152,
0.027080614119768143,
-0.011050600558519363,
0.04652068018913269,
-0.07004711776971817,
0.04029166325926781,
-0.013529977761209011,
0.0033523342572152615,
0.005423830822110176,
0.0283289086073637,
-0.011517089791595936,
0.0643836110830307,
-0.013916916213929653,
-0.010455523617565632,
-0.021292326971888542,
0.0033288265112787485,
-0.048567235469818115,
0.04605226591229439,
-0.028808070346713066,
0.023108433932065964,
-0.012689035385847092,
0.06085057929158211,
-0.0372970886528492,
-0.011468794196844101,
-0.02106182649731636,
-0.006826078984886408,
-0.023390907794237137,
-0.014724793843925,
-0.03202197700738907,
-0.008422506041824818,
0.02787371724843979,
0.053282480686903,
0.01494544092565775,
0.02188885398209095,
-0.04314444959163666,
0.0046221474185585976,
0.009638291783630848,
-0.059499986469745636,
-0.02805923856794834,
0.002633125986903906,
-0.0076932902447879314,
-0.0005119708366692066,
0.05520486831665039,
0.0514039546251297,
-0.05402884632349014,
-0.023084357380867004,
0.05960620194673538,
0.03194113075733185,
0.02434443309903145,
-0.022329362109303474,
0.03498497232794762,
0.04250842705368996,
0.05140453204512596,
-0.05356987193226814,
0.008496737107634544,
-0.012365157715976238,
-0.0067131356336176395,
0.045447323471307755,
-0.014721508137881756,
0.018068071454763412,
0.000033063442970160395,
-0.027747655287384987,
-0.017573591321706772,
0.0762457624077797,
0.047325726598501205,
0.026000937446951866,
0.014097447507083416,
-0.05692728981375694,
0.04831739887595177,
-0.008045955561101437,
-0.033072374761104584,
0.0471508614718914,
0.05508410558104515,
-0.013113527558743954,
0.06098329275846481,
-0.003600944532081485,
0.01397103350609541,
0.049695856869220734,
0.04017855226993561,
-0.020394861698150635,
0.06319133937358856,
-0.05107545480132103,
0.029926883056759834,
0.029396262019872665,
-0.025557823479175568,
-0.02539835125207901,
-0.03206988051533699,
0.04682515561580658,
-0.06796949356794357,
0.05053900554776192,
0.02595646306872368,
-0.0023400182835757732,
0.04952259734272957,
-0.03482722118496895,
-0.031094150617718697,
0.04900211840867996,
-0.034673504531383514,
0.06340644508600235,
-0.014338505454361439,
-0.034378934651613235,
0.07751984149217606,
0.010444805957376957,
-0.082938551902771,
0.048527222126722336,
0.04345912113785744,
-0.020040519535541534,
0.041981443762779236,
0.0848802775144577,
-0.04842172935605049,
-0.0032742093317210674,
-0.03436526283621788,
0.0319969467818737,
-0.05637894943356514,
-0.043148141354322433,
0.0346514992415905,
-0.040954623371362686,
-0.03450122848153114,
0.024482835084199905,
-0.018153835088014603,
0.0018562425393611193,
0.032284464687108994,
-0.031984470784664154,
-0.01675133779644966,
0.0459924191236496,
-0.0007022898062132299,
0.015890158712863922,
-0.012363066896796227,
-0.008677450008690357,
0.028764594346284866,
0.03218451514840126,
0.027805011719465256,
-0.01852683164179325,
0.0288054458796978,
0.021274710074067116,
-0.06419070810079575,
-0.016063367947936058,
0.015131250023841858,
0.0035013717133551836,
-0.03371655195951462,
0.04015934467315674,
0.0035551520995795727,
0.024994386360049248,
0.019332503899931908,
-0.0025187956634908915,
0.018299881368875504,
-0.037627413868904114,
-0.003925216384232044,
0.008756062015891075,
0.00844161119312048,
0.004378322046250105,
-0.00910729169845581,
0.014456799253821373,
0.03939712420105934,
0.026198329403996468,
0.025302542373538017,
-0.03396587818861008,
0.001930764177814126,
0.0303935706615448,
-0.05465416982769966,
0.003165088128298521,
0.0006951956893317401,
-0.04745566099882126,
-0.03286055848002434,
-0.001600185059942305,
-0.03258539363741875,
0.03802548348903656,
-0.03716564550995827,
0.021542349830269814,
0.0461789034307003,
-0.002636680146679282,
-0.05560535565018654,
-0.11547186225652695,
-0.03307293355464935,
-0.027544423937797546,
0.005288155749440193,
0.056346092373132706,
-0.0531308650970459,
-0.005157378502190113,
-0.026944102719426155,
-0.03881680965423584,
0.028087906539440155,
0.008498387411236763,
-0.006683865562081337,
0.029127996414899826,
0.05470354110002518,
-0.017529983073472977,
0.018803715705871582,
0.026304170489311218,
-0.029990430921316147,
0.017475487664341927,
0.00473251985386014,
-0.006878529209643602,
0.015193963423371315,
0.0062204343266785145,
-0.0019641246180981398,
0.004866269417107105,
-0.02105901576578617,
-0.06378047168254852,
-0.038763467222452164,
0.03096858039498329,
0.05830850079655647
] |
Andranik/TestPytorchClassification | [
"pytorch",
"distilbert",
"text-classification",
"transformers"
] | text-classification | {
"architectures": [
"DistilBertForSequenceClassification"
],
"model_type": "distilbert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 36 | null | ---
license: apache-2.0
pipeline_tag: translation
---
TensorFlow saved model version of the original model:
https://www.modelscope.cn/models/damo/nlp_csanmt_translation_zh2en/summary
| [
-0.046540673822164536,
-0.016984039917588234,
0.007208956405520439,
0.031164882704615593,
0.049918174743652344,
0.00020823211525566876,
-0.00479918671771884,
0.0030854542274028063,
-0.052427150309085846,
0.03373979032039642,
0.00929404515773058,
-0.013416110537946224,
0.024895306676626205,
0.045493531972169876,
-0.04696767032146454,
-0.015146970748901367,
-0.023589346557855606,
-0.023990223184227943,
-0.04657948762178421,
0.011152217164635658,
0.02502199076116085,
-0.005092397797852755,
0.0029826397076249123,
0.0007545550470240414,
-0.007050828542560339,
0.020742882043123245,
0.0047641354613006115,
0.04464360326528549,
0.022207610309123993,
-0.061428554356098175,
-0.001145894406363368,
-0.02319260872900486,
-0.024068357422947884,
-0.038655299693346024,
-0.027492040768265724,
0.010017055086791515,
-0.006219068542122841,
0.0018234788440167904,
0.05128245800733566,
0.040476538240909576,
-0.028213482350111008,
0.018911050632596016,
-0.025240253657102585,
-0.04129485785961151,
0.03693961352109909,
0.024402422830462456,
-0.04480898752808571,
-0.0357506200671196,
0.009231332689523697,
-0.03270260989665985,
-0.04605743661522865,
-0.07809843122959137,
-0.03680359572172165,
0.020374547690153122,
-0.006967692170292139,
-0.039243899285793304,
-0.060369156301021576,
-0.003333972068503499,
0.07862474024295807,
-0.049151282757520676,
-0.03159916028380394,
-0.016842233017086983,
-0.06622827798128128,
-0.006597327068448067,
0.040829796344041824,
-0.04494849964976311,
0.022433727979660034,
-0.025261569768190384,
0.051348067820072174,
-0.011754543520510197,
0.04960763454437256,
-0.025684962049126625,
0.02936508320271969,
-0.0964047908782959,
-0.04388761520385742,
-0.014351862482726574,
0.025965986773371696,
0.017293984070420265,
-0.03805005922913551,
0.06002224609255791,
0.03966602683067322,
-0.009796902537345886,
0.0297914557158947,
0.010827219113707542,
-0.036153510212898254,
0.04036958888173103,
-0.0407358855009079,
-0.01148640364408493,
-0.005662379786372185,
0.07026644796133041,
-0.0418684147298336,
-0.04311683401465416,
0.0029307124204933643,
-0.0575057752430439,
-0.022258048877120018,
0.0323568694293499,
0.06438259035348892,
-0.003650055266916752,
0.004392590839415789,
0.03996767848730087,
0.03523224964737892,
0.044018786400556564,
0.020068470388650894,
0.033383697271347046,
0.0045530241914093494,
-0.011886528693139553,
-0.006863357499241829,
-0.029706651344895363,
-0.05724493786692619,
0.03298966586589813,
0.017472362145781517,
-0.056579217314720154,
-0.03316882997751236,
0.05885648727416992,
0.016710476949810982,
-0.043939054012298584,
0.06072500720620155,
-0.04934726655483246,
-0.038036495447158813,
-0.056832440197467804,
0.04811997339129448,
0.02068905532360077,
-0.011502878740429878,
0.005556963849812746,
-0.05556420981884003,
0.03928476572036743,
-0.03724406659603119,
-0.02490745671093464,
0.0029053031466901302,
0.016759688034653664,
-0.02197306789457798,
0.01504709292203188,
0.019045116379857063,
-0.0777834802865982,
0.026494059711694717,
0.026978742331266403,
-0.057176653295755386,
0.05140863358974457,
0.03813088312745094,
0.09134408831596375,
-0.06541863083839417,
-0.04684465751051903,
-0.00452191848307848,
-0.0009046513587236404,
-0.022929904982447624,
0.023525388911366463,
0.00028799069696106017,
-0.07535750418901443,
-0.01191586721688509,
-0.024208731949329376,
0.0749090164899826,
-0.054316140711307526,
0.013886571861803532,
0.054141249507665634,
-0.0037005662452429533,
0.016780929639935493,
-0.014226111583411694,
-0.008554629050195217,
-0.0014919571112841368,
0.006810227409005165,
-0.05385168641805649,
0.03689189627766609,
-0.00464250985532999,
-0.014415174722671509,
-0.052873384207487106,
-0.04527893289923668,
0.02088913694024086,
0.058420076966285706,
0.0007216621306724846,
-0.0372297577559948,
-0.022824956104159355,
0.024986673146486282,
0.04857387766242027,
0.031600821763277054,
-0.028329946100711823,
0.0232077706605196,
0.051994550973176956,
0.040479935705661774,
0.007106176111847162,
0.0769864171743393,
0.01643458940088749,
-0.007458854001015425,
-0.019397955387830734,
0.01693149283528328,
0.010571242310106754,
-0.030527204275131226,
-0.012190223671495914,
0.04438551515340805,
-0.008665038272738457,
-0.040429823100566864,
-0.026162872090935707,
0.045825108885765076,
0.006138317286968231,
0.00597439194098115,
0.012142547406256199,
0.016937080770730972,
-0.023217851296067238,
0.0304177924990654,
-0.027869148179888725,
-0.001778150675818324,
-0.026116397231817245,
-0.002077627694234252,
0.014611642807722092,
0.031088413670659065,
0.04051404073834419,
0.02822355180978775,
-0.05612512677907944,
0.09212086349725723,
-0.035950589925050735,
0.012705187313258648,
-0.025142494589090347,
-0.049859099090099335,
0.011653553694486618,
0.04048895090818405,
0.03245153650641441,
0.03484591469168663,
-0.003131102304905653,
-0.05661747232079506,
0.04253746569156647,
0.07447195053100586,
0.0398915633559227,
0.038288529962301254,
-0.02714790776371956,
-0.006137152202427387,
0.0336129292845726,
0.029496559873223305,
-0.0686185210943222,
-0.06836012750864029,
0.037372227758169174,
0.051746342331171036,
-0.009509412571787834,
0.013901232741773129,
-0.014839681796729565,
0.029568715021014214,
-0.04275919124484062,
-0.06645723432302475,
0.020739279687404633,
0.023560598492622375,
-0.04334856569766998,
0.02281554974615574,
0.02435252070426941,
0.01657439023256302,
0.02934836968779564,
-0.007422653492540121,
0.023548195138573647,
-0.046745702624320984,
0.022658206522464752,
-0.0025474033318459988,
0.06354855746030807,
-0.045206163078546524,
0.02820403315126896,
0.01797787845134735,
0.003562662750482559,
0.04443097114562988,
-0.0641941949725151,
0.022353138774633408,
0.03865509107708931,
0.03175496309995651,
-0.035572413355112076,
0.03787712752819061,
0.021985523402690887,
0.024495890364050865,
0.06841325759887695,
0.01694011501967907,
0.06381381303071976,
-0.010614888742566109,
0.046693067997694016,
0.061041396111249924,
0.022996792569756508,
0.012084913440048695,
0.041948068886995316,
0.07241606712341309,
-0.007888254709541798,
0.0052760629914700985,
0.07144975662231445,
-0.04165653511881828,
0.021949483081698418,
-0.05887984856963158,
0.028633303940296173,
-0.003286667400971055,
-0.019865578040480614,
0.03850911557674408,
0.005222248379141092,
-0.03315186873078346,
0.011573486030101776,
0.0012727169087156653,
-0.008125237189233303,
0.03333336114883423,
0.012850449420511723,
-0.010950837284326553,
-0.0014122748980298638,
-0.032323140650987625,
0.027964768931269646,
-0.0998077541589737,
-0.04557405784726143,
0.0024552943650633097,
-0.067042775452137,
0.011357381008565426,
-0.04755948856472969,
-0.020455744117498398,
-0.07517334073781967,
-0.027880528941750526,
0.03075134940445423,
0.029055476188659668,
0.014378899708390236,
-0.037258341908454895,
0.020317573100328445,
-0.03921392932534218,
-0.029904045164585114,
-0.04976794868707657,
-0.03299356624484062,
-0.012755843810737133,
-0.05747339129447937,
0.021689340472221375,
0.018053682520985603,
0.01793951913714409,
0.018277449533343315,
0.00728874234482646,
-0.005448931362479925,
-0.03292998671531677,
0.09285274893045425,
0.042425546795129776,
-0.01634424924850464,
-0.019102687016129494,
0.010695584118366241,
-0.008835794404149055,
0.011699031107127666,
-0.0443272702395916,
-0.03927978500723839,
0.08023148030042648,
0.070114366710186,
0.008624332025647163,
0.006209550425410271,
-0.01301704440265894,
-0.05071018263697624,
-0.03903631120920181,
-0.05596572533249855,
-0.04055189713835716,
-0.028766412287950516,
-0.010320001281797886,
-0.04700830206274986,
-0.03809911757707596,
-0.04691208526492119,
-0.02555660530924797,
-0.012162611819803715,
0.011933257803320885,
0.0230210293084383,
0.04935035482048988,
0.013978146947920322,
0.021481698378920555,
-0.04481200501322746,
0.01107399445027113,
0.08705107122659683,
-0.013698258437216282,
0.0025449320673942566,
-0.05332007259130478,
-0.035177603363990784,
0.05874411016702652,
0.020869778469204903,
-0.008528542704880238,
-0.022399980574846268,
0.07809857279062271,
0.0005409541772678494,
0.012181230820715427,
0.020188145339488983,
-0.03706563264131546,
-0.01188858225941658,
-0.003888397943228483,
-0.011232517659664154,
-0.032170794904232025,
-0.0365421324968338,
0.002020715968683362,
0.007070527877658606,
0.02794666588306427,
-0.052061088383197784,
-0.03733489662408829,
-0.013371932320296764,
0.013013728894293308,
0.043217770755290985,
-0.010152404196560383,
-0.026773683726787567,
0.003901449963450432,
-0.05240505933761597,
-0.024835148826241493,
0.019642140716314316,
-0.0047545889392495155,
0.02141045778989792,
0.06792334467172623,
0.033905889838933945,
-0.027243109419941902,
0.030775340273976326,
0.03197071701288223,
0.05444181710481644,
0.055315934121608734,
-0.032793208956718445,
0.009851920418441296,
-0.035650644451379776,
0.026905778795480728,
0.001442953129298985,
-0.021062495186924934,
-0.03541724756360054,
-0.05954543501138687,
-0.011499933898448944,
0.014222892001271248,
-0.019304931163787842,
0.005198081489652395,
0.05749697610735893,
-0.00430474616587162,
-0.01609075628221035,
0.0022265624720603228,
0.02964741177856922,
0.05537201836705208,
-0.041311200708150864,
0.06773592531681061,
-0.011257308535277843,
0.03681483492255211,
-0.025529075413942337,
0.006782374810427427,
-0.04175617918372154,
-0.005795139353722334,
0.011313590221107006,
0.05793434754014015,
0.03264763951301575,
0.029867423698306084,
0.05165502056479454,
0.006809639744460583,
-0.037478748708963394,
0.04823394864797592,
0.06657448410987854,
-0.0053258189000189304,
-0.05968550965189934,
0.014109501615166664,
0.011228383518755436,
-0.03662824258208275,
-0.012550832703709602,
-0.01688980869948864,
-0.0019728990737348795,
0.04736226424574852,
-0.002996043534949422,
0.00593585567548871,
0.01528139691799879,
-0.019359027966856956,
-0.04472364857792854,
-0.05084223300218582,
0.023547563701868057,
-0.005736571736633778,
-0.012785950675606728,
0.015325866639614105,
0.04808490723371506,
-0.00938932690769434,
0.06654119491577148,
0.0446862056851387,
-0.03451913967728615,
-0.06382545083761215,
0.02712494507431984,
0.03653340041637421,
-0.03778549283742905,
-0.05404777452349663,
-0.04410189762711525,
0.03272736817598343,
0.03583991527557373,
-0.0031521359924227,
-0.07810922712087631,
0.028728479519486427,
0.06000448390841484,
-0.03394037112593651,
0.057224225252866745,
-0.026386430487036705,
0.031841859221458435,
0.061961568892002106,
-0.03101816214621067,
0.022019000723958015,
-0.024331960827112198,
0.027116503566503525,
-0.01124898437410593,
0.031228866428136826,
-0.05340590700507164,
-0.028101135045289993,
-0.05401717871427536,
0.014111521653831005,
0.005573009606450796,
0.05007750540971756,
0.034931086003780365,
-0.03640395402908325,
-0.06378655880689621,
0.003216417273506522,
0.05311516299843788,
-0.05220433697104454,
0.013636752963066101,
0.0211234912276268,
0.05847710743546486,
-0.04890630394220352,
-0.02370787225663662,
-0.01089648250490427,
-0.008471674285829067,
0.02692076936364174,
-0.005918571725487709,
-0.022391974925994873,
-0.05062519386410713,
0.025766480714082718,
-0.004831014666706324,
-0.023640630766749382,
-0.0903831422328949,
0.014811459928750992,
-0.020912252366542816,
-0.033383361995220184,
0.046648964285850525,
0.05032806470990181,
0.019798198714852333,
0.02586445026099682,
-0.008379848673939705,
0.039604056626558304,
-0.04194964841008186,
0.04919206723570824,
-0.05185142904520035,
-0.01634014956653118,
0.015510467812418938,
-0.04322626814246178,
-0.021119188517332077,
-0.04351562634110451,
-0.030979475006461143,
-0.04216586425900459,
-0.009722769260406494,
0.021052498370409012,
-0.009192491881549358,
0.003642250318080187,
0.006187749560922384,
0.01608523167669773,
-0.018746986985206604,
-0.023003794252872467,
-0.008423288352787495,
-0.07239934802055359,
-0.09789256006479263,
-0.03965627774596214,
0.01913720928132534,
-0.0073145306669175625,
0.010398801416158676,
-0.015290064737200737,
0.023901598528027534,
0.02218009904026985,
0.016748562455177307,
-0.017646465450525284,
0.021653437986969948,
0.009919507429003716,
-0.04547693207859993,
-0.03738664090633392,
-0.009499521926045418,
0.011141054332256317,
0.02829289436340332,
-0.020954011008143425,
0.026257574558258057,
0.018136750906705856,
-0.02835942432284355,
-0.016518494114279747,
0.011841393075883389,
0.015883734449744225,
-0.08211168646812439,
-0.029045747593045235,
-0.031209563836455345,
-0.03138039633631706,
0.03838329389691353,
-0.00538813229650259,
-0.03167807683348656,
0.010860412381589413,
0.018665002658963203,
0.027962779626250267,
-0.01317458413541317,
-0.030229924246668816,
0.029171792790293694,
-0.0340752899646759,
0.00515128206461668,
-0.0667273998260498,
0.044975314289331436,
-0.023640701547265053,
0.050134140998125076,
0.002934444695711136,
-0.007905646227300167,
-0.04191829636693001,
0.06570825725793839,
-0.026357267051935196,
-0.04417729377746582,
-0.017686966806650162,
-0.0009934618137776852,
-0.010515792295336723,
0.04362088814377785,
-0.034519776701927185,
0.013591558672487736,
-0.02690042369067669,
0.04384995624423027,
-0.030034851282835007,
0.013935139402747154,
-0.031021825969219208,
0.010156191885471344,
-0.032285451889038086,
-0.014412757009267807,
-0.017613258212804794,
-0.07473951578140259,
0.032395388931035995,
0.025420300662517548,
0.01686892844736576,
-0.006477248389273882,
-0.02843604050576687,
0.001113354112021625,
0.011080106720328331,
-0.04099870100617409,
-0.010368961840867996,
-0.038830239325761795,
-0.004875066690146923,
-0.007389326114207506,
0.06736144423484802,
0.022043215110898018,
-0.036274589598178864,
-0.05439266189932823,
0.032532788813114166,
0.01966927945613861,
-0.013502451591193676,
0.020214315503835678,
0.02801579050719738,
0.04118302837014198,
0.04783445596694946,
-0.019528936594724655,
0.0008700125035829842,
-0.02135631814599037,
-0.020945921540260315,
0.028895165771245956,
-0.00002214175219705794,
0.010159467346966267,
-0.003250552574172616,
-0.020058108493685722,
-0.014175822027027607,
0.06470155715942383,
0.04806693643331528,
0.02472003549337387,
-0.012461734935641289,
-0.05087607353925705,
0.016146361827850342,
-0.002309450414031744,
-0.029115060344338417,
-0.00844530388712883,
0.04629810154438019,
-0.036398518830537796,
0.08161503821611404,
0.012586783617734909,
0.013344009406864643,
0.04929947108030319,
0.015085991472005844,
-0.006980579812079668,
0.053738754242658615,
-0.04242394492030144,
0.001773469033651054,
0.03975684195756912,
-0.056240200996398926,
-0.015052576549351215,
-0.008175496011972427,
0.062291037291288376,
-0.06642717123031616,
0.06036912277340889,
0.05865304544568062,
0.02294321544468403,
0.016288284212350845,
-0.04161912947893143,
-0.02342517115175724,
-0.007211263757199049,
-0.035327598452568054,
0.04677283763885498,
-0.001740765292197466,
-0.06619207561016083,
0.06012096256017685,
0.01628091000020504,
-0.07892506569623947,
0.04557206109166145,
0.016820140182971954,
0.02210119739174843,
0.038820963352918625,
0.02147471345961094,
-0.060978420078754425,
0.01976759172976017,
-0.031773414462804794,
0.011946679092943668,
-0.06108453497290611,
-0.014193111099302769,
0.006619540974497795,
-0.023903891444206238,
-0.016929442062973976,
0.00600280798971653,
-0.011488369666039944,
0.023440895602107048,
0.02588418498635292,
-0.04640281945466995,
-0.03350864723324776,
0.01216465886682272,
0.04252631962299347,
0.002589881420135498,
0.023335430771112442,
-0.03146234154701233,
0.014211146160960197,
0.012746850959956646,
0.013662190176546574,
-0.04598376154899597,
0.035328805446624756,
0.030211981385946274,
-0.07111996412277222,
-0.035878099501132965,
0.0031757187098264694,
0.015589132905006409,
-0.01723485253751278,
0.03777512535452843,
-0.015635361894965172,
0.02758403681218624,
0.04308648779988289,
-0.006556022446602583,
0.05162609741091728,
-0.05331635847687721,
0.012263690121471882,
-0.0037605685647577047,
-0.011796428821980953,
0.007285155355930328,
-0.015833180397748947,
0.01417260617017746,
0.052728600800037384,
0.03891574963927269,
0.010377277620136738,
-0.04674709215760231,
-0.01826321706175804,
0.029469044879078865,
-0.035906851291656494,
-0.0011082506971433759,
0.0015900519210845232,
-0.039732180535793304,
-0.030037570744752884,
-0.02174300327897072,
-0.014787433668971062,
0.05427107587456703,
-0.024859333410859108,
0.02780096046626568,
0.04942147061228752,
0.021999511867761612,
-0.07784726470708847,
-0.061429720371961594,
-0.02775839902460575,
-0.024688720703125,
0.05211484059691429,
0.010478862561285496,
-0.038935545831918716,
0.026276949793100357,
-0.04904966801404953,
-0.058637019246816635,
0.04517756775021553,
-0.0019093711161985993,
-0.03172679990530014,
0.05642057955265045,
0.031105337664484978,
-0.01428736001253128,
0.015988081693649292,
0.06899873912334442,
-0.07258345186710358,
0.029490327462553978,
0.021272532641887665,
0.030526697635650635,
0.00594966160133481,
0.004071315284818411,
-0.0022991879377514124,
-0.014344645664095879,
-0.03729777783155441,
-0.03403819352388382,
-0.034382715821266174,
-0.014806958846747875,
0.059873394668102264
] |
Andrianos/bert-base-greek-punctuation-prediction-finetuned | [
"pytorch",
"bert",
"token-classification",
"transformers",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"BertForTokenClassification"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
license: apache-2.0
tags:
- generated_from_keras_callback
model-index:
- name: distilbert_classifier_newsgroups
results: []
---
<!-- 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. -->
# distilbert_classifier_newsgroups
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:
## 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': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 1908, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
- training_precision: float32
### Training results
### Framework versions
- Transformers 4.28.0
- TensorFlow 2.12.0
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.022592995315790176,
-0.007518397178500891,
-0.04021694138646126,
0.04769432544708252,
0.05847794562578201,
0.033853549510240555,
-0.010266397148370743,
-0.01047950703650713,
-0.03048723191022873,
0.06295548379421234,
0.025039972737431526,
-0.01295409444719553,
0.01431632786989212,
0.02792253904044628,
-0.02128547616302967,
-0.03784229978919029,
-0.003794329473748803,
-0.025962816551327705,
-0.024635937064886093,
0.000049951257096836343,
0.008342543616890907,
-0.021255213767290115,
-0.019106032326817513,
-0.006980460602790117,
-0.003561984281986952,
0.023627083748579025,
-0.005624860990792513,
0.021144578233361244,
0.036188140511512756,
-0.0521099828183651,
0.020464157685637474,
-0.03860148787498474,
-0.06040407717227936,
-0.01183352805674076,
-0.024707520380616188,
0.0027997284196317196,
0.009612527675926685,
0.01580056920647621,
0.017736678943037987,
0.024964459240436554,
-0.022339878603816032,
0.012818378396332264,
-0.01509271189570427,
-0.013135142624378204,
0.04803377389907837,
-0.0007437288295477629,
-0.05549417808651924,
-0.008188024163246155,
0.056637924164533615,
-0.0380682498216629,
-0.07527721673250198,
-0.06298450380563736,
-0.04038795083761215,
0.024793755263090134,
-0.027221493422985077,
-0.029248954728245735,
-0.07158063352108002,
0.006974743213504553,
0.0626930519938469,
-0.033416107296943665,
-0.041510120034217834,
0.015618724748492241,
-0.08501026034355164,
-0.00045202087494544685,
0.03376302123069763,
-0.024127859622240067,
0.0066445558331906796,
-0.03506330028176308,
0.0377177931368351,
-0.02942114882171154,
0.05616864189505577,
-0.035234998911619186,
0.017178252339363098,
-0.0526222363114357,
-0.011073536239564419,
-0.011618321761488914,
0.03862694278359413,
0.054513588547706604,
-0.01738220639526844,
0.03314860910177231,
0.02883211523294449,
0.01479197945445776,
0.03318863734602928,
-0.02121233381330967,
-0.030026180669665337,
0.029888048768043518,
-0.056129466742277145,
0.014833354391157627,
0.009460239671170712,
0.014979693107306957,
-0.03825455158948898,
-0.030300689861178398,
-0.031359266489744186,
-0.0179780051112175,
-0.016250813379883766,
0.018632952123880386,
0.034350745379924774,
-0.015542123466730118,
0.019958900287747383,
0.03071002848446369,
0.03860291838645935,
0.04564119130373001,
-0.039866141974925995,
0.0643058642745018,
0.0022805139888077974,
-0.020091133192181587,
-0.01687847077846527,
-0.030683137476444244,
-0.0636233314871788,
0.017790311947464943,
0.02864920347929001,
-0.031032415106892586,
-0.04511244595050812,
0.02067609317600727,
-0.008420963771641254,
-0.00005666196011588909,
0.06258432567119598,
-0.012072896584868431,
-0.048089370131492615,
-0.019704045727849007,
0.024255506694316864,
0.009099563583731651,
-0.014067189767956734,
0.016039548441767693,
-0.03379319980740547,
-0.0033144799526780844,
-0.052519604563713074,
-0.030161483213305473,
-0.017626194283366203,
0.014404603280127048,
0.019501684233546257,
0.05519724264740944,
0.03689374774694443,
-0.08151070773601532,
-0.007779900915920734,
0.00644695246592164,
-0.03634141385555267,
0.04891914501786232,
0.019777843728661537,
0.10341980308294296,
-0.0515938475728035,
-0.07069480419158936,
0.011559873819351196,
0.028843041509389877,
-0.04143114015460014,
-0.003159400774165988,
0.0007188847521319985,
-0.03247702866792679,
-0.011718731373548508,
0.013283299282193184,
0.058525558561086655,
-0.03389013186097145,
-0.0025339608546346426,
0.06514482945203781,
0.010280211456120014,
0.040145378559827805,
-0.06932460516691208,
-0.028524301946163177,
-0.005559501238167286,
0.006760799326002598,
-0.03682652488350868,
0.05602150782942772,
-0.007163139991462231,
-0.013609384186565876,
-0.02153719775378704,
-0.02821269817650318,
0.004848344251513481,
0.05877799168229103,
-0.00967909675091505,
-0.032033950090408325,
-0.03163221850991249,
0.03393411263823509,
0.04333697631955147,
0.049705348908901215,
-0.026343215256929398,
0.010358884930610657,
0.060635294765233994,
0.05135269835591316,
-0.01998746767640114,
0.031483013182878494,
0.020417602732777596,
-0.018699539825320244,
-0.025471219792962074,
0.038320392370224,
0.021811610087752342,
-0.030183985829353333,
0.04626937955617905,
0.019833121448755264,
0.008012394420802593,
-0.05142204090952873,
-0.05622643977403641,
0.044259212911129,
-0.0022363008465617895,
-0.014384082518517971,
0.00791406910866499,
0.023986242711544037,
-0.015110223554074764,
0.0418238639831543,
-0.030252404510974884,
0.008035562001168728,
-0.015586528927087784,
-0.02649780735373497,
0.03542700037360191,
0.007115508895367384,
0.03628049045801163,
0.04468381032347679,
0.010240285657346249,
0.08540304750204086,
-0.04443426430225372,
0.024035470560193062,
-0.047840312123298645,
-0.032588113099336624,
0.005392272956669331,
0.035978253930807114,
0.04658638313412666,
0.05846638232469559,
-0.00309179094620049,
-0.06296148896217346,
0.040144920349121094,
0.05103568732738495,
0.030455343425273895,
0.01535669807344675,
-0.022617576643824577,
-0.030443819239735603,
0.030606504529714584,
0.03920937702059746,
-0.05140741169452667,
-0.011135797016322613,
0.008911962620913982,
0.04910029470920563,
-0.004050799645483494,
0.0149238845333457,
-0.01798267662525177,
0.04961618036031723,
-0.057179249823093414,
-0.05431017652153969,
0.03343527764081955,
0.005930399987846613,
-0.008196990005671978,
0.021610284224152565,
0.019389145076274872,
0.01174500398337841,
0.024511395022273064,
0.018909504637122154,
0.014274629764258862,
-0.030394909903407097,
0.01592625305056572,
0.010822970420122147,
0.050318554043769836,
-0.04449618607759476,
0.038507577031850815,
-0.0016746228793635964,
0.02072162553668022,
0.03248826041817665,
-0.03717729076743126,
0.0335463210940361,
0.030794840306043625,
0.041006263345479965,
-0.040603458881378174,
0.04286706820130348,
0.014917531050741673,
0.051286958158016205,
0.044646043330430984,
-0.000550040218513459,
0.0506315715610981,
-0.0007194473291747272,
0.0662677139043808,
0.09508289396762848,
0.02102097123861313,
0.031126422807574272,
0.027854440733790398,
0.06433690339326859,
0.018507124856114388,
-0.013489523902535439,
0.051010940223932266,
-0.05494723096489906,
0.018889106810092926,
-0.05132196471095085,
0.0032849865965545177,
-0.01647581346333027,
-0.005334099289029837,
0.05043180286884308,
0.028797421604394913,
-0.04547276720404625,
-0.004191851243376732,
0.0032201462890952826,
-0.00922942440956831,
0.02261713519692421,
-0.0037887259386479855,
-0.005517992656677961,
-0.012582286261022091,
-0.03269568085670471,
-0.023388976231217384,
-0.06336412578821182,
-0.04356462508440018,
-0.03524036332964897,
-0.017040537670254707,
-0.030837468802928925,
-0.09519422054290771,
-0.008874119259417057,
-0.08425083756446838,
-0.022757554426789284,
0.030521923676133156,
0.008313916623592377,
0.0033645157236605883,
-0.04668464511632919,
0.02023475617170334,
-0.042205844074487686,
-0.04489472135901451,
-0.03870932757854462,
-0.03805273026227951,
-0.04915783554315567,
-0.07349187880754471,
0.033436063677072525,
0.031211327761411667,
0.014812629669904709,
-0.004833665210753679,
0.010225296951830387,
0.011045900173485279,
-0.025038903579115868,
0.031091241165995598,
0.07346741110086441,
-0.03676038980484009,
-0.045710813254117966,
0.018519798293709755,
-0.012225978076457977,
0.004164996091276407,
0.012177853845059872,
-0.03515087068080902,
0.0811648741364479,
0.08536387234926224,
0.02504509687423706,
0.02471778355538845,
0.006068875547498465,
-0.040907859802246094,
-0.07304476201534271,
-0.03912946209311485,
-0.02506592869758606,
-0.008477012626826763,
-0.05021585151553154,
-0.06663599610328674,
-0.02671748213469982,
-0.04282364621758461,
0.002007649280130863,
-0.02281736023724079,
0.031876806169748306,
0.02861488051712513,
0.04204723238945007,
0.02890901081264019,
0.01945597678422928,
-0.019348066300153732,
-0.045653000473976135,
0.0545964352786541,
-0.0067990426905453205,
0.007525317370891571,
-0.0769224539399147,
-0.020741600543260574,
0.026937400922179222,
0.009531289339065552,
0.010618898086249828,
-0.006553262937813997,
0.07984627038240433,
-0.0020198554266244173,
-0.0032203246373683214,
0.029882989823818207,
-0.023173542693257332,
-0.01892603188753128,
0.004161439836025238,
0.0008400968508794904,
-0.022169604897499084,
-0.028522752225399017,
-0.04572993516921997,
-0.0008406144916079938,
0.04116414114832878,
-0.05766511335968971,
-0.05350145697593689,
-0.00612863851711154,
0.0506259985268116,
0.0653117224574089,
-0.0027808051090687513,
-0.05919035151600838,
0.0004958640784025192,
-0.07721172273159027,
-0.015944097191095352,
0.04391733929514885,
0.033919814974069595,
0.005652610212564468,
0.032002490013837814,
0.017923064529895782,
-0.008577430620789528,
0.04160993918776512,
0.05658247694373131,
0.07785481214523315,
-0.007743749767541885,
-0.07584922760725021,
0.006088894326239824,
-0.03233537822961807,
0.024275830015540123,
0.008259261026978493,
-0.014755435287952423,
-0.01582150347530842,
-0.07843656837940216,
-0.009983222000300884,
0.022160448133945465,
0.010146943852305412,
-0.027331190183758736,
0.012739528901875019,
0.007247301749885082,
-0.04388909414410591,
0.018795816227793694,
0.03340302035212517,
0.029130982235074043,
-0.035812024027109146,
0.045614372938871384,
-0.031156152486801147,
0.004248444456607103,
-0.06284847110509872,
-0.0009428929770365357,
-0.04184812679886818,
-0.019198833033442497,
0.019639700651168823,
0.05230994522571564,
0.0011835742043331265,
0.04287494719028473,
0.07234903424978256,
0.03152082487940788,
-0.03309237211942673,
0.04490892216563225,
0.06753808259963989,
-0.04075445234775543,
-0.04514339938759804,
-0.013269110582768917,
-0.01594572514295578,
-0.014188173227012157,
-0.014104397036135197,
0.0008667512447573245,
0.04554279148578644,
0.03699634596705437,
0.0024496859405189753,
0.0022747430484741926,
0.012754161842167377,
-0.008794336579740047,
-0.038609523326158524,
-0.055167168378829956,
-0.01921469159424305,
0.009773286059498787,
-0.032456133514642715,
-0.0013195605715736747,
0.022172383964061737,
0.025237739086151123,
0.08269773423671722,
0.017892079427838326,
-0.02188761904835701,
-0.020280348137021065,
0.03339041396975517,
0.018173355609178543,
-0.03806590661406517,
-0.05916421860456467,
-0.0472998209297657,
0.022153865545988083,
0.04162341728806496,
-0.02503175474703312,
-0.05874532833695412,
0.003483022563159466,
0.04845036566257477,
-0.04606291279196739,
0.06361182779073715,
0.007686184253543615,
0.048457298427820206,
0.047855444252491,
-0.004143925849348307,
0.029941318556666374,
-0.019464563578367233,
0.0013505193637683988,
-0.017674950882792473,
0.0486140102148056,
-0.030026927590370178,
-0.04775531589984894,
-0.03667838126420975,
0.016490893438458443,
0.030671145766973495,
0.04109849035739899,
0.03304947912693024,
-0.048911578953266144,
-0.03043488599359989,
0.03503736853599548,
0.04154183715581894,
-0.03379359096288681,
-0.002443274948745966,
0.03792693465948105,
0.028834624215960503,
-0.05435078218579292,
-0.03267987444996834,
-0.026137346401810646,
-0.013479283079504967,
0.024405736476182938,
-0.015476826578378677,
-0.037637315690517426,
-0.029521677643060684,
0.018580758944153786,
-0.013862106017768383,
-0.024479657411575317,
-0.08816398680210114,
0.05164117366075516,
-0.005935481283813715,
-0.0020110851619392633,
0.06354465335607529,
0.05016461759805679,
0.030199317261576653,
0.07440679520368576,
0.030291123315691948,
0.02032042108476162,
-0.04086175188422203,
0.033836547285318375,
-0.034900788217782974,
-0.04046938568353653,
-0.002952448558062315,
-0.037385109812021255,
-0.04053497686982155,
-0.01275250967592001,
-0.06388508528470993,
-0.04462100937962532,
-0.012852063402533531,
0.00720771960914135,
0.004526127129793167,
-0.019429422914981842,
0.009144943207502365,
0.039960190653800964,
-0.026430677622556686,
-0.0602685809135437,
-0.04385973885655403,
-0.02349383756518364,
-0.05824653431773186,
-0.04492548853158951,
0.007323069963604212,
0.004692909773439169,
0.017826756462454796,
0.027202360332012177,
0.030986081808805466,
0.0075828917324543,
0.0038034513127058744,
-0.033501677215099335,
0.012777616269886494,
0.01025626715272665,
-0.025682322680950165,
-0.03219614177942276,
0.015591630712151527,
0.005433065816760063,
0.05819564312696457,
-0.03079034574329853,
0.033167362213134766,
0.013296135701239109,
-0.0075796907767653465,
-0.03298622742295265,
0.04708005115389824,
0.03351404890418053,
-0.06506646424531937,
-0.03945242241024971,
0.0015651457943022251,
-0.014471583068370819,
0.033946435898542404,
-0.0222080759704113,
-0.02050347998738289,
-0.0016882607014849782,
-0.007688018027693033,
0.023429345339536667,
-0.029309015721082687,
-0.023667268455028534,
0.044201210141181946,
-0.02101019024848938,
0.01026641670614481,
-0.06955370306968689,
0.06397131085395813,
-0.03515275567770004,
0.01680622063577175,
-0.020281126722693443,
0.0004344319168012589,
-0.043196048587560654,
0.036304786801338196,
-0.01611468195915222,
-0.023796651512384415,
-0.008701740764081478,
0.037979863584041595,
-0.024251926690340042,
0.027331337332725525,
-0.02361319214105606,
0.024082830175757408,
-0.043730009347200394,
0.08450277894735336,
-0.039032887667417526,
0.019027769565582275,
-0.0398416705429554,
0.011467856355011463,
-0.02090279571712017,
0.03432796150445938,
-0.013943446800112724,
-0.015541919507086277,
0.024450184777379036,
0.053681306540966034,
0.037144795060157776,
0.028028832748532295,
-0.01526509877294302,
-0.004293567035347223,
0.012593042105436325,
-0.06871353834867477,
-0.01254203449934721,
0.003203139640390873,
0.004302237648516893,
0.001025758101604879,
0.04870162531733513,
0.028557367622852325,
-0.04626686871051788,
-0.056782688945531845,
0.04113316535949707,
0.026301372796297073,
-0.01780018024146557,
-0.004995489027351141,
0.03423071652650833,
0.01932501420378685,
0.03922290354967117,
-0.03643763065338135,
-0.026614923030138016,
-0.007001267280429602,
-0.05887235701084137,
0.007794481702148914,
-0.019291765987873077,
0.041229553520679474,
0.01569850742816925,
-0.04839152470231056,
-0.018236452713608742,
0.06605415046215057,
0.010468201711773872,
0.017905134707689285,
-0.006754247937351465,
-0.04549194499850273,
0.03334632143378258,
0.006524401251226664,
-0.03729313239455223,
0.03231937810778618,
0.02308957651257515,
-0.023113161325454712,
0.06610807031393051,
0.016429422423243523,
0.003872327506542206,
0.06313580274581909,
0.014161555096507072,
-0.007005499210208654,
0.057500217109918594,
-0.029994618147611618,
0.010267823934555054,
0.022965850308537483,
-0.05934195965528488,
-0.028327681124210358,
-0.04534885659813881,
0.05806852877140045,
-0.07238888740539551,
0.037845734506845474,
0.05361568182706833,
0.000018208085748483427,
0.03793655335903168,
-0.04133101552724838,
-0.045000623911619186,
0.017729774117469788,
-0.042372364550828934,
0.07761707156896591,
0.018288206309080124,
-0.035474441945552826,
0.06793516129255295,
0.008193150162696838,
-0.056927960366010666,
0.027273884043097496,
0.058903202414512634,
0.04321984946727753,
0.020877735689282417,
0.045409709215164185,
-0.047161731868982315,
0.0007227761088870466,
-0.03255411982536316,
0.02213398367166519,
-0.055144090205430984,
-0.014702566899359226,
0.02655436098575592,
-0.054245442152023315,
-0.026707934215664864,
0.03553597629070282,
-0.030437642708420753,
-0.025713445618748665,
0.054643962532281876,
-0.03990405797958374,
-0.030117051675915718,
0.011075787246227264,
0.01901743933558464,
-0.029854396358132362,
0.0004847258678637445,
-0.047943104058504105,
0.015810193493962288,
0.011196558363735676,
-0.010545048862695694,
-0.019989045336842537,
0.011847280897200108,
0.03455764055252075,
-0.03341171517968178,
-0.038697801530361176,
0.034993160516023636,
0.005319955758750439,
-0.03147412836551666,
0.04224000871181488,
0.021311350166797638,
0.01763056591153145,
0.03637782111763954,
-0.02209361270070076,
0.012594040483236313,
-0.0438196174800396,
-0.014401441439986229,
0.021205630153417587,
-0.026957817375659943,
0.01305398903787136,
0.01949385181069374,
0.023766212165355682,
0.062064602971076965,
0.031333357095718384,
-0.01595867983996868,
-0.05012135952711105,
-0.035364799201488495,
0.016427582129836082,
-0.027484310790896416,
0.00634048692882061,
0.01049301028251648,
-0.037055596709251404,
-0.039601851254701614,
0.007668179925531149,
-0.05693933367729187,
0.049205344170331955,
-0.06451257318258286,
0.023102909326553345,
0.010173792019486427,
0.012616712599992752,
-0.05217490717768669,
-0.10439106076955795,
-0.019594324752688408,
-0.0461195632815361,
-0.004414697177708149,
0.05437060445547104,
-0.022609902545809746,
0.032961778342723846,
-0.032458897680044174,
-0.043004464358091354,
0.027085592970252037,
0.05552096664905548,
-0.045091621577739716,
0.06320498138666153,
0.04061310738325119,
-0.04038853198289871,
0.01237080991268158,
0.020863838493824005,
-0.04878664389252663,
0.020491760224103928,
0.01834176667034626,
-0.007178922649472952,
0.011581764556467533,
0.01767593063414097,
-0.05880248174071312,
-0.008946051821112633,
-0.04846212640404701,
-0.061836328357458115,
-0.029909521341323853,
-0.012449424713850021,
0.04762386903166771
] |
Andrija/M-bert-NER | [
"pytorch",
"bert",
"token-classification",
"hr",
"sr",
"multilingual",
"dataset:hr500k",
"transformers",
"license:apache-2.0",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"BertForTokenClassification"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | 2023-05-18T00:22:34Z | ---
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: 321.58 +/- 6.47
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.037849061191082,
-0.0028194391634315252,
-0.004967814311385155,
0.025222400203347206,
0.045197777450084686,
-0.021725567057728767,
-0.005247952416539192,
-0.027738090604543686,
-0.033452171832323074,
0.0665266215801239,
0.031871143728494644,
-0.024008512496948242,
0.022875986993312836,
0.0011050067842006683,
-0.0337628610432148,
-0.025911694392561913,
0.0015077072894200683,
-0.014495997689664364,
-0.019510067999362946,
0.02751261368393898,
0.0050514694303274155,
0.03626813367009163,
-0.02574124187231064,
0.03625363111495972,
-0.00379318674094975,
0.0385032594203949,
-0.023207012563943863,
0.05661933124065399,
0.016940491273999214,
-0.04315276816487312,
-0.005379706621170044,
-0.041138313710689545,
-0.02104106731712818,
-0.020671963691711426,
-0.013318615034222603,
0.013710778206586838,
0.016819508746266365,
0.020651502534747124,
0.009128648787736893,
0.03376223146915436,
-0.012548234313726425,
0.02337188459932804,
0.02974051795899868,
-0.002315962454304099,
0.02111130952835083,
-0.011612318456172943,
-0.04899618774652481,
0.010293399915099144,
0.05585358291864395,
-0.00023257527209352702,
-0.04738380014896393,
-0.06278683990240097,
0.022916199639439583,
0.030657975003123283,
-0.0010880142217501998,
-0.013348902575671673,
-0.04360176622867584,
-0.004929760005325079,
0.06216816604137421,
-0.04322441667318344,
-0.047344304621219635,
-0.007593931630253792,
-0.04449913650751114,
0.010456466116011143,
0.02633020095527172,
0.000532290549017489,
0.018887441605329514,
-0.047458674758672714,
0.03526097163558006,
-0.025789272040128708,
0.06997400522232056,
-0.020996572449803352,
0.013645315542817116,
-0.0577557198703289,
-0.0008068889728747308,
0.008912389166653156,
0.03796625882387161,
0.034456025809049606,
-0.013688354752957821,
0.08819305896759033,
0.028422445058822632,
0.012975682504475117,
0.04445546492934227,
0.01345011219382286,
0.012645266018807888,
0.004183509387075901,
-0.03936419636011124,
0.005848160944879055,
0.020842233672738075,
0.028252748772501945,
-0.011781240813434124,
-0.04074464365839958,
-0.040520280599594116,
-0.022789711132645607,
0.00006642461812589318,
0.02894451841711998,
0.04675048962235451,
0.0021143206395208836,
0.06648676097393036,
0.01520573440939188,
0.0020819418132305145,
0.031041810289025307,
-0.031036289408802986,
0.06233121082186699,
-0.014483660459518433,
-0.019907113164663315,
-0.013469964265823364,
-0.022688012570142746,
-0.04092448949813843,
0.05433962866663933,
0.032117001712322235,
-0.04703320562839508,
-0.03727401793003082,
0.04581157863140106,
0.02849157340824604,
-0.020952489227056503,
0.030272100120782852,
-0.03297875449061394,
-0.040374506264925,
-0.0635562315583229,
0.07107166945934296,
-0.005795283243060112,
-0.008414234034717083,
-0.04007907211780548,
-0.028584228828549385,
-0.01792336441576481,
-0.0528087392449379,
-0.026287531480193138,
-0.025870192795991898,
0.019507212564349174,
0.01027205865830183,
0.03211802989244461,
0.015122235752642155,
-0.0853690505027771,
0.01317158155143261,
-0.011387502774596214,
-0.08841868489980698,
0.02946420945227146,
0.003033270128071308,
0.14443176984786987,
-0.060419488698244095,
-0.05693389102816582,
0.027392223477363586,
-0.013432003557682037,
-0.056555964052677155,
0.010873859748244286,
-0.0047193593345582485,
-0.04148150607943535,
-0.009645613841712475,
-0.0271308571100235,
0.08066274970769882,
-0.05392451956868172,
-0.022531092166900635,
0.0592149943113327,
0.0034302223939448595,
0.02263946831226349,
-0.007266372442245483,
0.007636541500687599,
-0.0034758441615849733,
-0.046194929629564285,
-0.004931568168103695,
0.07052068412303925,
-0.018145864829421043,
-0.032320287078619,
-0.04194917157292366,
-0.007483628578484058,
0.013425835408270359,
0.07782552391290665,
-0.006711121648550034,
-0.022768624126911163,
-0.022873105481266975,
0.03245726600289345,
0.01723846048116684,
0.018223989754915237,
-0.005040110554546118,
0.0385354682803154,
0.055235762149095535,
0.011711430735886097,
-0.02040272019803524,
0.03942669928073883,
0.025785723701119423,
-0.01816503331065178,
-0.005051454994827509,
0.0019730147905647755,
0.0053759971633553505,
0.0015107834478840232,
-0.006373526528477669,
0.028519852086901665,
0.004042684566229582,
-0.03746165707707405,
-0.025106053799390793,
0.018612589687108994,
0.011603009887039661,
0.006958549376577139,
-0.0023202018346637487,
0.01141274068504572,
0.015015403740108013,
0.041912857443094254,
-0.005257837940007448,
-0.014789859764277935,
-0.033286962658166885,
-0.019271064549684525,
0.02833462879061699,
0.008270347490906715,
0.04121258854866028,
0.010705402120947838,
-0.013033300638198853,
0.09264962375164032,
-0.043319378048181534,
0.041806962341070175,
-0.07415403425693512,
-0.05057058110833168,
0.0036451555788517,
0.03253256902098656,
0.06461223214864731,
0.04483012482523918,
-0.022176308557391167,
-0.044225677847862244,
0.028772596269845963,
0.04460633546113968,
0.05916481092572212,
0.016840234398841858,
-0.041334543377161026,
-0.013802078552544117,
0.031213944777846336,
0.020254740491509438,
-0.024587688967585564,
-0.03909474238753319,
0.014180054888129234,
0.04789366200566292,
0.023623598739504814,
0.024740876629948616,
-0.03258680924773216,
0.02438655123114586,
-0.037538278847932816,
-0.06091446802020073,
0.03961377590894699,
0.025701306760311127,
0.014436946250498295,
0.016879430040717125,
-0.015254226513206959,
0.041361842304468155,
0.01799382083117962,
0.020798666402697563,
0.005687689408659935,
-0.04909620061516762,
0.013686511665582657,
0.03129485249519348,
0.06313014030456543,
-0.032590776681900024,
0.056484490633010864,
-0.004955101292580366,
-0.00021457538241520524,
0.04137226939201355,
-0.04758176580071449,
0.016492383554577827,
0.08759087324142456,
0.030548924580216408,
-0.014486908912658691,
0.0188183281570673,
0.004566803574562073,
0.04638323560357094,
0.033195868134498596,
-0.01019839197397232,
0.06902942061424255,
-0.013933999463915825,
0.04669233039021492,
0.06923117488622665,
0.03970041871070862,
-0.004305961541831493,
0.026982923969626427,
0.07581829279661179,
0.0036503176670521498,
0.010911418125033379,
0.048271793872117996,
-0.03423600643873215,
0.019034426659345627,
-0.03738163784146309,
0.010704321786761284,
-0.025663569569587708,
-0.0054822806268930435,
0.058384913951158524,
0.010960669256746769,
-0.04211951419711113,
-0.01871637813746929,
0.00023539550602436066,
0.00937370490282774,
-0.006333442404866219,
-0.010404196567833424,
0.0019909206312149763,
0.005083895288407803,
-0.005281004589051008,
-0.008024342358112335,
-0.08474414795637131,
-0.08392644673585892,
-0.026891067624092102,
-0.014683390967547894,
-0.020432770252227783,
-0.06996317952871323,
-0.042999718338251114,
-0.07156983017921448,
-0.013084406033158302,
0.019913824275135994,
-0.021876666694879532,
0.002294995356351137,
-0.05745626240968704,
0.010361161082983017,
-0.05175887420773506,
-0.01523617748171091,
-0.0549185536801815,
-0.06542091071605682,
-0.03904984891414642,
-0.057532891631126404,
0.03263736143708229,
0.021362077444791794,
0.03521600738167763,
-0.00407199002802372,
-0.003732918528839946,
-0.02187960036098957,
-0.0381181500852108,
0.055466704070568085,
0.04692346975207329,
-0.017298027873039246,
-0.04378190264105797,
0.012470423243939877,
-0.0040296330116689205,
0.02598758041858673,
0.010398040525615215,
-0.033636853098869324,
0.08322009444236755,
0.0617314837872982,
-0.008555734530091286,
-0.006937929894775152,
-0.006398326717317104,
-0.04594598710536957,
-0.04206273704767227,
-0.04886353760957718,
-0.04892405867576599,
-0.01624336838722229,
-0.04638534039258957,
-0.029123054817318916,
-0.00917492713779211,
-0.011641284450888634,
-0.01644596830010414,
-0.03429874777793884,
-0.0018869907362386584,
0.03752540796995163,
0.0836283415555954,
0.0062842583283782005,
0.03811618685722351,
-0.05726991221308708,
-0.019574858248233795,
0.04854763299226761,
0.022005610167980194,
0.012067108415067196,
-0.07045196741819382,
-0.024151485413312912,
0.008036069571971893,
0.009158057160675526,
0.001966743730008602,
0.00015526045172009617,
0.06106306612491608,
0.034396059811115265,
-0.0061421701684594154,
0.030620058998465538,
-0.028699006885290146,
-0.019983379170298576,
-0.037581104785203934,
0.004410425201058388,
-0.01095607690513134,
-0.02148163504898548,
0.017412973567843437,
0.000387480336939916,
0.010469851084053516,
-0.054494377225637436,
-0.05242665484547615,
-0.035671480000019073,
-0.004516261164098978,
0.054280322045087814,
0.0018258143682032824,
-0.04962158203125,
-0.03355952724814415,
-0.0684238076210022,
0.010884799994528294,
0.03971529006958008,
-0.01353890635073185,
0.008451825939118862,
0.02814559079706669,
0.03401787579059601,
-0.0018159205792471766,
0.03794592246413231,
0.03907627984881401,
0.06027071177959442,
0.016214415431022644,
-0.04512769356369972,
0.0009819237748160958,
-0.02572975680232048,
0.039937824010849,
0.009023257531225681,
-0.014522051438689232,
-0.033325694501399994,
-0.10005742311477661,
-0.028022728860378265,
0.023324867710471153,
-0.01825881563127041,
0.005189270246773958,
0.030067600309848785,
-0.01639796979725361,
-0.008348258212208748,
0.0012330608442425728,
-0.0038062352687120438,
0.050702743232250214,
-0.04031826928257942,
0.05770483240485191,
-0.006206707563251257,
0.023765143007040024,
-0.042916782200336456,
0.027460703626275063,
-0.015325372107326984,
-0.01271396316587925,
-0.0042677694000303745,
0.030197294428944588,
0.04583189636468887,
0.06772460788488388,
0.052840594202280045,
0.018195709213614464,
-0.06307854503393173,
0.03242525830864906,
0.059842925518751144,
-0.038922931998968124,
-0.07250155508518219,
-0.029087821021676064,
0.021935729309916496,
-0.010087699629366398,
0.014121419750154018,
-0.00786125659942627,
0.0186055488884449,
0.058144886046648026,
-0.018331818282604218,
-0.019771266728639603,
-0.00039779552025720477,
-0.008476353250443935,
-0.03253079578280449,
-0.02232273295521736,
-0.003400559304282069,
0.01440894789993763,
-0.01619160920381546,
0.004956026561558247,
0.04372279718518257,
0.024615058675408363,
0.046150755137205124,
0.06442072987556458,
-0.007949010469019413,
-0.046579476445913315,
0.05468596890568733,
0.005144841503351927,
-0.023862920701503754,
-0.08825481683015823,
-0.02853265590965748,
0.0230031106621027,
0.03526541218161583,
0.01060789730399847,
-0.06374212354421616,
0.013904218561947346,
0.02597091905772686,
-0.07019319385290146,
0.053312432020902634,
-0.008425389416515827,
0.01549115963280201,
0.0405273512005806,
0.01622059755027294,
0.03564073517918587,
-0.037111882120370865,
-0.029424069449305534,
0.006243058945983648,
0.03875427693128586,
-0.01219781581312418,
-0.026268167421221733,
-0.021520813927054405,
0.034264057874679565,
0.04196092113852501,
0.06077245995402336,
0.03695366904139519,
-0.0487445704638958,
-0.06982941180467606,
-0.0417310856282711,
0.02227260172367096,
-0.038265861570835114,
-0.0022998335771262646,
0.049533333629369736,
0.04597920924425125,
-0.05847899615764618,
-0.04878881573677063,
-0.03179473057389259,
-0.012199577875435352,
0.030823122709989548,
0.011223184876143932,
-0.019913820549845695,
-0.01070159301161766,
0.04366130381822586,
-0.006518992129713297,
-0.029233599081635475,
-0.06390590220689774,
0.01095127034932375,
0.017057182267308235,
0.006539519876241684,
0.027798354625701904,
0.03251352533698082,
0.058214638382196426,
0.06449633836746216,
0.038838084787130356,
0.011187462136149406,
-0.043039582669734955,
0.03120398335158825,
-0.039595309644937515,
-0.027617599815130234,
0.00392407551407814,
-0.07198525220155716,
0.003588015679270029,
-0.018338054418563843,
-0.02259143628180027,
-0.040640391409397125,
-0.023800119757652283,
0.02075323462486267,
0.006310978904366493,
0.0023579525295645,
0.013253221288323402,
0.05286969244480133,
0.005344977602362633,
-0.04908579960465431,
-0.03210325166583061,
-0.02437158115208149,
-0.06166863068938255,
-0.06278412789106369,
0.03617311641573906,
-0.007126798387616873,
0.011328794062137604,
0.018563879653811455,
0.05143239349126816,
0.030177097767591476,
0.02578175626695156,
-0.02692517079412937,
0.021839404478669167,
0.0036130647640675306,
-0.04207012802362442,
0.01209922507405281,
0.015563310123980045,
0.010439497418701649,
0.059017620980739594,
-0.01420635636895895,
0.026635874062776566,
-0.0015211659483611584,
-0.026722153648734093,
-0.02101762965321541,
0.009556497447192669,
0.030189063400030136,
-0.044245440512895584,
-0.024960976094007492,
0.009662416763603687,
-0.032747164368629456,
0.02616182714700699,
-0.018140345811843872,
-0.020907407626509666,
-0.017706505954265594,
0.005451573524624109,
0.03334534913301468,
-0.011654164642095566,
-0.05563484504818916,
0.027840901166200638,
-0.04849850758910179,
0.043982140719890594,
-0.07062482833862305,
0.02438180521130562,
-0.039303239434957504,
0.03628537431359291,
-0.01809518039226532,
-0.007645750883966684,
-0.037058085203170776,
0.04477979615330696,
0.016373058781027794,
-0.027109701186418533,
-0.036205802112817764,
0.0352213978767395,
-0.011071066372096539,
0.026145806536078453,
-0.021601364016532898,
0.01772686280310154,
-0.007177351973950863,
0.03639332950115204,
-0.012673440389335155,
0.03558356314897537,
-0.011717195622622967,
0.04729270190000534,
-0.039497386664152145,
-0.0001735429686959833,
-0.033350009471178055,
-0.035618580877780914,
0.019549986347556114,
0.04164945334196091,
0.026172088459134102,
0.020447097718715668,
-0.013842748478055,
0.018132757395505905,
0.013094252906739712,
-0.03937658667564392,
-0.0337190181016922,
0.008246800862252712,
0.015217355452477932,
0.02133367396891117,
0.05236688628792763,
0.032644230872392654,
-0.07207171618938446,
-0.0354544036090374,
0.06103344261646271,
0.00470432173460722,
0.024308515712618828,
-0.0013635772047564387,
0.0359397828578949,
0.03462500870227814,
0.05100809410214424,
-0.0467526838183403,
0.02006186731159687,
0.002573420526459813,
-0.008013039827346802,
0.025284383445978165,
-0.02926037460565567,
0.02436918579041958,
0.021491892635822296,
-0.04544276371598244,
-0.017100440338253975,
0.0726725161075592,
0.035143665969371796,
-0.008566034957766533,
-0.02702876552939415,
-0.03887367993593216,
0.03720571845769882,
0.0003894007531926036,
-0.04430558159947395,
0.018523644655942917,
0.0212929155677557,
-0.016965476796030998,
0.06246115267276764,
-0.03633250296115875,
0.009220099076628685,
0.03897549584507942,
0.05648765712976456,
-0.023051317781209946,
0.0660337582230568,
-0.01357378251850605,
0.06048594042658806,
0.03704683110117912,
-0.07075992971658707,
-0.015491310507059097,
-0.05402382090687752,
0.08719544857740402,
-0.07055129110813141,
0.07838200777769089,
0.04145610332489014,
0.008416304364800453,
0.03090253844857216,
-0.01662633940577507,
-0.04680652916431427,
-0.013389733619987965,
-0.04849155992269516,
0.07377848774194717,
0.007116533350199461,
-0.046072956174612045,
0.0673350840806961,
0.023306382820010185,
-0.05783877149224281,
0.05316485837101936,
0.02481899783015251,
0.01878267526626587,
0.0008681170293129981,
0.04829319193959236,
-0.051316533237695694,
0.016517730429768562,
-0.061112165451049805,
0.054048605263233185,
-0.050951339304447174,
-0.003271350171416998,
0.02613114006817341,
-0.05320572480559349,
-0.02289249747991562,
0.048702172935009,
-0.013434132561087608,
-0.015367589890956879,
0.03648538514971733,
-0.05747273191809654,
-0.0673898383975029,
0.012716803699731827,
-0.007699358742684126,
0.023812713101506233,
0.012500123120844364,
-0.03441166132688522,
0.035197656601667404,
0.03828373923897743,
0.013578647747635841,
-0.03458685055375099,
0.009786541573703289,
0.023002851754426956,
-0.0373728983104229,
-0.026708608493208885,
0.05337044596672058,
0.01397247239947319,
-0.0359644778072834,
0.002693552291020751,
0.00370448874309659,
0.004155112896114588,
0.02467505820095539,
0.014246203936636448,
0.016501422971487045,
-0.055760130286216736,
-0.03427939489483833,
0.030394388362765312,
-0.01887514442205429,
0.027319040149450302,
-0.03289671242237091,
0.008626212365925312,
0.020818965509533882,
0.01787985861301422,
0.0024175362195819616,
-0.03721780329942703,
0.014178438112139702,
0.033820878714323044,
-0.0560150071978569,
0.002315968507900834,
0.004649333655834198,
-0.05280561372637749,
-0.027071751654148102,
-0.03217654675245285,
-0.019072722643613815,
0.007584959268569946,
-0.02949206344783306,
-0.01510849129408598,
0.05364277586340904,
0.015334351919591427,
-0.05474555492401123,
-0.10135144740343094,
-0.0056054252199828625,
-0.04070413112640381,
0.03281502053141594,
0.02674119547009468,
-0.049110643565654755,
-0.011298674158751965,
-0.0311161819845438,
-0.053957387804985046,
0.06394941359758377,
0.040598656982183456,
-0.023191507905721664,
0.06221881881356239,
0.04974754899740219,
-0.018073730170726776,
0.01046657096594572,
0.0034806933254003525,
-0.056210365146398544,
0.004255919251590967,
0.025138795375823975,
0.022015061229467392,
0.02547648921608925,
0.00642629386857152,
-0.022751769050955772,
-0.022264862433075905,
-0.027241438627243042,
-0.04556284099817276,
-0.025436723604798317,
0.027790261432528496,
0.07122807949781418
] |
Andrija/SRoBERTa-base | [
"pytorch",
"roberta",
"fill-mask",
"hr",
"sr",
"multilingual",
"dataset:oscar",
"dataset:leipzig",
"transformers",
"masked-lm",
"license:apache-2.0",
"autotrain_compatible"
] | fill-mask | {
"architectures": [
"RobertaForMaskedLM"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 80 | null | ---
language:
- english
license: creativeml-openrail-m
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- instagram model
- parent model : [chilloutmix]
[Please report any unauthorized commercial use!].
------------
------------
Work Perfectly on any version Rev_Animated [Checkpoint]! https://civitai.com/models/7371/rev-animated.
Also Perfect for Inpainting.
Thanks...
## Training SD
Clip Skip --> 1 / 2 (Recommended)
Weight --> 0,7 - 1.0
Resolution --> Any Combinations (A x Z) = 512 - 1440
Denoizing Strength --> 0,56 - 0,77 (Recommended)
------------
------------
Examples:
 
 
------------
------------
## License
This model is open access and available to all, with a CreativeML OpenRAIL-M license further specifying rights and usage.
The CreativeML OpenRAIL License specifies:
[Please read the full license here](https://huggingface.co/spaces/CompVis/stable-diffusion-license)
## Big Thanks to
Myself - Skyova S.A.R.H. | [
-0.010760221630334854,
-0.01743987575173378,
-0.01488481368869543,
0.02413066476583481,
0.0377296581864357,
0.01427497249096632,
-0.0016545585822314024,
0.007236249279230833,
-0.027619389817118645,
0.06526969373226166,
0.00982875656336546,
-0.02362719178199768,
0.010427307337522507,
0.040453750640153885,
-0.01903003267943859,
-0.05218476429581642,
-0.040119197219610214,
-0.005549764260649681,
-0.015496247448027134,
-0.006449234206229448,
0.038620539009571075,
0.021402036771178246,
-0.006133297458291054,
0.018101772293448448,
-0.009754993952810764,
0.01833324134349823,
-0.0026791931595653296,
-0.006798699963837862,
0.03043499030172825,
-0.052198365330696106,
0.00871975626796484,
-0.046658918261528015,
-0.038422152400016785,
-0.05002446472644806,
-0.02725408226251602,
0.009513970464468002,
0.021277012303471565,
0.04195570573210716,
0.021778902038931847,
0.04538256675004959,
-0.023968348279595375,
0.023012125864624977,
-0.04525471106171608,
-0.012718860991299152,
0.03411541134119034,
-0.01027583796530962,
-0.01975671947002411,
-0.022539939731359482,
0.03296753019094467,
-0.04304993897676468,
-0.06913893669843674,
-0.06606310606002808,
-0.012479969300329685,
0.020796561613678932,
-0.014988181181252003,
-0.0257671270519495,
-0.07573416084051132,
-0.013889482244849205,
0.051620084792375565,
-0.029376672580838203,
-0.015972869470715523,
-0.006899063475430012,
-0.07152166217565536,
0.010349838063120842,
0.01563195139169693,
-0.04891452193260193,
0.01530835498124361,
-0.06356267631053925,
0.020850077271461487,
-0.008927293121814728,
0.03300032392144203,
-0.04827997460961342,
0.011332868598401546,
-0.05600104480981827,
-0.020091919228434563,
-0.005029731895774603,
0.0373188853263855,
0.05592379719018936,
-0.037719517946243286,
0.0756932720541954,
0.030301637947559357,
0.013741177506744862,
0.027804279699921608,
-0.004451769404113293,
-0.03047732263803482,
0.03879491612315178,
-0.03432479128241539,
0.017673637717962265,
-0.0005903985002078116,
0.0345628447830677,
-0.04719087481498718,
-0.036613646894693375,
-0.015591230243444443,
-0.06954140216112137,
0.006084369495511055,
0.04788310080766678,
0.03745965659618378,
-0.025338396430015564,
0.026451751589775085,
0.016801422461867332,
0.02559005469083786,
0.02708478458225727,
-0.021725524216890335,
0.0625593289732933,
-0.004342938307672739,
-0.022057143971323967,
-0.026034964248538017,
-0.012693429365754128,
-0.09285292774438858,
0.01675676926970482,
0.02521093375980854,
-0.017456509172916412,
-0.013443080708384514,
0.02724445052444935,
-0.007725488860160112,
0.0014440171653404832,
0.03255361691117287,
-0.03249943256378174,
-0.002732018241658807,
-0.07145190238952637,
0.03667892888188362,
0.02987273968756199,
-0.012744058854877949,
-0.0037414918188005686,
-0.06104155629873276,
0.0415513701736927,
-0.01979837380349636,
-0.030442483723163605,
-0.02005928009748459,
0.018888434395194054,
0.0061085401102900505,
0.031382232904434204,
0.0037246316205710173,
-0.06153201684355736,
0.0036945061292499304,
0.024660544469952583,
-0.05521002784371376,
0.023130912333726883,
0.02000359818339348,
0.10176292061805725,
-0.08059130609035492,
-0.05393630638718605,
0.010958644561469555,
0.02107366919517517,
-0.03310701996088028,
-0.00038756165304221213,
0.023790432140231133,
-0.032329801470041275,
0.0033568048384040594,
-0.01373868715018034,
0.057420894503593445,
-0.05273313447833061,
-0.049034226685762405,
0.043264418840408325,
-0.019092179834842682,
0.02693801186978817,
-0.04662960022687912,
-0.007617807015776634,
-0.010708958841860294,
0.001865926431491971,
-0.017516031861305237,
0.03498318791389465,
-0.0016351168742403388,
-0.05218324810266495,
-0.03517106920480728,
-0.03353489935398102,
0.028445685282349586,
0.07841965556144714,
-0.025913575664162636,
-0.04484846815466881,
-0.04235981032252312,
0.01675345003604889,
0.021787505596876144,
0.03370555862784386,
-0.024266742169857025,
0.042762454599142075,
0.04864494502544403,
0.04779879003763199,
-0.0249473974108696,
0.04805569350719452,
0.041846148669719696,
-0.010799402371048927,
-0.006981321610510349,
-0.013939976692199707,
0.02970772795379162,
-0.044349025934934616,
-0.0028594008181244135,
0.037324197590351105,
-0.009077036753296852,
-0.05858464539051056,
-0.0319226048886776,
0.06925444304943085,
-0.0008858298533596098,
-0.03543147072196007,
0.013033140450716019,
-0.022039130330085754,
-0.019971508532762527,
0.0626382902264595,
-0.023770492523908615,
-0.04292488843202591,
-0.0365028977394104,
-0.02756071463227272,
-0.0011370989959686995,
0.005256660282611847,
0.01843060925602913,
0.011671298183500767,
-0.033149149268865585,
0.08316090703010559,
-0.03269747644662857,
0.03798292577266693,
-0.04688407480716705,
-0.054783329367637634,
0.019504966214299202,
0.04600163921713829,
0.03461693227291107,
0.05934279412031174,
-0.01571478322148323,
-0.051658667623996735,
0.025428881868720055,
0.03959871083498001,
0.028967812657356262,
0.026888547465205193,
-0.013108586892485619,
-0.016624026000499725,
0.024223456159234047,
0.03454304113984108,
-0.05252457782626152,
-0.028764216229319572,
0.02083655633032322,
0.024571722373366356,
-0.03864462301135063,
0.006709159351885319,
-0.029905222356319427,
0.04316404089331627,
-0.05538938194513321,
-0.03403722122311592,
0.05259650945663452,
0.01968013308942318,
-0.023989252746105194,
0.019302625209093094,
0.028785381466150284,
0.011673105880618095,
0.013120661489665508,
0.017154932022094727,
0.05602797493338585,
-0.03475309535861015,
0.018563468009233475,
0.041551440954208374,
0.0436929427087307,
-0.05017230659723282,
0.04358837753534317,
-0.0037443183828145266,
0.02427866868674755,
0.041412353515625,
-0.06036654859781265,
0.023984843865036964,
0.10504622012376785,
0.04452788829803467,
-0.053664788603782654,
0.04617669805884361,
0.014289687387645245,
0.03724731132388115,
0.04627189040184021,
-0.02222599647939205,
0.04455940052866936,
-0.029386017471551895,
0.0460997149348259,
0.08823961019515991,
0.019145233556628227,
-0.018354834988713264,
0.04606601223349571,
0.08291768282651901,
-0.006049789022654295,
0.002857284154742956,
0.056452326476573944,
-0.04089944809675217,
0.019065801054239273,
-0.032796815037727356,
-0.009355777874588966,
-0.008387970738112926,
0.0015312288887798786,
0.038100164383649826,
0.014014317654073238,
-0.026432519778609276,
-0.012286599725484848,
0.012301449663937092,
-0.004796060733497143,
0.04544574022293091,
-0.014454273506999016,
-0.023998720571398735,
0.015203150920569897,
-0.02503298968076706,
-0.014699426479637623,
-0.06892175227403641,
-0.051619987934827805,
-0.010283003561198711,
-0.017459657043218613,
-0.0040617394261062145,
-0.048483408987522125,
-0.00872530322521925,
-0.09810478240251541,
-0.0106217535212636,
0.05193108320236206,
0.023792026564478874,
-0.0026972899213433266,
-0.035445015877485275,
0.035482458770275116,
-0.034009989351034164,
-0.03725508227944374,
-0.06550543010234833,
-0.0412728413939476,
-0.014120402745902538,
-0.07662078738212585,
0.03646182641386986,
0.006358535028994083,
0.033743925392627716,
0.005317197181284428,
0.005587953142821789,
-0.007569490931928158,
-0.03099280409514904,
0.030648481100797653,
0.04452965036034584,
-0.03496836498379707,
-0.054192084819078445,
-0.007617830298841,
-0.024609141051769257,
0.0022783796302974224,
-0.04082335904240608,
-0.010002901777625084,
0.07833065837621689,
0.07295097410678864,
0.01009086612612009,
0.015352132730185986,
0.003140948014333844,
-0.03144929185509682,
-0.05647909641265869,
-0.03882396221160889,
-0.02220413088798523,
-0.02512306161224842,
-0.026028957217931747,
-0.05730517581105232,
-0.03211138769984245,
-0.025394633412361145,
0.007809396833181381,
-0.01666261814534664,
-0.019996602088212967,
0.0277470201253891,
0.061012182384729385,
0.035022590309381485,
0.04803856834769249,
-0.03358106687664986,
-0.045790478587150574,
0.06963172554969788,
0.009264764375984669,
-0.025184957310557365,
-0.052553940564394,
-0.014747687615454197,
0.029759777709841728,
-0.009488332085311413,
-0.01661192998290062,
0.007019894663244486,
0.0755135789513588,
0.0019295566016808152,
-0.020915726199746132,
0.010367232374846935,
-0.04627683013677597,
0.03479757905006409,
0.01902449131011963,
-0.009471018798649311,
-0.014786376617848873,
-0.03309984877705574,
-0.009427042677998543,
0.00930682010948658,
0.06155736371874809,
-0.05940419062972069,
-0.06321021169424057,
-0.014035909436643124,
0.034161098301410675,
0.051164764910936356,
0.0121446643024683,
-0.05776024982333183,
-0.019500557333230972,
-0.07005011290311813,
-0.013029446825385094,
0.03406521677970886,
-0.015479715541005135,
0.023369334638118744,
0.04247746989130974,
-0.0179219339042902,
0.014484736137092113,
0.05184539780020714,
0.018887266516685486,
0.026735108345746994,
0.009928379207849503,
-0.034902479499578476,
0.016323894262313843,
-0.030402658507227898,
0.034764546900987625,
0.007317738141864538,
-0.018709570169448853,
-0.04068169370293617,
-0.09810002893209457,
-0.009489879012107849,
0.022821662947535515,
0.017100811004638672,
0.021015943959355354,
0.06103220954537392,
-0.005129141733050346,
-0.01714531145989895,
0.015521922148764133,
0.013409746810793877,
0.05494924262166023,
-0.04306231811642647,
0.08103503286838531,
-0.014686218462884426,
0.009134506806731224,
-0.03143083676695824,
0.036221522837877274,
-0.032554060220718384,
-0.03613132983446121,
0.012900865636765957,
0.05655679851770401,
0.00012794688518624753,
0.05204163119196892,
0.03626643866300583,
0.03861650079488754,
-0.03510737046599388,
0.02396998181939125,
0.03544364869594574,
-0.03735342621803284,
-0.05990550294518471,
0.013934018090367317,
-0.004134750459343195,
0.0033336644992232323,
-0.016994992271065712,
-0.013226156122982502,
0.03282959759235382,
0.03887452557682991,
-0.013253564015030861,
0.027513258159160614,
0.01824745163321495,
-0.010307527147233486,
-0.013738518580794334,
-0.038361746817827225,
0.00398720009252429,
0.003104493720456958,
-0.009413623251020908,
0.009144415147602558,
0.033491045236587524,
0.029976315796375275,
0.052021514624357224,
0.04190346598625183,
-0.03542518615722656,
-0.05378161743283272,
0.0456734225153923,
0.015378238633275032,
-0.006825501564890146,
-0.09647474437952042,
0.017218582332134247,
0.022051777690649033,
0.04762021079659462,
0.014419862069189548,
-0.06761962920427322,
0.03321817144751549,
0.07779370993375778,
-0.06082482635974884,
0.051120832562446594,
0.006242979317903519,
0.025051813572645187,
0.039235010743141174,
0.0007340610609389842,
0.039058540016412735,
-0.031435683369636536,
0.013919745571911335,
-0.02012138068675995,
0.02770320326089859,
-0.028818754479289055,
-0.027733152732253075,
-0.0372169204056263,
0.018158381804823875,
0.025445399805903435,
-0.0060022613033652306,
0.044844795018434525,
-0.05955624580383301,
-0.07123926281929016,
-0.0295429490506649,
0.04321427643299103,
-0.05042891949415207,
0.047439251095056534,
0.03877202048897743,
0.03464203700423241,
-0.050642237067222595,
-0.04649658501148224,
-0.008413386531174183,
-0.01640082150697708,
0.03209541365504265,
-0.0012534928973764181,
-0.05194331333041191,
-0.03001614287495613,
0.06168445572257042,
0.015262891538441181,
-0.013516511768102646,
-0.10298758000135422,
-0.004629804287105799,
-0.0046200938522815704,
-0.021369080990552902,
0.04801137000322342,
0.014247545972466469,
0.06337995827198029,
0.07231180369853973,
0.0014075175859034061,
0.02983947843313217,
-0.03621359169483185,
0.03559211641550064,
-0.05393686518073082,
-0.017600376158952713,
-0.003312292043119669,
-0.0283015426248312,
-0.050140801817178726,
-0.0019021411426365376,
-0.05308934673666954,
-0.018422506749629974,
-0.042611099779605865,
0.04405929520726204,
0.01604587770998478,
0.015313244424760342,
-0.0007763745961710811,
-0.008308172225952148,
-0.0029075322672724724,
-0.040973249822854996,
-0.030375169590115547,
-0.02009325474500656,
-0.03751055896282196,
-0.05185556784272194,
0.03310282900929451,
-0.014339791610836983,
0.007859437726438046,
0.0027219359762966633,
0.013956793583929539,
0.010928620584309101,
0.05076403543353081,
-0.037238992750644684,
0.02729714661836624,
0.02338423952460289,
-0.0377555675804615,
-0.011411857791244984,
0.007789915893226862,
0.009953716769814491,
0.0444280244410038,
-0.04628396034240723,
0.037414222955703735,
-0.0029815465677529573,
-0.01730293221771717,
-0.051307473331689835,
0.022152915596961975,
0.010557259432971478,
-0.05454130843281746,
-0.020700009539723396,
-0.000590043026022613,
-0.025472357869148254,
0.03724760189652443,
-0.03374949097633362,
-0.020638369023799896,
0.02806602045893669,
0.011394727043807507,
0.06174633279442787,
-0.032787688076496124,
-0.021337231621146202,
0.03493811935186386,
-0.011735559441149235,
0.008490100502967834,
-0.09354456514120102,
0.027629781514406204,
-0.014186153188347816,
0.031085573136806488,
0.008615916594862938,
0.007035043090581894,
-0.0331345833837986,
0.054959725588560104,
-0.021541962400078773,
0.013500606641173363,
-0.016278617084026337,
0.04190734773874283,
-0.04555691033601761,
0.0465615950524807,
-0.01998297870159149,
0.028922291472554207,
-0.01989259570837021,
0.0861569195985794,
-0.04544491693377495,
0.009081488475203514,
-0.009090917184948921,
0.012565878219902515,
-0.011773704551160336,
-0.0247446708381176,
-0.02870190143585205,
-0.016167910769581795,
0.021646644920110703,
0.042207807302474976,
0.005732318852096796,
0.0018801947589963675,
-0.023269157856702805,
-0.004360733088105917,
0.015611403621733189,
-0.05425793677568436,
-0.04883744567632675,
0.013684585690498352,
-0.01119274366647005,
-0.010305425152182579,
0.060473110526800156,
0.025226226076483727,
-0.039617870002985,
-0.07008395344018936,
0.048906002193689346,
0.010043619200587273,
0.023558693006634712,
-0.00812853965908289,
0.04113152250647545,
0.0158193651586771,
0.05298104137182236,
-0.0638420432806015,
0.00688145449385047,
-0.01320934109389782,
-0.0053881313651800156,
0.036341313272714615,
0.0029266609344631433,
0.0254077035933733,
0.00427038362249732,
-0.025860533118247986,
-0.027697017416357994,
0.06950320303440094,
0.02923351526260376,
0.02365981601178646,
0.011633126996457577,
-0.04212857410311699,
0.03590824082493782,
0.00173702382016927,
-0.024229267612099648,
0.048547808080911636,
0.020455986261367798,
-0.024578576907515526,
0.01599057950079441,
0.0001695852552074939,
0.048337776213884354,
0.029708346351981163,
0.031099386513233185,
-0.017799142748117447,
0.06072676554322243,
-0.04151527211070061,
0.04575952887535095,
0.02245435118675232,
-0.05512605607509613,
-0.0038709607906639576,
-0.03775620833039284,
0.05556749552488327,
-0.07781090587377548,
0.04890386760234833,
0.0652463510632515,
0.011339722201228142,
0.032795023173093796,
-0.055729396641254425,
-0.043862439692020416,
0.02399565652012825,
-0.03555232658982277,
0.059116166085004807,
0.008469444699585438,
-0.055769577622413635,
0.06399494409561157,
0.01515920739620924,
-0.07757224142551422,
0.036453429609537125,
0.024211186915636063,
-0.015383107587695122,
0.02090088650584221,
0.06440656632184982,
-0.049536097794771194,
0.003989518154412508,
-0.05288437381386757,
0.030574699863791466,
-0.04886571317911148,
-0.029559459537267685,
0.024101706221699715,
-0.026904145255684853,
-0.04457416385412216,
0.017472201958298683,
-0.02494877763092518,
0.0005364801036193967,
0.024015704169869423,
-0.017924100160598755,
-0.012184658087790012,
0.019983766600489616,
0.009399553760886192,
0.019426746293902397,
-0.009224128909409046,
-0.010413367301225662,
0.002234334358945489,
0.020667554810643196,
0.022499138489365578,
-0.04349678009748459,
0.009098413400352001,
0.01148202270269394,
-0.059956733137369156,
-0.03748004883527756,
0.026777662336826324,
-0.010665400885045528,
-0.023848405107855797,
0.03380965813994408,
0.0028803320601582527,
0.039043836295604706,
0.02819235250353813,
0.005447749979794025,
0.0012277913047000766,
-0.05476875975728035,
-0.027810113504529,
0.023443421348929405,
0.00248283171094954,
-0.0027843830175697803,
-0.008792569860816002,
-0.0029450682923197746,
0.04750297591090202,
0.014554653316736221,
0.017294833436608315,
-0.010248072445392609,
-0.027180776000022888,
0.005435512401163578,
-0.052455056458711624,
-0.008676168508827686,
0.011189664714038372,
-0.05295807495713234,
-0.02578001283109188,
-0.004462123848497868,
-0.032640062272548676,
0.04001695662736893,
-0.061686523258686066,
0.029696760699152946,
0.03384910523891449,
-0.023536499589681625,
-0.05030348151922226,
-0.09501633048057556,
-0.040695469826459885,
-0.04493188112974167,
0.042424704879522324,
0.0392339751124382,
-0.06417378783226013,
0.023989159613847733,
-0.036213986575603485,
-0.02159770205616951,
0.024094372987747192,
0.01826292835175991,
-0.004802732728421688,
0.02765672281384468,
0.054373472929000854,
-0.012128546833992004,
0.03509925305843353,
0.015613516792654991,
-0.06055685132741928,
0.012876607477664948,
0.004256885964423418,
0.01782313548028469,
0.02602163888514042,
0.00820134673267603,
-0.016565343365073204,
-0.017181377857923508,
-0.05582224950194359,
-0.0341293141245842,
-0.059177104383707047,
0.00828974973410368,
0.025590715929865837
] |
Andrija/SRoBERTa | [
"pytorch",
"roberta",
"fill-mask",
"hr",
"sr",
"multilingual",
"dataset:leipzig",
"transformers",
"masked-lm",
"license:apache-2.0",
"autotrain_compatible"
] | fill-mask | {
"architectures": [
"RobertaForMaskedLM"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 88 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
datasets:
- squad
model-index:
- name: qa_model
results: []
---
<!-- 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. -->
# qa_model
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the squad dataset.
## 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: 16
- eval_batch_size: 16
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 1
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:----:|:---------------:|
| No log | 1.0 | 5 | 5.8723 |
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.022771989926695824,
-0.018198685720562935,
-0.017950624227523804,
0.05398353189229965,
0.05581660196185112,
0.016140054911375046,
-0.0164837297052145,
0.01842498779296875,
-0.03579520806670189,
0.045284707099199295,
0.024368248879909515,
-0.016781294718384743,
0.012070405296981335,
0.049839086830616,
-0.0447988361120224,
-0.04340478777885437,
-0.006081069819629192,
0.005080390255898237,
-0.021299118176102638,
-0.022277986630797386,
0.010946894995868206,
-0.00906748604029417,
0.0070127276703715324,
0.009635905735194683,
0.0127780232578516,
0.014847644604742527,
-0.014027677476406097,
0.017181336879730225,
0.04180722311139107,
-0.05664708837866783,
0.017171090468764305,
-0.028113050386309624,
-0.048721276223659515,
-0.020984385162591934,
0.0021791080944240093,
-0.013930615037679672,
0.013589456677436829,
0.002581467153504491,
0.05329413339495659,
0.046037398278713226,
-0.004562424961477518,
0.015300553292036057,
-0.026387376710772514,
-0.020215274766087532,
0.06165521219372749,
0.00820116139948368,
-0.04039497673511505,
-0.019876427948474884,
0.027299795299768448,
-0.033690907061100006,
-0.06696377694606781,
-0.08160393685102463,
-0.04059840738773346,
0.022950097918510437,
-0.008817377500236034,
-0.022061053663492203,
-0.07724276185035706,
-0.01015037577599287,
0.05153781175613403,
-0.05908700078725815,
-0.016950596123933792,
0.027091989293694496,
-0.06931082904338837,
0.02589274011552334,
0.02135770209133625,
-0.03226390853524208,
0.015251737087965012,
-0.03892877697944641,
0.02505681850016117,
-0.01032714918255806,
0.054682034999132156,
-0.014832456596195698,
0.024477001279592514,
-0.06719370931386948,
0.011623112484812737,
-0.014280261471867561,
0.01592554710805416,
0.04928019642829895,
-0.03038249909877777,
0.057605110108852386,
0.01845921203494072,
-0.000721694144885987,
0.0316796712577343,
-0.02836284413933754,
-0.014652340672910213,
0.03597134351730347,
-0.044691912829875946,
0.023996392264962196,
0.008591955527663231,
0.032344575971364975,
-0.04030481353402138,
-0.01750956103205681,
-0.03197046369314194,
-0.024644076824188232,
-0.017330829054117203,
0.025265656411647797,
0.04112013429403305,
0.010983362793922424,
0.034242983907461166,
0.019750041887164116,
0.05169880390167236,
0.047706715762615204,
-0.02252507209777832,
0.06156662479043007,
-0.015435990877449512,
-0.010978245176374912,
-0.014810376800596714,
-0.022221297025680542,
-0.0402858629822731,
0.029389746487140656,
0.024809522554278374,
-0.03238876909017563,
-0.04147931560873985,
0.005217862781137228,
0.03398307412862778,
0.017019115388393402,
0.07502318918704987,
-0.027390336617827415,
-0.03785857930779457,
-0.03284261375665665,
0.03460194170475006,
0.011796891689300537,
-0.026674743741750717,
-0.009739842265844345,
-0.026900680735707283,
-0.021606408059597015,
-0.021678857505321503,
-0.04602259770035744,
-0.004972345195710659,
0.0203498974442482,
0.017630428075790405,
0.07232486456632614,
0.0062628150917589664,
-0.07999451458454132,
0.00013832995318807662,
0.004581725690513849,
-0.04544323310256004,
0.03079146333038807,
0.0038845944218337536,
0.09330226480960846,
-0.07520899176597595,
-0.07871992886066437,
0.03744973987340927,
0.014854010194540024,
-0.012700004503130913,
-0.0061565269716084,
-0.009553610347211361,
-0.04492820054292679,
-0.012866203673183918,
0.002622147323563695,
0.05300270393490791,
-0.040954239666461945,
-0.009160162881016731,
0.06066584959626198,
-0.0028835851699113846,
0.03542952984571457,
-0.06786469370126724,
-0.008998549543321133,
0.03431472182273865,
-0.010921401903033257,
-0.02801763080060482,
0.05784895643591881,
-0.017365265637636185,
-0.0265647079795599,
-0.026912469416856766,
-0.02381639927625656,
-0.0017910684691742063,
0.09569396823644638,
-0.0021562036126852036,
-0.009814784862101078,
-0.029376674443483353,
0.03615047037601471,
0.022272692993283272,
0.025969548150897026,
-0.006079701241105795,
0.02234763838350773,
0.05020216479897499,
0.03168637678027153,
-0.01067414041608572,
0.030695326626300812,
0.03985941410064697,
-0.036248333752155304,
-0.014683250337839127,
0.019348958507180214,
0.0016449776012450457,
-0.030213860794901848,
0.05157390236854553,
0.013995432294905186,
0.019052142277359962,
-0.06408574432134628,
-0.03143050894141197,
0.051921822130680084,
-0.01834673061966896,
0.003918565809726715,
0.010524000972509384,
0.00873622391372919,
-0.014446561224758625,
0.04074256494641304,
-0.01655871607363224,
0.010728280991315842,
-0.03466179966926575,
-0.027046015486121178,
0.02985704317688942,
0.018049320206046104,
0.022509275004267693,
0.04794986918568611,
-0.01556694321334362,
0.10582863539457321,
-0.023710429668426514,
0.00853873509913683,
-0.026257814839482307,
-0.026924313977360725,
0.02048468589782715,
0.04208047688007355,
0.07532178610563278,
0.06552419066429138,
0.02288554050028324,
-0.04840746149420738,
0.04993993788957596,
0.07000095397233963,
0.029505137354135513,
-0.006938518024981022,
-0.022005558013916016,
-0.025394948199391365,
0.02352726459503174,
0.06832572817802429,
-0.03379260003566742,
-0.01174703799188137,
0.017013706266880035,
0.027465498074889183,
0.0017668947111815214,
0.01189331617206335,
-0.03343506157398224,
0.039639659225940704,
-0.07010418176651001,
-0.0666501596570015,
0.033839959651231766,
0.031354889273643494,
-0.016319800168275833,
0.027987010776996613,
0.001172562944702804,
-0.0029338349122554064,
0.014436508528888226,
0.026449555531144142,
0.004356034565716982,
-0.0354933924973011,
0.007876966148614883,
0.0050023505464196205,
0.059814389795064926,
-0.057787057012319565,
0.0440370999276638,
0.003013754729181528,
0.019643142819404602,
0.04193475469946861,
-0.03507709503173828,
0.04272874444723129,
0.050220660865306854,
0.012936308979988098,
-0.014890844002366066,
0.02620856650173664,
0.010760338976979256,
0.026157628744840622,
0.05110511556267738,
0.004882600624114275,
0.06473765522241592,
-0.006898360792547464,
0.032580699771642685,
0.07330449670553207,
0.014018780551850796,
0.02927887812256813,
0.025504767894744873,
0.08839601278305054,
0.008037869818508625,
0.0109490305185318,
0.04424252361059189,
-0.047016534954309464,
0.013258405029773712,
-0.029545696452260017,
-0.0008428235887549818,
-0.021914029493927956,
-0.011764434166252613,
0.0585818886756897,
0.0003574680595193058,
-0.020688196644186974,
-0.01397879607975483,
-0.02102409116923809,
-0.01565336436033249,
0.02567150443792343,
-0.012074634432792664,
-0.003831612877547741,
0.007620969787240028,
-0.030389539897441864,
-0.02394571341574192,
-0.06728553026914597,
-0.042225878685712814,
-0.025556353852152824,
-0.02094663307070732,
-0.02317056991159916,
-0.07670989632606506,
-0.005949139595031738,
-0.07064495235681534,
-0.0327996090054512,
0.04809361323714256,
-0.010657336562871933,
0.000288440496660769,
-0.03762946277856827,
0.02433183416724205,
-0.02736644074320793,
-0.036072779446840286,
-0.03167369216680527,
-0.04660428687930107,
-0.04241810739040375,
-0.06647223979234695,
0.028442557901144028,
0.039124876260757446,
0.008624901063740253,
0.01356451865285635,
0.0012341906549409032,
-0.014019307680428028,
-0.001688149874098599,
0.028644511476159096,
0.05978672206401825,
-0.02523650787770748,
-0.07438452541828156,
0.014331836253404617,
-0.00735807791352272,
0.022387953475117683,
0.0041414899751544,
-0.0293325986713171,
0.09034226089715958,
0.07361041009426117,
0.018581274896860123,
0.004709823522716761,
-0.022393329069018364,
-0.054177723824977875,
-0.05284200236201286,
-0.021396299824118614,
-0.030499694868922234,
-0.014047904871404171,
-0.03840382769703865,
-0.05252988636493683,
-0.034004371613264084,
-0.00698848394677043,
0.0022002053447067738,
0.005961419083178043,
0.03577873110771179,
0.039429645985364914,
0.04401138424873352,
0.015640975907444954,
0.030771883204579353,
-0.029811592772603035,
-0.020565330982208252,
0.04185252636671066,
0.007265174295753241,
0.020754046738147736,
-0.08385737240314484,
-0.04559790715575218,
0.045364562422037125,
0.011170431040227413,
0.01303744874894619,
-0.000008494050234730821,
0.08659769594669342,
-0.007617985364049673,
-0.008909878320991993,
0.016621606424450874,
-0.0050428505055606365,
-0.025021258741617203,
-0.01622636988759041,
0.006073170807212591,
-0.03369797021150589,
-0.052107974886894226,
-0.022032758221030235,
0.008903869427740574,
0.057503439486026764,
-0.06161629408597946,
-0.05339508876204491,
-0.018396712839603424,
0.049354907125234604,
0.03576069697737694,
-0.01172134093940258,
-0.03459135442972183,
-0.007563050836324692,
-0.07232119888067245,
-0.018444528803229332,
0.04516144469380379,
0.022283067926764488,
0.004061253275722265,
0.04614988714456558,
0.019072433933615685,
-0.03035285882651806,
0.051434699445962906,
0.04682818800210953,
0.08102720975875854,
0.015339906327426434,
-0.05424549803137779,
-0.01153134647756815,
-0.01818929798901081,
0.03616927191615105,
-0.006183231249451637,
-0.01713055931031704,
-0.0256792064756155,
-0.1206689178943634,
-0.021086648106575012,
0.0111041609197855,
-0.008968356996774673,
-0.006438974291086197,
0.052880655974149704,
-0.0007425236399285495,
-0.03099028952419758,
-0.0063772802241146564,
0.0006279780063778162,
0.035953719168901443,
-0.03716308996081352,
0.05330469831824303,
-0.01608377881348133,
0.03580712527036667,
-0.04844185709953308,
0.010711701586842537,
-0.023203397169709206,
0.0009639447089284658,
0.01518264040350914,
0.050377242267131805,
-0.01278745662420988,
0.06524469703435898,
0.07684562355279922,
0.02822481282055378,
-0.04490920156240463,
0.032641004770994186,
0.05609234794974327,
-0.03163660317659378,
-0.021363768726587296,
0.007268514018505812,
-0.004216530825942755,
-0.0027435964439064264,
-0.003745995694771409,
-0.008139215409755707,
0.03248349949717522,
0.057202138006687164,
-0.0010450745467096567,
0.023275088518857956,
0.009979818016290665,
-0.01287657767534256,
-0.03024442121386528,
-0.011637866497039795,
-0.025310121476650238,
0.02152041345834732,
-0.0039857835508883,
0.02119264379143715,
0.03814660385251045,
0.013948235660791397,
0.03587917238473892,
0.04364624246954918,
-0.03283080831170082,
-0.04818662256002426,
0.024577351287007332,
0.020211566239595413,
-0.04754476249217987,
-0.08391743153333664,
-0.036438699811697006,
0.041139572858810425,
0.027388842776417732,
-0.004433890804648399,
-0.05566510930657387,
-0.002492581494152546,
0.047917481511831284,
-0.037284884601831436,
0.05738406628370285,
-0.0015675337053835392,
0.042288921773433685,
0.07898649573326111,
-0.02097049355506897,
0.02541474439203739,
-0.023752568289637566,
-0.009517990984022617,
-0.006369074806571007,
0.02562020532786846,
-0.006736523471772671,
-0.037142395973205566,
-0.04675758257508278,
0.017608558759093285,
0.07911766320466995,
0.0398787222802639,
0.028576482087373734,
-0.029995134100317955,
-0.03855592757463455,
0.020513033494353294,
0.03413214534521103,
-0.051069486886262894,
0.0117506617680192,
0.02522634156048298,
0.021662184968590736,
-0.056126512587070465,
-0.05283672735095024,
-0.015468992292881012,
-0.013457108289003372,
0.0334542877972126,
-0.016013989225029945,
-0.030714448541402817,
-0.04126232862472534,
0.03817785531282425,
-0.0033330803271383047,
-0.030058110132813454,
-0.06833554059267044,
0.05185718834400177,
-0.003334544599056244,
0.008968446403741837,
0.05450514703989029,
0.03718400001525879,
0.03207235783338547,
0.04649679362773895,
0.008819610811769962,
0.013332250528037548,
-0.04333340376615524,
0.06567372381687164,
-0.018026277422904968,
-0.033756449818611145,
0.008582496084272861,
-0.03749018535017967,
-0.015467396937310696,
-0.014283163473010063,
-0.04370495304465294,
-0.030796825885772705,
-0.029484955593943596,
0.013830047100782394,
0.00015302744577638805,
0.006053173448890448,
-0.01371719315648079,
0.03296322003006935,
-0.0253794863820076,
-0.035831231623888016,
-0.027583850547671318,
-0.004606991540640593,
-0.059770531952381134,
-0.03783638775348663,
0.014210741966962814,
0.003902607364580035,
0.04063121974468231,
0.03088492713868618,
0.037499915808439255,
0.0022253699135035276,
-0.005069637671113014,
-0.042747508734464645,
-0.00489045400172472,
0.0029813472647219896,
-0.003679315559566021,
-0.025857603177428246,
0.01725436933338642,
0.010599938221275806,
0.04567650333046913,
-0.012264477089047432,
0.03343135118484497,
0.017775218933820724,
0.014239690266549587,
-0.009475774131715298,
0.016940295696258545,
0.028461312875151634,
-0.08551834523677826,
-0.02560536190867424,
0.0017169308848679066,
-0.040194038301706314,
0.011104128323495388,
-0.052367620170116425,
-0.03276481106877327,
0.011796385981142521,
0.011130418628454208,
0.04489454627037048,
-0.005167800933122635,
-0.028825141489505768,
0.025853656232357025,
-0.028858080506324768,
0.015399033203721046,
-0.05376698821783066,
0.02629050984978676,
-0.032228656113147736,
0.003419101471081376,
-0.021405596286058426,
0.02165192738175392,
-0.04287610575556755,
0.03645426407456398,
-0.04337970167398453,
-0.017303509637713432,
-0.0169228408485651,
0.04049472510814667,
-0.027634087949991226,
0.02894599922001362,
-0.0064178514294326305,
0.04269426316022873,
-0.055404309183359146,
0.04887309670448303,
-0.039808131754398346,
0.02104196324944496,
-0.046767137944698334,
0.019710948690772057,
-0.028669197112321854,
0.028686391189694405,
-0.010314857587218285,
-0.02723265253007412,
-0.0032030248548835516,
0.06021398678421974,
0.04463900998234749,
0.018659917637705803,
-0.01365367416292429,
-0.01838783547282219,
0.017853043973445892,
-0.06245272606611252,
-0.009016251191496849,
0.022870037704706192,
-0.007468812167644501,
0.005233108997344971,
0.03150719776749611,
0.04917621612548828,
-0.04398390278220177,
-0.061687588691711426,
0.039651140570640564,
0.0035914937034249306,
0.0061063640750944614,
0.015974486246705055,
0.026676837354898453,
0.019767707213759422,
0.04717225208878517,
-0.03015945293009281,
-0.008046609349548817,
-0.016475364565849304,
-0.03365965560078621,
0.04035479947924614,
-0.008854071609675884,
0.04346809908747673,
0.01884971186518669,
-0.03578384220600128,
-0.033969901502132416,
0.08248894661664963,
0.04187585785984993,
0.01915966346859932,
-0.014925427734851837,
-0.03643697872757912,
0.0532863549888134,
-0.022580359131097794,
-0.024750597774982452,
0.037535183131694794,
-0.012178484350442886,
-0.0406714528799057,
0.07069479674100876,
-0.0011183165479451418,
-0.0033181000035256147,
0.02460017427802086,
0.032843511551618576,
-0.01658812165260315,
0.05683303624391556,
-0.02687009796500206,
0.016386069357395172,
0.045412834733724594,
-0.07272162288427353,
0.001758187310770154,
-0.05151906982064247,
0.057933297008275986,
-0.05631383880972862,
0.03240516409277916,
0.05003354325890541,
0.00785166397690773,
0.017948869615793228,
-0.04847092181444168,
-0.060095082968473434,
-0.009345371276140213,
-0.05612686276435852,
0.06801100820302963,
0.00324814859777689,
-0.04880984500050545,
0.06254243105649948,
0.01990944892168045,
-0.06215960904955864,
0.03271189332008362,
0.03533781319856644,
0.0625564306974411,
0.04002411291003227,
0.05290548875927925,
-0.0632416158914566,
0.006225614342838526,
-0.025850769132375717,
0.03909669443964958,
-0.050311312079429626,
-0.03444685414433479,
0.03555331006646156,
-0.04654420539736748,
-0.02306879311800003,
0.03769231587648392,
0.006616196129471064,
-0.0033776862546801567,
0.041752081364393234,
-0.06316277384757996,
-0.03202580660581589,
-0.009372553788125515,
0.018229426816105843,
-0.04090413078665733,
0.012852628715336323,
-0.03556744009256363,
0.0187330711632967,
0.026015151292085648,
0.0175753403455019,
-0.010440132580697536,
0.008755726739764214,
0.00279263430275023,
-0.05102543532848358,
-0.03645070642232895,
0.03538905829191208,
-0.011638323776423931,
-0.02643151767551899,
0.01840411312878132,
0.005432646721601486,
0.04831298813223839,
-0.00013916297757532448,
-0.0014240529853850603,
0.009838134981691837,
-0.047770578414201736,
-0.013576566241681576,
0.014363585971295834,
-0.0009396743844263256,
0.017368728294968605,
0.006446627900004387,
0.04233591631054878,
0.039012715220451355,
0.020522775128483772,
-0.013853943906724453,
-0.020818307995796204,
-0.037656933069229126,
0.05313431844115257,
-0.02641768753528595,
0.002575143240392208,
-0.007324510719627142,
-0.04827932268381119,
-0.040925584733486176,
-0.017632421106100082,
-0.031898632645606995,
0.030292849987745285,
-0.06474027782678604,
0.008743137121200562,
0.01929854415357113,
-0.018068822100758553,
-0.061144307255744934,
-0.09991436451673508,
-0.014341598376631737,
-0.06825795769691467,
0.01717309094965458,
0.063204824924469,
-0.06213446334004402,
0.025348225608468056,
-0.05023595318198204,
-0.039653632789850235,
0.05630747228860855,
0.04050460830330849,
-0.050328344106674194,
0.02936481311917305,
0.04678897187113762,
-0.057646945118904114,
0.013489359058439732,
-0.0011341262143105268,
-0.03562094271183014,
0.011252892203629017,
0.008310201577842236,
0.029267607256770134,
0.03559918329119682,
0.010671756230294704,
-0.027843661606311798,
-0.027665941044688225,
-0.06808064132928848,
-0.04182763397693634,
-0.06092673912644386,
0.02767544984817505,
0.07566063851118088
] |
Andrija/SRoBERTaFastBPE | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
license: openrail
datasets:
- togethercomputer/RedPajama-Data-1T
language:
- ae
metrics:
- bleu
library_name: allennlp
pipeline_tag: text-to-video
tags:
- finance
- biology
- chemistry
- art
--- | [
-0.025082988664507866,
-0.010443598963320255,
0.0016567851416766644,
0.0024827364832162857,
0.05893278867006302,
0.02466529794037342,
-0.01630588062107563,
0.0022394077386707067,
-0.035667262971401215,
0.05282728374004364,
0.02725912816822529,
0.022667018696665764,
0.0049088820815086365,
0.04478183388710022,
-0.02641037292778492,
-0.009320508688688278,
-0.027626048773527145,
-0.02718927524983883,
-0.035212207585573196,
0.0116849010810256,
0.02403280697762966,
0.01230920571833849,
-0.013305108062922955,
0.010723108425736427,
-0.006388388574123383,
-0.0018339221132919192,
-0.03178546950221062,
0.020695829764008522,
0.03983687236905098,
-0.04300931096076965,
-0.0015534652629867196,
-0.04975134879350662,
-0.05153365060687065,
-0.024977901950478554,
-0.04493764415383339,
-0.008310978300869465,
0.027463896200060844,
0.010271687991917133,
0.023947667330503464,
0.030931569635868073,
-0.015220512636005878,
0.02665846422314644,
0.0005741631030105054,
-0.04291578009724617,
0.01915111392736435,
-0.0018575392896309495,
-0.02069747820496559,
-0.027238499373197556,
0.011668797582387924,
-0.04589002951979637,
-0.07083037495613098,
-0.05467471852898598,
-0.007348403800278902,
0.0023304952774196863,
-0.025518938899040222,
-0.024712180718779564,
-0.03920182213187218,
0.016057273373007774,
0.07889539003372192,
-0.046627920120954514,
-0.04842585325241089,
-0.003968800418078899,
-0.08058381080627441,
-0.017187727615237236,
0.029523378238081932,
-0.06914284080266953,
0.021806761622428894,
-0.04368790611624718,
0.024517608806490898,
-0.008454233407974243,
0.059773512184619904,
-0.035781487822532654,
0.01850070431828499,
-0.07051024585962296,
-0.0039397720247507095,
-0.01485065370798111,
0.031229250133037567,
0.03688158467411995,
-0.056318823248147964,
0.046214260160923004,
0.04968582093715668,
0.014681519009172916,
0.04490233585238457,
-0.009316702373325825,
-0.027735114097595215,
0.03219596669077873,
-0.02440498024225235,
-0.00010924900561803952,
0.02920108661055565,
0.03942231833934784,
-0.019628610461950302,
-0.051784541457891464,
-0.031661711633205414,
-0.0504608191549778,
-0.012904881499707699,
0.02525264024734497,
0.053451310843229294,
-0.020829711109399796,
0.014364040456712246,
0.027322059497237206,
0.03661278635263443,
0.034552864730358124,
-0.000995426787994802,
0.06941457092761993,
-0.001212353352457285,
-0.002814879175275564,
-0.005504537373781204,
-0.003942078910768032,
-0.03600045293569565,
0.0264773927628994,
0.013128249906003475,
-0.030087143182754517,
-0.03943859785795212,
0.04297775402665138,
-0.008964530192315578,
-0.025468967854976654,
0.05636799708008766,
-0.04107370227575302,
-0.04107682406902313,
-0.04579554870724678,
0.050314053893089294,
0.006935390178114176,
0.012189184315502644,
0.025502026081085205,
-0.038929492235183716,
0.005646473728120327,
-0.026116816326975822,
-0.026667708531022072,
-0.00808141753077507,
-0.003403041511774063,
0.026010660454630852,
0.06487845629453659,
-0.00635922234505415,
-0.07966112345457077,
0.03448140248656273,
0.02749415673315525,
-0.052502866834402084,
0.04558287933468819,
0.011658238247036934,
0.11711209267377853,
-0.07167349755764008,
-0.0627882182598114,
0.014324992895126343,
0.03825097531080246,
-0.05613158643245697,
0.013021036051213741,
0.005346514750272036,
-0.05118904635310173,
-0.03232213482260704,
-0.03768379986286163,
0.041837435215711594,
-0.05698198080062866,
-0.0297404732555151,
0.028093919157981873,
0.003021129174157977,
0.02652755007147789,
-0.04475824907422066,
0.007635450456291437,
0.007116025313735008,
-0.01573355868458748,
-0.028589950874447823,
0.03981044888496399,
-0.01073488313704729,
-0.008784006349742413,
-0.01854378916323185,
-0.059802714735269547,
0.0010660350089892745,
0.07451057434082031,
-0.005825770553201437,
-0.0177424605935812,
-0.06169956550002098,
-0.010868978686630726,
0.030306458473205566,
0.019738348200917244,
-0.018257711082696915,
0.04329119250178337,
0.05125092715024948,
0.04016248136758804,
-0.017004162073135376,
0.07090605050325394,
0.04104156047105789,
-0.044255077838897705,
-0.031239977106451988,
0.013321488164365292,
0.03632016107439995,
-0.02273222990334034,
-0.010999840684235096,
0.027386026456952095,
0.008485627360641956,
-0.024241169914603233,
-0.040752772241830826,
0.023022767156362534,
-0.00914768222719431,
0.003915979061275721,
0.011525282636284828,
-0.01868685707449913,
-0.047931548207998276,
0.04018917307257652,
-0.013216684572398663,
-0.021620944142341614,
-0.034355174750089645,
-0.024069320410490036,
0.01677926443517208,
0.017279375344514847,
0.024531235918402672,
0.04567399248480797,
0.0004200655093882233,
0.0948973223567009,
-0.043980106711387634,
0.0032240499276667833,
-0.026586713269352913,
-0.043292850255966187,
0.0026670843362808228,
0.06568650156259537,
0.025063201785087585,
0.03678372874855995,
-0.025384237989783287,
-0.050292156636714935,
0.04146524891257286,
0.04697886109352112,
0.032624006271362305,
0.04203690588474274,
-0.005903180222958326,
0.010509981773793697,
0.0203651562333107,
0.03842756152153015,
-0.05077531561255455,
-0.05130920931696892,
0.024458853527903557,
0.04313110560178757,
-0.021730123087763786,
0.007514558266848326,
-0.02450903132557869,
0.015516269952058792,
-0.01950594037771225,
-0.0649723932147026,
0.011856123805046082,
0.008652574382722378,
-0.008621531538665295,
0.02243194356560707,
-0.01942657306790352,
-0.02566665969789028,
0.008786880411207676,
-0.01832062192261219,
0.012105222791433334,
-0.04949585348367691,
0.011642638593912125,
0.020064225420355797,
0.06299332529306412,
-0.05648757889866829,
0.02498091757297516,
-0.017583049833774567,
0.018535615876317024,
0.024682052433490753,
-0.02778991311788559,
0.018816353753209114,
0.06738776713609695,
0.04338904842734337,
-0.03712068498134613,
0.0333823561668396,
0.041851550340652466,
0.01461814995855093,
0.07216152548789978,
0.004397125914692879,
0.0668695718050003,
-0.023600971326231956,
0.05946690961718559,
0.08153215795755386,
0.014501206576824188,
-0.0056062908843159676,
0.028755513951182365,
0.06727667152881622,
-0.01887684501707554,
-0.006472310982644558,
0.04294583573937416,
-0.04050287976861,
0.038955189287662506,
-0.03849853202700615,
-0.019810045138001442,
-0.03337017074227333,
-0.007596482988446951,
0.02845774218440056,
0.0016141821397468448,
-0.012615310028195381,
0.0019834362901747227,
0.0009492083336226642,
-0.009727870114147663,
0.04602232202887535,
-0.007197630126029253,
0.0017841318622231483,
-0.016392622143030167,
-0.00600331649184227,
0.0377490408718586,
-0.04575919732451439,
-0.0533536858856678,
-0.02151879481971264,
-0.02007274329662323,
0.02541358396410942,
-0.06841215491294861,
-0.03372862562537193,
-0.09967778623104095,
-0.00024049864441622049,
0.061542440205812454,
0.02777091972529888,
-0.012316231615841389,
-0.06893523782491684,
0.022636065259575844,
-0.030569538474082947,
-0.035218246281147,
-0.07049315422773361,
-0.044721927493810654,
-0.022800225764513016,
-0.05249997228384018,
0.04041590914130211,
0.052465781569480896,
0.02567247301340103,
0.014005848206579685,
0.0037794748786836863,
-0.04412304610013962,
-0.036725472658872604,
0.05741708725690842,
0.04979467764496803,
-0.021279510110616684,
-0.026464132592082024,
0.022004887461662292,
-0.01791699416935444,
-0.0005660993629135191,
0.01287353690713644,
-0.05241984501481056,
0.0854366272687912,
0.05833147466182709,
0.029764484614133835,
-0.001580802141688764,
-0.00279966345988214,
-0.04085325077176094,
-0.058977071195840836,
-0.037869542837142944,
-0.03942623361945152,
-0.03210996091365814,
-0.012235937640070915,
-0.0412311851978302,
-0.047243889421224594,
-0.028701182454824448,
0.013258859515190125,
-0.008549354039132595,
0.009504074230790138,
0.027269860729575157,
0.020412718877196312,
0.026237085461616516,
0.026432055979967117,
-0.048245809972286224,
-0.018414251506328583,
0.05980036407709122,
0.005701097194105387,
-0.003895428730174899,
-0.06553676724433899,
-0.046091750264167786,
0.0552835576236248,
-0.013741285540163517,
-0.018169546499848366,
0.012522988021373749,
0.0641574114561081,
-0.017286650836467743,
0.0179095808416605,
0.03034266270697117,
-0.043041687458753586,
0.002395652001723647,
-0.0229443721473217,
-0.004091011825948954,
-0.018323244526982307,
-0.03946429118514061,
-0.00802889745682478,
0.012955378741025925,
0.07008298486471176,
-0.05707552656531334,
-0.04767400771379471,
-0.011837155558168888,
0.021519582718610764,
0.03960925713181496,
-0.001034779124893248,
-0.03333510830998421,
0.007572780828922987,
-0.062202632427215576,
-0.010761614888906479,
0.02532263472676277,
-0.023448867723345757,
-0.007439854089170694,
0.03414679691195488,
0.014523792080581188,
-0.00536514213308692,
0.0461493581533432,
0.027171503752470016,
0.05471760407090187,
0.03478320688009262,
-0.06076153740286827,
0.023472266271710396,
-0.009371275082230568,
0.015457017347216606,
0.00602696044370532,
-0.03606812283396721,
-0.04162583127617836,
-0.08272245526313782,
-0.011937412433326244,
0.02505260519683361,
-0.034487735480070114,
0.020224230363965034,
0.05966005474328995,
-0.01565077155828476,
-0.0022970312274992466,
0.0053371223621070385,
0.010709973983466625,
0.031245529651641846,
-0.0174165777862072,
0.06393370032310486,
-0.009526531212031841,
0.018918339163064957,
-0.04394019767642021,
0.005781217943876982,
-0.031130952760577202,
-0.025205478072166443,
-0.00748246256262064,
0.06692821532487869,
0.01791752502322197,
0.04079673811793327,
0.09592040628194809,
0.011630894616246223,
-0.03784786909818649,
0.04844944179058075,
0.056215666234493256,
-0.04254861921072006,
-0.04381803423166275,
0.014773004688322544,
0.008828508667647839,
-0.004716524388641119,
0.008904523216187954,
-0.020439371466636658,
0.03026304766535759,
0.04006737470626831,
-0.018405018374323845,
0.022412702441215515,
-0.010756795294582844,
-0.02701355144381523,
-0.04353804886341095,
-0.03285299986600876,
-0.022774487733840942,
0.021762313321232796,
-0.026590485125780106,
0.02956412546336651,
0.05549853667616844,
0.03695423901081085,
0.04532869905233383,
0.027817396447062492,
-0.031501404941082,
-0.028054436668753624,
0.03914698213338852,
0.023709893226623535,
-0.04330078139901161,
-0.08783599734306335,
-0.020875094458460808,
0.032879605889320374,
0.03901435434818268,
-0.0045043411664664745,
-0.07356812059879303,
0.029753657057881355,
0.040051329880952835,
-0.048378486186265945,
0.0607684850692749,
0.027427205815911293,
0.033338990062475204,
0.048951901495456696,
-0.005288859363645315,
0.03367551416158676,
-0.03131309151649475,
0.032734788954257965,
0.006129706744104624,
0.00437817582860589,
-0.04669605940580368,
-0.015089767053723335,
-0.03282663971185684,
0.03292873501777649,
0.006090773269534111,
0.02314051426947117,
0.044880736619234085,
-0.049203190952539444,
-0.05209911987185478,
-0.03343990072607994,
0.02252059616148472,
-0.052285704761743546,
0.026302630081772804,
0.04025258123874664,
0.05758373811841011,
-0.02685779146850109,
-0.04092242941260338,
0.003413214348256588,
0.014844145625829697,
0.05722172558307648,
-0.015531410463154316,
-0.02899959310889244,
-0.048394575715065,
0.038662150502204895,
-0.02792724035680294,
-0.04839824512600899,
-0.1039404645562172,
0.014856355264782906,
-0.02065935917198658,
-0.0393291711807251,
0.062369026243686676,
0.005012329202145338,
0.04902901500463486,
0.019342783838510513,
-0.003066849894821644,
0.04000294581055641,
-0.012889317236840725,
0.030238764360547066,
-0.011284390464425087,
-0.029704753309488297,
0.012610187754034996,
-0.021511735394597054,
-0.03803643584251404,
0.019886638969182968,
-0.05366075038909912,
-0.03176402673125267,
-0.02790285274386406,
0.019609080627560616,
0.002955106319859624,
0.01299714669585228,
-0.0254035834223032,
0.020045755431056023,
-0.008378474041819572,
-0.019516341388225555,
0.001957974396646023,
-0.03866139426827431,
-0.0823381245136261,
-0.012601225636899471,
0.03156932070851326,
0.000912535993847996,
-0.012978876009583473,
0.013520993292331696,
0.030681924894452095,
0.05311174690723419,
0.013921784237027168,
-0.03199736028909683,
0.02827485464513302,
0.0226232148706913,
-0.015828300267457962,
-0.03851935639977455,
0.020404204726219177,
0.013124724850058556,
0.028543595224618912,
-0.03264473378658295,
0.023887379094958305,
0.00014512243797071278,
-0.02730623632669449,
-0.02698526345193386,
-0.0015996629372239113,
0.022369952872395515,
-0.04614587128162384,
-0.04559433087706566,
-0.02254040539264679,
-0.02519100159406662,
0.03107900731265545,
-0.02918875217437744,
0.0007648179307579994,
0.022252216935157776,
0.059263721108436584,
0.03672412410378456,
0.012038875371217728,
-0.03277024254202843,
0.02995424158871174,
-0.033610064536333084,
0.016137899830937386,
-0.06282030045986176,
0.04262230172753334,
-0.015027115121483803,
0.008732486516237259,
-0.013413556851446629,
-0.01023986004292965,
-0.02534109726548195,
0.06021059677004814,
0.017375478520989418,
-0.0036570143420249224,
-0.011567436158657074,
0.03481486812233925,
-0.01812632381916046,
0.04761755093932152,
0.03221792355179787,
0.031843576580286026,
0.013612342067062855,
0.044501934200525284,
-0.04182099550962448,
0.020652150735259056,
-0.005243276245892048,
0.004821996670216322,
-0.03596850857138634,
-0.019024504348635674,
-0.006737700197845697,
-0.046061351895332336,
0.027068112045526505,
0.02857305109500885,
0.0323513001203537,
0.00023575173690915108,
-0.014318989589810371,
-0.004765704739838839,
0.007613273337483406,
-0.055666789412498474,
-0.03218955546617508,
-0.018555784597992897,
-0.011780462227761745,
-0.018426325172185898,
0.06888368725776672,
0.034841760993003845,
-0.05030100792646408,
-0.06110142916440964,
0.02964785508811474,
-0.010093200020492077,
0.02300599403679371,
-0.008701812475919724,
0.030692048370838165,
0.05455613508820534,
0.060913242399692535,
-0.018592556938529015,
0.005669929087162018,
-0.01602925732731819,
0.006900337524712086,
0.027952143922448158,
-0.002318676793947816,
0.0019566284026950598,
-0.003532351227477193,
-0.051581207662820816,
-0.009314298629760742,
0.09162816405296326,
0.03337971866130829,
0.03018329106271267,
-0.02197001315653324,
-0.03247285634279251,
0.047834064811468124,
0.02773921564221382,
-0.04026643931865692,
0.012214128859341145,
0.04673444852232933,
-0.032765548676252365,
0.026762278750538826,
-0.014875350520014763,
0.03150884807109833,
0.03135770559310913,
0.026955198496580124,
-0.012919148430228233,
0.05131141096353531,
-0.03135303780436516,
0.021018866449594498,
0.05600166693329811,
-0.05954723432660103,
-0.0167758297175169,
-0.04609876498579979,
0.0651184692978859,
-0.05839269235730171,
0.05469250679016113,
0.02633006125688553,
0.019502585753798485,
0.03151916339993477,
-0.03768426179885864,
-0.02723400853574276,
0.016615567728877068,
-0.07354529947042465,
0.055230896919965744,
0.0005758362240158021,
-0.08553525060415268,
0.052426062524318695,
0.007666701916605234,
-0.09927576035261154,
0.020275818184018135,
0.0268930122256279,
0.02083069644868374,
0.01570279709994793,
0.02332095243036747,
-0.054633740335702896,
0.0495491549372673,
-0.03200547397136688,
0.03620030730962753,
-0.053234174847602844,
-0.008938336744904518,
0.0348953902721405,
-0.03989872336387634,
-0.02520996890962124,
0.015719663351774216,
-0.029817018657922745,
0.009832524694502354,
0.006461280398070812,
-0.02235688827931881,
-0.05548189952969551,
0.021290885284543037,
0.022512901574373245,
-0.00890730507671833,
0.024880098178982735,
-0.027567531913518906,
0.02565614879131317,
0.014220796525478363,
0.0017352825962007046,
-0.0435371920466423,
0.009109930135309696,
-0.0002566399925854057,
-0.06525637954473495,
-0.05622759833931923,
0.06701245903968811,
0.0228045042604208,
-0.0252038836479187,
0.004324732348322868,
0.016903314739465714,
0.02092736028134823,
0.034761544317007065,
-0.016669459640979767,
-0.0024292904417961836,
-0.036913253366947174,
0.01464393362402916,
0.019436519593000412,
0.015299412421882153,
0.017436569556593895,
-0.012355678714811802,
0.032974954694509506,
0.034055404365062714,
0.04271785169839859,
0.00651643006131053,
-0.01053701713681221,
-0.02342747338116169,
0.006474963389337063,
-0.04394197091460228,
0.025673791766166687,
0.009974677115678787,
-0.03686712682247162,
-0.044744014739990234,
-0.013133084401488304,
-0.03355354443192482,
0.03997059911489487,
-0.04638364538550377,
0.03285297378897667,
0.013560126535594463,
-0.014788255095481873,
-0.07452266663312912,
-0.10607912391424179,
-0.030409151688218117,
-0.025518931448459625,
0.0367104671895504,
0.021013882011175156,
-0.05175121873617172,
0.015072975307703018,
-0.0325462631881237,
-0.05580754205584526,
0.07121215015649796,
0.00882275216281414,
-0.03562592342495918,
0.081150583922863,
0.0665011927485466,
-0.033397167921066284,
0.03153239190578461,
0.02766062133014202,
-0.03619860112667084,
0.029788238927721977,
0.0184167493134737,
0.020767483860254288,
0.05177561938762665,
0.02940097637474537,
-0.01120611373335123,
-0.03334307670593262,
-0.04159105569124222,
-0.0484502948820591,
-0.036751579493284225,
0.01265987753868103,
0.0628589615225792
] |
Ann2020/distilbert-base-uncased-finetuned-ner | [
"pytorch",
"tensorboard",
"distilbert",
"token-classification",
"dataset:conll2003",
"transformers",
"generated_from_trainer",
"license:apache-2.0",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"DistilBertForTokenClassification"
],
"model_type": "distilbert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
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: 258.96 +/- 38.78
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.03771824389696121,
-0.0024743499234318733,
-0.005318216048181057,
0.025564227253198624,
0.04532556235790253,
-0.021507181227207184,
-0.005369387101382017,
-0.02793126367032528,
-0.03313911706209183,
0.06657468527555466,
0.03225375711917877,
-0.023984072729945183,
0.02284884639084339,
0.001187211717478931,
-0.03400220721960068,
-0.02611849270761013,
0.0011480057146400213,
-0.014347308315336704,
-0.019984303042292595,
0.027492893859744072,
0.004972026217728853,
0.03640862926840782,
-0.025725070387125015,
0.0353875532746315,
-0.0038007234688848257,
0.038556426763534546,
-0.022922594100236893,
0.05696018412709236,
0.016988081857562065,
-0.04338325932621956,
-0.006177418865263462,
-0.04108341410756111,
-0.020672472193837166,
-0.020626960322260857,
-0.013020562939345837,
0.01380597148090601,
0.016575613990426064,
0.020336156710982323,
0.00948274228721857,
0.034277305006980896,
-0.012631410732865334,
0.02255696803331375,
0.030149882659316063,
-0.0020389114506542683,
0.021382296457886696,
-0.011454690247774124,
-0.048863861709833145,
0.010180171579122543,
0.056064631789922714,
0.00034496112493798137,
-0.0477168969810009,
-0.062336456030607224,
0.02289564348757267,
0.030501198023557663,
-0.0013426435180008411,
-0.013018934987485409,
-0.04291008785367012,
-0.004778564907610416,
0.062218938022851944,
-0.04336342588067055,
-0.04716916009783745,
-0.00775019871070981,
-0.044778112322092056,
0.010154158808290958,
0.026195967569947243,
0.00017198530258610845,
0.018553178757429123,
-0.047293756157159805,
0.03575895354151726,
-0.02630581334233284,
0.06975024938583374,
-0.02111183851957321,
0.01366537157446146,
-0.0577368326485157,
-0.0008781667565926909,
0.00917298998683691,
0.03787287324666977,
0.03428743779659271,
-0.013805531896650791,
0.08767206966876984,
0.028784269466996193,
0.012625540606677532,
0.04475509747862816,
0.01326929870992899,
0.012766207568347454,
0.004392446018755436,
-0.039572615176439285,
0.005988485179841518,
0.021506447345018387,
0.028706293553113937,
-0.011485747992992401,
-0.04082014784216881,
-0.03993701934814453,
-0.02227681130170822,
0.0001449000119464472,
0.02869311347603798,
0.047011733055114746,
0.0020372942090034485,
0.06641162931919098,
0.015308449044823647,
0.0022464427165687084,
0.03112836368381977,
-0.03112146072089672,
0.06187290698289871,
-0.014833280816674232,
-0.019675500690937042,
-0.013288257643580437,
-0.022934990003705025,
-0.04144464433193207,
0.05440382659435272,
0.03206849470734596,
-0.04715634137392044,
-0.03726697713136673,
0.04565243422985077,
0.028398746624588966,
-0.020812824368476868,
0.030414661392569542,
-0.0329192653298378,
-0.0401943176984787,
-0.06389886885881424,
0.071415975689888,
-0.005604906473308802,
-0.008296060375869274,
-0.04022850841283798,
-0.02857566997408867,
-0.018167579546570778,
-0.052481282502412796,
-0.025709915906190872,
-0.025726856663823128,
0.019142214208841324,
0.009854309260845184,
0.032097116112709045,
0.01499072927981615,
-0.08581976592540741,
0.012992165051400661,
-0.01150896493345499,
-0.08776503801345825,
0.02968708984553814,
0.002938060322776437,
0.1444392055273056,
-0.06086977943778038,
-0.057083774358034134,
0.02728312648832798,
-0.013121814467012882,
-0.05651359260082245,
0.010923294350504875,
-0.004804827738553286,
-0.04109273478388786,
-0.009634087793529034,
-0.027627447620034218,
0.08035630732774734,
-0.05442779138684273,
-0.022138262167572975,
0.05964403226971626,
0.0034022547770291567,
0.02278534136712551,
-0.007228148635476828,
0.007001099642366171,
-0.0028661147225648165,
-0.04654746130108833,
-0.004921144340187311,
0.07030326128005981,
-0.01785297505557537,
-0.032391756772994995,
-0.042279306799173355,
-0.007403351832181215,
0.01350482553243637,
0.0778222531080246,
-0.006896427366882563,
-0.022325851023197174,
-0.023299923166632652,
0.032208748161792755,
0.017674658447504044,
0.017541728913784027,
-0.004230840597301722,
0.038687564432621,
0.05511684715747833,
0.012413520365953445,
-0.02008803002536297,
0.039931099861860275,
0.02556735835969448,
-0.018039166927337646,
-0.005235400982201099,
0.0017194552347064018,
0.005179656203836203,
0.00150707783177495,
-0.006290970370173454,
0.029311561957001686,
0.003999912645667791,
-0.03717375174164772,
-0.02511187084019184,
0.019222253933548927,
0.011831683106720448,
0.006901830900460482,
-0.0023686508648097515,
0.011681358329951763,
0.015077069401741028,
0.04198857396841049,
-0.005118780303746462,
-0.014605830423533916,
-0.034123532474040985,
-0.019266022369265556,
0.02866143174469471,
0.008260388858616352,
0.041215039789676666,
0.010628530755639076,
-0.013185600750148296,
0.09212520718574524,
-0.04374994710087776,
0.04193204641342163,
-0.07429402321577072,
-0.05032062530517578,
0.0032525090500712395,
0.033129237592220306,
0.06500336527824402,
0.04473501071333885,
-0.02192128263413906,
-0.04417261853814125,
0.028307819738984108,
0.04424768313765526,
0.05938160791993141,
0.016866810619831085,
-0.041388846933841705,
-0.014643260277807713,
0.03143263980746269,
0.020315036177635193,
-0.024838844314217567,
-0.039599377661943436,
0.013968812301754951,
0.047899238765239716,
0.023459170013666153,
0.02466839924454689,
-0.03264458477497101,
0.024460377171635628,
-0.03778768703341484,
-0.060723546892404556,
0.03978921100497246,
0.02575937658548355,
0.014442192390561104,
0.016942568123340607,
-0.015489759854972363,
0.04070451483130455,
0.018630286678671837,
0.020507730543613434,
0.005844980478286743,
-0.049055859446525574,
0.013378617353737354,
0.030874794349074364,
0.06324419379234314,
-0.032409537583589554,
0.056888945400714874,
-0.00488058989867568,
-0.00013322172162588686,
0.042162489145994186,
-0.04740065336227417,
0.016191205009818077,
0.08702921867370605,
0.030286714434623718,
-0.014641606248915195,
0.019108299165964127,
0.005226797889918089,
0.04613858088850975,
0.03329426422715187,
-0.010301751084625721,
0.06873715668916702,
-0.014129486866295338,
0.0467374287545681,
0.06939350813627243,
0.03967101871967316,
-0.005001571495085955,
0.02714361622929573,
0.0755651444196701,
0.003991686273366213,
0.01054808497428894,
0.048297952860593796,
-0.034286510199308395,
0.01949513517320156,
-0.03741360828280449,
0.010815833695232868,
-0.025973046198487282,
-0.00592082692310214,
0.05851808935403824,
0.010863340459764004,
-0.04225776717066765,
-0.0185494776815176,
0.00017524472787044942,
0.009843053296208382,
-0.0061107599176466465,
-0.01089685782790184,
0.0018185472581535578,
0.0052179573103785515,
-0.005239847116172314,
-0.007762503810226917,
-0.08431759476661682,
-0.08372606337070465,
-0.027338428422808647,
-0.01487024873495102,
-0.019783763214945793,
-0.07009037584066391,
-0.04291992634534836,
-0.07147026807069778,
-0.01312137208878994,
0.019410433247685432,
-0.021763049066066742,
0.0023936997167766094,
-0.0572984516620636,
0.01019471138715744,
-0.05141366645693779,
-0.015100253745913506,
-0.054312385618686676,
-0.06539826095104218,
-0.03914547711610794,
-0.057569943368434906,
0.03235238417983055,
0.021728377789258957,
0.03487073630094528,
-0.0038613281212747097,
-0.003426430281251669,
-0.02172703854739666,
-0.038049448281526566,
0.05485774576663971,
0.04680957272648811,
-0.017773468047380447,
-0.043410301208496094,
0.013045010156929493,
-0.004540387541055679,
0.026406511664390564,
0.010232506319880486,
-0.03366393223404884,
0.08309676498174667,
0.061679091304540634,
-0.00829387828707695,
-0.006717486772686243,
-0.006418674718588591,
-0.04603604972362518,
-0.04235544055700302,
-0.048715557903051376,
-0.04895010590553284,
-0.016312522813677788,
-0.04702084884047508,
-0.02944266051054001,
-0.00943969190120697,
-0.011593260802328587,
-0.016320236027240753,
-0.033967044204473495,
-0.0018410437041893601,
0.03762844577431679,
0.08375539630651474,
0.006612409371882677,
0.0380791537463665,
-0.057504139840602875,
-0.020531434565782547,
0.04839399829506874,
0.021708108484745026,
0.012043979950249195,
-0.0707261934876442,
-0.024524547159671783,
0.008023069240152836,
0.009333346970379353,
0.002336782170459628,
-0.00012480790610425174,
0.061293020844459534,
0.03423435240983963,
-0.00600074976682663,
0.02995576709508896,
-0.02875944972038269,
-0.02028905414044857,
-0.03813444450497627,
0.004565260838717222,
-0.0105533916503191,
-0.021748926490545273,
0.017202546820044518,
0.0006905370973981917,
0.010514196008443832,
-0.05457319691777229,
-0.05228031799197197,
-0.035570718348026276,
-0.004325409885495901,
0.05427956208586693,
0.0016967369010671973,
-0.050085198134183884,
-0.033069707453250885,
-0.06843504309654236,
0.010989691130816936,
0.03970034793019295,
-0.013073149137198925,
0.008848709054291248,
0.027592943981289864,
0.034190792590379715,
-0.0015844934387132525,
0.03762110322713852,
0.03968337923288345,
0.060047898441553116,
0.01621437631547451,
-0.04518786817789078,
0.001233707182109356,
-0.025754814967513084,
0.04001421481370926,
0.00863059051334858,
-0.014289780519902706,
-0.03321909159421921,
-0.1005694791674614,
-0.027720186859369278,
0.023569215089082718,
-0.018168341368436813,
0.005214400589466095,
0.030150314792990685,
-0.0167147945612669,
-0.0078999949619174,
0.0016107792034745216,
-0.003555394010618329,
0.05053706094622612,
-0.04072181135416031,
0.05740143731236458,
-0.005634683649986982,
0.024517333135008812,
-0.04353601858019829,
0.027045655995607376,
-0.015594773925840855,
-0.012386948801577091,
-0.003828882472589612,
0.030238108709454536,
0.04592597857117653,
0.06734270602464676,
0.05284009128808975,
0.01818239502608776,
-0.06279447674751282,
0.03242151066660881,
0.05987976863980293,
-0.039192505180835724,
-0.07318785041570663,
-0.028822310268878937,
0.022081827744841576,
-0.010360199958086014,
0.01389929000288248,
-0.008611412718892097,
0.018904773518443108,
0.05862096697092056,
-0.01804886944591999,
-0.019893450662493706,
-0.0005915134679526091,
-0.009134633466601372,
-0.03269973024725914,
-0.021992098540067673,
-0.0035096786450594664,
0.014650705270469189,
-0.016249310225248337,
0.005046002101153135,
0.043663397431373596,
0.02480691857635975,
0.04590050131082535,
0.06435022503137589,
-0.007327123545110226,
-0.04626611992716789,
0.05439334362745285,
0.005565166473388672,
-0.02351253479719162,
-0.08805011212825775,
-0.028752777725458145,
0.02377508394420147,
0.03498021140694618,
0.010135510005056858,
-0.06382691860198975,
0.013879935257136822,
0.026622308418154716,
-0.0699305459856987,
0.05360789597034454,
-0.008519752882421017,
0.015581849962472916,
0.040651436895132065,
0.015842193737626076,
0.035774946212768555,
-0.03722359612584114,
-0.029376497492194176,
0.0066787684336304665,
0.03880017250776291,
-0.01267648208886385,
-0.026689603924751282,
-0.021924596279859543,
0.0342005230486393,
0.042009029537439346,
0.061037495732307434,
0.03700866177678108,
-0.048716381192207336,
-0.06999313831329346,
-0.04138078913092613,
0.022522427141666412,
-0.038200948387384415,
-0.002324020257219672,
0.04934482276439667,
0.04623823240399361,
-0.05816479027271271,
-0.04882120341062546,
-0.03133411332964897,
-0.012205267325043678,
0.030920153483748436,
0.011331500485539436,
-0.020306650549173355,
-0.010352393612265587,
0.04372579604387283,
-0.0069273305125534534,
-0.029412560164928436,
-0.06355302780866623,
0.011357094161212444,
0.016785679385066032,
0.006424505263566971,
0.027626240625977516,
0.03254721686244011,
0.057777851819992065,
0.0643177479505539,
0.03863915428519249,
0.010886373929679394,
-0.04362663999199867,
0.03117198310792446,
-0.03913096711039543,
-0.027441447600722313,
0.003625685116276145,
-0.07185766845941544,
0.003392694750800729,
-0.01891215704381466,
-0.022882996127009392,
-0.04058567062020302,
-0.02405925653874874,
0.020638814195990562,
0.006369244772940874,
0.0018420455744490027,
0.012629459612071514,
0.05294742062687874,
0.0052100894972682,
-0.04893945902585983,
-0.031917981803417206,
-0.02396579086780548,
-0.06148034706711769,
-0.06282518059015274,
0.03606477752327919,
-0.007424990180879831,
0.011065534316003323,
0.018607571721076965,
0.05130692571401596,
0.030367115512490273,
0.02571503072977066,
-0.027649547904729843,
0.022248072549700737,
0.003722548019140959,
-0.04252520576119423,
0.012112281285226345,
0.015270930714905262,
0.010484391823410988,
0.05880122259259224,
-0.013867711648344994,
0.026432015001773834,
-0.00162357313092798,
-0.02666853368282318,
-0.02155138924717903,
0.010035031475126743,
0.030523519963026047,
-0.0441398099064827,
-0.024670014157891273,
0.009678198955953121,
-0.03275391459465027,
0.026437051594257355,
-0.018462780863046646,
-0.020873192697763443,
-0.017448728904128075,
0.005255576688796282,
0.03353066369891167,
-0.011698254384100437,
-0.05532079562544823,
0.027928797528147697,
-0.04858902469277382,
0.044484563171863556,
-0.07083708792924881,
0.02511724643409252,
-0.03945362567901611,
0.03579740971326828,
-0.0179065503180027,
-0.008152236230671406,
-0.03729516267776489,
0.044876012951135635,
0.01627209596335888,
-0.02728678099811077,
-0.0363500751554966,
0.03544612228870392,
-0.010720044374465942,
0.025840895250439644,
-0.020899808034300804,
0.01716563291847706,
-0.007307660300284624,
0.03633161261677742,
-0.012738649733364582,
0.03586605191230774,
-0.012056294828653336,
0.04647789150476456,
-0.039399404078722,
-0.00007128248398657888,
-0.03317175433039665,
-0.0356806144118309,
0.02009470947086811,
0.04119095206260681,
0.026190780103206635,
0.020812982693314552,
-0.014358063228428364,
0.0181460902094841,
0.013108041137456894,
-0.0400141142308712,
-0.03335108608007431,
0.00821278989315033,
0.014801175333559513,
0.02067350037395954,
0.05245594680309296,
0.032469380646944046,
-0.07209973782300949,
-0.036292895674705505,
0.061149962246418,
0.00504968361929059,
0.02421356923878193,
-0.0015257536433637142,
0.035931166261434555,
0.03419991210103035,
0.05056034028530121,
-0.04654306918382645,
0.019556935876607895,
0.0030167452059686184,
-0.008157853968441486,
0.02575882524251938,
-0.029376504942774773,
0.024761110544204712,
0.021106183528900146,
-0.045000143349170685,
-0.016755130141973495,
0.07232225686311722,
0.0350983701646328,
-0.008576665073633194,
-0.026848983019590378,
-0.03852388635277748,
0.037686340510845184,
0.0003031266969628632,
-0.04468173533678055,
0.01832342892885208,
0.021733060479164124,
-0.016512464731931686,
0.06282439082860947,
-0.036198072135448456,
0.00910674687474966,
0.03961591050028801,
0.05622651055455208,
-0.023044666275382042,
0.06572737544775009,
-0.013434764929115772,
0.06025909259915352,
0.03642917051911354,
-0.07064894586801529,
-0.014857885427772999,
-0.05376141145825386,
0.08715913444757462,
-0.07086319476366043,
0.07891298085451126,
0.041617996990680695,
0.00835637841373682,
0.03047564998269081,
-0.01653282158076763,
-0.04658011347055435,
-0.01283858623355627,
-0.04878973215818405,
0.07404037564992905,
0.006293902173638344,
-0.04625178873538971,
0.0673106387257576,
0.023090487346053123,
-0.05828416720032692,
0.053573332726955414,
0.02457354962825775,
0.019435781985521317,
0.0008320965571328998,
0.04825899004936218,
-0.050748731940984726,
0.016439396888017654,
-0.0615210123360157,
0.054314956068992615,
-0.05099237337708473,
-0.0036570457741618156,
0.026209035888314247,
-0.05373435467481613,
-0.02262023463845253,
0.048701878637075424,
-0.013915106654167175,
-0.014993618242442608,
0.03590665012598038,
-0.05713752284646034,
-0.0677478164434433,
0.012479467317461967,
-0.007616356480866671,
0.023499077185988426,
0.01224411092698574,
-0.034265149384737015,
0.034718431532382965,
0.03852197527885437,
0.013152523897588253,
-0.03492690622806549,
0.009214348159730434,
0.023388829082250595,
-0.037749070674180984,
-0.0266804751008749,
0.05346730351448059,
0.0137938829138875,
-0.035539545118808746,
0.0028546215035021305,
0.00420698057860136,
0.004152884241193533,
0.024532631039619446,
0.014501656405627728,
0.01659298874437809,
-0.05643144249916077,
-0.03395500034093857,
0.03031686134636402,
-0.018135888502001762,
0.026983292773365974,
-0.032515205442905426,
0.008422226645052433,
0.02151748724281788,
0.018221912905573845,
0.0028578622732311487,
-0.037028707563877106,
0.013923714868724346,
0.034145765006542206,
-0.056029312312603,
0.0024725820403546095,
0.004823428578674793,
-0.05259501934051514,
-0.02691773883998394,
-0.03215951472520828,
-0.01907016709446907,
0.007654041983187199,
-0.029331553727388382,
-0.015719128772616386,
0.054186053574085236,
0.015021132305264473,
-0.05460838973522186,
-0.10110732167959213,
-0.005165785551071167,
-0.040880538523197174,
0.03310764208436012,
0.02680314891040325,
-0.04858967661857605,
-0.011691045016050339,
-0.03154318779706955,
-0.053728003054857254,
0.06414032727479935,
0.04053087905049324,
-0.022973673418164253,
0.06204952672123909,
0.0493166409432888,
-0.01804838702082634,
0.010393541306257248,
0.003847759449854493,
-0.055976614356040955,
0.003932368475943804,
0.0251185093075037,
0.02180035412311554,
0.025915805250406265,
0.007041641511023045,
-0.02237538807094097,
-0.021730540320277214,
-0.027490613982081413,
-0.045908279716968536,
-0.02497592568397522,
0.027741476893424988,
0.07065640389919281
] |
Anonymous/ReasonBERT-RoBERTa | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 5 | null | ---
license: apache-2.0
tags:
- generated_from_keras_callback
model-index:
- name: bert_simple_classifier
results: []
---
<!-- 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. -->
# bert_simple_classifier
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:
## 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': {'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 2e-05, 'decay_steps': 3054, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}}, 'beta_1': 0.9, 'beta_2': 0.999, 'epsilon': 1e-08, 'amsgrad': False}
- training_precision: float32
### Training results
### Framework versions
- Transformers 4.28.0
- TensorFlow 2.12.0
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.030642936006188393,
-0.007992261089384556,
-0.0250308346003294,
0.03353496640920639,
0.03072996996343136,
0.023654630407691002,
-0.018014460802078247,
-0.017809126526117325,
-0.03551502153277397,
0.05828365311026573,
0.009950146079063416,
-0.024556037038564682,
0.02272607758641243,
0.035825565457344055,
-0.026213720440864563,
-0.021410774439573288,
-0.012478365562856197,
-0.010884805582463741,
-0.032101329416036606,
0.001243265112861991,
-0.006562451831996441,
-0.005112449172884226,
-0.0012208466650918126,
0.01757117360830307,
-0.01647353358566761,
0.022738931700587273,
-0.007933694869279861,
0.023290494456887245,
0.03909892961382866,
-0.07165616005659103,
0.011246457695960999,
-0.05401361361145973,
-0.06968973577022552,
-0.01880488358438015,
-0.018981151282787323,
0.0010183906415477395,
-0.013048462569713593,
0.02071375958621502,
0.02224341407418251,
0.04086371511220932,
-0.007913447916507721,
0.02749670296907425,
-0.031112568452954292,
-0.02078975737094879,
0.03351372852921486,
0.011586467735469341,
-0.04367027431726456,
-0.0049010589718818665,
0.04515603184700012,
-0.014430787414312363,
-0.07236246764659882,
-0.058205507695674896,
-0.04303007945418358,
0.03261039778590202,
-0.026157455518841743,
0.0008526055607944727,
-0.0581187978386879,
-0.006708302069455385,
0.06199886277318001,
-0.04189050942659378,
-0.04630731791257858,
0.01654563471674919,
-0.07049117237329483,
0.02944306470453739,
0.04207218438386917,
-0.026401465758681297,
0.02130032517015934,
-0.023295175284147263,
0.046050067991018295,
-0.03569876402616501,
0.07073982059955597,
-0.019874941557645798,
0.000293589080683887,
-0.10165151953697205,
-0.003584492951631546,
-0.015982959419488907,
0.04904894903302193,
0.055934540927410126,
-0.02340899035334587,
0.04692512005567551,
0.02393801510334015,
0.006733637768775225,
0.0411093570291996,
-0.0210573710501194,
-0.01306214090436697,
0.03383992239832878,
-0.03898518905043602,
0.015698730945587158,
0.007090895436704159,
0.03797104209661484,
-0.03758819401264191,
-0.015137018635869026,
-0.03461436182260513,
-0.02628016099333763,
-0.025984246283769608,
0.018508007749915123,
0.034353915601968765,
-0.018337957561016083,
0.03561794385313988,
0.028836602345108986,
0.03488299623131752,
0.037432435899972916,
-0.02253972925245762,
0.0730462297797203,
0.01579068787395954,
-0.03442833200097084,
-0.01268877275288105,
-0.014822141267359257,
-0.03519159182906151,
0.01232261024415493,
0.03296762332320213,
-0.02387639321386814,
-0.041886135935783386,
0.058258283883333206,
-0.0008540181443095207,
-0.01678280718624592,
0.08782204985618591,
-0.009192081168293953,
-0.04937019944190979,
-0.03746246546506882,
0.029758065938949585,
0.004098712000995874,
-0.0025847710203379393,
0.013554687611758709,
-0.03972288593649864,
-0.006523480638861656,
-0.02956104464828968,
-0.018539059907197952,
-0.015147311612963676,
0.010765926912426949,
0.01851777546107769,
0.05901261046528816,
0.021304277703166008,
-0.07093140482902527,
-0.01251909602433443,
0.007654912769794464,
-0.033856939524412155,
0.0552896149456501,
0.0025164210237562656,
0.11133062839508057,
-0.06674245744943619,
-0.061210136860609055,
0.011998956091701984,
0.009395082481205463,
-0.029456716030836105,
0.005419349297881126,
0.021350877359509468,
-0.04401044547557831,
-0.020097730681300163,
-0.002799806883558631,
0.05553897097706795,
-0.04117097333073616,
-0.017745662480592728,
0.05635908246040344,
-0.0009625290986150503,
0.03236553817987442,
-0.05656164884567261,
-0.015366540290415287,
0.012444660067558289,
0.0013062452198937535,
-0.02663855440914631,
0.043020062148571014,
-0.030335798859596252,
-0.01843343861401081,
-0.025596676394343376,
-0.03845987468957901,
-0.00398305943235755,
0.08532066643238068,
-0.004057863261550665,
-0.024843767285346985,
-0.019554046913981438,
0.03325817361474037,
0.038991380482912064,
0.04202637821435928,
-0.044525858014822006,
0.03107493370771408,
0.06723838299512863,
0.03126631677150726,
-0.013609715737402439,
0.03478838875889778,
0.01944386214017868,
-0.02924508973956108,
-0.03211318701505661,
0.030708162114024162,
-0.0036696873139590025,
-0.04102695733308792,
0.04173676297068596,
0.025592217221856117,
-0.0016772495582699776,
-0.041929591447114944,
-0.04004192352294922,
0.0478360615670681,
0.0011875374475494027,
-0.015971368178725243,
0.01875670999288559,
-0.004164115525782108,
-0.03182651475071907,
0.04286521300673485,
-0.02450936660170555,
0.010621163994073868,
-0.019568325951695442,
-0.041538141667842865,
0.022815736010670662,
0.00012381264241412282,
0.028617892414331436,
0.050019022077322006,
-0.009958908893167973,
0.07192786782979965,
-0.033851467072963715,
0.0239954125136137,
-0.052408620715141296,
-0.03768056258559227,
0.018657905980944633,
0.04070538654923439,
0.047725558280944824,
0.040163133293390274,
0.012456110678613186,
-0.05402008816599846,
0.021809924393892288,
0.04880126938223839,
0.03365672379732132,
0.017232323065400124,
-0.024064965546131134,
-0.03263883665204048,
0.02389206737279892,
0.06077062711119652,
-0.06513211876153946,
-0.01881718821823597,
0.022477982565760612,
0.05933621525764465,
0.0036690186243504286,
0.029600858688354492,
0.00925725232809782,
0.03672594577074051,
-0.04418071359395981,
-0.06031782925128937,
0.04547606036067009,
0.015888527035713196,
-0.009295796975493431,
0.03769897669553757,
0.006297454237937927,
0.011998889967799187,
0.0224580280482769,
0.016242820769548416,
-0.005820044316351414,
-0.03436388820409775,
0.024197321385145187,
0.014495162293314934,
0.052576106041669846,
-0.04570440202951431,
0.058215945959091187,
-0.0055244481191039085,
0.016666598618030548,
0.016808534041047096,
-0.029044117778539658,
0.029237857088446617,
0.04184739291667938,
0.034834351390600204,
-0.02308853343129158,
0.030890606343746185,
0.020550422370433807,
0.04117634519934654,
0.0441121943295002,
-0.011222363449633121,
0.051020342856645584,
-0.004818418063223362,
0.05606289952993393,
0.08709996193647385,
0.020124519243836403,
0.04976469650864601,
0.03258487582206726,
0.09190130978822708,
0.014314675703644753,
-0.031541381031274796,
0.047841500490903854,
-0.05477799475193024,
0.0175476111471653,
-0.03455832228064537,
0.0009584701620042324,
-0.006679306738078594,
-0.0064275008626282215,
0.028724495321512222,
0.010718612931668758,
-0.028119035065174103,
-0.010518484748899937,
-0.006649697199463844,
-0.00997378583997488,
0.032619960606098175,
0.004042950924485922,
0.005212792195379734,
0.0008021529065445065,
-0.02142319642007351,
-0.0235308725386858,
-0.07891923934221268,
-0.04538102447986603,
-0.024792542681097984,
-0.03178536519408226,
-0.01730843260884285,
-0.0806240662932396,
-0.01267023105174303,
-0.08606100082397461,
-0.019342537969350815,
0.037228383123874664,
0.01167359296232462,
-0.006933943368494511,
-0.05660036951303482,
0.022206148132681847,
-0.03457197919487953,
-0.05569624528288841,
-0.04377491772174835,
-0.040878791362047195,
-0.0495542511343956,
-0.07772698998451233,
0.024841932579874992,
0.024976614862680435,
0.01397706288844347,
0.004928320646286011,
0.003323317738249898,
-0.009261245839297771,
-0.03128938376903534,
0.049854520708322525,
0.08116109669208527,
-0.03345632180571556,
-0.041087374091148376,
0.017409654334187508,
-0.025727529078722,
0.028536824509501457,
0.004596075043082237,
-0.023267125710844994,
0.10775845497846603,
0.07322081178426743,
0.020965158939361572,
0.009427174925804138,
-0.013696957379579544,
-0.04326323792338371,
-0.06517630070447922,
-0.023042233660817146,
-0.027169475331902504,
-0.013932285830378532,
-0.0411718413233757,
-0.04629359021782875,
-0.022131897509098053,
-0.03820318728685379,
-0.018592342734336853,
-0.014733568765223026,
0.014363945461809635,
0.02862144075334072,
0.05006074160337448,
0.01692597195506096,
0.031094370409846306,
-0.015619185753166676,
-0.051275357604026794,
0.059709347784519196,
0.007410417776554823,
-0.0005758700426667929,
-0.07676684111356735,
-0.02181863784790039,
0.02515474520623684,
0.02089398354291916,
0.01122146937996149,
-0.012954872101545334,
0.05971846729516983,
-0.006590870674699545,
-0.005466697737574577,
0.023538116365671158,
-0.008656125515699387,
-0.035865601152181625,
-0.006109502166509628,
-0.0004992790054529905,
-0.015528811141848564,
-0.04642576724290848,
-0.03492537885904312,
-0.0005012585315853357,
0.044857315719127655,
-0.050511132925748825,
-0.055941883474588394,
-0.008472013287246227,
0.049876052886247635,
0.04723624885082245,
0.0005162162124179304,
-0.03818706050515175,
-0.015576639212667942,
-0.06039305403828621,
-0.02339131198823452,
0.04100433737039566,
0.0003771291230805218,
0.007674864027649164,
0.03302514925599098,
0.013507439754903316,
-0.023345177993178368,
0.03639766573905945,
0.04362180083990097,
0.06625213474035263,
-0.0034723090939223766,
-0.0691312775015831,
0.005291777662932873,
-0.037941813468933105,
0.032655153423547745,
0.010465813800692558,
-0.028140077367424965,
-0.030153192579746246,
-0.09719115495681763,
-0.02571028470993042,
0.008525845594704151,
-0.009264803491532803,
-0.01922684721648693,
0.022634677588939667,
0.0037492483388632536,
-0.032133352011442184,
0.014009930193424225,
0.02344377338886261,
0.03347441926598549,
-0.02895362675189972,
0.03841173276305199,
-0.009351393207907677,
0.0145742641761899,
-0.04916608706116676,
0.011269635520875454,
-0.04459848627448082,
-0.009410005062818527,
0.008793029002845287,
0.047408826649188995,
0.012619811110198498,
0.04733048006892204,
0.09071805328130722,
0.0349380299448967,
-0.04910305514931679,
0.0255420058965683,
0.058729611337184906,
-0.03032124973833561,
-0.05286712944507599,
0.0013068837579339743,
-0.033972617238759995,
-0.015248277224600315,
-0.01390276849269867,
-0.008098809979856014,
0.04938245937228203,
0.03476060554385185,
0.005553415045142174,
0.009333628229796886,
0.0031420355662703514,
-0.01147599145770073,
-0.02849280647933483,
-0.06644561886787415,
-0.004651197697967291,
0.0038604827132076025,
-0.031492967158555984,
0.009635391645133495,
0.03532058745622635,
0.006750927306711674,
0.08200082182884216,
0.021897198632359505,
-0.024179093539714813,
-0.035391971468925476,
0.03279024735093117,
0.025392210111021996,
-0.03151623159646988,
-0.0631452277302742,
-0.03865549713373184,
0.03645802289247513,
0.03770987689495087,
-0.026124749332666397,
-0.05188082531094551,
0.006381386425346136,
0.06225666403770447,
-0.05056501552462578,
0.059032753109931946,
-0.007905496284365654,
0.04142247140407562,
0.06515232473611832,
-0.014646826311945915,
0.03650074824690819,
-0.031185824424028397,
-0.015348535031080246,
0.0014604280004277825,
0.03832146152853966,
-0.022865869104862213,
-0.054145488888025284,
-0.05624907836318016,
0.020025763660669327,
0.030795428901910782,
0.04953688010573387,
0.0450386144220829,
-0.034334126859903336,
-0.046422336250543594,
0.020474491640925407,
0.03467665985226631,
-0.034946464002132416,
0.0038037903141230345,
0.03928690031170845,
0.033729005604982376,
-0.05736992135643959,
-0.046349477022886276,
-0.038564283400774,
-0.021316684782505035,
0.012770825065672398,
0.0069493320770561695,
-0.0408715195953846,
-0.0444977693259716,
0.0418885238468647,
0.005454463884234428,
-0.01768738403916359,
-0.06269301474094391,
0.055791329592466354,
-0.015646548941731453,
-0.017753921449184418,
0.041175439953804016,
0.033230703324079514,
0.01980820670723915,
0.071268729865551,
0.02222050167620182,
0.009330875240266323,
-0.034843992441892624,
0.0531819723546505,
-0.05471532419323921,
-0.01965000480413437,
-0.0010773725807666779,
-0.039522211998701096,
-0.02034709043800831,
-0.026004938408732414,
-0.05161864310503006,
-0.04388180002570152,
-0.017573896795511246,
0.011547490023076534,
0.0031806593760848045,
-0.025270208716392517,
-0.014961952343583107,
0.03135420382022858,
-0.030260324478149414,
-0.06072048470377922,
-0.04788576439023018,
-0.032172609120607376,
-0.061959728598594666,
-0.054577987641096115,
0.009611451998353004,
0.019148917868733406,
0.01583826169371605,
0.03145309537649155,
0.017715126276016235,
0.022680560126900673,
-0.009860246442258358,
-0.04331465810537338,
0.0077074989676475525,
-0.006085038185119629,
-0.030276423320174217,
-0.028590986505150795,
0.03543530032038689,
0.009722796268761158,
0.036174871027469635,
-0.02336161583662033,
0.038481589406728745,
0.017212646082043648,
0.001895640860311687,
-0.02485421486198902,
0.04489821940660477,
0.02887299284338951,
-0.06806056201457977,
-0.03152389079332352,
0.0013854386052116752,
-0.03364117443561554,
0.03784126415848732,
-0.024803387001156807,
-0.039378903806209564,
0.01200216542929411,
0.007846767082810402,
0.03980104997754097,
-0.022946519777178764,
-0.025265291333198547,
0.036664724349975586,
-0.026000937446951866,
0.016147850081324577,
-0.055918075144290924,
0.05740818381309509,
-0.045625366270542145,
0.024460548534989357,
-0.015463180840015411,
0.002928322646766901,
-0.04416197910904884,
0.036204464733600616,
-0.02572292648255825,
-0.038172028958797455,
0.0032048348803073168,
0.05379665270447731,
-0.02639954537153244,
0.031956832855939865,
0.003535117022693157,
0.020281990990042686,
-0.02794380858540535,
0.07676117867231369,
-0.026829367503523827,
0.02093065343797207,
-0.022415701299905777,
0.002461528405547142,
-0.027565453201532364,
0.013543776236474514,
-0.01049970742315054,
-0.018787667155265808,
0.03459169343113899,
0.047127366065979004,
0.036912258714437485,
0.025305358693003654,
-0.01148331630975008,
-0.02435147576034069,
0.020927974954247475,
-0.05244934931397438,
-0.02599569596350193,
-0.004934054333716631,
0.01367056742310524,
0.0026332701090723276,
0.05420079454779625,
0.03730882704257965,
-0.06980957835912704,
-0.05721159279346466,
0.051489755511283875,
0.01906205713748932,
-0.022127540782094002,
0.0015606331871822476,
0.040243666619062424,
0.029711758717894554,
0.043904729187488556,
-0.028074385598301888,
-0.01143916230648756,
-0.011926849372684956,
-0.06129081919789314,
0.03218167647719383,
-0.013995308429002762,
0.03693193569779396,
0.005788031499832869,
-0.032591111958026886,
-0.024346571415662766,
0.07443710416555405,
0.02639768086373806,
0.025408774614334106,
0.0027224011719226837,
-0.042947180569171906,
0.022810814902186394,
-0.0027042673900723457,
-0.03648800030350685,
0.012664882466197014,
0.022416161373257637,
-0.021183637902140617,
0.07371868938207626,
0.013491105288267136,
0.01626398414373398,
0.043071530759334564,
0.03587956354022026,
-0.02038354054093361,
0.07580295950174332,
-0.02825244702398777,
0.009946228936314583,
0.03641287237405777,
-0.05230508744716644,
-0.02384115569293499,
-0.027536600828170776,
0.06756816059350967,
-0.06011263653635979,
0.04053660109639168,
0.03574785217642784,
0.01404191181063652,
0.007049893029034138,
-0.02218734472990036,
-0.05446085333824158,
0.024870295077562332,
-0.06852062046527863,
0.07084041833877563,
-0.003382712835446,
-0.055547408759593964,
0.049758829176425934,
0.010673449374735355,
-0.06985298544168472,
0.02929440513253212,
0.026169896125793457,
0.039394453167915344,
0.03857994079589844,
0.03961411118507385,
-0.06927322596311569,
0.004540914669632912,
-0.027619481086730957,
0.028303129598498344,
-0.04636003077030182,
-0.014388632960617542,
0.030605005100369453,
-0.03188415616750717,
-0.015653220936655998,
0.04465771093964577,
-0.010707172565162182,
-0.022094544023275375,
0.038090210407972336,
-0.04075022414326668,
-0.030786054208874702,
0.0008465994615107775,
0.01741654798388481,
-0.02063036896288395,
0.00867985375225544,
-0.056876856833696365,
0.015955405309796333,
-0.00021622423082590103,
-0.007033018860965967,
-0.02104697749018669,
0.0017811811994761229,
0.049499157816171646,
-0.0439300537109375,
-0.03660474717617035,
0.021236015483736992,
0.01098630391061306,
-0.025943268090486526,
0.05173548310995102,
0.010549779050052166,
0.012854699045419693,
0.030196884647011757,
0.0018669457640498877,
0.01662508212029934,
-0.026847386732697487,
-0.017005233094096184,
0.0014205056941136718,
-0.008217116817831993,
0.03872518613934517,
-0.0005611706292256713,
0.029798150062561035,
0.04624113067984581,
0.0315224789083004,
-0.004425828345119953,
-0.04010244086384773,
-0.03749903291463852,
0.02814534120261669,
-0.027495672926306725,
0.009095014072954655,
0.0015116361901164055,
-0.04517432674765587,
-0.05030978471040726,
-0.00016149604925885797,
-0.03723132610321045,
0.04205213114619255,
-0.06395987421274185,
0.026347845792770386,
0.02417498081922531,
-0.018602849915623665,
-0.06963495165109634,
-0.08538978546857834,
-0.021068362519145012,
-0.05410922318696976,
-0.007472855970263481,
0.05288739129900932,
-0.024472646415233612,
0.027978546917438507,
-0.03798912838101387,
-0.048349104821681976,
0.04194800555706024,
0.033800482749938965,
-0.04086443781852722,
0.06618580222129822,
0.038028884679079056,
-0.04963485524058342,
0.006705655250698328,
0.012006180360913277,
-0.04954308271408081,
0.00564458267763257,
0.012826857157051563,
0.01844136230647564,
0.018365424126386642,
0.00851976778358221,
-0.05259522423148155,
-0.018483303487300873,
-0.06506742537021637,
-0.03158978000283241,
-0.0515066422522068,
0.007548582274466753,
0.053827766329050064
] |
AnonymousNLP/pretrained-model-1 | [
"pytorch",
"gpt2",
"transformers"
] | null | {
"architectures": [
"GPT2DoubleHeadsModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
language: en
tags:
- multivae
license: apache-2.0
---
### Downloading this model from the Hub
This model was trained with multivae. It can be downloaded or reloaded using the method `load_from_hf_hub`
```python
>>> from multivae.models import AutoModel
>>> model = AutoModel.load_from_hf_hub(hf_hub_path="your_hf_username/repo_name")
```
| [
-0.03653835132718086,
-0.0589064285159111,
-0.005368987563997507,
0.005391913000494242,
0.05030456930398941,
0.01870766468346119,
-0.006683170795440674,
-0.011249218136072159,
-0.02457122877240181,
0.02907027117908001,
0.0364757664501667,
0.00390697130933404,
0.03047722764313221,
0.04623886197805405,
-0.03794432058930397,
-0.020379548892378807,
-0.016867248341441154,
0.01913566328585148,
-0.06022094935178757,
0.003557350253686309,
0.03541235625743866,
0.017231319099664688,
-0.01924034021794796,
0.056218892335891724,
-0.009203637950122356,
-0.0014166191685944796,
0.005358221475034952,
0.02857666276395321,
0.03042895533144474,
-0.03500586375594139,
-0.006961334962397814,
-0.018316447734832764,
-0.04089336842298508,
-0.027679461985826492,
-0.012879469431936741,
0.0004695974930655211,
0.013268986716866493,
0.017253544181585312,
0.04153020307421684,
0.03985690698027611,
-0.033293452113866806,
0.006735892966389656,
-0.03065025433897972,
-0.02076013572514057,
0.051138363778591156,
0.017789455130696297,
-0.05357955023646355,
-0.07007883489131927,
0.019428210332989693,
-0.03591998293995857,
-0.052648235112428665,
-0.08905493468046188,
-0.023169465363025665,
0.03132591024041176,
-0.01311787310987711,
-0.03147052973508835,
-0.06035957112908363,
0.0005433755577541888,
0.05781544744968414,
-0.05618497356772423,
-0.004224841948598623,
0.022874267771840096,
-0.07422199100255966,
0.004319923929870129,
0.06732691824436188,
-0.04297355189919472,
0.009938218630850315,
-0.010648590512573719,
0.025675149634480476,
-0.026315076276659966,
0.056430451571941376,
-0.03673400357365608,
0.014852190390229225,
-0.061370670795440674,
-0.010391832329332829,
-0.0005625757621601224,
0.038416389375925064,
0.04170273616909981,
-0.03764668107032776,
0.05764945596456528,
0.00322168692946434,
-0.005975981708616018,
0.02824198268353939,
-0.016486050561070442,
0.0031241162214428186,
0.018756357952952385,
-0.027907593175768852,
0.014062057249248028,
-0.011407959274947643,
0.04382830485701561,
-0.05304591730237007,
-0.04236830025911331,
0.023244712501764297,
-0.02388385869562626,
-0.029878610745072365,
0.04557359963655472,
0.034064292907714844,
-0.027813654392957687,
0.026241932064294815,
0.0402655191719532,
0.02101537212729454,
0.02551089972257614,
-0.004422211088240147,
0.0654582604765892,
-0.01650647446513176,
0.0011813045712187886,
-0.04754916578531265,
-0.04233439266681671,
-0.02593913860619068,
0.031235165894031525,
0.015317457728087902,
-0.04126176983118057,
0.0009994927095249295,
0.06201457977294922,
0.0063222250901162624,
-0.008705283515155315,
0.07001321762800217,
-0.03317420929670334,
-0.019966110587120056,
-0.061003874987363815,
0.05232994630932808,
0.02523181214928627,
-0.02481016516685486,
0.023239443078637123,
-0.03770006075501442,
0.0008221686002798378,
-0.02440531924366951,
-0.042343128472566605,
0.009290887042880058,
0.019469620659947395,
-0.00979266595095396,
0.029885392636060715,
0.01523866131901741,
-0.08386615663766861,
0.023876044899225235,
0.0401790626347065,
-0.05475885421037674,
0.025554655119776726,
0.015381718054413795,
0.09178122878074646,
-0.03722762688994408,
-0.02624625526368618,
0.02287149801850319,
0.0038300289306789637,
-0.01896735467016697,
0.020021220669150352,
-0.007547722198069096,
-0.015626562759280205,
-0.03373004496097565,
-0.02159873954951763,
0.03777804225683212,
-0.02688191644847393,
-0.03127949684858322,
0.06196681782603264,
-0.027126803994178772,
0.052806172519922256,
-0.014125889167189598,
0.026248304173350334,
0.0004607862501870841,
-0.0056815617717802525,
0.008356462232768536,
0.04333847761154175,
-0.01113801822066307,
0.0022598665673285723,
-0.01629800722002983,
-0.04515685886144638,
-0.010635726153850555,
0.10414169728755951,
-0.008871796540915966,
-0.03164014592766762,
-0.03948146849870682,
0.020742086693644524,
0.008994382806122303,
0.02797471173107624,
-0.00715639116242528,
0.02146308124065399,
0.050528883934020996,
0.039864350110292435,
-0.01858575828373432,
0.053466010838747025,
0.01971730962395668,
-0.011312817223370075,
-0.013586297631263733,
0.024678101763129234,
0.0039931959472596645,
-0.02253223955631256,
-0.007955110631883144,
0.06399843841791153,
-0.018308041617274284,
-0.037877604365348816,
-0.004587984178215265,
0.04949965327978134,
0.010265983641147614,
-0.01702883094549179,
0.007616266142576933,
-0.012751972302794456,
-0.022916046902537346,
0.034706246107816696,
-0.031529828906059265,
-0.037947800010442734,
-0.02574331872165203,
-0.002938555320724845,
0.002273542806506157,
0.00022843146871309727,
0.03125346824526787,
0.032577887177467346,
0.005259580444544554,
0.08569318056106567,
-0.009891337715089321,
0.007467861287295818,
-0.044047728180885315,
-0.06567508727312088,
0.0017082549165934324,
0.03744647279381752,
0.027750128880143166,
0.04771023243665695,
-0.0012689479626715183,
-0.06591365486383438,
0.05289948359131813,
0.0638592317700386,
0.05741448327898979,
0.009537696838378906,
-0.061723481863737106,
-0.010344740003347397,
0.0017675760900601745,
0.05783488601446152,
-0.0676586776971817,
-0.029895054176449776,
0.02839510515332222,
0.07000762224197388,
-0.0477648600935936,
0.017441093921661377,
-0.01591043546795845,
0.03875073045492172,
-0.030673163011670113,
-0.06163795292377472,
0.024117514491081238,
0.04688875749707222,
0.01557838823646307,
0.01781550422310829,
0.005601782817393541,
-0.007133231498301029,
0.011860694736242294,
0.04811428487300873,
0.006991838105022907,
-0.05325780808925629,
-0.0010358091676607728,
0.04554852470755577,
0.07897786051034927,
-0.04238736256957054,
0.06762015074491501,
-0.006745492108166218,
0.017879273742437363,
0.022831957787275314,
-0.07176157087087631,
0.03214283287525177,
0.06936555355787277,
0.00851456355303526,
-0.03179458901286125,
0.035948142409324646,
0.007337749470025301,
0.035547755658626556,
0.03566986322402954,
0.026407184079289436,
0.06382487714290619,
0.019715839996933937,
0.027780979871749878,
0.057460758835077286,
0.01768632046878338,
0.012403137050569057,
0.033303841948509216,
0.0814175009727478,
0.006320151034742594,
0.00927774142473936,
0.04905739799141884,
-0.03845897316932678,
0.01477555837482214,
-0.03579850122332573,
-0.019456615671515465,
-0.007950391620397568,
0.014951669611036777,
0.05383428931236267,
-0.015130506828427315,
-0.0000699775482644327,
0.02240668423473835,
-0.003327568992972374,
-0.019619202241301537,
0.02571139857172966,
-0.02133522555232048,
-0.0002596390841063112,
0.005150557961314917,
-0.00167705281637609,
0.02129850722849369,
-0.07278750091791153,
-0.0222091693431139,
-0.018296632915735245,
-0.055469997227191925,
-0.018862349912524223,
-0.03941299021244049,
-0.01736075058579445,
-0.06693108379840851,
-0.0339493602514267,
0.036194704473018646,
0.007574363145977259,
-0.009996656328439713,
-0.03893806412816048,
0.009445910342037678,
-0.017599545419216156,
-0.038339462131261826,
-0.047982107847929,
-0.07200756669044495,
-0.03321781009435654,
-0.06784951686859131,
0.040320366621017456,
0.008416040800511837,
0.010477881878614426,
-0.009763135574758053,
0.006483654025942087,
-0.009264299646019936,
-0.023035909980535507,
0.04156135767698288,
0.05951297655701637,
-0.03179117664694786,
-0.05032818764448166,
0.017294397577643394,
0.0009445754694752395,
-0.01307474821805954,
-0.010944237932562828,
-0.0434337817132473,
0.061762385070323944,
0.03719564527273178,
0.013990147039294243,
-0.0009296219795942307,
0.011805793270468712,
-0.05474938824772835,
-0.03612641245126724,
-0.01594512164592743,
-0.05625859647989273,
-0.017202097922563553,
-0.023007966578006744,
-0.05097094178199768,
-0.006029908545315266,
-0.060225293040275574,
-0.0330386646091938,
-0.02017311006784439,
-0.018388673663139343,
0.01655513606965542,
0.06911256164312363,
0.034980855882167816,
0.039885956794023514,
-0.03476468846201897,
-0.030564401298761368,
0.05419059842824936,
0.02678488753736019,
-0.014265786856412888,
-0.06258124858140945,
-0.04423857852816582,
0.030142221599817276,
0.007431927602738142,
-0.0028874347917735577,
-0.02575753629207611,
0.06155521422624588,
0.012970433570444584,
0.0152598200365901,
0.017043650150299072,
-0.0312403105199337,
-0.017318101599812508,
-0.01936963014304638,
0.011372590437531471,
-0.017395740374922752,
-0.05934428423643112,
0.00547734135761857,
0.005321012809872627,
0.04847993329167366,
-0.06779906898736954,
-0.04321813955903053,
-0.02664348855614662,
0.01960359886288643,
0.01865725964307785,
-0.008989344350993633,
-0.040652841329574585,
-0.010854486376047134,
-0.07156755030155182,
-0.018482692539691925,
0.034451477229595184,
-0.02213849313557148,
0.017007149755954742,
0.0784391313791275,
0.03059997595846653,
-0.00704371789470315,
0.07584229856729507,
0.03677073121070862,
0.050171494483947754,
0.03214385360479355,
-0.054493248462677,
0.012537938542664051,
-0.03172309324145317,
0.03760753944516182,
-0.0010339806322008371,
-0.006213419605046511,
-0.052086327224969864,
-0.06945781409740448,
-0.028190329670906067,
0.032078202813863754,
-0.007588554173707962,
-0.012797923758625984,
0.07419191300868988,
-0.03016509674489498,
-0.029872683808207512,
-0.029929881915450096,
0.00508941151201725,
0.03831838443875313,
-0.05511895939707756,
0.0778065174818039,
0.015368056483566761,
0.03998766839504242,
-0.035368870943784714,
0.008705508895218372,
-0.027681201696395874,
-0.034389033913612366,
0.023716270923614502,
0.04368262737989426,
0.020487602800130844,
0.07223216444253922,
0.0412609688937664,
-0.011896011419594288,
-0.020987125113606453,
0.07332876324653625,
0.04070275276899338,
-0.00084888213314116,
-0.0331268310546875,
0.024056782945990562,
-0.014556762762367725,
-0.03178019821643829,
-0.02759299799799919,
-0.024090660735964775,
0.04913433641195297,
0.04447862505912781,
0.0015229274285957217,
0.03690577670931816,
0.00037670950405299664,
-0.0037687509320676327,
-0.02073991857469082,
-0.027390409260988235,
-0.008921224623918533,
0.0132444454357028,
0.008542349562048912,
-0.001143895206041634,
0.052674826234579086,
0.0017333179712295532,
0.04572582244873047,
0.04831893369555473,
-0.033332325518131256,
-0.05508149787783623,
0.00018735101912170649,
0.016268517822027206,
-0.029173340648412704,
-0.057619206607341766,
-0.015689203515648842,
0.05635377764701843,
0.03118319995701313,
-0.025134123861789703,
-0.0759405717253685,
0.011015956290066242,
0.06206187233328819,
-0.04164844751358032,
0.05204584077000618,
-0.012455662712454796,
0.031056135892868042,
0.06679674237966537,
-0.03188219666481018,
0.01468038558959961,
-0.035865746438503265,
0.008008217439055443,
-0.010002235881984234,
0.031239453703165054,
-0.01651153899729252,
-0.054837387055158615,
-0.018532898277044296,
0.021179702132940292,
0.049981482326984406,
0.029545292258262634,
0.026840638369321823,
-0.04692783206701279,
-0.06494230031967163,
-0.01127168070524931,
0.036284614354372025,
-0.026850536465644836,
0.00256329239346087,
0.03420489653944969,
0.017835408449172974,
-0.05337918922305107,
-0.023192614316940308,
-0.0292477086186409,
-0.01697058603167534,
0.025162935256958008,
-0.012227875180542469,
-0.04750435799360275,
-0.0450243316590786,
0.02426774986088276,
0.013895806856453419,
-0.02674209326505661,
-0.09684325754642487,
-0.002129973378032446,
0.0006977980956435204,
-0.013505271635949612,
0.06590434163808823,
0.0022066175006330013,
0.050470057874917984,
0.0651717260479927,
-0.016715550795197487,
0.014414706267416477,
-0.03768252208828926,
0.05724985525012016,
-0.029064053669571877,
-0.04064387455582619,
-0.015490545891225338,
-0.04138048738241196,
-0.04646379500627518,
-0.019151324406266212,
-0.038720518350601196,
-0.022841133177280426,
-0.020001763477921486,
0.006155236158519983,
0.00047212716890498996,
0.005495082121342421,
0.006653661839663982,
0.01134965568780899,
-0.03663972392678261,
-0.011128812097012997,
-0.061596017330884933,
0.000915598648134619,
-0.055635448545217514,
-0.033482976257801056,
0.05334125831723213,
0.01955190859735012,
0.014710613526403904,
0.01036012452095747,
0.01727980561554432,
0.0344591848552227,
0.01705937087535858,
-0.021502044051885605,
0.015048789791762829,
0.010929486714303493,
-0.05990331247448921,
-0.016013605520129204,
0.010871176607906818,
0.021603981032967567,
0.032593097537755966,
-0.019438982009887695,
0.02213236317038536,
0.01013191044330597,
-0.008355917409062386,
0.0003303708217572421,
0.026949316263198853,
-0.0035116630606353283,
-0.03532508760690689,
-0.025714943185448647,
0.007779297884553671,
-0.05091191083192825,
0.031202208250761032,
-0.033075202256441116,
-0.008108828216791153,
0.009064842946827412,
0.009753496386110783,
0.04764978960156441,
-0.005467759910970926,
-0.03557697683572769,
0.04434780776500702,
-0.023004859685897827,
-0.017728688195347786,
-0.0706191435456276,
0.00539025291800499,
-0.030301032587885857,
0.030586401000618935,
-0.012656879611313343,
-0.0219406858086586,
-0.04371989145874977,
0.05924983695149422,
-0.029537109658122063,
-0.02484324388206005,
-0.024910511448979378,
0.021409712731838226,
-0.03784727677702904,
0.06277491897344589,
-0.0011286260560154915,
-0.006248863413929939,
-0.022471634671092033,
0.0630207285284996,
-0.05889875814318657,
-0.017696239054203033,
-0.04096285253763199,
-0.020944567397236824,
-0.009959875606000423,
-0.014568155631422997,
-0.046436261385679245,
-0.016878027468919754,
0.016576219350099564,
0.035287123173475266,
0.032026566565036774,
0.000588736031204462,
-0.02583296038210392,
-0.007536584045737982,
0.03040492907166481,
-0.068753182888031,
-0.036406029015779495,
-0.010080023668706417,
0.017734099179506302,
0.009793422184884548,
0.06755339354276657,
0.051092732697725296,
-0.05605773255228996,
-0.055320896208286285,
0.07995570451021194,
0.02032618038356304,
0.018147442489862442,
0.002044129651039839,
0.031354401260614395,
0.024805355817079544,
0.024092627689242363,
-0.03571571782231331,
-0.02488197758793831,
-0.023432862013578415,
-0.024376749992370605,
0.025958117097616196,
-0.016568772494792938,
0.022367695346474648,
0.022098414599895477,
-0.04242313280701637,
-0.01893918216228485,
0.055162690579891205,
0.038023367524147034,
0.04904843866825104,
-0.04269510880112648,
-0.0378771647810936,
0.02934284321963787,
0.004156280774623156,
-0.03855809196829796,
0.01436593383550644,
0.018413908779621124,
-0.04330476000905037,
0.06634138524532318,
-0.014324516989290714,
0.02834511175751686,
0.052519965916872025,
0.05344625934958458,
-0.040914203971624374,
0.04283503070473671,
-0.03738430142402649,
0.003686098614707589,
0.08616779744625092,
-0.07128587365150452,
-0.014768078923225403,
-0.03466568514704704,
0.06007346510887146,
-0.0729433223605156,
0.06740841269493103,
0.023366525769233704,
0.01868862472474575,
0.031534068286418915,
-0.06245650723576546,
-0.022734442725777626,
-0.011579527519643307,
-0.057002704590559006,
0.10827931761741638,
0.016981249675154686,
-0.0632329210639,
0.07182544469833374,
0.012747563421726227,
-0.08543266355991364,
0.023531705141067505,
0.014975626952946186,
0.003253230592235923,
0.028079234063625336,
0.033339399844408035,
-0.03481694683432579,
0.014923774637281895,
-0.030595330521464348,
0.039692338556051254,
-0.0513954795897007,
0.01366232056170702,
0.04060288891196251,
-0.03227020800113678,
-0.008016284555196762,
0.04239697381854057,
-0.012026558630168438,
0.005741189233958721,
0.0013844980858266354,
-0.04056929051876068,
-0.062307290732860565,
0.0020008462015539408,
0.025496279820799828,
-0.004101249855011702,
0.012021617032587528,
-0.019987130537629128,
0.007738293148577213,
0.02151343785226345,
-0.010122152045369148,
-0.016517380252480507,
-0.015290522016584873,
0.03204130381345749,
-0.07103744149208069,
-0.04747762531042099,
0.008366077207028866,
-0.004246720112860203,
-0.03522021323442459,
0.013832082971930504,
0.0026200604625046253,
0.019243020564317703,
0.007822987623512745,
0.0037739244289696217,
0.005129584111273289,
-0.06437056511640549,
-0.014522751793265343,
0.011046298779547215,
-0.003293295856565237,
0.035204265266656876,
-0.02721576765179634,
0.040247976779937744,
0.02255127765238285,
0.00174096436239779,
0.016272924840450287,
-0.024860508739948273,
-0.012515773996710777,
0.008795349858701229,
-0.05519641190767288,
-0.002066368702799082,
-0.022644126787781715,
-0.031630128622055054,
-0.035480618476867676,
0.010400013998150826,
-0.014320412650704384,
0.05618041381239891,
-0.045323509722948074,
0.014688673429191113,
0.0010307467309758067,
-0.01029975526034832,
-0.05325010418891907,
-0.11370205134153366,
-0.03998284786939621,
-0.03198140859603882,
0.025985579937696457,
0.0006696816417388618,
-0.024047495797276497,
0.03685036674141884,
-0.019789615646004677,
-0.06844426691532135,
0.03613574057817459,
0.019504504278302193,
-0.010046949610114098,
0.04757368937134743,
0.03573896363377571,
-0.05206426605582237,
0.015363717451691628,
0.04449347034096718,
-0.02272219955921173,
0.05151967331767082,
-0.0030764639377593994,
-0.0015816300874575973,
0.006071071606129408,
-0.0007945179240778089,
-0.043229710310697556,
-0.01063796877861023,
-0.054350875318050385,
-0.04731578379869461,
-0.007025117054581642,
-0.01608392223715782,
0.054811254143714905
] |
AnonymousSub/AR_bert-base-uncased | [
"pytorch",
"bert",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"BertModel"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
datasets:
- yyyynnnniiii/WSJ_0518
language:
- en
metrics:
- accuracy
pipeline_tag: text-classification
tags:
- finance
--- | [
-0.03044656664133072,
-0.012185469269752502,
0.028720514848828316,
-0.003787563182413578,
0.05932501330971718,
0.017733879387378693,
-0.005333774257451296,
-0.004994543734937906,
-0.03473685309290886,
0.04380129650235176,
0.05057729780673981,
-0.0012401904677972198,
-0.004540644120424986,
0.03333514928817749,
-0.03863680735230446,
-0.007971900515258312,
-0.0028893949929624796,
-0.05821491405367851,
-0.03301136568188667,
-0.002206251723691821,
-0.008957858197391033,
-0.0012054770486429334,
-0.020524416118860245,
0.027255460619926453,
0.019465090706944466,
0.011221326887607574,
0.008655128069221973,
0.03285985440015793,
0.059538036584854126,
-0.0340392179787159,
-0.001564175821840763,
-0.04378661885857582,
-0.035963479429483414,
-0.041156455874443054,
-0.0332256481051445,
-0.0035537409130483866,
0.012164195068180561,
-0.004283333662897348,
0.0413404256105423,
0.03733404353260994,
-0.027622036635875702,
0.01733992248773575,
0.0023301986511796713,
-0.03085755929350853,
0.020841924473643303,
-0.005985866766422987,
-0.02725856378674507,
-0.02619950845837593,
0.001459929277189076,
-0.034652579575777054,
-0.04938465356826782,
-0.07551652938127518,
-0.037086863070726395,
-0.012016144581139088,
-0.01924368366599083,
-0.04487733170390129,
-0.012016463093459606,
0.05657504126429558,
0.07032894343137741,
-0.031705342233181,
-0.03573423624038696,
0.009871194139122963,
-0.07766464352607727,
0.01728387363255024,
0.021574506536126137,
-0.05461607873439789,
0.01753327064216137,
-0.053720343858003616,
0.03737785294651985,
-0.014658700674772263,
0.04713057726621628,
-0.04197707772254944,
0.02106865495443344,
-0.06234657019376755,
-0.01615597866475582,
-0.026751786470413208,
0.025167187675833702,
0.0382206030189991,
-0.03525735065340996,
0.054751161485910416,
0.03382996842265129,
0.03229537978768349,
0.0552857406437397,
-0.007467232644557953,
-0.0228451956063509,
0.017356043681502342,
-0.024662751704454422,
-0.012906230054795742,
0.007155995350331068,
0.05005509406328201,
-0.028791703283786774,
-0.04288868233561516,
-0.013327246531844139,
-0.03968082368373871,
-0.034567736089229584,
0.018804794177412987,
0.030105017125606537,
-0.0016263449797406793,
0.035529762506484985,
0.03095296025276184,
0.0013739393325522542,
0.04586173966526985,
-0.003899167524650693,
0.048402924090623856,
-0.009721840731799603,
-0.011360694654285908,
-0.005261590704321861,
-0.026076531037688255,
-0.042587317526340485,
0.04825308173894882,
0.00024824452702887356,
-0.026042088866233826,
-0.03998237103223801,
0.037075698375701904,
0.017074037343263626,
-0.028597582131624222,
0.07865146547555923,
-0.025655897334218025,
-0.05747797712683678,
-0.023005904629826546,
0.052117157727479935,
0.010684558190405369,
0.0120015200227499,
0.022056061774492264,
-0.03847546502947807,
-0.004449647385627031,
-0.04269637539982796,
-0.023822342976927757,
0.00044809107203036547,
-0.004622382577508688,
-0.0006767472950741649,
0.04901283234357834,
0.014949149452149868,
-0.07216428220272064,
0.00404941663146019,
0.035426851361989975,
-0.07278656214475632,
0.024882052093744278,
0.036443665623664856,
0.08758752048015594,
-0.07299962639808655,
-0.06137664243578911,
0.005463220179080963,
0.019737936556339264,
-0.019706571474671364,
0.01286838948726654,
-0.0013975674519315362,
-0.05259542912244797,
-0.056399863213300705,
-0.029964163899421692,
0.03361554071307182,
-0.049957651644945145,
-0.0061642928048968315,
0.058197278529405594,
0.004007935058325529,
0.03391730412840843,
-0.03658246248960495,
0.027402067556977272,
0.018191231414675713,
0.0010645773727446795,
-0.05559980124235153,
0.036367107182741165,
-0.015123406425118446,
-0.0005213856347836554,
-0.042917169630527496,
-0.044523175805807114,
-0.013199773617088795,
0.053984303027391434,
0.007011454086750746,
-0.02502243034541607,
-0.0709155946969986,
0.010019272565841675,
0.029595261439681053,
0.01746731996536255,
-0.03404413163661957,
0.0189436674118042,
0.04426092281937599,
0.05505264550447464,
-0.002875072183087468,
0.08626418560743332,
0.04379351809620857,
-0.012100755237042904,
-0.0372050479054451,
-0.0003894783731084317,
0.05272471904754639,
-0.017397934570908546,
0.000985128222964704,
0.06495365500450134,
0.011259248480200768,
-0.02725638821721077,
-0.010747221298515797,
0.03446221351623535,
0.0007457197061739862,
-0.00015086452185641974,
0.002297854982316494,
-0.005926087498664856,
-0.021060071885585785,
0.03647342324256897,
-0.04833374544978142,
-0.004289036616683006,
-0.024210358038544655,
-0.021051054820418358,
0.022710351273417473,
0.05684751644730568,
0.01792631670832634,
0.039539795368909836,
-0.017459562048316002,
0.08124891668558121,
-0.04676467180252075,
0.02853541076183319,
-0.03268863260746002,
-0.04385482892394066,
-0.0026231883093714714,
0.05289778485894203,
0.03509671241044998,
0.04070067033171654,
-0.011873726733028889,
-0.04645133763551712,
0.03963799029588699,
0.049875933676958084,
0.039560262113809586,
0.029369262978434563,
0.0021746130660176277,
0.019339341670274734,
0.032138641923666,
0.03229355067014694,
-0.06489376723766327,
-0.06751885265111923,
0.03145061060786247,
0.039210159331560135,
-0.009894314222037792,
0.005664636846631765,
-0.013744822703301907,
0.027285531163215637,
-0.021629808470606804,
-0.0703125074505806,
0.050392549484968185,
0.020949168130755424,
-0.010540706105530262,
0.02650415152311325,
-0.019975600764155388,
0.000718799012247473,
0.029058195650577545,
-0.017975978553295135,
-0.0041877273470163345,
-0.05077867954969406,
0.015314392745494843,
0.02183072827756405,
0.06477349251508713,
-0.05866024270653725,
-0.004785475321114063,
-0.005960983224213123,
0.005383640062063932,
0.05741245299577713,
-0.053174953907728195,
0.03137192502617836,
0.039025016129016876,
0.03381367027759552,
-0.024551980197429657,
0.032536838203668594,
0.022290006279945374,
0.014138147234916687,
0.061786338686943054,
0.015149307437241077,
0.07709150016307831,
-0.03391723334789276,
0.0574602447450161,
0.07697080075740814,
0.019242553040385246,
0.01333488430827856,
0.03957005590200424,
0.06560616195201874,
0.0006858729757368565,
0.005712634883821011,
0.04733959585428238,
-0.0443420372903347,
0.0019464039942249656,
-0.059508658945560455,
0.01082317903637886,
-0.04580623656511307,
-0.02548741176724434,
0.035342227667570114,
0.007960443384945393,
-0.033270660787820816,
0.0014945445582270622,
-0.021085266023874283,
0.0014666228089481592,
0.043780095875263214,
-0.01429061684757471,
0.002808586461469531,
-0.021817544475197792,
-0.02543054334819317,
0.028019003570079803,
-0.03672032430768013,
-0.05010609328746796,
-0.01631760410964489,
-0.03145255148410797,
0.0035588163882493973,
-0.07804753631353378,
-0.02439102716743946,
-0.08038280159235,
-0.02382286824285984,
0.0559677816927433,
0.039090175181627274,
0.022988993674516678,
-0.04279152676463127,
0.016203921288251877,
-0.013101661577820778,
-0.044101227074861526,
-0.08229837566614151,
-0.04424073174595833,
-0.036929380148649216,
-0.07671736180782318,
0.04689526557922363,
0.051556553691625595,
0.028927812352776527,
0.007455731276422739,
0.024984532967209816,
-0.032175738364458084,
-0.0086049884557724,
0.03981117904186249,
0.024600490927696228,
-0.021238191053271294,
-0.03048636205494404,
0.03405959531664848,
-0.000901770603377372,
0.02166680246591568,
-0.0025482287164777517,
-0.04437177628278732,
0.05762360617518425,
0.06792576611042023,
0.055628348141908646,
0.001019108109176159,
-0.01583179458975792,
-0.04050412029027939,
-0.03737468272447586,
-0.03450264781713486,
-0.02557203732430935,
-0.007810264825820923,
-0.015675099566578865,
-0.04478435218334198,
-0.027664463967084885,
-0.019944190979003906,
0.01113522332161665,
-0.01083076000213623,
0.04038799926638603,
-0.010900353081524372,
0.022872695699334145,
0.042489390820264816,
0.009190060198307037,
-0.045451369136571884,
-0.0038629816845059395,
0.07276389747858047,
-0.027507027611136436,
-0.0012955211568623781,
-0.09623774141073227,
-0.04300624132156372,
0.04829438030719757,
0.01949833519756794,
0.021689260378479958,
-0.013821031898260117,
0.06766105443239212,
0.015566691756248474,
0.03727491572499275,
0.02329258807003498,
-0.03711140155792236,
0.001092903083190322,
-0.028510628268122673,
0.01328953355550766,
-0.035255324095487595,
-0.05147821083664894,
0.002391180954873562,
0.008123327046632767,
0.053422290831804276,
-0.047267746180295944,
-0.03419653698801994,
-0.025501752272248268,
0.021507814526557922,
0.03917030990123749,
-0.017038609832525253,
-0.020184364169836044,
-0.014074800536036491,
-0.06306727230548859,
-0.03516330569982529,
0.03162512928247452,
0.00703464774414897,
0.009296640753746033,
0.029796689748764038,
0.023814162239432335,
-0.046478137373924255,
0.07188812643289566,
0.031101975589990616,
0.04941311851143837,
0.03782982751727104,
-0.04389966279268265,
0.02774023450911045,
-0.03972873464226723,
0.01967078261077404,
-0.0025317396502941847,
-0.029538623988628387,
-0.03932172805070877,
-0.06885936856269836,
-0.0006066972855478525,
0.015183435752987862,
-0.0249408558011055,
0.0054592168889939785,
0.03609596937894821,
-0.007296652998775244,
-0.014537537470459938,
-0.026596875861287117,
0.03214640915393829,
0.029220711439847946,
-0.04493451118469238,
0.0566854290664196,
-0.010800966992974281,
0.004138114862143993,
-0.04727160185575485,
-0.0024431487545371056,
-0.03476784750819206,
-0.009694961830973625,
-0.018557822331786156,
0.06866235285997391,
0.017372047528624535,
0.0009597396710887551,
0.09446967393159866,
0.010409839451313019,
-0.02721337415277958,
0.041922010481357574,
0.07967934757471085,
-0.011166096664965153,
-0.045814067125320435,
0.005983406212180853,
-0.005247339140623808,
-0.03067792020738125,
-0.012595447711646557,
-0.035389967262744904,
0.0257070641964674,
0.025024229660630226,
-0.02177603542804718,
0.01684865728020668,
0.0021671161521226168,
-0.01758970133960247,
-0.03617565706372261,
-0.04212840646505356,
-0.027123037725687027,
0.019116563722491264,
-0.03294059634208679,
0.017672421410679817,
0.05397755652666092,
0.009133908897638321,
0.06662717461585999,
0.013494256883859634,
-0.06743411719799042,
-0.04103555530309677,
0.03053913824260235,
0.040051184594631195,
-0.047792211174964905,
-0.07956293970346451,
-0.029740503057837486,
0.028643375262618065,
0.038004737347364426,
-0.026553472504019737,
-0.07227636128664017,
0.016862887889146805,
0.056212909519672394,
-0.05469878390431404,
0.0770370364189148,
-0.008855356834828854,
0.04734121263027191,
0.05657779052853584,
-0.03255584463477135,
0.026677580550312996,
-0.022297268733382225,
0.019131937995553017,
-0.006386502180248499,
0.013738051056861877,
-0.03916212543845177,
-0.02936169132590294,
-0.03481583297252655,
0.0493808351457119,
0.011303596198558807,
0.042635634541511536,
0.057433828711509705,
-0.018456660211086273,
-0.05381753295660019,
-0.012220876291394234,
0.02916654199361801,
-0.05089596286416054,
0.007932533510029316,
0.024104906246066093,
0.06095545366406441,
-0.031704992055892944,
-0.02529904805123806,
0.013300122693181038,
0.02383500151336193,
0.051271162927150726,
-0.005517889279872179,
-0.01703338883817196,
-0.05551457777619362,
0.03398526832461357,
-0.02837235853075981,
-0.04427589476108551,
-0.10409963130950928,
0.047478314489126205,
-0.010521503165364265,
-0.01116371899843216,
0.05015532299876213,
0.03529992699623108,
0.03617265447974205,
0.01683863438665867,
-0.004154524300247431,
0.03161187469959259,
-0.035794563591480255,
0.02679947018623352,
-0.03829296678304672,
-0.03522308170795441,
-0.009535622783005238,
-0.06571599096059799,
-0.03767703101038933,
-0.0285174623131752,
-0.04759088531136513,
-0.050352051854133606,
-0.004026812966912985,
0.01100473664700985,
-0.0004194315115455538,
0.023273160681128502,
-0.020952383056282997,
0.01819431222975254,
-0.011204248294234276,
-0.00877352524548769,
-0.013297909870743752,
-0.03528928756713867,
-0.10008718073368073,
-0.04448531195521355,
0.007848499342799187,
-0.00908015388995409,
0.005943991243839264,
-0.008121785707771778,
-0.004174624104052782,
0.03469351306557655,
0.01636427827179432,
-0.036855343729257584,
0.013775001280009747,
0.006829360034316778,
-0.012939036823809147,
-0.024993766099214554,
0.002538166707381606,
0.026941295713186264,
0.010709675960242748,
-0.017715083435177803,
0.018133554607629776,
-0.0038639025297015905,
-0.028592420741915703,
-0.01623084396123886,
0.01983078196644783,
0.029959462583065033,
-0.06389012187719345,
-0.05654313042759895,
-0.03989254683256149,
-0.01137416623532772,
0.05105781927704811,
-0.025080062448978424,
-0.031885791569948196,
0.012372097931802273,
0.03515668585896492,
0.024083225056529045,
0.00361803756095469,
-0.017500100657343864,
0.017090827226638794,
-0.03196397423744202,
0.02351362071931362,
-0.05591132491827011,
0.03578433766961098,
-0.009679681621491909,
0.002264259150251746,
-0.012861151248216629,
-0.01977558806538582,
-0.05274597555398941,
0.04802116006612778,
0.01383199356496334,
-0.021810241043567657,
-0.042374975979328156,
-0.00042893175850622356,
-0.0007613945635966957,
0.039211615920066833,
0.020995628088712692,
0.03379570692777634,
0.02208583429455757,
0.02449984662234783,
-0.059928733855485916,
0.03453327342867851,
0.004369625821709633,
-0.020619133487343788,
-0.04594199359416962,
-0.0067091574892401695,
-0.00047075634938664734,
-0.055103790014982224,
0.012770677916705608,
0.021281283348798752,
0.024543223902583122,
-0.0030798811931163073,
-0.007067870814353228,
-0.0018192152492702007,
0.03517517074942589,
-0.05729848891496658,
-0.023285526782274246,
-0.022874493151903152,
0.007131969090551138,
-0.0013238150859251618,
0.06360194832086563,
0.028568288311362267,
-0.05274179205298424,
-0.05545137822628021,
0.04666655883193016,
0.01371064130216837,
-0.003841874422505498,
-0.010212467052042484,
0.0004777212452609092,
0.044605057686567307,
0.044688332825899124,
-0.036668602377176285,
-0.005244193132966757,
0.0038289569783955812,
-0.0010850445833057165,
0.010128304362297058,
-0.010508982464671135,
-0.0017052657203748822,
0.013251709751784801,
-0.0483575277030468,
0.0028416053391993046,
0.07116800546646118,
0.022627009078860283,
0.0179287139326334,
-0.03929727151989937,
-0.03628828376531601,
0.033356282860040665,
0.023816468194127083,
-0.0514262355864048,
-0.0055127376690506935,
0.047336358577013016,
-0.01787881925702095,
0.05367806926369667,
-0.02044997364282608,
0.02685489133000374,
0.03817141428589821,
0.020093528553843498,
0.0014550249325111508,
0.04008929803967476,
-0.026531042531132698,
0.012242301367223263,
0.035769734531641006,
-0.07221757620573044,
-0.004466478247195482,
-0.04173993319272995,
0.052525844424963,
-0.07069102674722672,
0.046621792018413544,
0.029531486332416534,
0.0406712144613266,
0.062061164528131485,
-0.025988897308707237,
-0.024166643619537354,
0.010595888830721378,
-0.04713715985417366,
0.06363574415445328,
-0.029377704486250877,
-0.07325426489114761,
0.07575955241918564,
0.013923469930887222,
-0.08316200971603394,
-0.0015781876863911748,
0.01780732348561287,
0.03193676471710205,
0.03255273029208183,
0.018605176359415054,
-0.009148979559540749,
0.016987117007374763,
-0.033185288310050964,
0.009835665114223957,
-0.04225799813866615,
-0.018363209441304207,
0.026798898354172707,
-0.05117575079202652,
-0.029307110235095024,
0.029778743162751198,
0.0015446197940036654,
0.008264641277492046,
0.011926986277103424,
-0.015239342115819454,
-0.03488970920443535,
0.03138669580221176,
0.033524058759212494,
-0.02878696098923683,
0.02785555273294449,
-0.04276247322559357,
0.019501304253935814,
0.06617332994937897,
-0.01454269140958786,
-0.051263269037008286,
-0.004535603802651167,
0.027877982705831528,
-0.09121225774288177,
-0.02780580334365368,
0.030885307118296623,
0.018116382881999016,
-0.034628547728061676,
0.0223572738468647,
0.0006795059307478368,
-0.001916486187838018,
0.04074595496058464,
-0.011002757586538792,
0.03680961951613426,
-0.05454546958208084,
-0.016624776646494865,
0.026716208085417747,
-0.020887454971671104,
0.023113232105970383,
-0.006846071686595678,
0.04639318585395813,
0.04475235193967819,
0.034864723682403564,
-0.013005566783249378,
-0.02634953148663044,
-0.02600218914449215,
0.020057005807757378,
-0.02788480743765831,
0.026436716318130493,
0.024602491408586502,
-0.02420846000313759,
-0.05737077444791794,
-0.0015812463825568557,
-0.00753679359331727,
0.03674120455980301,
-0.02039720118045807,
0.002451294334605336,
0.04000585526227951,
0.008294560015201569,
-0.05625342205166817,
-0.09772968292236328,
-0.044171884655952454,
-0.03210016340017319,
0.05699070543050766,
0.013454257510602474,
-0.05134095996618271,
0.00694261072203517,
-0.026743700727820396,
-0.048995450139045715,
0.03722911328077316,
0.016932716593146324,
-0.042050596326589584,
0.06371402740478516,
0.05454188212752342,
-0.015078680589795113,
0.016223618760704994,
0.043410155922174454,
-0.04181332141160965,
0.046101901680231094,
0.02078484743833542,
0.048286888748407364,
0.016002174466848373,
0.029719708487391472,
-0.015071024186909199,
-0.030744267627596855,
-0.04888681322336197,
-0.05563540384173393,
-0.0056696804240345955,
-0.005815102253109217,
0.06365446746349335
] |
AnonymousSub/AR_cline | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
metrics:
- accuracy
- f1
- precision
- recall
model-index:
- name: Benign10MGPT2_fromB_BFall_30KGen_toP_0.75
results: []
---
<!-- 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. -->
# Benign10MGPT2_fromB_BFall_30KGen_toP_0.75
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1066
- Accuracy: 0.9827
- F1: 0.7997
- Precision: 0.8920
- Recall: 0.7248
- Roc Auc Score: 0.8602
- Tpr At Fpr 0.01: 0.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: 2e-05
- train_batch_size: 32
- eval_batch_size: 32
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5.0
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall | Roc Auc Score | Tpr At Fpr 0.01 |
|:-------------:|:-----:|:------:|:---------------:|:--------:|:------:|:---------:|:------:|:-------------:|:---------------:|
| 0.0859 | 1.0 | 26250 | 0.0749 | 0.9823 | 0.7832 | 0.9388 | 0.6718 | 0.8348 | 0.5556 |
| 0.074 | 2.0 | 52500 | 0.0810 | 0.9803 | 0.7718 | 0.8628 | 0.6982 | 0.8463 | 0.5496 |
| 0.0534 | 3.0 | 78750 | 0.0735 | 0.9846 | 0.8211 | 0.9211 | 0.7406 | 0.8687 | 0.5882 |
| 0.0374 | 4.0 | 105000 | 0.0877 | 0.9830 | 0.8023 | 0.8976 | 0.7254 | 0.8606 | 0.0 |
| 0.0267 | 5.0 | 131250 | 0.1066 | 0.9827 | 0.7997 | 0.8920 | 0.7248 | 0.8602 | 0.0 |
### Framework versions
- Transformers 4.29.1
- Pytorch 1.9.0+cu111
- Datasets 2.10.1
- Tokenizers 0.13.2
| [
-0.021929573267698288,
0.009585588239133358,
-0.004212843719869852,
0.03617551922798157,
0.014535525813698769,
0.005886731669306755,
-0.00824621133506298,
-0.013530739583075047,
-0.034293435513973236,
0.04621478542685509,
0.004070206079632044,
-0.04292849078774452,
0.015175605192780495,
0.03155890107154846,
-0.011303475126624107,
-0.028166821226477623,
0.0000014653242033091374,
-0.001977270469069481,
-0.03393474966287613,
0.017682062461972237,
-0.004733708221465349,
0.0005166324554011226,
-0.010395760647952557,
0.02423597313463688,
0.013348706997931004,
0.020075777545571327,
0.0043667517602443695,
0.026868311688303947,
0.018113425001502037,
-0.0741826593875885,
-0.0002806744887493551,
-0.04710811749100685,
-0.05473983287811279,
-0.027961749583482742,
-0.018970999866724014,
-0.01041522715240717,
-0.006922244559973478,
0.004046275280416012,
0.045636020600795746,
0.06995821744203568,
0.006929564755409956,
0.029452675953507423,
0.003436718136072159,
-0.002591729396954179,
0.03953520953655243,
-0.008362937718629837,
-0.03374481573700905,
-0.001124485512264073,
0.04051511734724045,
-0.011806859634816647,
-0.0825715959072113,
-0.05263550207018852,
-0.008169755339622498,
0.01538860984146595,
-0.0059470199048519135,
-0.016509369015693665,
-0.06173091009259224,
-0.001304425997659564,
0.07625534385442734,
-0.023558354005217552,
-0.05326585844159126,
0.016062762588262558,
-0.06358548253774643,
0.024281958118081093,
0.03776196017861366,
0.0004207979654893279,
0.02349674329161644,
-0.0335569828748703,
0.03519080579280853,
-0.03480629250407219,
0.04969784989953041,
-0.005345611367374659,
0.010327027179300785,
-0.08408882468938828,
-0.013142986223101616,
-0.015049207024276257,
0.0445776991546154,
0.05116339772939682,
-0.03622342646121979,
0.051821108907461166,
0.032497670501470566,
-0.02212182618677616,
0.05524684488773346,
-0.020152835175395012,
0.01387925073504448,
0.033220745623111725,
-0.04471774399280548,
-0.0034432222601026297,
0.012095838785171509,
0.025472627952694893,
-0.034421928226947784,
-0.01973624713718891,
-0.03796057775616646,
-0.017782172188162804,
-0.02264370582997799,
-0.006911860313266516,
0.013576545752584934,
0.010161546990275383,
0.04156563803553581,
-0.005934682674705982,
0.037003837525844574,
0.03512612730264664,
-0.004436979070305824,
0.08332837373018265,
0.005229203030467033,
-0.03578469529747963,
-0.023686401546001434,
-0.030660351738333702,
-0.04285724461078644,
0.003513272851705551,
0.032783955335617065,
-0.04578781500458717,
-0.036431681364774704,
0.05332712084054947,
-0.0021910755895078182,
-0.004080565646290779,
0.07471081614494324,
-0.020747607573866844,
-0.045236509293317795,
-0.050076961517333984,
0.03602668642997742,
0.01213029958307743,
0.01881079003214836,
-0.0036396950017660856,
-0.04127397760748863,
-0.009907632134854794,
-0.02964445762336254,
-0.023098275065422058,
-0.01976262591779232,
0.020813949406147003,
0.017075618728995323,
0.04954534396529198,
0.02619079127907753,
-0.0828225165605545,
0.004301499109715223,
0.0035326997749507427,
-0.05429377779364586,
0.054338809102773666,
0.007108903024345636,
0.10062742233276367,
-0.04296364635229111,
-0.07400231808423996,
0.006662233732640743,
-0.01223817653954029,
-0.013662275858223438,
0.020806970074772835,
0.02186582051217556,
-0.051180217415094376,
0.007365277968347073,
-0.003591417334973812,
0.05922979488968849,
-0.050250470638275146,
-0.014682026579976082,
0.05216282233595848,
0.00006851576472399756,
0.02412443980574608,
-0.047638025134801865,
-0.019709352403879166,
0.008875506930053234,
-0.023847918957471848,
-0.002902708249166608,
0.04276340454816818,
-0.034794166684150696,
-0.01958344131708145,
-0.03758161887526512,
-0.03748011216521263,
0.00954361166805029,
0.07001794129610062,
0.01635820046067238,
-0.020031509920954704,
-0.012913480401039124,
0.024496959522366524,
0.0393739677965641,
0.031138956546783447,
-0.03335200250148773,
0.039987172931432724,
0.05414680764079094,
0.01132294163107872,
-0.04446547105908394,
0.04576034098863602,
0.01387281995266676,
-0.03591609373688698,
-0.031655453145504,
0.01969708688557148,
-0.021149059757590294,
-0.04279577359557152,
0.03049788996577263,
0.024385564029216766,
0.0205102376639843,
-0.04532802477478981,
-0.01946856640279293,
0.036110348999500275,
-0.01508209016174078,
-0.0033573568798601627,
0.008197182789444923,
0.010953645221889019,
-0.03323497250676155,
0.041072651743888855,
-0.008393235504627228,
0.016496777534484863,
-0.02547036111354828,
-0.0304286926984787,
0.01366786751896143,
0.00022385266493074596,
0.03306584805250168,
0.042434852570295334,
-0.024731026962399483,
0.09230585396289825,
-0.048596903681755066,
0.02156561054289341,
-0.04192880541086197,
-0.035302720963954926,
0.0199468731880188,
0.05928197503089905,
0.03714132308959961,
0.04771273210644722,
0.0042165108025074005,
-0.030978521332144737,
0.03581315279006958,
0.057027366012334824,
0.061294469982385635,
0.02501954697072506,
-0.042315803468227386,
-0.005797275807708502,
0.0465264655649662,
0.04031635448336601,
-0.05626726150512695,
-0.027164965867996216,
0.007955534383654594,
0.04176625236868858,
-0.011570426635444164,
0.013667014427483082,
-0.026492362841963768,
0.04071275144815445,
-0.0365830734372139,
-0.0628950372338295,
0.038534410297870636,
0.03359798341989517,
-0.007974031381309032,
0.05363686382770538,
0.0023588265758007765,
0.0103773707523942,
0.026953579857945442,
0.03063897043466568,
-0.019453151151537895,
-0.03799733892083168,
0.042799267917871475,
0.01445001270622015,
0.05368320643901825,
-0.03244874253869057,
0.043716911226511,
-0.03060527890920639,
0.01955847442150116,
0.032421957701444626,
-0.04070186987519264,
0.014438956044614315,
0.04606613889336586,
0.030196964740753174,
-0.018243126571178436,
0.011801927350461483,
0.019846132025122643,
0.029860027134418488,
0.045611657202243805,
-0.005296362563967705,
0.07436379045248032,
-0.012278113514184952,
0.038402680307626724,
0.07577971369028091,
0.009163790382444859,
0.039194896817207336,
0.02941983938217163,
0.08717335760593414,
0.012216916307806969,
-0.018257342278957367,
0.057201188057661057,
-0.037151385098695755,
0.018443331122398376,
-0.051665354520082474,
0.007475843653082848,
-0.01562305074185133,
-0.011436372064054012,
0.030373690649867058,
0.035024940967559814,
-0.01849926821887493,
-0.018004022538661957,
0.016580309718847275,
-0.018435796722769737,
0.004521753638982773,
-0.0060404338873922825,
0.0034650196321308613,
0.02174757979810238,
-0.013831809163093567,
-0.012068468146026134,
-0.06294713169336319,
-0.023761127144098282,
-0.01924951560795307,
-0.0427171029150486,
-0.009888208471238613,
-0.08591097593307495,
-0.001573064480908215,
-0.08804228901863098,
-0.016765892505645752,
0.03218843787908554,
0.009933275170624256,
-0.0037264693528413773,
-0.0429019033908844,
0.023906612768769264,
-0.045072492212057114,
-0.029719209298491478,
-0.04884934052824974,
-0.05680730566382408,
-0.04984014853835106,
-0.09234719723463058,
0.031037256121635437,
0.04670519754290581,
0.0002620996965561062,
-0.006184395868331194,
0.01453380100429058,
0.013383976183831692,
-0.017729973420500755,
0.04931134730577469,
0.052690036594867706,
-0.045127127319574356,
-0.05246791988611221,
0.03386141359806061,
-0.02412847802042961,
0.01779749058187008,
-0.0005442801048047841,
-0.012710320763289928,
0.0955878421664238,
0.0706317126750946,
0.011879797093570232,
0.01644829660654068,
-0.03330063074827194,
-0.06307712197303772,
-0.04463576152920723,
-0.029873786494135857,
-0.04459453374147415,
-0.005939026363193989,
-0.042661402374506,
-0.044759757816791534,
-0.011374156922101974,
-0.04795556515455246,
0.014428464695811272,
-0.008359241299331188,
0.019266633316874504,
0.026932405307888985,
0.04773624241352081,
0.012579056434333324,
0.04585399106144905,
-0.025482483208179474,
-0.04855616018176079,
0.05271078646183014,
0.005987005308270454,
0.012132187373936176,
-0.09522240608930588,
-0.009145534597337246,
0.033500827848911285,
0.018296917900443077,
0.029928358271718025,
-0.0244608111679554,
0.07737535983324051,
0.0047882129438221455,
-0.0022124506067484617,
0.015777649357914925,
-0.021709881722927094,
-0.03197063133120537,
-0.019683128222823143,
0.00900105107575655,
-0.006897272542119026,
-0.03935280069708824,
-0.01002785935997963,
-0.005682060495018959,
0.017509102821350098,
-0.05510270595550537,
-0.05352814868092537,
-0.0059327925555408,
0.04845596104860306,
0.018130449578166008,
-0.002730998443439603,
-0.05370562523603439,
-0.02645900286734104,
-0.06877326220273972,
0.00034712112392298877,
0.03204606473445892,
0.0010399296879768372,
-0.004720570519566536,
0.053503695875406265,
0.008968764916062355,
-0.007294198032468557,
0.03592599183320999,
0.04962500184774399,
0.07212807983160019,
0.0029704689513891935,
-0.07464033365249634,
0.010499068535864353,
-0.008423988707363605,
0.029629336670041084,
0.0006413444643840194,
-0.04403308033943176,
-0.036761026829481125,
-0.12632650136947632,
-0.02418465167284012,
-0.001713403733447194,
-0.009208807721734047,
-0.0063397446647286415,
0.026096120476722717,
-0.006267845630645752,
-0.012493159621953964,
-0.008635347709059715,
-0.004295744933187962,
0.015266446396708488,
-0.03954833745956421,
0.05428995192050934,
-0.014549250714480877,
0.006796563975512981,
-0.060683269053697586,
0.00383736495859921,
-0.04343631863594055,
-0.016932500526309013,
0.027045423164963722,
0.041605472564697266,
0.0018026911420747638,
0.05658777430653572,
0.06243070960044861,
0.044326428323984146,
-0.05144577473402023,
0.023468531668186188,
0.06661706417798996,
-0.04512283205986023,
-0.039212219417095184,
-0.0009697258356027305,
0.00010456099698785692,
-0.026372332125902176,
0.025567583739757538,
-0.014238463714718819,
0.04374132305383682,
0.029187018051743507,
-0.0015363363781943917,
0.011724268086254597,
-0.003935385029762983,
-0.011239283718168736,
-0.03588287532329559,
-0.04508950561285019,
-0.00806490983814001,
-0.021629242226481438,
-0.03949400782585144,
0.03204182907938957,
0.010855554603040218,
0.017850112169981003,
0.08314213901758194,
0.03235239163041115,
-0.01861768402159214,
-0.026379922404885292,
0.012011495418846607,
0.008281907998025417,
-0.017217081040143967,
-0.08308049291372299,
-0.0232444666326046,
0.04293051362037659,
0.027873164042830467,
-0.01615154556930065,
-0.052546028047800064,
-0.0012510744854807854,
0.06620285660028458,
-0.04585007205605507,
0.06312577426433563,
-0.019559606909751892,
0.05057442933320999,
0.05115146562457085,
-0.013003564439713955,
0.04687933623790741,
-0.021623961627483368,
-0.027833951637148857,
-0.004577571991831064,
0.051765602082014084,
-0.025937460362911224,
-0.02294624224305153,
-0.03757453337311745,
0.02353452332317829,
0.04235256090760231,
0.04944121092557907,
0.03832249343395233,
-0.02605518139898777,
-0.024201665073633194,
0.016013221815228462,
0.02887606993317604,
-0.03968668729066849,
0.013308858498930931,
0.03926751762628555,
0.03802894428372383,
-0.05762314051389694,
-0.04028753936290741,
-0.03939089551568031,
-0.009570134803652763,
0.034288469702005386,
0.007311994209885597,
-0.03680642694234848,
-0.02927890047430992,
0.031229330226778984,
0.008857113309204578,
0.0015910343499854207,
-0.034145429730415344,
0.0442577600479126,
-0.02860996685922146,
-0.02225162833929062,
0.021429140120744705,
0.025145133957266808,
0.010353527031838894,
0.06662274152040482,
0.018668366596102715,
-0.0013491808203980327,
-0.0432739183306694,
0.036350902169942856,
-0.04209696128964424,
-0.02334417775273323,
-0.007182545028626919,
-0.0358969047665596,
-0.003927881829440594,
-0.0218476764857769,
-0.03683808445930481,
-0.038215991109609604,
-0.025684481486678123,
0.020588183775544167,
0.001982215093448758,
-0.012689831666648388,
-0.0033394298516213894,
0.057631682604551315,
-0.022555995732545853,
-0.06177268177270889,
-0.024185921996831894,
-0.03330235183238983,
-0.0663360133767128,
-0.06643584370613098,
0.027994753792881966,
0.021984901279211044,
0.025775229558348656,
0.04594957083463669,
0.011771751567721367,
0.016915207728743553,
0.005477056838572025,
-0.04479212313890457,
0.012039948254823685,
-0.0034771631471812725,
-0.0317998081445694,
-0.020018767565488815,
0.034448884427547455,
0.014302601106464863,
0.04025132581591606,
-0.03793241083621979,
0.024666311219334602,
0.005489501636475325,
-0.009703283198177814,
-0.01581484265625477,
0.024992892518639565,
0.00573386438190937,
-0.059720948338508606,
-0.024587811902165413,
-0.010578222572803497,
-0.02582990750670433,
0.03526248782873154,
-0.038589198142290115,
-0.02338249608874321,
-0.004990533925592899,
0.010789121501147747,
0.047443587332963943,
-0.016426796093583107,
-0.03893843665719032,
0.005420573055744171,
-0.003230809234082699,
0.01614133082330227,
-0.040411241352558136,
0.04486595839262009,
-0.04894121736288071,
0.04323524236679077,
-0.030702751129865646,
0.008050077594816685,
-0.05045689642429352,
0.025134531781077385,
-0.02587416209280491,
-0.03179456293582916,
-0.010181196965277195,
0.06323287636041641,
-0.027876470237970352,
0.04223845154047012,
-0.015819968655705452,
0.017559127882122993,
-0.026272950693964958,
0.06345214694738388,
-0.02059914544224739,
0.006657319609075785,
-0.022336207330226898,
0.027394292876124382,
-0.031590405851602554,
0.008830963633954525,
-0.009219963103532791,
-0.01954968459904194,
0.03381255269050598,
0.05344420671463013,
0.0419195182621479,
0.033665820956230164,
-0.01808474026620388,
-0.011699092574417591,
0.015484618954360485,
-0.04017907753586769,
-0.026116827502846718,
0.0016501625068485737,
-0.002393078990280628,
-0.011629763059318066,
0.05882725492119789,
0.04661816358566284,
-0.06350739300251007,
-0.04533000290393829,
0.028191061690449715,
0.005107205826789141,
-0.004728042054921389,
0.001821435522288084,
0.04475041478872299,
0.03038834221661091,
0.04855158179998398,
-0.04215364158153534,
-0.0023311483673751354,
-0.015677496790885925,
-0.04886886477470398,
0.0533805675804615,
-0.010438970290124416,
0.045217156410217285,
0.042987242341041565,
-0.03499554470181465,
-0.022590994834899902,
0.05460992082953453,
0.024281125515699387,
0.022319801151752472,
-0.005472173448652029,
-0.026066500693559647,
0.014935765415430069,
0.005525835789740086,
-0.05049692466855049,
0.009231139905750751,
0.009381220676004887,
-0.008528259582817554,
0.05782780796289444,
-0.023856984451413155,
0.006990744732320309,
0.07062286883592606,
0.03592389076948166,
-0.0084535526111722,
0.10691896826028824,
-0.03411496430635452,
0.013962711207568645,
0.05526579171419144,
-0.0671306923031807,
-0.013681180775165558,
-0.03474092483520508,
0.07094492763280869,
-0.05828215554356575,
0.03409702330827713,
0.048409536480903625,
-0.0057007791474461555,
0.011510204523801804,
-0.030228309333324432,
-0.058362945914268494,
0.0057383873499929905,
-0.049465030431747437,
0.08232340216636658,
0.0008534107473678887,
-0.06621716171503067,
0.04983610287308693,
0.023975567892193794,
-0.0523466020822525,
0.04406700283288956,
0.03290187567472458,
0.043395087122917175,
0.034961387515068054,
0.04826325550675392,
-0.04859289526939392,
0.011150622740387917,
-0.04993612319231033,
0.029616089537739754,
-0.03859783336520195,
-0.02608589455485344,
0.048939116299152374,
-0.03999932110309601,
-0.008383695967495441,
0.035668451339006424,
-0.0022418166045099497,
-0.020716996863484383,
0.04253261908888817,
-0.038823895156383514,
-0.04349387437105179,
0.021501678973436356,
0.031038492918014526,
-0.014263163320720196,
-0.002908636350184679,
-0.04191045090556145,
0.03533625602722168,
-0.003924536053091288,
0.016990896314382553,
-0.008456413634121418,
-0.01074335165321827,
0.03113405592739582,
-0.054922912269830704,
-0.022972073405981064,
0.025861559435725212,
-0.015230516903102398,
-0.022022614255547523,
0.03942795470356941,
0.026200709864497185,
0.00697870971634984,
0.02549228072166443,
0.017259418964385986,
0.022555066272616386,
-0.051830168813467026,
-0.02799837477505207,
0.017824849113821983,
0.0109945023432374,
0.04647432640194893,
-0.006453545764088631,
0.021726518869400024,
0.014672908931970596,
0.018964925780892372,
0.0044701495207846165,
-0.03171119466423988,
-0.04112761840224266,
0.030400659888982773,
-0.04356643185019493,
-0.010353096760809422,
-0.011005508713424206,
-0.048238031566143036,
-0.02047952078282833,
-0.01518427673727274,
-0.024972235783934593,
0.02191644161939621,
-0.07605971395969391,
0.020525233820080757,
0.055658843368291855,
-0.0068979524075984955,
-0.07764548063278198,
-0.12618926167488098,
-0.013233942911028862,
-0.05538978800177574,
0.015480821020901203,
0.04287123307585716,
-0.027165764942765236,
0.039332859218120575,
-0.06298056244850159,
-0.040813148021698,
0.0297979898750782,
0.03593774884939194,
-0.027729954570531845,
0.04873060807585716,
0.06141838803887367,
-0.050121475011110306,
0.012418372556567192,
0.016437571495771408,
-0.052130989730358124,
0.01186642050743103,
0.016558939591050148,
0.016323842108249664,
0.031215036287903786,
0.0171519722789526,
-0.04581429436802864,
-0.013659215532243252,
-0.05880894139409065,
-0.027419738471508026,
-0.04873283952474594,
0.015710700303316116,
0.05475972965359688
] |
AnonymousSub/AR_consert | [
"pytorch",
"bert",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"BertModel"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
license: cc-by-nc-sa-4.0
datasets:
- wikipedia
- bookcorpus
language:
- en
library_name: transformers
pipeline_tag: fill-mask
---
This is the pretrained model of MLM. Please refer to our [GitHub](https://github.com/hitachi-nlp/mlm-probe-acl2023) page for more details. | [
-0.03301193192601204,
0.0013442065101116896,
-0.004615622106939554,
0.021909074857831,
0.03492302447557449,
0.02349512092769146,
-0.020671242848038673,
0.011569172143936157,
-0.022111207246780396,
0.048452287912368774,
0.05052577704191208,
0.0016951514407992363,
0.012979897670447826,
0.007759608328342438,
-0.030795197933912277,
-0.024302560836076736,
-0.008298973552882671,
-0.03443830832839012,
-0.03481723740696907,
0.010655316524207592,
0.017392514273524284,
0.01241203024983406,
-0.026464559137821198,
0.032038476318120956,
0.002842096146196127,
0.019865641370415688,
-0.009506164118647575,
0.052080027759075165,
0.016361655667424202,
-0.05013265460729599,
0.011264396831393242,
-0.03486999124288559,
-0.034154247492551804,
-0.00942851323634386,
-0.023402977734804153,
0.02172187715768814,
0.026412835344672203,
-0.021248508244752884,
0.05595202371478081,
0.05263074114918709,
-0.01102032046765089,
-0.0010238091927021742,
-0.031193429604172707,
-0.020549234002828598,
0.042807500809431076,
0.010438984259963036,
-0.0421895869076252,
-0.03477530553936958,
0.03335883095860481,
-0.011748312041163445,
-0.05169680714607239,
-0.05135948210954666,
-0.01832803338766098,
0.027309400960803032,
-0.005477538798004389,
-0.017978228628635406,
-0.03444371744990349,
-0.000008032468940655235,
0.05308230593800545,
-0.055542923510074615,
-0.04896543547511101,
-0.0014678062871098518,
-0.08795780688524246,
0.03910316899418831,
0.03451167419552803,
-0.048184867948293686,
0.014209531247615814,
-0.02329259179532528,
0.047254934906959534,
-0.001767211826518178,
0.06455729156732559,
-0.030470985919237137,
-0.010169926099479198,
-0.0833456814289093,
0.011384894140064716,
-0.012670575641095638,
0.021324867382645607,
0.03709349036216736,
-0.03242246434092522,
0.04989577457308769,
0.03102266415953636,
0.0004414529830683023,
0.02055989019572735,
0.016082225367426872,
-0.009422536008059978,
0.04438689351081848,
-0.06021377444267273,
-0.03803916648030281,
0.008936495520174503,
0.029400574043393135,
-0.04624074324965477,
-0.039603546261787415,
-0.010762165300548077,
-0.05496616289019585,
0.005866071674972773,
0.048819176852703094,
0.062486354261636734,
-0.01762045919895172,
0.019530275836586952,
0.018505696207284927,
0.06076263263821602,
0.07837893813848495,
-0.030908135697245598,
0.05216456577181816,
-0.01834804005920887,
-0.029794055968523026,
-0.0161102544516325,
-0.029048478230834007,
-0.018301840871572495,
0.03533203899860382,
-0.0011190061923116446,
-0.04782337322831154,
-0.030666179955005646,
0.03660173714160919,
0.012106966227293015,
-0.0370466485619545,
0.04728224501013756,
-0.027625897899270058,
-0.06262572854757309,
-0.031617626547813416,
0.06277097016572952,
-0.008687344379723072,
-0.0024594597052782774,
-0.011541293002665043,
-0.04749234393239021,
0.00802238192409277,
-0.042684294283390045,
-0.012977288104593754,
0.030356327071785927,
0.023043278604745865,
0.012431670911610126,
0.05044359713792801,
0.03348597139120102,
-0.06071676313877106,
0.025169622153043747,
0.024655969813466072,
-0.06975802779197693,
0.0315149649977684,
0.02778203785419464,
0.10657916218042374,
-0.06022685021162033,
-0.039809029549360275,
0.04569711908698082,
0.01138392835855484,
-0.01455614622682333,
0.015732379630208015,
0.01557223778218031,
-0.039715852588415146,
-0.024043498560786247,
-0.013836340978741646,
0.04129374027252197,
-0.05049031227827072,
-0.020568715408444405,
0.08209636062383652,
-0.01859515905380249,
0.05859667807817459,
-0.009603016078472137,
0.0009985801298171282,
0.010674972087144852,
-0.02499963901937008,
-0.0065550305880606174,
0.05516309663653374,
-0.008194338530302048,
-0.005982988979667425,
-0.017468256875872612,
-0.03300438076257706,
-0.006542472168803215,
0.08523061126470566,
-0.0049421899020671844,
-0.017859961837530136,
-0.03102879971265793,
0.016077948734164238,
0.046917665749788284,
0.01993241347372532,
-0.034373145550489426,
0.03370730206370354,
0.046511460095644,
0.020440276712179184,
-0.02154117450118065,
0.03530397638678551,
0.010014597326517105,
-0.007702403701841831,
-0.0277335774153471,
-0.011868040077388287,
-0.00496711116284132,
-0.03472467511892319,
-0.007539103738963604,
0.04913855344057083,
0.02173655480146408,
-0.0064335772767663,
0.002809075405821204,
0.023726385086774826,
-0.001953491475433111,
0.004554088227450848,
0.023689262568950653,
-0.020372172817587852,
-0.02729898691177368,
0.03469996154308319,
-0.02626912109553814,
0.0008890435565263033,
0.0027346701826900244,
-0.020194903016090393,
0.02767762914299965,
0.04084252938628197,
0.04770326241850853,
0.0390879288315773,
0.018212806433439255,
0.07189515978097916,
-0.02524280920624733,
0.011353685520589352,
-0.03436221182346344,
-0.05001930519938469,
0.027038054540753365,
0.045618586242198944,
-0.0059748743660748005,
0.040771257132291794,
-0.022113841027021408,
-0.06159330904483795,
0.04751524701714516,
0.0812905877828598,
0.04627694562077522,
0.02115577645599842,
-0.06105223298072815,
-0.02142998017370701,
-0.010738781653344631,
0.05658124014735222,
-0.08006755262613297,
-0.047861065715551376,
0.017458565533161163,
0.04887725040316582,
-0.040135547518730164,
0.02030191570520401,
-0.010669649578630924,
0.019751181825995445,
-0.058759644627571106,
-0.06896370649337769,
0.041726864874362946,
0.02663109265267849,
0.0034763840958476067,
0.02869943529367447,
-0.0025501532945781946,
0.007278144359588623,
0.022625433281064034,
0.006766846869140863,
0.0038097971118986607,
-0.036467861384153366,
0.00013003541971556842,
0.03190721198916435,
0.04312490299344063,
-0.03925586864352226,
0.06520441919565201,
0.006373584736138582,
0.018754851073026657,
0.022979045286774635,
-0.04011683166027069,
0.0336637869477272,
0.0488617904484272,
-0.01394210197031498,
-0.036613501608371735,
0.0266895592212677,
-0.0070749553851783276,
0.036265116184949875,
0.06297110766172409,
0.01343249250203371,
0.05218896642327309,
-0.015093295834958553,
0.053694937378168106,
0.046247296035289764,
-0.0001452604483347386,
-0.010535313747823238,
0.044180672615766525,
0.09792313724756241,
-0.0005473915953189135,
-0.0031077349558472633,
0.05695784464478493,
-0.06325855851173401,
-0.018752695992588997,
-0.0434267520904541,
0.02430109679698944,
-0.03130485489964485,
-0.006399348843842745,
0.07603536546230316,
0.04279787838459015,
-0.0074015166610479355,
0.00454742182046175,
-0.0196548942476511,
-0.0027190325781702995,
0.01623191125690937,
-0.0219403188675642,
-0.013703236356377602,
-0.04459858685731888,
0.00875040516257286,
0.01624562405049801,
-0.06360474973917007,
-0.025943206623196602,
-0.00965653546154499,
-0.04369595646858215,
0.015589642338454723,
-0.06731534004211426,
0.004059040453284979,
-0.06342186778783798,
-0.046593260020017624,
0.034624189138412476,
0.002267469186335802,
-0.007999799214303493,
-0.01687045209109783,
-0.001518184202723205,
-0.016331877559423447,
-0.017532236874103546,
-0.0606328547000885,
-0.047567326575517654,
-0.028740137815475464,
-0.0852765142917633,
0.0627773255109787,
0.004709274973720312,
0.008060204796493053,
-0.018572939559817314,
0.004628721158951521,
-0.036927081644535065,
-0.04593007266521454,
0.04218818247318268,
0.03500485420227051,
-0.023059185594320297,
-0.032715413719415665,
0.023404480889439583,
-0.011137795634567738,
0.015703946352005005,
-0.010001911781728268,
-0.035267360508441925,
0.10494226217269897,
0.03798391669988632,
0.03274543210864067,
-0.013373092748224735,
0.00532624451443553,
-0.03469366952776909,
-0.03185154125094414,
-0.04330641031265259,
-0.0254050400108099,
-0.013807573355734348,
-0.0348108746111393,
-0.044598538428545,
-0.004590614698827267,
-0.029356762766838074,
0.012097150087356567,
-0.03198651224374771,
0.01589888334274292,
0.02367899753153324,
0.04952830448746681,
0.040495648980140686,
0.0343637652695179,
-0.06149628758430481,
-0.047666553407907486,
0.05117366835474968,
0.06029514968395233,
-0.04095303267240524,
-0.04534974694252014,
-0.0557982511818409,
0.052863068878650665,
0.02282896637916565,
0.010812642052769661,
-0.0320218950510025,
0.052454594522714615,
0.016627410426735878,
0.005630167201161385,
0.00017698528245091438,
-0.015582740306854248,
-0.0035190877970308065,
-0.04563560709357262,
-0.030274920165538788,
-0.040171388536691666,
-0.037829264998435974,
-0.025757960975170135,
-0.006726930383592844,
0.06387132406234741,
-0.03990961238741875,
-0.01771346852183342,
0.013520604930818081,
0.017833301797509193,
0.031378548592329025,
0.014937851577997208,
-0.023009853437542915,
0.010987679474055767,
-0.0561140701174736,
-0.03319951146841049,
0.012014488689601421,
0.0001207636742037721,
0.00472675496712327,
0.045008815824985504,
0.008538882248103619,
-0.020959297195076942,
0.012614303268492222,
0.03530425578355789,
0.05674867704510689,
0.027849627658724785,
-0.0446150079369545,
0.010380682535469532,
-0.028227578848600388,
0.00670781871303916,
-0.008954290300607681,
-0.024894822388887405,
-0.0314229317009449,
-0.07571467757225037,
-0.015889739617705345,
-0.03017864003777504,
-0.011454964987933636,
-0.0032103362027555704,
0.03191065788269043,
-0.012289912439882755,
-0.05214180052280426,
0.014551293104887009,
0.025233620777726173,
0.016877762973308563,
-0.04361787438392639,
0.056050240993499756,
0.007490983698517084,
0.02072129026055336,
-0.041076745837926865,
0.006765320431441069,
-0.061354298144578934,
-0.012951620854437351,
0.034603752195835114,
0.04003173112869263,
0.04834523797035217,
0.06756198406219482,
0.04309730976819992,
0.0220126174390316,
-0.03853747993707657,
0.023611800745129585,
0.04616507515311241,
-0.003797717858105898,
-0.026455258950591087,
0.018539024516940117,
-0.019192317500710487,
-0.020279621705412865,
0.0019642848055809736,
-0.014372620731592178,
0.035506971180438995,
0.04761315882205963,
-0.004167882259935141,
-0.007947162725031376,
-0.004008748568594456,
0.004863016307353973,
-0.00211459887214005,
-0.04442180320620537,
-0.026477502658963203,
-0.010888484306633472,
-0.04016997665166855,
0.05370805785059929,
0.04493119195103645,
0.03835449740290642,
0.018952958285808563,
0.06141327694058418,
-0.03153384104371071,
-0.06355051696300507,
0.01816416345536709,
0.01724175736308098,
-0.04539407044649124,
-0.06008373945951462,
-0.01168468501418829,
0.03882749751210213,
0.04314113408327103,
-0.013628638349473476,
-0.09910555183887482,
0.02509644813835621,
0.04976856708526611,
-0.03436660021543503,
0.05079437047243118,
0.011657371185719967,
0.02007690817117691,
0.01688542030751705,
-0.030946578830480576,
0.022823093459010124,
-0.03815264254808426,
-0.018894106149673462,
-0.00019802713359240443,
0.05454379692673683,
-0.029223915189504623,
-0.046148866415023804,
-0.04835886508226395,
0.015078348107635975,
0.036037519574165344,
0.07013866305351257,
0.031176630407571793,
-0.023865822702646255,
-0.04455498233437538,
-0.023891974240541458,
0.04439205676317215,
-0.02436450496315956,
0.011196554638445377,
0.042723849415779114,
0.02797660231590271,
-0.05889856815338135,
-0.014759032987058163,
-0.0010657721431925893,
-0.005372846499085426,
0.03000214695930481,
-0.020520569756627083,
-0.0439612939953804,
-0.04066317155957222,
0.00901765562593937,
-0.008797782473266125,
-0.013361439108848572,
-0.09275490045547485,
-0.015431861393153667,
0.01976720057427883,
-0.010015345178544521,
0.05438230559229851,
0.03363814577460289,
0.04486696794629097,
0.04449238255620003,
0.018995968624949455,
0.03281359374523163,
-0.02339029312133789,
0.06889276206493378,
-0.017845017835497856,
-0.0012488247593864799,
0.024767667055130005,
-0.05347057804465294,
-0.014684262685477734,
-0.02694746106863022,
-0.033539723604917526,
-0.05855420604348183,
-0.004217599984258413,
-0.008201957680284977,
-0.0056626214645802975,
0.010009469464421272,
0.007416903041303158,
0.03577827289700508,
-0.0376301072537899,
-0.03387480974197388,
-0.04929616302251816,
-0.03511902317404747,
-0.09479908645153046,
-0.03395611420273781,
0.045224856585264206,
0.03563092276453972,
0.008932124823331833,
0.010980378836393356,
0.005924371536821127,
0.025217248126864433,
0.03873738646507263,
-0.024288956075906754,
0.05281803384423256,
0.01616472750902176,
-0.04230184853076935,
-0.014531922526657581,
-0.010266590863466263,
0.01781034655869007,
0.014800374396145344,
-0.030694331973791122,
0.0034264069981873035,
0.0065305158495903015,
-0.01697598211467266,
-0.008156673051416874,
0.021107546985149384,
0.02057093009352684,
-0.0677330270409584,
-0.02476521022617817,
-0.026198482140898705,
-0.05402882397174835,
0.03330839425325394,
-0.02550005540251732,
-0.015188230201601982,
0.0058043948374688625,
0.0039840214885771275,
0.03086971491575241,
-0.020980874076485634,
-0.0686507448554039,
0.006771522108465433,
-0.03587115928530693,
0.027836091816425323,
-0.05112001672387123,
0.030253667384386063,
-0.051802363246679306,
0.0463273860514164,
0.0052171871066093445,
-0.01007409580051899,
-0.04708347097039223,
0.06279344856739044,
-0.018635256215929985,
0.0006049240473657846,
-0.036218419671058655,
0.021436402574181557,
-0.04897981882095337,
0.0522688664495945,
-0.027588369324803352,
-0.009937635622918606,
-0.005170952528715134,
0.06002936139702797,
-0.05145132169127464,
0.017231054604053497,
-0.02563878893852234,
0.004820962902158499,
-0.039475228637456894,
-0.032386571168899536,
-0.027135804295539856,
-0.0407470278441906,
0.008947096765041351,
0.04545242339372635,
0.036166638135910034,
0.051410067826509476,
-0.0017912518233060837,
0.00870878342539072,
0.009817993268370628,
-0.06662188470363617,
-0.0009654496097937226,
0.010160321369767189,
0.021286990493535995,
-0.00898824818432331,
0.0721014142036438,
0.02483627200126648,
-0.04253960773348808,
-0.045714713633060455,
0.03782305866479874,
0.013257388025522232,
0.021420080214738846,
-0.015686949715018272,
0.0401979424059391,
0.04114804044365883,
0.05792636796832085,
-0.057909443974494934,
-0.017926018685102463,
-0.041003406047821045,
0.008699286729097366,
0.005783237982541323,
0.0033509673085063696,
0.03216779604554176,
0.021739069372415543,
-0.06066560745239258,
-0.02102743089199066,
0.09562011808156967,
0.014000817202031612,
0.020010890439152718,
0.006691367365419865,
-0.05113857612013817,
0.01715799793601036,
0.012189183384180069,
-0.06257152557373047,
0.019153138622641563,
0.02709706500172615,
-0.04563210532069206,
0.05579066276550293,
-0.005811693146824837,
0.03279372304677963,
0.03886003792285919,
0.03721534088253975,
-0.009970458224415779,
0.05262149125337601,
-0.034333907067775726,
0.03847392648458481,
0.022014398127794266,
-0.026431860402226448,
-0.008684632368385792,
-0.015424241311848164,
0.02956380322575569,
-0.06138793006539345,
0.0729159265756607,
0.02674274332821369,
0.0017603326123207808,
0.002151391003280878,
-0.03740907832980156,
-0.05234440416097641,
-0.0288251880556345,
-0.04430942237377167,
0.06461278349161148,
0.0021889768540859222,
-0.09337712824344635,
0.044737644493579865,
0.028789179399609566,
-0.08054296672344208,
0.05997379869222641,
0.016372794285416603,
0.016056912019848824,
0.01468445360660553,
0.02480725385248661,
-0.041294727474451065,
0.04231864959001541,
-0.04835697263479233,
-0.004377658013254404,
-0.03416498750448227,
0.0005600620061159134,
0.02609153836965561,
-0.04120798408985138,
-0.034057240933179855,
0.01632384955883026,
-0.0042623295448720455,
0.005966811440885067,
0.04544335976243019,
-0.04429975897073746,
-0.032497588545084,
-0.021792836487293243,
0.012863747775554657,
-0.029774697497487068,
0.013070091605186462,
-0.0344097726047039,
0.01218097098171711,
0.02637000009417534,
0.014162628911435604,
-0.06246008723974228,
0.016634643077850342,
0.024721434339880943,
-0.10221090912818909,
-0.02276189625263214,
0.02740514650940895,
0.019926514476537704,
-0.041341740638017654,
0.010811214335262775,
-0.020281219854950905,
0.009495959617197514,
0.02299329824745655,
-0.019286759197711945,
0.01988592930138111,
-0.04130198806524277,
-0.020440049469470978,
0.0189406368881464,
-0.025028953328728676,
0.017251228913664818,
-0.01372155174612999,
0.014822258614003658,
0.014548424631357193,
0.03573031723499298,
0.012063556350767612,
-0.024381572380661964,
-0.01744731515645981,
0.008497769944369793,
-0.04339616373181343,
-0.00938118901103735,
-0.009029042907059193,
-0.03646588698029518,
-0.019978264346718788,
-0.006459268741309643,
-0.06129039451479912,
0.05780796334147453,
-0.040655676275491714,
0.006029062904417515,
0.027752600610256195,
0.0068341996520757675,
-0.053348299115896225,
-0.07840167731046677,
-0.00663041602820158,
-0.00159188243560493,
0.033449139446020126,
-0.0037420126609504223,
-0.027778012678027153,
0.004026665352284908,
-0.02717883326113224,
-0.05967426672577858,
0.04113493114709854,
0.029973946511745453,
-0.013119790703058243,
0.06940664350986481,
0.041592393070459366,
-0.027882643043994904,
0.015577486716210842,
0.04144982621073723,
-0.05646182596683502,
0.032189734280109406,
0.019806765019893646,
0.020296597853302956,
-0.009735646657645702,
-0.011168479919433594,
-0.04264356940984726,
-0.028405651450157166,
-0.08480807393789291,
-0.059720274060964584,
-0.029782308265566826,
0.019814644008874893,
0.09636544436216354
] |
AnonymousSub/AR_rule_based_roberta_bert_quadruplet_epochs_1_shard_1 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
license: apache-2.0
language:
- en
tags:
- medical
---
This repo contains MedLLaMA_13B, which is LLaMA-13b finetuned with some Medical Corpus.
The model was trained with the following hyperparameters:
* Epochs: 5
* Batch size: 320
* Cutoff length: 2048
* Learning rate: 2e-5
The model can be loaded as follows:
```
import transformers
import torch
tokenizer = transformers.LlamaTokenizer.from_pretrained('chaoyi-wu/MedLLaMA_13B')
model = transformers.LlamaForCausalLM.from_pretrained('chaoyi-wu/MedLLaMA_13B')
sentence = 'Hello, doctor'
batch = tokenizer(
sentence,
return_tensors="pt",
add_special_tokens=False
)
with torch.no_grad():
generated = model.generate(inputs = batch["input_ids"], max_length=200, do_sample=True, top_k=50)
print('model predict: ',tokenizer.decode(generated[0]))
``` | [
-0.030655428767204285,
-0.013326705433428288,
-0.011068472638726234,
0.04228435829281807,
0.03390327841043472,
0.010119635611772537,
-0.021015847101807594,
-0.018474824726581573,
0.008139227516949177,
0.03158828988671303,
0.03886396810412407,
-0.01581106334924698,
-0.001987939700484276,
0.041746459901332855,
-0.009284306317567825,
-0.019480230286717415,
-0.016723066568374634,
-0.0032637864351272583,
-0.04170956462621689,
0.01968454010784626,
-0.0017024065600708127,
0.006863392889499664,
-0.004953528754413128,
0.020358368754386902,
0.023110246285796165,
0.004003433044999838,
-0.020317651331424713,
0.04573260247707367,
0.04663849249482155,
-0.03825930878520012,
0.007408585399389267,
-0.02340710163116455,
-0.01892644539475441,
-0.020101958885788918,
-0.02439276874065399,
0.004321451764553785,
0.00904232356697321,
0.005528896115720272,
0.037310343235731125,
0.047127846628427505,
-0.014572815969586372,
0.018723465502262115,
-0.001004909980110824,
-0.02861783653497696,
0.03374699875712395,
-0.009532124735414982,
-0.035856395959854126,
-0.021612422540783882,
0.02963966690003872,
-0.013968277722597122,
-0.0461963415145874,
-0.06551793217658997,
0.002393356990069151,
0.04111076146364212,
-0.0035205106250941753,
0.005965431686490774,
-0.05318749323487282,
-0.02802181802690029,
0.034168459475040436,
-0.037731800228357315,
-0.027087189257144928,
0.007724849507212639,
-0.09242309629917145,
0.032135069370269775,
0.06099071726202965,
-0.029362084344029427,
0.010751820169389248,
-0.053955405950546265,
0.0630834773182869,
-0.015923956409096718,
0.06675923615694046,
-0.02692309021949768,
-0.0012334843631833792,
-0.07401473820209503,
-0.005684710573405027,
-0.009583776816725731,
0.04570179060101509,
0.03179246559739113,
-0.03829849883913994,
0.04338131472468376,
0.03852427005767822,
0.0010026224190369248,
0.028486261144280434,
-0.027005964890122414,
0.000655798357911408,
0.0052299583330750465,
-0.032365910708904266,
0.0035494340118020773,
0.015011788345873356,
0.0633326917886734,
-0.04137004539370537,
-0.04306747391819954,
-0.016356289386749268,
-0.023944417014718056,
-0.022437486797571182,
0.039225246757268906,
0.05234741047024727,
-0.028765922412276268,
0.029796121641993523,
0.02872423082590103,
0.05052623152732849,
0.052672602236270905,
-0.008767114020884037,
0.03198955953121185,
-0.01693885587155819,
-0.015470817685127258,
-0.008602443151175976,
-0.042186640202999115,
-0.014293481595814228,
0.022488722577691078,
0.02129722572863102,
-0.03881583362817764,
-0.02793772704899311,
0.05671417713165283,
0.03855377435684204,
-0.01867777295410633,
0.08897346258163452,
0.012611794285476208,
-0.04260232299566269,
-0.06145806983113289,
0.054132986813783646,
0.006151913665235043,
-0.021283982321619987,
-0.0052093323320150375,
-0.03606623411178589,
-0.0009109305101446807,
-0.05016219988465309,
-0.03371088579297066,
0.014917117543518543,
0.027141926810145378,
-0.014955381862819195,
0.036253612488508224,
-0.011342705227434635,
-0.06226791813969612,
0.016445130109786987,
0.018615633249282837,
-0.061902035027742386,
0.03714533895254135,
0.030057141557335854,
0.11145779490470886,
-0.053243137896060944,
-0.06329665333032608,
0.025915542617440224,
-0.0012695880141109228,
0.001228797947987914,
0.01707093045115471,
-0.0033319692593067884,
-0.03510553017258644,
-0.031269192695617676,
-0.0005136703257448971,
0.05430534482002258,
-0.06856242567300797,
0.006003021728247404,
0.053691551089286804,
-0.007817508652806282,
0.05648426711559296,
-0.029650386422872543,
-0.0011947224847972393,
0.0060560074634850025,
-0.011059324257075787,
-0.020423943176865578,
0.06800681352615356,
-0.021114449948072433,
-0.031130129471421242,
-0.03319303318858147,
-0.046545010060071945,
0.0282026045024395,
0.10831429809331894,
0.03511570021510124,
-0.018405131995677948,
-0.0177246555685997,
0.024235326796770096,
0.031615544110536575,
0.02542177587747574,
-0.028485631570219994,
0.04892965033650398,
0.0539485327899456,
0.01365251000970602,
0.00683588208630681,
0.027483589947223663,
-0.0028574359603226185,
-0.009262742474675179,
-0.007828010246157646,
-0.0270964577794075,
-0.016168178990483284,
-0.023060964420437813,
-0.007625022903084755,
0.04053053259849548,
0.006254654843360186,
-0.04237167164683342,
-0.020588548853993416,
0.06783536076545715,
-0.021147629246115685,
-0.0010522952070459723,
0.0016137309139594436,
-0.003694202285259962,
-0.02077016606926918,
0.016451140865683556,
-0.023555001243948936,
-0.02843502350151539,
-0.011395156383514404,
-0.014882923103868961,
0.008751057088375092,
0.02551216259598732,
0.054637547582387924,
0.0602160207927227,
-0.015615093521773815,
0.09730298817157745,
-0.03321565315127373,
0.009897190146148205,
-0.024100646376609802,
-0.05773309990763664,
0.030152851715683937,
0.03226681426167488,
0.020341843366622925,
0.0558575764298439,
-0.003460394451394677,
-0.04803754389286041,
0.015709832310676575,
0.06263473629951477,
0.0622536800801754,
0.022465001791715622,
-0.06586326658725739,
-0.022992867976427078,
0.044520583003759384,
0.0673237144947052,
-0.07060424238443375,
-0.0383513942360878,
0.04413335397839546,
0.026766961440443993,
-0.038550060242414474,
0.03648613765835762,
-0.038143567740917206,
0.02836141549050808,
-0.0625438466668129,
-0.07234042882919312,
0.02332020364701748,
0.03746125474572182,
0.0049605355598032475,
0.043498214334249496,
-0.0011846241541206837,
-0.007336790673434734,
0.013922875747084618,
0.025924982503056526,
-0.00047960938536562026,
-0.028026746585965157,
0.02107945643365383,
0.03436359018087387,
0.03314266353845596,
-0.05528417229652405,
0.06813764572143555,
-0.02696341462433338,
-0.016993915662169456,
0.0022339869756251574,
-0.05806482210755348,
0.01959160901606083,
0.044188305735588074,
0.03379596397280693,
-0.016210492700338364,
0.015888946130871773,
-0.016504952684044838,
0.036233603954315186,
0.04555412009358406,
0.008691268041729927,
0.022742629051208496,
-0.003637467510998249,
0.04172486066818237,
0.04948117956519127,
0.0075107538141310215,
0.02388552948832512,
0.03523719683289528,
0.08413136005401611,
0.004201479256153107,
-0.01211821660399437,
0.05791124328970909,
-0.04793384298682213,
0.012019787915050983,
-0.04665817692875862,
0.04318490996956825,
-0.011657847091555595,
-0.017096616327762604,
0.04784068092703819,
-0.0018983738264068961,
-0.017925865948200226,
0.01759827882051468,
-0.003766565816476941,
0.002525597345083952,
0.015626080334186554,
-0.01724267192184925,
-0.015127008780837059,
-0.028876865282654762,
-0.036176178604364395,
0.03170507401227951,
-0.06418152898550034,
-0.0314272902905941,
-0.012787477113306522,
-0.04135632887482643,
-0.014722851105034351,
-0.06597447395324707,
-0.001183049287647009,
-0.07087099552154541,
-0.03389501944184303,
0.02186160534620285,
0.008075340650975704,
0.01249780785292387,
-0.026442641392350197,
0.016683358699083328,
-0.037417907267808914,
-0.00004748475112137385,
-0.042851466685533524,
-0.06596329063177109,
-0.020416196435689926,
-0.09132272750139236,
0.033147238194942474,
0.007417897693812847,
0.03131203353404999,
0.006311928853392601,
0.0010301602305844426,
0.0253534447401762,
-0.049266211688518524,
0.07284105569124222,
0.038539525121450424,
-0.050389062613248825,
-0.046769142150878906,
0.024287428706884384,
-0.004326808266341686,
0.012837279587984085,
-0.016477184370160103,
-0.006081859115511179,
0.08966697007417679,
0.04798593744635582,
0.017106415703892708,
-0.0269257090985775,
-0.02789383940398693,
-0.059007033705711365,
-0.035636693239212036,
-0.02900501899421215,
-0.039402302354574203,
-0.012904981151223183,
0.0010417118901386857,
-0.027494799345731735,
-0.00017056964861694723,
-0.034363094717264175,
0.004210531711578369,
-0.03178047388792038,
0.015136374160647392,
0.027522720396518707,
0.07457568496465683,
0.05963616445660591,
0.041346583515405655,
-0.02324872836470604,
-0.020061995834112167,
0.06152728572487831,
0.04236721247434616,
0.025663265958428383,
-0.06351106613874435,
-0.03415849059820175,
0.053867608308792114,
0.03692706301808357,
-0.009517304599285126,
-0.008737064898014069,
0.057030633091926575,
0.005949396174401045,
-0.030602186918258667,
0.02768142893910408,
-0.028755048289895058,
-0.013954021036624908,
-0.000045395438064588234,
0.004978798795491457,
-0.02761639840900898,
-0.04341070353984833,
-0.012435001321136951,
-0.02418624609708786,
0.04227025434374809,
-0.07208968698978424,
-0.014936928637325764,
-0.009549868293106556,
0.005986224859952927,
0.029499540105462074,
0.001220259233377874,
-0.05767437815666199,
-0.01087074726819992,
-0.052562300115823746,
-0.019273608922958374,
0.03347858786582947,
0.009429343976080418,
0.029411284253001213,
0.05923205986618996,
-0.008127734065055847,
-0.022601928561925888,
0.05755872651934624,
0.028978994116187096,
0.04115122929215431,
-0.0010853341082111,
-0.060362011194229126,
0.016891684383153915,
-0.014278208836913109,
0.032407406717538834,
-0.00019320787396281958,
-0.00883762538433075,
-0.048188116401433945,
-0.06880415976047516,
-0.0073209237307310104,
0.010179038159549236,
-0.01160423457622528,
-0.014779089950025082,
0.026846161112189293,
-0.007035880349576473,
0.0025672700721770525,
-0.0036139769945293665,
0.0292346328496933,
0.034583963453769684,
-0.06112077087163925,
0.05163023620843887,
0.0013709648046642542,
0.03167959302663803,
-0.0445748008787632,
-0.02827688679099083,
-0.04237427935004234,
-0.01523407269269228,
0.005102347116917372,
0.049480244517326355,
0.03434613719582558,
0.0628192350268364,
0.06068629398941994,
0.011542637832462788,
-0.03943660110235214,
0.05516781285405159,
0.04223073273897171,
-0.026649829000234604,
-0.03205931559205055,
0.01047217845916748,
-0.036639198660850525,
-0.03702203184366226,
0.009559884667396545,
-0.04082947596907616,
0.026989560574293137,
0.04339217022061348,
-0.00023963850981090218,
0.0021573842968791723,
-0.004923332016915083,
-0.025761328637599945,
-0.027264833450317383,
-0.02259821817278862,
-0.019254881888628006,
0.02000931277871132,
-0.02627590298652649,
0.030044540762901306,
0.016336573287844658,
0.01431598886847496,
0.07483076304197311,
0.08303872495889664,
-0.02855260856449604,
-0.035698313266038895,
0.014670497737824917,
0.01910802535712719,
-0.04790811985731125,
-0.05243103951215744,
-0.0377284400165081,
0.03609221428632736,
0.02958146296441555,
-0.003877554088830948,
-0.08660301566123962,
-0.010252309031784534,
0.04402690380811691,
-0.03897096589207649,
0.04718725383281708,
-0.020477835088968277,
0.019442856311798096,
0.05575310066342354,
0.00574392918497324,
0.03684014454483986,
-0.037815261632204056,
0.004634855315089226,
-0.020434068515896797,
0.0940156951546669,
-0.035410527139902115,
-0.0548090860247612,
-0.030912969261407852,
0.05093022435903549,
0.04032854735851288,
0.06509581208229065,
0.03396182879805565,
-0.01596701703965664,
-0.041528962552547455,
-0.029703384265303612,
0.04049910232424736,
-0.041774194687604904,
0.007438216358423233,
0.03294454514980316,
0.029152894392609596,
-0.038140177726745605,
-0.024000653997063637,
-0.03360113874077797,
-0.010075217112898827,
0.021249204874038696,
0.004781193099915981,
-0.029615359380841255,
-0.04571801796555519,
0.019612735137343407,
0.011608311906456947,
-0.016289757564663887,
-0.07319037616252899,
0.032860592007637024,
-0.020884200930595398,
-0.006676984019577503,
0.03603034093976021,
0.024777492508292198,
0.0421564094722271,
0.04832982271909714,
0.024622324854135513,
0.03420398384332657,
-0.03408454358577728,
0.04204932600259781,
-0.030230039730668068,
0.0007991878665052354,
-0.010912426747381687,
-0.05039694532752037,
-0.018967388197779655,
-0.029067767783999443,
-0.02929026633501053,
-0.04666471108794212,
0.008951296098530293,
0.00028939839103259146,
0.008948920294642448,
0.009722860530018806,
-0.004258290398865938,
0.05207734555006027,
-0.02358878217637539,
-0.021517304703593254,
-0.022615833207964897,
-0.02237764373421669,
-0.09734313935041428,
-0.046040311455726624,
0.026901448145508766,
0.01954529993236065,
0.02613399550318718,
0.008013997226953506,
-0.006415233016014099,
-0.009013411588966846,
-0.01766831800341606,
-0.04222028702497482,
0.05650373548269272,
0.003325654426589608,
-0.03130520507693291,
-0.030165046453475952,
0.02308093011379242,
0.013051431626081467,
0.004985273350030184,
-0.02844640053808689,
0.015129362232983112,
0.015889758244156837,
-0.01588466204702854,
0.013623706996440887,
0.004507455043494701,
0.0127742113545537,
-0.05992280691862106,
-0.03523078188300133,
-0.0026248986832797527,
-0.07089494913816452,
0.02865038812160492,
-0.005687186028808355,
-0.014884090051054955,
-0.008386103436350822,
-0.002080810023471713,
0.028091678395867348,
-0.007170936092734337,
-0.040884822607040405,
0.004420564044266939,
-0.03648090735077858,
-0.005268145818263292,
-0.057301223278045654,
0.017001992091536522,
-0.05262874811887741,
0.025982726365327835,
-0.03193095326423645,
0.01963692158460617,
-0.05423973128199577,
0.051110416650772095,
-0.015169377438724041,
0.018893839791417122,
-0.013057329691946507,
0.029545798897743225,
-0.05094281584024429,
0.04081352800130844,
-0.024460071697831154,
0.00697981147095561,
-0.05876597762107849,
0.053462203592061996,
-0.03009903058409691,
-0.0017325242515653372,
-0.036069922149181366,
0.005121879745274782,
-0.01783529482781887,
-0.02019577845931053,
-0.034667570143938065,
-0.021128317341208458,
0.037753522396087646,
0.0701967254281044,
0.054704610258340836,
0.06660652905702591,
-0.017953818663954735,
-0.0008127607288770378,
-0.0019229938043281436,
-0.09575818479061127,
-0.02011764980852604,
-0.008801067247986794,
0.02520878240466118,
0.0069681573659181595,
0.04849250614643097,
0.028408944606781006,
-0.034944768995046616,
-0.03405281528830528,
0.05118577927350998,
0.0047914376482367516,
0.015040917322039604,
0.0018382789567112923,
0.03220566362142563,
0.03777226805686951,
0.039134565740823746,
-0.03412739187479019,
-0.038159411400556564,
-0.004253222141414881,
-0.016367575153708458,
0.034509893506765366,
-0.018406251445412636,
0.008220082148909569,
0.014027531258761883,
-0.043206240981817245,
-0.01584107242524624,
0.04217321425676346,
0.01364456582814455,
0.02519378438591957,
-0.012899217195808887,
-0.0402117595076561,
0.0441976860165596,
-0.020111950114369392,
-0.05488795042037964,
0.013187361881136894,
0.010856381617486477,
-0.03100973181426525,
0.07079211622476578,
0.006306694354861975,
0.0011213402030989528,
0.039735808968544006,
0.05400907248258591,
-0.0302018690854311,
0.0516798235476017,
-0.04661746695637703,
0.006600596942007542,
0.025380713865160942,
-0.058174747973680496,
0.0033024351578205824,
-0.03582078590989113,
0.07008539140224457,
-0.05281808227300644,
0.05657976120710373,
0.03547787666320801,
-0.009469551965594292,
0.009166661649942398,
-0.049002110958099365,
-0.023011120036244392,
-0.003963804338127375,
-0.0206760186702013,
0.09581425786018372,
0.014739332720637321,
-0.08877203613519669,
0.05129371955990791,
0.022085390985012054,
-0.10333455353975296,
0.06299448013305664,
0.03850233927369118,
0.024696413427591324,
0.02805447392165661,
0.06375428289175034,
-0.02465420588850975,
0.055420875549316406,
-0.04723162576556206,
-0.004758934490382671,
-0.04016822576522827,
0.007846387103199959,
0.02462063916027546,
-0.019876793026924133,
-0.03170657902956009,
0.02862202562391758,
-0.025598371401429176,
0.004291566088795662,
0.03513698652386665,
-0.061723265796899796,
-0.039336368441581726,
-0.0005197678692638874,
0.01792813651263714,
-0.00617041252553463,
-0.002048207214102149,
-0.030713725835084915,
0.028707332909107208,
0.026891592890024185,
0.014614089392125607,
-0.03696262091398239,
-0.012154288589954376,
0.02682802826166153,
-0.06728790700435638,
-0.04405560716986656,
0.03483261168003082,
0.01621619239449501,
-0.018413538113236427,
0.009309426881372929,
0.0016546291299164295,
0.002462833421304822,
0.012557502835988998,
0.028466152027249336,
0.02157430909574032,
-0.06863002479076385,
-0.008503834716975689,
0.018937159329652786,
0.021840909495949745,
0.04367738217115402,
-0.024530060589313507,
0.0022530900314450264,
0.033255256712436676,
0.021431680768728256,
0.012642905116081238,
-0.013798892498016357,
-0.008687926456332207,
0.014800201170146465,
-0.02875412441790104,
0.0018137511797249317,
-0.020836614072322845,
-0.03315777704119682,
-0.014665278606116772,
-0.0017407926497980952,
-0.032169993966817856,
0.044374074786901474,
-0.04291273653507233,
-0.002099271398037672,
0.051997698843479156,
-0.0019534281454980373,
-0.008959992788732052,
-0.09342210739850998,
-0.050571173429489136,
-0.002703148638829589,
0.029662299901247025,
-0.0030175314750522375,
-0.03703157231211662,
0.0406988263130188,
-0.05073178559541702,
-0.06651228666305542,
0.04619789123535156,
0.03036477603018284,
-0.012965578585863113,
0.057385992258787155,
0.022759178653359413,
-0.05242239311337471,
0.007702821400016546,
0.029725950211286545,
-0.045637406408786774,
0.04371717944741249,
0.000515698513481766,
0.025304321199655533,
0.005029942840337753,
0.02533523365855217,
-0.0260456632822752,
0.014666825532913208,
-0.05844731628894806,
-0.0388350635766983,
-0.039069969207048416,
-0.01836739107966423,
0.09968756884336472
] |
AnonymousSub/AR_rule_based_roberta_bert_triplet_epochs_1_shard_10 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 10 | null | ---
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- feature-extraction
- sentence-similarity
- transformers
language:
- bn
metrics:
- accuracy
---
# {shihab17/bangla-sentence-transformer }
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
<!--- Describe your model here -->
## How to get sentence similarity
```python
from sentence_transformers import SentenceTransformer
from sentence_transformers.util import pytorch_cos_sim
transformer = SentenceTransformer('shihab17/bangla-sentence-transformer')
sentences = ['আমি আপেল খেতে পছন্দ করি। ', 'আমার একটি আপেল মোবাইল আছে।','এইবার কমলার ফলনা ভাল হয়নি', 'বাচ্চাটি দেখতে আপেলের মত সুন্দর','আপেলের জুস আমার অনেক প্রিয়']
sentences_embeddings = transformer.encode(sentences)
for i in range(len(sentences)):
for j in range(i, len(sentences)):
sen_1 = sentences[i]
sen_2 = sentences[j]
sim_score = float(pytorch_cos_sim(sentences_embeddings[i], sentences_embeddings[j]))
print(sen_1, '----->', sen_2, sim_score)
```
## Usage (Sentence-Transformers)
Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
```
pip install -U sentence-transformers
```
Then you can use the model like this:
```python
from sentence_transformers import SentenceTransformer
sentences = ['আমি আপেল খেতে পছন্দ করি। ', 'আমার একটি আপেল মোবাইল আছে।','আপনি কি এখানে কাছাকাছি থাকেন?', 'আশেপাশে কেউ আছেন?']
model = SentenceTransformer('shihab17/bangla-sentence-transformer ')
embeddings = model.encode(sentences)
print(embeddings)
```
## Usage (HuggingFace Transformers)
Without [sentence-transformers](https://www.SBERT.net), you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.
```python
from transformers import AutoTokenizer, AutoModel
import torch
#Mean Pooling - Take attention mask into account for correct averaging
def mean_pooling(model_output, attention_mask):
token_embeddings = model_output[0] #First element of model_output contains all token embeddings
input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
# Sentences we want sentence embeddings for
sentences = ['আমি আপেল খেতে পছন্দ করি। ', 'আমার একটি আপেল মোবাইল আছে।','আপনি কি এখানে কাছাকাছি থাকেন?', 'আশেপাশে কেউ আছেন?']
# Load model from HuggingFace Hub
tokenizer = AutoTokenizer.from_pretrained('shihab17/bangla-sentence-transformer')
model = AutoModel.from_pretrained('shihab17/bangla-sentence-transformer')
# Tokenize sentences
encoded_input = tokenizer(sentences, padding=True, truncation=True, return_tensors='pt')
# Compute token embeddings
with torch.no_grad():
model_output = model(**encoded_input)
# Perform pooling. In this case, mean pooling.
sentence_embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
print("Sentence embeddings:")
print(sentence_embeddings)
```
## Evaluation Results
<!--- Describe how your model was evaluated -->
## Best MSE: 7.57528096437454
For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
## Training
The model was trained with the parameters:
**DataLoader**:
`torch.utils.data.dataloader.DataLoader` of length 237094 with parameters:
```
{'batch_size': 32, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
```
**Loss**:
`sentence_transformers.losses.MSELoss.MSELoss`
Parameters of the fit()-Method:
```
{
"epochs": 10,
"evaluation_steps": 500,
"evaluator": "sentence_transformers.evaluation.SequentialEvaluator.SequentialEvaluator",
"max_grad_norm": 1,
"optimizer_class": "<class 'torch.optim.adamw.AdamW'>",
"optimizer_params": {
"eps": 1e-06,
"lr": 2e-05
},
"scheduler": "WarmupLinear",
"steps_per_epoch": null,
"warmup_steps": 8000,
"weight_decay": 0.01
}
```
## Full Model Architecture
```
SentenceTransformer(
(0): Transformer({'max_seq_length': 128, 'do_lower_case': False}) with Transformer model: XLMRobertaModel
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
)
```
## Citing & Authors
<!--- Describe where people can find more information --> | [
-0.019326329231262207,
-0.02544528804719448,
-0.01380390115082264,
0.06914716213941574,
0.021340036764740944,
0.03928379341959953,
-0.007793643046170473,
0.021807679906487465,
-0.0712534710764885,
0.07655490189790726,
0.04459642618894577,
0.014582541771233082,
0.006152574438601732,
0.03496527299284935,
-0.033520765602588654,
-0.03334920480847359,
-0.01874551735818386,
-0.027956178411841393,
-0.03478660434484482,
-0.030897721648216248,
0.003829910885542631,
0.009305994026362896,
0.009689000435173512,
0.03216659277677536,
0.0022667553275823593,
0.012490937486290932,
-0.01469478476792574,
0.005343674682080746,
0.02556917443871498,
-0.05743936821818352,
0.015605582855641842,
-0.02122257463634014,
-0.039924561977386475,
-0.011572998948395252,
-0.02943604439496994,
0.019610362127423286,
0.008485068567097187,
-0.01158507913351059,
0.002740289084613323,
0.05129719525575638,
-0.00787540152668953,
0.010214370675384998,
-0.02560190111398697,
-0.02157733030617237,
0.04915304481983185,
0.02070057950913906,
-0.03383968770503998,
-0.014247993007302284,
0.025524169206619263,
-0.05526936799287796,
-0.043343327939510345,
-0.08392222970724106,
-0.04708922281861305,
0.030029097571969032,
-0.007870054803788662,
-0.020748291164636612,
-0.06571011245250702,
-0.02477741800248623,
0.06645570695400238,
-0.06132214516401291,
-0.03093450702726841,
0.024980930611491203,
-0.057077646255493164,
0.012549539096653461,
0.010568191297352314,
-0.02649526670575142,
0.004373300354927778,
-0.05632369965314865,
0.013271433301270008,
-0.02817367948591709,
0.06271454691886902,
-0.01491562370210886,
0.026186877861618996,
-0.08428731560707092,
0.011425260454416275,
-0.02315707691013813,
0.009635517373681068,
0.017307452857494354,
-0.016098858788609505,
0.053981900215148926,
0.0163104310631752,
-0.018839232623577118,
0.023667534813284874,
-0.010110342875123024,
-0.0074148597195744514,
0.06671466678380966,
-0.04027405008673668,
-0.0018208773108199239,
-0.014283292926847935,
0.03760993108153343,
-0.04368942230939865,
-0.018095694482326508,
0.016840152442455292,
-0.046527259051799774,
-0.03973494842648506,
0.013794285245239735,
0.027860142290592194,
0.0018381818663328886,
0.02849297598004341,
0.021312685683369637,
0.013594202697277069,
0.04388290271162987,
-0.018330400809645653,
0.05410727486014366,
0.0021884010639041662,
-0.005803612060844898,
-0.006805699318647385,
-0.04764077067375183,
-0.04458250477910042,
0.019301893189549446,
0.013275637291371822,
-0.040014371275901794,
-0.05084782838821411,
0.03130083531141281,
0.047226980328559875,
-0.024657366797327995,
0.06352469325065613,
-0.04253930225968361,
-0.03226231783628464,
-0.03307377174496651,
0.05721800774335861,
-0.007666260004043579,
-0.009828026406466961,
0.008230334147810936,
-0.05768426135182381,
0.015816088765859604,
-0.044676683843135834,
-0.03716719150543213,
-0.0018373620696365833,
0.01738891936838627,
-0.0006329473690129817,
0.014048275537788868,
0.011739945039153099,
-0.029567476361989975,
-0.0024065603502094746,
-0.0027931274380534887,
-0.09801492840051651,
0.029002191498875618,
0.042900532484054565,
0.10675935447216034,
-0.05994432792067528,
-0.040102921426296234,
0.0042750416323542595,
0.026008425280451775,
-0.024105941876769066,
0.0073285396210849285,
0.011997271329164505,
-0.043725211173295975,
-0.02558961883187294,
-0.020108064636588097,
0.06110016256570816,
-0.03927946090698242,
-0.016313379630446434,
0.030205674469470978,
-0.010957042686641216,
0.01777070201933384,
-0.04764172062277794,
-0.004610000643879175,
0.017406266182661057,
0.004256842657923698,
-0.047231145203113556,
0.040418028831481934,
-0.008750008419156075,
-0.0077263121493160725,
-0.01299128495156765,
-0.0252053402364254,
0.001383765134960413,
0.06818771362304688,
-0.01632409729063511,
-0.020503997802734375,
-0.024808112531900406,
0.017336543649435043,
0.03049883432686329,
0.026783838868141174,
-0.03926897421479225,
0.012738116085529327,
0.06937109678983688,
0.03470481559634209,
-0.021310677751898766,
0.05758875608444214,
0.0035353826824575663,
-0.03571644052863121,
-0.021132294088602066,
-0.010937456041574478,
0.0034635448828339577,
0.00009031992522068322,
0.048214156180620193,
0.06035369634628296,
-0.02708897367119789,
-0.01978915184736252,
0.008437286131083965,
0.0503937304019928,
-0.0110324677079916,
0.012500534765422344,
-0.026010502129793167,
-0.008695726282894611,
-0.02960324101150036,
0.0357578843832016,
-0.029030632227659225,
0.006071871612221003,
-0.02133016474545002,
-0.031089521944522858,
0.007372772786766291,
0.0364016517996788,
0.022670825943350792,
0.02727009542286396,
-0.01242397353053093,
0.07757638394832611,
-0.04061634838581085,
0.014414018020033836,
-0.04984158277511597,
-0.02956683747470379,
-0.023919155821204185,
0.01794644072651863,
0.02103566937148571,
0.04747776687145233,
0.03141710162162781,
-0.02990155667066574,
0.01230008527636528,
0.028102416545152664,
0.03240422159433365,
0.04329007491469383,
-0.024480585008859634,
-0.008889133110642433,
0.008898553438484669,
0.06578203290700912,
-0.04050883650779724,
-0.023101091384887695,
0.010624672286212444,
0.01823432929813862,
-0.0268792025744915,
0.016387363895773888,
0.004437655210494995,
0.0320991650223732,
-0.036455459892749786,
-0.05150851607322693,
0.03682240471243858,
0.003899303264915943,
0.004479678813368082,
0.024204254150390625,
-0.0018216513562947512,
-0.01720145344734192,
0.038131311535835266,
-0.005096758715808392,
-0.026485735550522804,
-0.06353098899126053,
-0.021132072433829308,
0.022836189717054367,
0.05422007665038109,
-0.021495284512639046,
0.01857028156518936,
0.014447826892137527,
0.024683691561222076,
0.0533856637775898,
-0.01270913053303957,
0.01541054155677557,
0.05768800526857376,
0.01843341439962387,
0.004015817306935787,
0.03207801282405853,
-0.0003507067740429193,
0.028859319165349007,
0.08005352318286896,
-0.028605960309505463,
0.07062941789627075,
0.017078159376978874,
0.03765430301427841,
0.08014077693223953,
0.0092930281534791,
0.014362281188368797,
0.062456902116537094,
0.07935517281293869,
-0.0035526594147086143,
-0.01199900172650814,
0.05248519033193588,
-0.048101384192705154,
0.04281925410032272,
-0.043331269174814224,
0.024854181334376335,
-0.023334188386797905,
-0.01076116319745779,
0.03400762006640434,
0.005208423361182213,
0.0035944143310189247,
0.012583596631884575,
-0.01729922741651535,
-0.016700096428394318,
0.041424449533224106,
-0.012345860712230206,
0.016933171078562737,
0.03264740854501724,
-0.040664274245500565,
0.013857172802090645,
-0.09389308094978333,
-0.05547390505671501,
0.016792289912700653,
-0.026764126494526863,
0.003757133614271879,
-0.08480163663625717,
-0.047397926449775696,
-0.06687317043542862,
-0.02809213660657406,
0.03816398233175278,
0.020339736714959145,
0.031226882711052895,
-0.027406448498368263,
0.022370802238583565,
-0.05409659072756767,
-0.02160426788032055,
-0.05824727192521095,
-0.039944663643836975,
-0.0353817380964756,
-0.06383532285690308,
0.01658458076417446,
0.0037733889184892178,
0.029695091769099236,
0.0007751818629913032,
-0.016408054158091545,
-0.05078142136335373,
-0.015595394186675549,
0.05056459829211235,
-0.007042046170681715,
-0.009038119576871395,
-0.03309095650911331,
0.0124888364225626,
-0.020976664498448372,
0.02344883605837822,
-0.027513736858963966,
-0.03802508860826492,
0.06583921611309052,
0.05725269764661789,
0.031009195372462273,
0.019787954166531563,
-0.03761335462331772,
-0.05515410751104355,
-0.029950961470603943,
-0.025775762274861336,
-0.06222683563828468,
-0.020033687353134155,
-0.019881829619407654,
-0.05651336908340454,
-0.013757150620222092,
-0.02435045875608921,
-0.04456852748990059,
0.0038134735077619553,
0.023039963096380234,
0.05528806522488594,
0.052397094666957855,
0.03749438002705574,
0.022612042725086212,
-0.04290709272027016,
-0.005068540573120117,
0.09376563876867294,
-0.01568763703107834,
0.007027513813227415,
-0.08435899019241333,
-0.02112605981528759,
0.03083699569106102,
0.017346231266856194,
0.001938380766659975,
-0.03692294657230377,
0.07575208693742752,
0.021450666710734367,
0.018376298248767853,
0.008645879104733467,
0.02400340884923935,
-0.01890421472489834,
0.004008839838206768,
-0.03101351670920849,
-0.016946690157055855,
-0.05075228959321976,
-0.022452877834439278,
-0.037511058151721954,
0.035352837294340134,
-0.05767045170068741,
-0.06055406108498573,
-0.015174570493400097,
0.03596153110265732,
0.0317174531519413,
0.003273554379120469,
-0.02904144860804081,
0.0004707972693722695,
-0.02548401802778244,
-0.029964320361614227,
0.028633832931518555,
-0.014007401652634144,
0.0045897639356553555,
0.051167942583560944,
0.02023421972990036,
-0.03659730777144432,
0.02054833248257637,
0.03140287101268768,
0.03300666809082031,
0.03790979087352753,
-0.04053840413689613,
0.03966646268963814,
-0.0398431271314621,
0.025561528280377388,
0.014651807956397533,
-0.031025895848870277,
-0.059643350541591644,
-0.09121155738830566,
-0.012263867072761059,
0.010860851965844631,
-0.03646014258265495,
0.006629224866628647,
0.03238692507147789,
-0.03866194561123848,
-0.03095841221511364,
0.0309248436242342,
0.01884422078728676,
0.04059407860040665,
-0.03696151077747345,
0.04769694060087204,
-0.003703100373968482,
0.04440458491444588,
-0.027936048805713654,
0.016926435753703117,
-0.03276169300079346,
-0.0386614091694355,
0.006076492369174957,
0.05247972905635834,
0.030001500621438026,
0.03920939564704895,
0.06927827000617981,
0.043598469346761703,
-0.02139422856271267,
0.0636897087097168,
0.04244627803564072,
-0.004954786505550146,
-0.07223734259605408,
-0.00005581152800004929,
-0.003225294640287757,
-0.028012974187731743,
-0.0023520831018686295,
-0.03554964438080788,
0.03154273331165314,
0.03127874433994293,
0.01645163632929325,
-0.0015373434871435165,
-0.02174428105354309,
-0.02759363502264023,
-0.028451483696699142,
-0.07328993082046509,
-0.008404623717069626,
-0.008642960339784622,
-0.026556668803095818,
0.04921239614486694,
0.0392850898206234,
0.01170188095420599,
0.060923364013433456,
0.045431241393089294,
-0.008416363038122654,
-0.02852834202349186,
0.05676747113466263,
0.053367529064416885,
-0.07000062614679337,
-0.06969112902879715,
-0.06160689890384674,
0.018413107842206955,
0.056178923696279526,
-0.01883242093026638,
-0.08128846436738968,
0.022915687412023544,
0.07742051780223846,
-0.019034242257475853,
0.0678192675113678,
0.009118667803704739,
0.045046158134937286,
0.06840045750141144,
-0.03492454066872597,
0.01716335117816925,
-0.023207195103168488,
0.008490657433867455,
0.008871638216078281,
0.054617639631032944,
-0.02874208241701126,
-0.034852251410484314,
-0.02794526144862175,
0.02592310681939125,
0.025306105613708496,
0.05818919464945793,
0.07350985705852509,
-0.03103364072740078,
-0.06883478164672852,
0.0028982535004615784,
0.024201340973377228,
-0.03986135497689247,
0.0057036434300243855,
0.02715560421347618,
0.048324137926101685,
-0.04949000105261803,
-0.03540455177426338,
-0.02589857205748558,
0.0027980057056993246,
0.027048053219914436,
0.004060652107000351,
-0.024708235636353493,
-0.05767291039228439,
0.011693061329424381,
-0.000869184616021812,
-0.010731931775808334,
-0.09683968126773834,
0.024152282625436783,
0.005103877279907465,
-0.010170050896704197,
0.07977449893951416,
0.05884503200650215,
0.04846956580877304,
0.028932297602295876,
-0.024810250848531723,
0.039887070655822754,
-0.04362919554114342,
0.03396689519286156,
-0.010311007499694824,
-0.01654016599059105,
-0.010225284844636917,
-0.07930650562047958,
-0.021478287875652313,
-0.03785976395010948,
-0.039147987961769104,
-0.034352779388427734,
-0.037337079644203186,
0.004364422056823969,
-0.022358659654855728,
0.021428603678941727,
0.002479337155818939,
0.01871536485850811,
-0.04642896354198456,
-0.008624187670648098,
-0.02852543815970421,
-0.03872521594166756,
-0.08247897028923035,
-0.015655703842639923,
0.0021268625278025866,
0.010811928659677505,
0.015413690358400345,
0.009961539879441261,
-0.0036234362050890923,
0.033062659204006195,
-0.003242414677515626,
-0.03428145498037338,
0.04524928703904152,
0.016904326155781746,
-0.04780542850494385,
-0.0372425802052021,
-0.0061302571557462215,
0.008627532981336117,
0.016165634617209435,
-0.03107360564172268,
0.026994895190000534,
0.01741308532655239,
-0.05000000074505806,
-0.022827232256531715,
0.008453628979623318,
0.023421406745910645,
-0.0867857113480568,
-0.03978985920548439,
-0.006577712018042803,
-0.048402756452560425,
0.017283108085393906,
-0.018386008217930794,
0.005726752337068319,
-0.0017999322153627872,
0.04656652733683586,
0.005832067225128412,
-0.009209578856825829,
-0.02617032453417778,
0.0332069993019104,
-0.016235854476690292,
0.026966124773025513,
-0.0723070353269577,
0.006792916916310787,
-0.016744600608944893,
0.015782497823238373,
-0.028268350288271904,
0.0015161246992647648,
-0.03408324718475342,
0.045138437300920486,
-0.006039914675056934,
-0.010469797998666763,
-0.018169907853007317,
0.008241367526352406,
-0.038621410727500916,
0.03347505256533623,
0.004154826980084181,
0.023790637031197548,
-0.03530413284897804,
0.04395367577672005,
-0.051093388348817825,
0.012112175114452839,
-0.01070256158709526,
-0.0007970708538778126,
0.0011096950620412827,
-0.019058650359511375,
-0.015915952622890472,
-0.03821001946926117,
0.029878852888941765,
0.03476288542151451,
0.008844226598739624,
0.032116156071424484,
-0.00297797960229218,
0.02311258763074875,
0.01245034672319889,
-0.06725265830755234,
-0.029780367389321327,
-0.021855082362890244,
0.017414404079318047,
-0.010491752065718174,
0.06404606252908707,
0.03818845376372337,
-0.05084926262497902,
-0.039545848965644836,
0.0401575081050396,
0.019344091415405273,
-0.024348074570298195,
0.0029587114695459604,
0.02028941921889782,
0.04790942743420601,
0.04902547597885132,
-0.029115404933691025,
-0.0011095423251390457,
-0.003585513448342681,
-0.019431516528129578,
0.010185561142861843,
0.009349428117275238,
0.020418668165802956,
-0.023654626682400703,
-0.033132120966911316,
-0.02934221923351288,
0.09610782563686371,
0.03736569359898567,
0.01617339812219143,
0.01693854294717312,
-0.04331083223223686,
0.019308388233184814,
0.012651688419282436,
-0.042996957898139954,
-0.025470808148384094,
0.02060508355498314,
-0.030045457184314728,
0.07274471968412399,
-0.0004740297154057771,
0.008646070957183838,
0.03878040984272957,
0.0047024949453771114,
-0.00923231802880764,
0.048510629683732986,
-0.03136929124593735,
0.01586028002202511,
0.05203872174024582,
-0.06893499940633774,
-0.003712749108672142,
-0.029553869739174843,
0.043199893087148666,
-0.04401608183979988,
0.05988393723964691,
0.032466959208250046,
0.05066032335162163,
0.0276019386947155,
-0.019033391028642654,
-0.043702661991119385,
0.013976328074932098,
-0.060246821492910385,
0.07420060783624649,
-0.00613468186929822,
-0.05910120904445648,
0.07502223551273346,
0.002487796125933528,
-0.09597472101449966,
0.04664965346455574,
0.026326561346650124,
0.025293216109275818,
0.037568721920251846,
0.022999538108706474,
-0.08113592118024826,
-0.013690713793039322,
-0.023438941687345505,
0.04233903810381889,
-0.08759871125221252,
0.001998170046135783,
0.018535897135734558,
-0.02557574026286602,
-0.017791621387004852,
0.04992789030075073,
-0.01798437349498272,
0.0005853363545611501,
0.013337265700101852,
-0.056691527366638184,
-0.03798137977719307,
-0.016258293762803078,
0.022702326998114586,
-0.007450566627085209,
0.024546075612306595,
-0.018636567518115044,
0.0017379230121150613,
0.016057154163718224,
-0.005943673197180033,
-0.05259164795279503,
0.025238534435629845,
0.01380066480487585,
-0.06513988226652145,
-0.025981010869145393,
0.004047187510877848,
0.012852718122303486,
-0.020688774064183235,
0.05211887136101723,
-0.016518374904990196,
0.0467553474009037,
0.0199743565171957,
-0.01262953132390976,
0.004540357738733292,
-0.03456313535571098,
0.02683640830218792,
0.010581581853330135,
0.014177883975207806,
0.02668387070298195,
-0.01577845588326454,
0.032575059682130814,
0.03246266394853592,
0.035881686955690384,
0.010558431968092918,
-0.037774164229631424,
-0.017920726910233498,
0.03481752797961235,
-0.03619001805782318,
0.028357811272144318,
0.018664758652448654,
-0.03367184102535248,
-0.030704323202371597,
-0.009497663006186485,
0.007907630875706673,
0.05191364884376526,
-0.03221835568547249,
0.010798840783536434,
0.032475490123033524,
-0.028196565806865692,
-0.038367900997400284,
-0.05394206941127777,
-0.027162622660398483,
-0.03514239192008972,
0.05552166700363159,
0.029849659651517868,
-0.031839076429605484,
0.007340479642152786,
-0.033830173313617706,
-0.025476783514022827,
0.042351845651865005,
0.03043055348098278,
-0.04635659232735634,
0.06908118724822998,
0.03131536394357681,
-0.0294337198138237,
0.011247959919273853,
0.035911910235881805,
-0.05238161236047745,
0.017978638410568237,
0.0162840373814106,
0.025743188336491585,
0.02796117588877678,
0.03418441489338875,
-0.017815258353948593,
-0.01982143707573414,
-0.08571511507034302,
-0.03344735503196716,
-0.04445065185427666,
-0.013147171586751938,
0.0643690750002861
] |
AnonymousSub/AR_rule_based_roberta_hier_quadruplet_epochs_1_shard_1 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 12 | null | ---
license: apache-2.0
tags:
- setfit
- sentence-transformers
- text-classification
pipeline_tag: text-classification
---
# /var/folders/cr/k5wjffrn18lf95kf3ffg7r_r0000gn/T/tmpdxymlp75/DanielaSaavedraL/saleswiz-baseline_is_about_company
This is a [SetFit model](https://github.com/huggingface/setfit) that can be used for text classification. The model has been trained using an efficient few-shot learning technique that involves:
1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
2. Training a classification head with features from the fine-tuned Sentence Transformer.
## Usage
To use this model for inference, first install the SetFit library:
```bash
python -m pip install setfit
```
You can then run inference as follows:
```python
from setfit import SetFitModel
# Download from Hub and run inference
model = SetFitModel.from_pretrained("/var/folders/cr/k5wjffrn18lf95kf3ffg7r_r0000gn/T/tmpdxymlp75/DanielaSaavedraL/saleswiz-baseline_is_about_company")
# Run inference
preds = model(["i loved the spiderman movie!", "pineapple on pizza is the worst 🤮"])
```
## BibTeX entry and citation info
```bibtex
@article{https://doi.org/10.48550/arxiv.2209.11055,
doi = {10.48550/ARXIV.2209.11055},
url = {https://arxiv.org/abs/2209.11055},
author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {Efficient Few-Shot Learning Without Prompts},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution 4.0 International}
}
```
| [
-0.02585301361978054,
-0.030703935772180557,
-0.004202222917228937,
0.054045822471380234,
0.029751311987638474,
0.02827415056526661,
-0.03021782636642456,
0.006172240246087313,
-0.03533610701560974,
0.060309987515211105,
0.02505539543926716,
0.011424764059484005,
0.024482544511556625,
0.02121989242732525,
-0.04966386780142784,
-0.030621571466326714,
-0.004704515915364027,
-0.010928035713732243,
-0.014989648945629597,
-0.014658073894679546,
0.015607084147632122,
-0.0024319144431501627,
0.006971653550863266,
0.017101582139730453,
-0.019923577085137367,
0.02878507226705551,
-0.028323546051979065,
0.02758299559354782,
0.04589752480387688,
-0.06725472211837769,
0.009884990751743317,
-0.027053002268075943,
-0.03722843527793884,
0.0024136733263731003,
-0.009942765347659588,
0.008677076548337936,
-0.0082991449162364,
0.004724863450974226,
0.0009113752166740596,
0.03947486728429794,
0.0071916598826646805,
0.027704017236828804,
-0.010595269501209259,
-0.01886298693716526,
0.03733391314744949,
0.013562495820224285,
-0.03385014459490776,
-0.00575589993968606,
0.051723018288612366,
-0.020701654255390167,
-0.060148149728775024,
-0.07552079856395721,
-0.04276633635163307,
0.02004103921353817,
-0.028934095054864883,
0.002062927233055234,
-0.05081784725189209,
0.016251828521490097,
0.06810992956161499,
-0.06104264408349991,
-0.022100307047367096,
0.015037145465612411,
-0.05742471292614937,
0.011382839642465115,
0.0138101102784276,
-0.05304839462041855,
-0.01680208370089531,
-0.04735822230577469,
0.00010241317067993805,
-0.05357396602630615,
0.07313676923513412,
-0.00232776440680027,
0.025763466954231262,
-0.08504566550254822,
0.0035997547674924135,
-0.0007338296854868531,
0.04729423671960831,
0.04948079586029053,
-0.026739664375782013,
0.052039388567209244,
0.04268639162182808,
-0.004095673095434904,
0.02579568699002266,
0.01889243721961975,
0.00048151134978979826,
0.03766048699617386,
-0.04895429685711861,
0.007707783952355385,
0.0037953343708068132,
0.028789296746253967,
-0.03844386339187622,
-0.048983242362737656,
-0.00205983966588974,
-0.03493659570813179,
-0.03438865393400192,
0.017741765826940536,
0.02501627616584301,
-0.006169177126139402,
0.03801919147372246,
0.041098639369010925,
0.0381622388958931,
0.04253020137548447,
-0.021013135090470314,
0.0694686621427536,
-0.014624844305217266,
0.004342574626207352,
0.0001580304087838158,
-0.035990647971630096,
-0.05352049693465233,
0.045929454267024994,
0.024414880201220512,
-0.020372670143842697,
-0.04579504579305649,
0.04815611615777016,
0.010948237963020802,
-0.004025555215775967,
0.05859612673521042,
-0.025770829990506172,
-0.05200265720486641,
-0.05091812089085579,
0.041341617703437805,
-0.021721309050917625,
-0.012463510036468506,
-0.010943392291665077,
-0.03792571276426315,
0.006463018245995045,
-0.05336877331137657,
-0.02808976173400879,
-0.011869010515511036,
0.033387456089258194,
-0.0045997221022844315,
0.040952157229185104,
0.01888299360871315,
-0.05102109909057617,
0.009384184144437313,
0.006504519376903772,
-0.06462273746728897,
0.046456918120384216,
0.04319798946380615,
0.11149722337722778,
-0.09016601741313934,
-0.03790631145238876,
0.02173025719821453,
0.023332471027970314,
-0.030445314943790436,
0.008855132386088371,
-0.002290438860654831,
-0.07018128037452698,
-0.028426887467503548,
-0.027896713465452194,
0.050313517451286316,
-0.05694248154759407,
-0.020161407068371773,
0.030870215967297554,
-0.023363757878541946,
0.05970370024442673,
-0.06813908368349075,
0.0011784136295318604,
0.007807727437466383,
0.002639039885252714,
-0.02136925794184208,
0.04113302752375603,
-0.023136518895626068,
-0.004240220412611961,
-0.02550177276134491,
-0.03597787767648697,
-0.012557568028569221,
0.0711478590965271,
-0.02221366949379444,
-0.01321427896618843,
-0.02234942466020584,
0.0028743334114551544,
0.04812844097614288,
0.019115634262561798,
-0.013125377707183361,
0.022187519818544388,
0.08752787113189697,
0.03676459565758705,
-0.03507149964570999,
0.04941472038626671,
0.018869850784540176,
-0.03444777801632881,
-0.017808610573410988,
0.013099201954901218,
-0.003950390499085188,
-0.013804985210299492,
0.03778443858027458,
0.04782462120056152,
-0.03594795614480972,
-0.01792873814702034,
-0.026236452162265778,
0.07256864756345749,
0.01743357442319393,
0.01220666617155075,
-0.008259386755526066,
-0.005795803852379322,
-0.022753359749913216,
0.046608816832304,
-0.010971960611641407,
-0.0008612964302301407,
-0.016555875539779663,
-0.043752897530794144,
-0.008747040294110775,
0.017361797392368317,
0.006326411850750446,
0.030323892831802368,
-0.0030691593419760466,
0.07402478903532028,
-0.04525689035654068,
0.03488249331712723,
-0.04528922215104103,
-0.05017498880624771,
0.010430424474179745,
0.03689153864979744,
0.030970221385359764,
0.05939119681715965,
0.016155049204826355,
-0.030924320220947266,
0.01070313062518835,
0.018258051946759224,
0.016089903190732002,
0.0327431745827198,
-0.00531324977055192,
-0.0136799281463027,
0.02617623470723629,
0.04756225273013115,
-0.041109517216682434,
-0.03207278251647949,
0.015581561252474785,
0.04447497799992561,
-0.010575777851045132,
-0.00144032237585634,
-0.015991322696208954,
0.038377512246370316,
-0.04975998401641846,
-0.06177080050110817,
0.035234734416007996,
0.028614068403840065,
0.018790455535054207,
0.024710429832339287,
-0.003919782117009163,
-0.009696446359157562,
0.04169292375445366,
0.002941479440778494,
-0.01526409201323986,
-0.0587133914232254,
-0.003511240240186453,
0.03911510854959488,
0.03841274604201317,
-0.05265776813030243,
0.03577999398112297,
0.010382669046521187,
0.0063542588613927364,
0.030999867245554924,
-0.023113828152418137,
0.04515973478555679,
0.060051918029785156,
0.008177291601896286,
-0.026444679126143456,
0.047241806983947754,
0.001761927269399166,
0.03272252902388573,
0.04421932250261307,
0.007624656893312931,
0.061873290687799454,
-0.026922814548015594,
0.050433650612831116,
0.11982811987400055,
0.026512473821640015,
0.01207183301448822,
0.051899876445531845,
0.07216013222932816,
-0.009632796980440617,
-0.024319857358932495,
0.0625709593296051,
-0.06385277211666107,
0.03425275534391403,
-0.04993247240781784,
0.02730434760451317,
-0.022820770740509033,
0.003113232087343931,
0.061433907598257065,
0.02817652001976967,
-0.03659139946103096,
0.019470257684588432,
-0.011219684965908527,
0.006093327887356281,
0.016505084931850433,
-0.022292669862508774,
0.0018444290617480874,
0.017329739406704903,
-0.03350670263171196,
0.008058738894760609,
-0.07144652307033539,
-0.060748741030693054,
0.003745156805962324,
-0.021529920399188995,
-0.003993995953351259,
-0.07367132604122162,
-0.03652004152536392,
-0.047915879637002945,
-0.021773764863610268,
0.0447765477001667,
0.012360693886876106,
0.01375911757349968,
-0.03415723890066147,
0.016320858150720596,
-0.04032975435256958,
-0.03075515292584896,
-0.040358126163482666,
-0.046100229024887085,
-0.04232928529381752,
-0.053261108696460724,
0.0457017682492733,
0.0020781890489161015,
0.01518253330141306,
0.017473842948675156,
-0.0071122655645012856,
-0.018785208463668823,
-0.02466467209160328,
0.06323324888944626,
0.02562507428228855,
-0.014453236944973469,
-0.04741685464978218,
0.019702838733792305,
-0.03316068649291992,
0.010327785275876522,
-0.018430285155773163,
-0.04159577563405037,
0.06998656690120697,
0.063422292470932,
0.022476762533187866,
0.005516009405255318,
-0.028544839471578598,
-0.06066838651895523,
-0.06104410067200661,
-0.016539644449949265,
-0.03299519419670105,
-0.037980902940034866,
-0.035612210631370544,
-0.05233366787433624,
-0.011142091825604439,
-0.022974221035838127,
-0.02475534938275814,
0.004624350927770138,
0.004657343495637178,
0.037902962416410446,
0.03608722984790802,
0.0389510802924633,
0.014476543292403221,
-0.05142470449209213,
-0.05879239737987518,
0.0533442497253418,
0.0260560791939497,
0.015711355954408646,
-0.09163089096546173,
-0.03295283764600754,
0.02472696453332901,
0.0042587947100400925,
0.016450146213173866,
-0.00984728429466486,
0.09721888601779938,
0.02396443672478199,
-0.003682479728013277,
0.021855752915143967,
0.015864461660385132,
-0.012647828087210655,
-0.001045136246830225,
-0.014839216135442257,
-0.015102763660252094,
-0.04896428436040878,
-0.030179055407643318,
-0.034449104219675064,
0.05398347228765488,
-0.06636425852775574,
-0.05827060341835022,
0.03180495649576187,
0.04951052740216255,
0.020232580602169037,
-0.016046814620494843,
-0.038278549909591675,
-0.010090667754411697,
-0.04525940120220184,
-0.0072989696636796,
0.025952531024813652,
-0.006469003856182098,
-0.008452198468148708,
0.03755796700716019,
0.0444149523973465,
-0.03153837472200394,
0.019771194085478783,
0.037232477217912674,
0.04581637308001518,
-0.0029419336933642626,
-0.04594341292977333,
0.036237336695194244,
-0.023911936208605766,
0.03468045964837074,
0.002795800566673279,
-0.015581080690026283,
-0.05656111240386963,
-0.08216086030006409,
0.0007385545177385211,
0.0042642150074243546,
-0.015340848825871944,
-0.01628827303647995,
0.0402630977332592,
-0.039597317576408386,
-0.01947176642715931,
0.007917502894997597,
0.028652479872107506,
0.01967690698802471,
-0.028858818113803864,
0.04227327182888985,
-0.019206123426556587,
0.03612562268972397,
-0.039233412593603134,
0.012371869757771492,
-0.03713887557387352,
-0.03248859941959381,
0.03303452208638191,
0.06351479887962341,
0.011748101562261581,
0.040680181235075,
0.0588579997420311,
0.05778535455465317,
-0.02620326168835163,
0.04025877267122269,
0.042188506573438644,
-0.012434100732207298,
-0.05754023790359497,
0.0006690385635010898,
-0.011303743347525597,
-0.019407866522669792,
-0.01351519301533699,
-0.020683173090219498,
0.022036347538232803,
0.023595504462718964,
0.003109687939286232,
-0.02117207832634449,
-0.022697754204273224,
-0.02051720954477787,
-0.024185508489608765,
-0.06734053790569305,
-0.019478697329759598,
-0.006564656738191843,
-0.012987742200493813,
0.05210595577955246,
0.0310223326086998,
0.014321764931082726,
0.05633449926972389,
0.04136895760893822,
-0.01962733455002308,
-0.04035976901650429,
0.036583587527275085,
0.04047943651676178,
-0.03542063385248184,
-0.04015395790338516,
-0.06328216195106506,
0.03419514000415802,
0.04903573915362358,
-0.034189436584711075,
-0.09064370393753052,
0.01581309363245964,
0.061536386609077454,
-0.057121265679597855,
0.07504882663488388,
0.019226478412747383,
0.04172052815556526,
0.08173974603414536,
-0.0277845561504364,
0.03191494941711426,
-0.010211081244051456,
-0.009950945153832436,
0.0017654974944889545,
0.06688584387302399,
-0.04735354706645012,
-0.044000886380672455,
-0.024782739579677582,
0.05650695785880089,
0.025043543428182602,
0.039721764624118805,
0.054173894226551056,
-0.033635012805461884,
-0.055498842149972916,
0.014899598434567451,
0.029256083071231842,
-0.017600184306502342,
-0.0010873834835365415,
0.00641550961881876,
0.03899660333991051,
-0.062686488032341,
-0.033764202147722244,
-0.0165463425219059,
0.00018578306480776519,
0.032765284180641174,
0.009172413498163223,
-0.038227714598178864,
-0.032269276678562164,
-0.006116096395999193,
-0.020767295733094215,
-0.018269799649715424,
-0.07397912442684174,
0.04032469913363457,
-0.00561980064958334,
-0.015857767313718796,
0.061918165534734726,
0.04794647917151451,
0.03436436504125595,
0.02937445417046547,
0.010629133321344852,
0.021667156368494034,
-0.020116860046982765,
0.041407737880945206,
-0.0224673580378294,
-0.03249158337712288,
-0.017726389691233635,
-0.07664499431848526,
-0.010224567726254463,
-0.022698218002915382,
-0.02800043299794197,
-0.047700513154268265,
-0.05246584489941597,
-0.0013438600581139326,
0.0018376444932073355,
-0.01676695980131626,
-0.008238918147981167,
0.02237832359969616,
-0.034627076238393784,
-0.026759088039398193,
-0.04296217858791351,
-0.036686431616544724,
-0.08012549579143524,
-0.03901764377951622,
0.001008255174383521,
0.021351806819438934,
0.015344805084168911,
0.015184606425464153,
-0.004725136328488588,
0.009768706746399403,
0.014718950726091862,
-0.03517325595021248,
0.04507405310869217,
-0.003484573448076844,
-0.04253995046019554,
-0.012409213930368423,
0.0041031911969184875,
0.010436680167913437,
0.0019727153703570366,
-0.009514288045465946,
0.024062277749180794,
0.027477247640490532,
-0.022158853709697723,
-0.023770302534103394,
0.04993276670575142,
0.005998595152050257,
-0.07197274267673492,
-0.0241908747702837,
-0.013194898143410683,
-0.03519054502248764,
0.03688685968518257,
0.016507647931575775,
-0.022451475262641907,
0.004477641545236111,
0.0280746016651392,
0.009737210348248482,
-0.03428042680025101,
-0.031081246212124825,
0.003571472829207778,
-0.021655116230249405,
0.026615947484970093,
-0.07073941081762314,
0.040999967604875565,
-0.052555911242961884,
-0.002803847659379244,
-0.008454869501292706,
-0.010931747034192085,
-0.05448251962661743,
0.05379778519272804,
-0.006597443018108606,
0.003785127541050315,
-0.024349743500351906,
0.010230686515569687,
-0.022362159565091133,
0.0267162024974823,
-0.006258456967771053,
0.007664434611797333,
-0.03756525740027428,
0.035546064376831055,
-0.04205314442515373,
-0.015084605664014816,
-0.011553038842976093,
-0.0024857253301888704,
-0.02202739752829075,
-0.018991000950336456,
-0.02094423584640026,
-0.031078562140464783,
0.04312269762158394,
0.010480934754014015,
0.03645437955856323,
0.04222969338297844,
-0.009621861390769482,
0.018169991672039032,
0.02272564172744751,
-0.08662065118551254,
-0.03685236722230911,
0.00888777244836092,
0.026203598827123642,
0.00369939673691988,
0.07207342237234116,
0.04304351657629013,
-0.06058390811085701,
-0.049777694046497345,
0.06259340792894363,
0.029829494655132294,
-0.009321211837232113,
0.00007693349471082911,
0.021198434755206108,
0.047522202134132385,
0.014410032890737057,
-0.039003241807222366,
-0.029002966359257698,
0.0019216117216274142,
-0.03627460077404976,
0.02344236522912979,
-0.013167181052267551,
0.04905731976032257,
0.017206378281116486,
-0.031033556908369064,
-0.0017767671961337328,
0.05802709981799126,
0.02496672235429287,
0.01700790412724018,
-0.019022667780518532,
-0.03912185877561569,
0.009110587649047375,
0.0009664880344644189,
-0.05487215891480446,
-0.006982692051678896,
0.01831468567252159,
-0.03672496974468231,
0.06582601368427277,
0.011649709194898605,
0.00560325151309371,
0.05212580785155296,
0.005851856432855129,
-0.022757655009627342,
0.04648227244615555,
-0.03546876087784767,
0.017227215692400932,
0.05005912482738495,
-0.05888308957219124,
0.002122682984918356,
-0.0325760655105114,
0.06540429592132568,
-0.07496129721403122,
0.06186552345752716,
0.03523919731378555,
0.03093341365456581,
0.007413834799081087,
-0.029367798939347267,
-0.05703136697411537,
0.037861648947000504,
-0.04579636827111244,
0.07837484031915665,
0.0015003855805844069,
-0.06067030504345894,
0.09376708418130875,
0.015978552401065826,
-0.08863755315542221,
0.033327169716358185,
0.04561235383152962,
0.03476353734731674,
0.04247984290122986,
0.04542950168251991,
-0.05756998807191849,
-0.005863498896360397,
-0.020763419568538666,
0.018164152279496193,
-0.04869965463876724,
-0.009524318389594555,
-0.0016692939680069685,
-0.04926881566643715,
0.0004593421472236514,
0.04807344824075699,
-0.0024343631230294704,
0.010788257233798504,
0.02614271640777588,
-0.03555618226528168,
-0.03156503662467003,
-0.0011104259174317122,
-0.002241473877802491,
-0.024001792073249817,
0.028658542782068253,
-0.022310886532068253,
0.005827692802995443,
0.02185050956904888,
-0.00019616956706158817,
-0.03155903518199921,
-0.011607479304075241,
0.017792632803320885,
-0.05190880596637726,
-0.01896059885621071,
0.03461618721485138,
0.018290765583515167,
-0.034978702664375305,
0.026376355439424515,
0.009204755537211895,
0.02782173454761505,
0.025228211656212807,
-0.02503202296793461,
0.03400165215134621,
-0.07359752804040909,
-0.010196437127888203,
0.028757745400071144,
-0.013969670049846172,
0.025784464552998543,
-0.0001753669057507068,
0.038437336683273315,
0.05225552245974541,
0.0211807731539011,
0.0011475692735984921,
-0.021212022751569748,
-0.011734499596059322,
0.003680840600281954,
-0.04101237654685974,
0.027849379926919937,
0.012679745443165302,
-0.04425494372844696,
-0.013249686919152737,
-0.030170533806085587,
-0.02297286130487919,
0.04439755156636238,
-0.03740954399108887,
0.0020336590241640806,
0.06668248027563095,
-0.027761492878198624,
-0.05138086527585983,
-0.0729840099811554,
-0.01985517516732216,
-0.021483317017555237,
0.026405340060591698,
0.022648761048913002,
-0.01049587968736887,
0.01386310812085867,
-0.017598815262317657,
-0.045282699167728424,
0.023226739838719368,
0.032586198300123215,
-0.04248815402388573,
0.048219893127679825,
0.0327875055372715,
-0.027711277827620506,
0.040551986545324326,
0.04244609177112579,
-0.04990692809224129,
-0.0007216618396341801,
0.005262298975139856,
0.03189580515027046,
0.03683716058731079,
0.023417988792061806,
-0.01899651065468788,
-0.02730070985853672,
-0.06055549159646034,
-0.03779131546616554,
-0.05903134495019913,
-0.01379835419356823,
0.05113714188337326
] |
AnonymousSub/AR_rule_based_roberta_hier_triplet_epochs_1_shard_10 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 3 | null | ---
tags:
- generated_from_trainer
metrics:
- accuracy
- precision
- recall
- f1
model-index:
- name: negative-tweet-identification-indo-indobert
results: []
---
<!-- 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. -->
# negative-tweet-identification-indo-indobert
This model was trained from scratch on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 0.0098
- Accuracy: 0.9986
- Precision: 0.9985
- Recall: 0.9987
- F1: 0.9986
## 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.0001
- 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
- num_epochs: 5
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy | Precision | Recall | F1 |
|:-------------:|:-----:|:----:|:---------------:|:--------:|:---------:|:------:|:------:|
| No log | 1.0 | 35 | 0.3341 | 0.8732 | 0.8806 | 0.8773 | 0.8726 |
| No log | 2.0 | 70 | 0.1035 | 0.9672 | 0.9684 | 0.9677 | 0.9676 |
| No log | 3.0 | 105 | 0.0263 | 0.9922 | 0.9922 | 0.9926 | 0.9924 |
| No log | 4.0 | 140 | 0.0182 | 0.9945 | 0.9943 | 0.9948 | 0.9945 |
| No log | 5.0 | 175 | 0.0098 | 0.9986 | 0.9985 | 0.9987 | 0.9986 |
### Framework versions
- Transformers 4.26.0
- Pytorch 1.12.0+cu102
- Datasets 2.9.0
- Tokenizers 0.12.1
| [
-0.010537788271903992,
-0.008253083564341068,
-0.027827057987451553,
0.02059151791036129,
0.04991445690393448,
0.023815536871552467,
-0.03292775899171829,
-0.014120961539447308,
-0.037416309118270874,
0.04478120431303978,
0.024674750864505768,
-0.04154878109693527,
-0.003553781658411026,
0.03037983924150467,
-0.02614341303706169,
-0.043334752321243286,
-0.009976276196539402,
-0.01748926006257534,
-0.02801668457686901,
0.014731388539075851,
0.014664307236671448,
-0.0020415440667420626,
-0.009496651589870453,
0.002322325250133872,
-0.015125450678169727,
0.006023952271789312,
0.002323828637599945,
0.021876834332942963,
0.0474676713347435,
-0.07050208747386932,
-0.004655763972550631,
-0.035027261823415756,
-0.03853195905685425,
-0.0025286823511123657,
-0.018270406872034073,
-0.00822706613689661,
-0.004065365064889193,
0.039040517061948776,
0.0272377897053957,
0.06210717558860779,
0.022629549726843834,
0.018075671046972275,
-0.019606485962867737,
-0.024861179292201996,
0.05404313653707504,
-0.005165618844330311,
-0.03435123339295387,
0.01994931511580944,
0.053241390734910965,
-0.013043712824583054,
-0.0974356085062027,
-0.05069586634635925,
-0.019439689815044403,
0.010477393865585327,
-0.014279860071837902,
-0.016008811071515083,
-0.055230144411325455,
-0.010522987693548203,
0.06529215723276138,
-0.04114474728703499,
-0.038074005395174026,
0.007529070600867271,
-0.08039841055870056,
-0.009825632907450199,
0.025234995409846306,
-0.03929564729332924,
0.030222158879041672,
-0.0668550506234169,
0.033761680126190186,
-0.013020550832152367,
0.053323838859796524,
-0.02135828509926796,
0.02978835068643093,
-0.056697431951761246,
-0.02033146098256111,
-0.0056531080044806,
0.041377414017915726,
0.05046712979674339,
-0.02335774339735508,
0.050633300095796585,
0.03555050864815712,
-0.002580840140581131,
0.042901698499917984,
-0.009196673519909382,
0.007946937344968319,
0.02457958087325096,
-0.0399140901863575,
0.0012444555759429932,
0.015571863390505314,
0.03788168355822563,
-0.029171669855713844,
-0.003626564983278513,
-0.015600788407027721,
-0.007995164953172207,
-0.029434964060783386,
0.012417650781571865,
0.005137254483997822,
0.008261171169579029,
0.02343636564910412,
0.01951378956437111,
0.049567416310310364,
0.041435081511735916,
-0.013763856142759323,
0.06409329921007156,
-0.011180318892002106,
-0.007657673675566912,
-0.013832464814186096,
-0.03622204437851906,
-0.024153737351298332,
0.030372753739356995,
0.04012751206755638,
-0.03633110970258713,
-0.025198303163051605,
0.018129507079720497,
0.005733134225010872,
0.016950463876128197,
0.07224404066801071,
-0.022860640659928322,
-0.04711287096142769,
-0.020329367369413376,
0.02087421342730522,
0.011599724180996418,
-0.0005933428183197975,
0.013190871104598045,
-0.05327333137392998,
-0.036418523639440536,
-0.03525395318865776,
-0.02757171168923378,
0.01100678090006113,
0.013382155448198318,
-0.005434520076960325,
0.05938689783215523,
0.03045569732785225,
-0.05987398698925972,
-0.016308819875121117,
0.021646510809659958,
-0.043174125254154205,
0.03564785048365593,
0.010690869763493538,
0.09437199681997299,
-0.06258252263069153,
-0.09035269916057587,
0.01408226229250431,
-0.020945841446518898,
-0.031420037150382996,
0.015815654769539833,
0.029018977656960487,
-0.024534789845347404,
-0.014772352762520313,
-0.008079455234110355,
0.043035730719566345,
-0.06280887126922607,
-0.020454587414860725,
0.06119058281183243,
0.010397697798907757,
0.033706650137901306,
-0.06909015029668808,
-0.012994356453418732,
0.007391607854515314,
-0.011631213128566742,
-0.010968174785375595,
0.046452846378088,
-0.028054960072040558,
0.00807818491011858,
-0.029165349900722504,
-0.03424307703971863,
-0.017317892983555794,
0.060381386429071426,
-0.01431119255721569,
-0.02452486753463745,
-0.026868171989917755,
0.026440836489200592,
0.05132347345352173,
0.03345322236418724,
-0.027194883674383163,
0.041670091450214386,
0.053303539752960205,
0.0433865450322628,
-0.03784690424799919,
0.037693507969379425,
0.028777165338397026,
-0.05700782313942909,
-0.044521983712911606,
0.026290206238627434,
0.012098032049834728,
-0.04092765599489212,
0.03493094816803932,
0.012423771433532238,
0.014790617860853672,
-0.05225137993693352,
-0.03821251913905144,
0.05319187790155411,
0.01044783927500248,
-0.01893845945596695,
-0.009664026089012623,
0.007467116694897413,
-0.023256264626979828,
0.0471995510160923,
-0.014319687150418758,
-0.00304874824360013,
-0.020625410601496696,
-0.041729945689439774,
0.0056116823107004166,
0.014492141082882881,
0.006629636511206627,
0.0560702383518219,
0.000014291314073489048,
0.0907803401350975,
-0.04029013216495514,
0.030009564012289047,
-0.03850593417882919,
-0.046674810349941254,
0.022851385176181793,
0.05859290435910225,
0.04297153279185295,
0.039827052503824234,
-0.006447031162679195,
-0.030114181339740753,
0.03309200331568718,
0.06171923130750656,
0.04437439888715744,
-0.005496480502188206,
-0.021691540256142616,
-0.0005212343530729413,
0.022192873060703278,
0.030022500082850456,
-0.06302986294031143,
-0.03710094094276428,
0.02122589573264122,
0.039677370339632034,
-0.026010015979409218,
0.009756970219314098,
-0.03997698426246643,
0.03516532853245735,
-0.05540500208735466,
-0.05883360654115677,
0.044484756886959076,
0.029376056045293808,
0.02533669024705887,
0.037793006747961044,
-0.0028212382458150387,
-0.01255840715020895,
0.03945538401603699,
0.003012034809216857,
0.0014307769015431404,
-0.02274383418262005,
0.013832876458764076,
0.00564779294654727,
0.037554096430540085,
-0.026270108297467232,
0.031690362840890884,
-0.014027269557118416,
-0.005589477252215147,
0.06109359487891197,
-0.047266971319913864,
0.04102316498756409,
0.042996227741241455,
0.029805326834321022,
-0.023118220269680023,
0.014194275252521038,
0.004010939504951239,
0.01799899712204933,
0.035441409796476364,
-0.013697333633899689,
0.07598762959241867,
0.008250709623098373,
0.03682830184698105,
0.08076679706573486,
0.014287833124399185,
0.005412754602730274,
0.04763973876833916,
0.077414870262146,
0.019939415156841278,
-0.015151645056903362,
0.030685298144817352,
-0.03937254473567009,
0.03482404723763466,
-0.06293800473213196,
0.03297356143593788,
-0.0242924727499485,
-0.00898574199527502,
0.03368803858757019,
0.030737774446606636,
-0.038991138339042664,
-0.014164783991873264,
0.006238928996026516,
-0.017726384103298187,
0.02121160365641117,
-0.011879864148795605,
-0.01746164634823799,
0.010296620428562164,
0.00673705292865634,
0.026588991284370422,
-0.07819073647260666,
-0.02922089770436287,
-0.014881910756230354,
-0.00957187544554472,
-0.033591777086257935,
-0.0975913405418396,
-0.013765661977231503,
-0.05784124135971069,
-0.020047448575496674,
0.038115937262773514,
0.012331411242485046,
-0.02881227433681488,
-0.045215051621198654,
0.011005635373294353,
-0.03526069223880768,
-0.039917413145303726,
-0.04807005450129509,
-0.07106532901525497,
-0.038161102682352066,
-0.09038165956735611,
0.034975435584783554,
0.05990330129861832,
0.0013202159898355603,
-0.007460279855877161,
0.007056485861539841,
-0.0028682006523013115,
-0.007723884657025337,
0.053692497313022614,
0.05822964012622833,
-0.02931027114391327,
-0.056513503193855286,
0.03286213427782059,
-0.023899773135781288,
0.028029462322592735,
0.011499498039484024,
-0.031449224799871445,
0.08007852733135223,
0.07236737012863159,
-0.0077093844301998615,
0.019125740975141525,
-0.022059204056859016,
-0.02474626898765564,
-0.05685489997267723,
-0.03844700753688812,
-0.02794255129992962,
-0.035844746977090836,
-0.06053262948989868,
-0.05300170183181763,
-0.029377344995737076,
-0.05051598325371742,
-0.009670679457485676,
0.009622158482670784,
0.013639233075082302,
0.015081414021551609,
0.035730116069316864,
0.02991546504199505,
0.045252032577991486,
-0.036158785223960876,
-0.0716458186507225,
0.05629998818039894,
-0.005745135713368654,
0.007289269007742405,
-0.10741344094276428,
-0.0008097125682979822,
0.023828398436307907,
0.00017684286285657436,
0.023677611723542213,
-0.025691784918308258,
0.07392653822898865,
-0.013542521744966507,
0.00576139148324728,
-0.010560277849435806,
0.010388307273387909,
-0.002359256613999605,
-0.013273381628096104,
-0.015241065993905067,
0.006293696817010641,
-0.005978782661259174,
-0.01934267394244671,
-0.011232261545956135,
0.050423432141542435,
-0.05404364690184593,
-0.06317582726478577,
-0.011836002580821514,
0.048064108937978745,
0.055304720997810364,
0.0038285604678094387,
-0.04870219901204109,
-0.017544185742735863,
-0.06991222500801086,
-0.03318466246128082,
0.04168098419904709,
-0.0007133037433959544,
0.005144133698195219,
0.04472187161445618,
0.03329451382160187,
-0.004181159194558859,
0.050777334719896317,
0.03185153752565384,
0.048708099871873856,
0.005462574772536755,
-0.08032454550266266,
0.005119082983583212,
-0.006638839840888977,
0.023644452914595604,
-0.019242964684963226,
-0.02128715254366398,
-0.04054262861609459,
-0.11324142664670944,
-0.013022257015109062,
0.02084421180188656,
-0.00037885390338487923,
-0.015221808105707169,
0.0358860082924366,
-0.005523961037397385,
0.005249470006674528,
-0.02165626361966133,
0.015256239101290703,
0.03871545195579529,
-0.050261761993169785,
0.038938432931900024,
-0.0176876001060009,
0.015448292717337608,
-0.05372922867536545,
0.013678399845957756,
-0.04323582723736763,
-0.019309289753437042,
0.012260067276656628,
0.0696520134806633,
-0.004483507014811039,
0.03976307064294815,
0.06756599247455597,
0.02649717405438423,
-0.03400138020515442,
0.016248494386672974,
0.07427419722080231,
-0.03594963252544403,
-0.03900759294629097,
-0.02055281586945057,
0.00982053391635418,
-0.023718606680631638,
0.0089897271245718,
-0.014247115701436996,
0.04600701108574867,
0.018179697915911674,
-0.007994072511792183,
0.019318362697958946,
-0.00534878671169281,
-0.007620800286531448,
-0.019969958811998367,
-0.07201570272445679,
-0.015988856554031372,
0.006921825930476189,
-0.018443915992975235,
0.003771017072722316,
0.0030413451604545116,
-0.002044769236817956,
0.06065161153674126,
0.02579246275126934,
-0.04737081378698349,
-0.021608881652355194,
0.05037304759025574,
0.029807602986693382,
-0.0224913302809,
-0.07678861171007156,
-0.02040880359709263,
0.04197268187999725,
0.048727139830589294,
-0.03209351375699043,
-0.07073411345481873,
0.024187449365854263,
0.04929071292281151,
-0.036479245871305466,
0.07379109412431717,
0.00039539142744615674,
0.047313936054706573,
0.04353955015540123,
-0.028997965157032013,
0.04269229248166084,
-0.022253500297665596,
-0.0041029443964362144,
0.0027195003349334,
0.05829746276140213,
-0.010821948759257793,
-0.027586476877331734,
-0.052475374191999435,
0.05220871791243553,
0.024511808529496193,
0.050407774746418,
0.0416545495390892,
-0.014136891812086105,
-0.026860196143388748,
0.0008262902265414596,
0.03360934928059578,
-0.03305211290717125,
-0.009584746323525906,
0.03899690881371498,
0.0700024962425232,
-0.039156679064035416,
-0.030539562925696373,
-0.01642121560871601,
-0.023614728823304176,
0.03752479702234268,
-0.0013451494742184877,
-0.041189927607774734,
-0.036021728068590164,
0.059753939509391785,
-0.008433233015239239,
-0.010998445563018322,
-0.06473037600517273,
0.05126095563173294,
-0.01878530904650688,
-0.02526105009019375,
0.027955785393714905,
0.014608983881771564,
0.0343959666788578,
0.06877078115940094,
0.02247614599764347,
0.019449632614850998,
-0.018974127247929573,
0.04632335528731346,
-0.011584932915866375,
-0.03616973012685776,
-0.006024079862982035,
-0.05183679237961769,
-0.0068525453098118305,
-0.0077106100507080555,
-0.040311314165592194,
-0.03703206777572632,
-0.0571211539208889,
0.005051561165601015,
0.017022784799337387,
-0.022922463715076447,
-0.02183973230421543,
0.054200153797864914,
-0.030417287722229958,
-0.040920741856098175,
-0.03604927659034729,
-0.019346922636032104,
-0.06364333629608154,
-0.07273116707801819,
0.027692386880517006,
0.013215537182986736,
0.0525747574865818,
0.038689859211444855,
0.02761397883296013,
0.020947350189089775,
0.019887138158082962,
-0.040346454828977585,
0.025632038712501526,
-0.0028669768944382668,
-0.016970057040452957,
-0.02200133726000786,
0.020886791869997978,
0.007594109047204256,
0.04313040152192116,
-0.02672693505883217,
0.02816847153007984,
0.024101240560412407,
-0.011292743496596813,
-0.03835570067167282,
0.009686575271189213,
0.023625114932656288,
-0.06270667910575867,
-0.05327114462852478,
-0.002812796737998724,
-0.035068102180957794,
0.01616688072681427,
-0.022494500502943993,
-0.01769494079053402,
-0.036280278116464615,
-0.008514923974871635,
0.03320512920618057,
-0.02319463901221752,
-0.03301023319363594,
0.013658509589731693,
-0.004112341441214085,
0.0191012192517519,
-0.0665455162525177,
0.032537441700696945,
-0.05173075944185257,
0.0013925194507464767,
-0.012260119430720806,
-0.004235013388097286,
-0.0464777834713459,
0.05247412994503975,
-0.006556945387274027,
-0.03088720329105854,
0.021447917446494102,
0.04534066468477249,
-0.004141811281442642,
0.009376892820000648,
-0.001923933858051896,
0.029593193903565407,
-0.04005112126469612,
0.08694244176149368,
-0.053443193435668945,
0.025103077292442322,
-0.009870403446257114,
0.01599571295082569,
-0.011298603378236294,
-0.012256070040166378,
-0.033912625163793564,
-0.020942389965057373,
0.04771008342504501,
0.05330317094922066,
0.021643182262778282,
0.0481409914791584,
0.0031087170355021954,
0.007889780215919018,
0.021630682051181793,
-0.05989304557442665,
-0.04559894651174545,
-0.010096549987792969,
0.0061446125619113445,
-0.013624807819724083,
0.049885667860507965,
0.06199761852622032,
-0.045038893818855286,
-0.07745648175477982,
0.0396551750600338,
0.029521523043513298,
0.011377053335309029,
0.00442215520888567,
0.03400642052292824,
0.020284436643123627,
0.031135911121964455,
-0.024451538920402527,
-0.01065085455775261,
0.007899980060756207,
-0.05083160474896431,
0.03717764467000961,
-0.000494356092531234,
0.028949683532118797,
0.015472766011953354,
-0.03901306912302971,
-0.019718965515494347,
0.05341438204050064,
0.03732750937342644,
0.01879250817000866,
-0.004446524661034346,
-0.038796357810497284,
0.036130115389823914,
-0.0002976027026306838,
-0.04651869460940361,
0.0019815051928162575,
-0.004961118102073669,
-0.02068416215479374,
0.038658443838357925,
-0.02573937363922596,
0.02177867293357849,
0.04241573065519333,
0.03937656059861183,
-0.0008294382132589817,
0.06621982157230377,
-0.022631172090768814,
0.013184186071157455,
0.02988862432539463,
-0.05961412936449051,
0.012502861209213734,
-0.05477611720561981,
0.06422121077775955,
-0.06828673928976059,
0.050763241946697235,
0.05656871572136879,
-0.006168314255774021,
0.011072647757828236,
-0.016019973903894424,
-0.04259346053004265,
0.012619447894394398,
-0.01570799946784973,
0.08308782428503036,
0.023015471175312996,
-0.05418833717703819,
0.08095083385705948,
0.029439354315400124,
-0.0451146736741066,
0.03759180009365082,
0.050936613231897354,
0.01861608773469925,
0.025835029780864716,
0.04855413734912872,
-0.026197627186775208,
0.006526944227516651,
-0.041169993579387665,
0.03178541734814644,
-0.04650156944990158,
-0.022646253928542137,
0.02647489681839943,
-0.029181333258748055,
-0.011119810864329338,
0.04800791293382645,
-0.012282559648156166,
-0.03262505307793617,
0.058595605194568634,
-0.04007625952363014,
-0.04290035367012024,
0.007929742336273193,
0.007442418485879898,
-0.018062494695186615,
-0.004596988670527935,
-0.02566572278738022,
0.03007703647017479,
0.0010959383798763156,
-0.0013627629959955812,
-0.03632348030805588,
-0.01773807778954506,
0.01335618644952774,
-0.05649206042289734,
-0.0452265739440918,
0.056170567870140076,
-0.017096197232604027,
-0.033482201397418976,
0.022323794662952423,
0.029659146443009377,
0.01985141634941101,
0.02772965095937252,
-0.01281569991260767,
0.021507954224944115,
-0.0855884999036789,
-0.01590992882847786,
0.010829150676727295,
0.01784544810652733,
0.022214025259017944,
-0.009293856099247932,
0.028014127165079117,
0.05049930885434151,
0.022078704088926315,
0.008570905774831772,
-0.01707388460636139,
-0.034205786883831024,
0.020864032208919525,
-0.032918933779001236,
-0.006483709439635277,
0.0006566448719240725,
-0.048051148653030396,
-0.028887292370200157,
-0.028998572379350662,
-0.043432772159576416,
0.04473229870200157,
-0.04936297610402107,
0.0021141113247722387,
0.036843232810497284,
-0.019027866423130035,
-0.034549180418252945,
-0.08884403109550476,
-0.033422283828258514,
-0.032703135162591934,
0.004635030869394541,
0.03395608067512512,
-0.00788195338100195,
0.03646901622414589,
-0.028433335945010185,
-0.048035942018032074,
0.026942312717437744,
0.0407182052731514,
-0.03060811012983322,
0.035820122808218,
0.0715508759021759,
-0.029500529170036316,
0.036850206553936005,
0.03132276609539986,
-0.04025328904390335,
0.005059265531599522,
0.010902104899287224,
0.003682895563542843,
0.032316818833351135,
0.04407953843474388,
-0.03968493640422821,
-0.014410787262022495,
-0.05849180743098259,
-0.018793554976582527,
-0.05725165456533432,
0.017587319016456604,
0.03489834815263748
] |
AnonymousSub/AR_rule_based_roberta_only_classfn_twostage_epochs_1_shard_1 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
language: en
tags:
- multivae
license: apache-2.0
---
### Downloading this model from the Hub
This model was trained with multivae. It can be downloaded or reloaded using the method `load_from_hf_hub`
```python
>>> from multivae.models import AutoModel
>>> model = AutoModel.load_from_hf_hub(hf_hub_path="your_hf_username/repo_name")
```
| [
-0.03653835132718086,
-0.0589064285159111,
-0.005368987563997507,
0.005391913000494242,
0.05030456930398941,
0.01870766468346119,
-0.006683170795440674,
-0.011249218136072159,
-0.02457122877240181,
0.02907027117908001,
0.0364757664501667,
0.00390697130933404,
0.03047722764313221,
0.04623886197805405,
-0.03794432058930397,
-0.020379548892378807,
-0.016867248341441154,
0.01913566328585148,
-0.06022094935178757,
0.003557350253686309,
0.03541235625743866,
0.017231319099664688,
-0.01924034021794796,
0.056218892335891724,
-0.009203637950122356,
-0.0014166191685944796,
0.005358221475034952,
0.02857666276395321,
0.03042895533144474,
-0.03500586375594139,
-0.006961334962397814,
-0.018316447734832764,
-0.04089336842298508,
-0.027679461985826492,
-0.012879469431936741,
0.0004695974930655211,
0.013268986716866493,
0.017253544181585312,
0.04153020307421684,
0.03985690698027611,
-0.033293452113866806,
0.006735892966389656,
-0.03065025433897972,
-0.02076013572514057,
0.051138363778591156,
0.017789455130696297,
-0.05357955023646355,
-0.07007883489131927,
0.019428210332989693,
-0.03591998293995857,
-0.052648235112428665,
-0.08905493468046188,
-0.023169465363025665,
0.03132591024041176,
-0.01311787310987711,
-0.03147052973508835,
-0.06035957112908363,
0.0005433755577541888,
0.05781544744968414,
-0.05618497356772423,
-0.004224841948598623,
0.022874267771840096,
-0.07422199100255966,
0.004319923929870129,
0.06732691824436188,
-0.04297355189919472,
0.009938218630850315,
-0.010648590512573719,
0.025675149634480476,
-0.026315076276659966,
0.056430451571941376,
-0.03673400357365608,
0.014852190390229225,
-0.061370670795440674,
-0.010391832329332829,
-0.0005625757621601224,
0.038416389375925064,
0.04170273616909981,
-0.03764668107032776,
0.05764945596456528,
0.00322168692946434,
-0.005975981708616018,
0.02824198268353939,
-0.016486050561070442,
0.0031241162214428186,
0.018756357952952385,
-0.027907593175768852,
0.014062057249248028,
-0.011407959274947643,
0.04382830485701561,
-0.05304591730237007,
-0.04236830025911331,
0.023244712501764297,
-0.02388385869562626,
-0.029878610745072365,
0.04557359963655472,
0.034064292907714844,
-0.027813654392957687,
0.026241932064294815,
0.0402655191719532,
0.02101537212729454,
0.02551089972257614,
-0.004422211088240147,
0.0654582604765892,
-0.01650647446513176,
0.0011813045712187886,
-0.04754916578531265,
-0.04233439266681671,
-0.02593913860619068,
0.031235165894031525,
0.015317457728087902,
-0.04126176983118057,
0.0009994927095249295,
0.06201457977294922,
0.0063222250901162624,
-0.008705283515155315,
0.07001321762800217,
-0.03317420929670334,
-0.019966110587120056,
-0.061003874987363815,
0.05232994630932808,
0.02523181214928627,
-0.02481016516685486,
0.023239443078637123,
-0.03770006075501442,
0.0008221686002798378,
-0.02440531924366951,
-0.042343128472566605,
0.009290887042880058,
0.019469620659947395,
-0.00979266595095396,
0.029885392636060715,
0.01523866131901741,
-0.08386615663766861,
0.023876044899225235,
0.0401790626347065,
-0.05475885421037674,
0.025554655119776726,
0.015381718054413795,
0.09178122878074646,
-0.03722762688994408,
-0.02624625526368618,
0.02287149801850319,
0.0038300289306789637,
-0.01896735467016697,
0.020021220669150352,
-0.007547722198069096,
-0.015626562759280205,
-0.03373004496097565,
-0.02159873954951763,
0.03777804225683212,
-0.02688191644847393,
-0.03127949684858322,
0.06196681782603264,
-0.027126803994178772,
0.052806172519922256,
-0.014125889167189598,
0.026248304173350334,
0.0004607862501870841,
-0.0056815617717802525,
0.008356462232768536,
0.04333847761154175,
-0.01113801822066307,
0.0022598665673285723,
-0.01629800722002983,
-0.04515685886144638,
-0.010635726153850555,
0.10414169728755951,
-0.008871796540915966,
-0.03164014592766762,
-0.03948146849870682,
0.020742086693644524,
0.008994382806122303,
0.02797471173107624,
-0.00715639116242528,
0.02146308124065399,
0.050528883934020996,
0.039864350110292435,
-0.01858575828373432,
0.053466010838747025,
0.01971730962395668,
-0.011312817223370075,
-0.013586297631263733,
0.024678101763129234,
0.0039931959472596645,
-0.02253223955631256,
-0.007955110631883144,
0.06399843841791153,
-0.018308041617274284,
-0.037877604365348816,
-0.004587984178215265,
0.04949965327978134,
0.010265983641147614,
-0.01702883094549179,
0.007616266142576933,
-0.012751972302794456,
-0.022916046902537346,
0.034706246107816696,
-0.031529828906059265,
-0.037947800010442734,
-0.02574331872165203,
-0.002938555320724845,
0.002273542806506157,
0.00022843146871309727,
0.03125346824526787,
0.032577887177467346,
0.005259580444544554,
0.08569318056106567,
-0.009891337715089321,
0.007467861287295818,
-0.044047728180885315,
-0.06567508727312088,
0.0017082549165934324,
0.03744647279381752,
0.027750128880143166,
0.04771023243665695,
-0.0012689479626715183,
-0.06591365486383438,
0.05289948359131813,
0.0638592317700386,
0.05741448327898979,
0.009537696838378906,
-0.061723481863737106,
-0.010344740003347397,
0.0017675760900601745,
0.05783488601446152,
-0.0676586776971817,
-0.029895054176449776,
0.02839510515332222,
0.07000762224197388,
-0.0477648600935936,
0.017441093921661377,
-0.01591043546795845,
0.03875073045492172,
-0.030673163011670113,
-0.06163795292377472,
0.024117514491081238,
0.04688875749707222,
0.01557838823646307,
0.01781550422310829,
0.005601782817393541,
-0.007133231498301029,
0.011860694736242294,
0.04811428487300873,
0.006991838105022907,
-0.05325780808925629,
-0.0010358091676607728,
0.04554852470755577,
0.07897786051034927,
-0.04238736256957054,
0.06762015074491501,
-0.006745492108166218,
0.017879273742437363,
0.022831957787275314,
-0.07176157087087631,
0.03214283287525177,
0.06936555355787277,
0.00851456355303526,
-0.03179458901286125,
0.035948142409324646,
0.007337749470025301,
0.035547755658626556,
0.03566986322402954,
0.026407184079289436,
0.06382487714290619,
0.019715839996933937,
0.027780979871749878,
0.057460758835077286,
0.01768632046878338,
0.012403137050569057,
0.033303841948509216,
0.0814175009727478,
0.006320151034742594,
0.00927774142473936,
0.04905739799141884,
-0.03845897316932678,
0.01477555837482214,
-0.03579850122332573,
-0.019456615671515465,
-0.007950391620397568,
0.014951669611036777,
0.05383428931236267,
-0.015130506828427315,
-0.0000699775482644327,
0.02240668423473835,
-0.003327568992972374,
-0.019619202241301537,
0.02571139857172966,
-0.02133522555232048,
-0.0002596390841063112,
0.005150557961314917,
-0.00167705281637609,
0.02129850722849369,
-0.07278750091791153,
-0.0222091693431139,
-0.018296632915735245,
-0.055469997227191925,
-0.018862349912524223,
-0.03941299021244049,
-0.01736075058579445,
-0.06693108379840851,
-0.0339493602514267,
0.036194704473018646,
0.007574363145977259,
-0.009996656328439713,
-0.03893806412816048,
0.009445910342037678,
-0.017599545419216156,
-0.038339462131261826,
-0.047982107847929,
-0.07200756669044495,
-0.03321781009435654,
-0.06784951686859131,
0.040320366621017456,
0.008416040800511837,
0.010477881878614426,
-0.009763135574758053,
0.006483654025942087,
-0.009264299646019936,
-0.023035909980535507,
0.04156135767698288,
0.05951297655701637,
-0.03179117664694786,
-0.05032818764448166,
0.017294397577643394,
0.0009445754694752395,
-0.01307474821805954,
-0.010944237932562828,
-0.0434337817132473,
0.061762385070323944,
0.03719564527273178,
0.013990147039294243,
-0.0009296219795942307,
0.011805793270468712,
-0.05474938824772835,
-0.03612641245126724,
-0.01594512164592743,
-0.05625859647989273,
-0.017202097922563553,
-0.023007966578006744,
-0.05097094178199768,
-0.006029908545315266,
-0.060225293040275574,
-0.0330386646091938,
-0.02017311006784439,
-0.018388673663139343,
0.01655513606965542,
0.06911256164312363,
0.034980855882167816,
0.039885956794023514,
-0.03476468846201897,
-0.030564401298761368,
0.05419059842824936,
0.02678488753736019,
-0.014265786856412888,
-0.06258124858140945,
-0.04423857852816582,
0.030142221599817276,
0.007431927602738142,
-0.0028874347917735577,
-0.02575753629207611,
0.06155521422624588,
0.012970433570444584,
0.0152598200365901,
0.017043650150299072,
-0.0312403105199337,
-0.017318101599812508,
-0.01936963014304638,
0.011372590437531471,
-0.017395740374922752,
-0.05934428423643112,
0.00547734135761857,
0.005321012809872627,
0.04847993329167366,
-0.06779906898736954,
-0.04321813955903053,
-0.02664348855614662,
0.01960359886288643,
0.01865725964307785,
-0.008989344350993633,
-0.040652841329574585,
-0.010854486376047134,
-0.07156755030155182,
-0.018482692539691925,
0.034451477229595184,
-0.02213849313557148,
0.017007149755954742,
0.0784391313791275,
0.03059997595846653,
-0.00704371789470315,
0.07584229856729507,
0.03677073121070862,
0.050171494483947754,
0.03214385360479355,
-0.054493248462677,
0.012537938542664051,
-0.03172309324145317,
0.03760753944516182,
-0.0010339806322008371,
-0.006213419605046511,
-0.052086327224969864,
-0.06945781409740448,
-0.028190329670906067,
0.032078202813863754,
-0.007588554173707962,
-0.012797923758625984,
0.07419191300868988,
-0.03016509674489498,
-0.029872683808207512,
-0.029929881915450096,
0.00508941151201725,
0.03831838443875313,
-0.05511895939707756,
0.0778065174818039,
0.015368056483566761,
0.03998766839504242,
-0.035368870943784714,
0.008705508895218372,
-0.027681201696395874,
-0.034389033913612366,
0.023716270923614502,
0.04368262737989426,
0.020487602800130844,
0.07223216444253922,
0.0412609688937664,
-0.011896011419594288,
-0.020987125113606453,
0.07332876324653625,
0.04070275276899338,
-0.00084888213314116,
-0.0331268310546875,
0.024056782945990562,
-0.014556762762367725,
-0.03178019821643829,
-0.02759299799799919,
-0.024090660735964775,
0.04913433641195297,
0.04447862505912781,
0.0015229274285957217,
0.03690577670931816,
0.00037670950405299664,
-0.0037687509320676327,
-0.02073991857469082,
-0.027390409260988235,
-0.008921224623918533,
0.0132444454357028,
0.008542349562048912,
-0.001143895206041634,
0.052674826234579086,
0.0017333179712295532,
0.04572582244873047,
0.04831893369555473,
-0.033332325518131256,
-0.05508149787783623,
0.00018735101912170649,
0.016268517822027206,
-0.029173340648412704,
-0.057619206607341766,
-0.015689203515648842,
0.05635377764701843,
0.03118319995701313,
-0.025134123861789703,
-0.0759405717253685,
0.011015956290066242,
0.06206187233328819,
-0.04164844751358032,
0.05204584077000618,
-0.012455662712454796,
0.031056135892868042,
0.06679674237966537,
-0.03188219666481018,
0.01468038558959961,
-0.035865746438503265,
0.008008217439055443,
-0.010002235881984234,
0.031239453703165054,
-0.01651153899729252,
-0.054837387055158615,
-0.018532898277044296,
0.021179702132940292,
0.049981482326984406,
0.029545292258262634,
0.026840638369321823,
-0.04692783206701279,
-0.06494230031967163,
-0.01127168070524931,
0.036284614354372025,
-0.026850536465644836,
0.00256329239346087,
0.03420489653944969,
0.017835408449172974,
-0.05337918922305107,
-0.023192614316940308,
-0.0292477086186409,
-0.01697058603167534,
0.025162935256958008,
-0.012227875180542469,
-0.04750435799360275,
-0.0450243316590786,
0.02426774986088276,
0.013895806856453419,
-0.02674209326505661,
-0.09684325754642487,
-0.002129973378032446,
0.0006977980956435204,
-0.013505271635949612,
0.06590434163808823,
0.0022066175006330013,
0.050470057874917984,
0.0651717260479927,
-0.016715550795197487,
0.014414706267416477,
-0.03768252208828926,
0.05724985525012016,
-0.029064053669571877,
-0.04064387455582619,
-0.015490545891225338,
-0.04138048738241196,
-0.04646379500627518,
-0.019151324406266212,
-0.038720518350601196,
-0.022841133177280426,
-0.020001763477921486,
0.006155236158519983,
0.00047212716890498996,
0.005495082121342421,
0.006653661839663982,
0.01134965568780899,
-0.03663972392678261,
-0.011128812097012997,
-0.061596017330884933,
0.000915598648134619,
-0.055635448545217514,
-0.033482976257801056,
0.05334125831723213,
0.01955190859735012,
0.014710613526403904,
0.01036012452095747,
0.01727980561554432,
0.0344591848552227,
0.01705937087535858,
-0.021502044051885605,
0.015048789791762829,
0.010929486714303493,
-0.05990331247448921,
-0.016013605520129204,
0.010871176607906818,
0.021603981032967567,
0.032593097537755966,
-0.019438982009887695,
0.02213236317038536,
0.01013191044330597,
-0.008355917409062386,
0.0003303708217572421,
0.026949316263198853,
-0.0035116630606353283,
-0.03532508760690689,
-0.025714943185448647,
0.007779297884553671,
-0.05091191083192825,
0.031202208250761032,
-0.033075202256441116,
-0.008108828216791153,
0.009064842946827412,
0.009753496386110783,
0.04764978960156441,
-0.005467759910970926,
-0.03557697683572769,
0.04434780776500702,
-0.023004859685897827,
-0.017728688195347786,
-0.0706191435456276,
0.00539025291800499,
-0.030301032587885857,
0.030586401000618935,
-0.012656879611313343,
-0.0219406858086586,
-0.04371989145874977,
0.05924983695149422,
-0.029537109658122063,
-0.02484324388206005,
-0.024910511448979378,
0.021409712731838226,
-0.03784727677702904,
0.06277491897344589,
-0.0011286260560154915,
-0.006248863413929939,
-0.022471634671092033,
0.0630207285284996,
-0.05889875814318657,
-0.017696239054203033,
-0.04096285253763199,
-0.020944567397236824,
-0.009959875606000423,
-0.014568155631422997,
-0.046436261385679245,
-0.016878027468919754,
0.016576219350099564,
0.035287123173475266,
0.032026566565036774,
0.000588736031204462,
-0.02583296038210392,
-0.007536584045737982,
0.03040492907166481,
-0.068753182888031,
-0.036406029015779495,
-0.010080023668706417,
0.017734099179506302,
0.009793422184884548,
0.06755339354276657,
0.051092732697725296,
-0.05605773255228996,
-0.055320896208286285,
0.07995570451021194,
0.02032618038356304,
0.018147442489862442,
0.002044129651039839,
0.031354401260614395,
0.024805355817079544,
0.024092627689242363,
-0.03571571782231331,
-0.02488197758793831,
-0.023432862013578415,
-0.024376749992370605,
0.025958117097616196,
-0.016568772494792938,
0.022367695346474648,
0.022098414599895477,
-0.04242313280701637,
-0.01893918216228485,
0.055162690579891205,
0.038023367524147034,
0.04904843866825104,
-0.04269510880112648,
-0.0378771647810936,
0.02934284321963787,
0.004156280774623156,
-0.03855809196829796,
0.01436593383550644,
0.018413908779621124,
-0.04330476000905037,
0.06634138524532318,
-0.014324516989290714,
0.02834511175751686,
0.052519965916872025,
0.05344625934958458,
-0.040914203971624374,
0.04283503070473671,
-0.03738430142402649,
0.003686098614707589,
0.08616779744625092,
-0.07128587365150452,
-0.014768078923225403,
-0.03466568514704704,
0.06007346510887146,
-0.0729433223605156,
0.06740841269493103,
0.023366525769233704,
0.01868862472474575,
0.031534068286418915,
-0.06245650723576546,
-0.022734442725777626,
-0.011579527519643307,
-0.057002704590559006,
0.10827931761741638,
0.016981249675154686,
-0.0632329210639,
0.07182544469833374,
0.012747563421726227,
-0.08543266355991364,
0.023531705141067505,
0.014975626952946186,
0.003253230592235923,
0.028079234063625336,
0.033339399844408035,
-0.03481694683432579,
0.014923774637281895,
-0.030595330521464348,
0.039692338556051254,
-0.0513954795897007,
0.01366232056170702,
0.04060288891196251,
-0.03227020800113678,
-0.008016284555196762,
0.04239697381854057,
-0.012026558630168438,
0.005741189233958721,
0.0013844980858266354,
-0.04056929051876068,
-0.062307290732860565,
0.0020008462015539408,
0.025496279820799828,
-0.004101249855011702,
0.012021617032587528,
-0.019987130537629128,
0.007738293148577213,
0.02151343785226345,
-0.010122152045369148,
-0.016517380252480507,
-0.015290522016584873,
0.03204130381345749,
-0.07103744149208069,
-0.04747762531042099,
0.008366077207028866,
-0.004246720112860203,
-0.03522021323442459,
0.013832082971930504,
0.0026200604625046253,
0.019243020564317703,
0.007822987623512745,
0.0037739244289696217,
0.005129584111273289,
-0.06437056511640549,
-0.014522751793265343,
0.011046298779547215,
-0.003293295856565237,
0.035204265266656876,
-0.02721576765179634,
0.040247976779937744,
0.02255127765238285,
0.00174096436239779,
0.016272924840450287,
-0.024860508739948273,
-0.012515773996710777,
0.008795349858701229,
-0.05519641190767288,
-0.002066368702799082,
-0.022644126787781715,
-0.031630128622055054,
-0.035480618476867676,
0.010400013998150826,
-0.014320412650704384,
0.05618041381239891,
-0.045323509722948074,
0.014688673429191113,
0.0010307467309758067,
-0.01029975526034832,
-0.05325010418891907,
-0.11370205134153366,
-0.03998284786939621,
-0.03198140859603882,
0.025985579937696457,
0.0006696816417388618,
-0.024047495797276497,
0.03685036674141884,
-0.019789615646004677,
-0.06844426691532135,
0.03613574057817459,
0.019504504278302193,
-0.010046949610114098,
0.04757368937134743,
0.03573896363377571,
-0.05206426605582237,
0.015363717451691628,
0.04449347034096718,
-0.02272219955921173,
0.05151967331767082,
-0.0030764639377593994,
-0.0015816300874575973,
0.006071071606129408,
-0.0007945179240778089,
-0.043229710310697556,
-0.01063796877861023,
-0.054350875318050385,
-0.04731578379869461,
-0.007025117054581642,
-0.01608392223715782,
0.054811254143714905
] |
AnonymousSub/AR_rule_based_roberta_twostagetriplet_hier_epochs_1_shard_1 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 1 | null | ---
language:
- zh
license: mit
tags:
- 1.1.0
- generated_from_trainer
datasets:
- facebook/voxpopuli
model-index:
- name: SpeechT5 TTS Dutch neunit
results: []
---
<!-- 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. -->
# SpeechT5 TTS Dutch neunit
This model is a fine-tuned version of [microsoft/speecht5_tts](https://huggingface.co/microsoft/speecht5_tts) on the VoxPopuli dataset.
## 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
- gradient_accumulation_steps: 4
- total_train_batch_size: 32
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 500
- training_steps: 4000
- mixed_precision_training: Native AMP
### Training results
### Framework versions
- Transformers 4.29.0.dev0
- Pytorch 2.0.0+cu117
- Datasets 2.11.0
- Tokenizers 0.12.1
| [
-0.019538260996341705,
-0.02061576209962368,
-0.014291264116764069,
0.03378823772072792,
0.03110615722835064,
0.0426911935210228,
-0.007505070883780718,
-0.0137670012190938,
-0.027190418913960457,
0.05807897448539734,
0.03002943843603134,
-0.022615201771259308,
0.02303444966673851,
0.0339779295027256,
-0.06039274111390114,
-0.03158112242817879,
-0.03387415036559105,
0.00673493230715394,
-0.03382357954978943,
-0.015394211746752262,
-0.010265232995152473,
0.022486044093966484,
-0.01000947318971157,
0.03451981022953987,
-0.00727859977632761,
0.03758596256375313,
-0.003741026623174548,
0.023663341999053955,
0.020414123311638832,
-0.06991460174322128,
0.010862951166927814,
-0.042966149747371674,
-0.023404452949762344,
-0.012557811103761196,
-0.016522524878382683,
-0.018671303987503052,
0.014889651909470558,
0.008739170618355274,
0.05839438736438751,
0.04833655059337616,
-0.010652356781065464,
0.0028371799271553755,
-0.023743560537695885,
-0.04497697949409485,
0.0589975044131279,
0.015417945571243763,
-0.05706173926591873,
-0.020366698503494263,
0.021769141778349876,
-0.03334365785121918,
-0.05736146867275238,
-0.06335382908582687,
-0.027597391977906227,
0.009471099823713303,
-0.03728238493204117,
-0.046617016196250916,
-0.08515937626361847,
-0.009870155714452267,
0.07180281728506088,
-0.043112579733133316,
-0.021228890866041183,
0.017841298133134842,
-0.055339355021715164,
0.011844219639897346,
0.044319842010736465,
-0.04546932131052017,
0.0018808229360729456,
-0.027515295892953873,
0.029979219660162926,
-0.02400176227092743,
0.03881268948316574,
-0.01847480610013008,
0.017073364928364754,
-0.0763767883181572,
-0.01553401444107294,
-0.013011932373046875,
0.025120949372649193,
0.05698145180940628,
-0.05332573875784874,
0.04330991208553314,
0.03152678161859512,
-0.025160107761621475,
0.03947807475924492,
-0.03533308580517769,
-0.02657858096063137,
0.03448653221130371,
-0.022300854325294495,
0.0012664345558732748,
0.021766791120171547,
0.028509968891739845,
-0.04631979390978813,
-0.03557240962982178,
-0.021045684814453125,
-0.04392768070101738,
-0.01893661357462406,
0.026261836290359497,
0.04424537718296051,
-0.006998606026172638,
0.00889662653207779,
0.03153714910149574,
0.04720728099346161,
0.035697147250175476,
-0.012925158254802227,
0.05843985080718994,
-0.026589389890432358,
0.0019362744642421603,
-0.013219666667282581,
-0.0327158086001873,
-0.03868158161640167,
0.03066379576921463,
0.014676115475594997,
-0.04712735116481781,
-0.03694295510649681,
0.04636497050523758,
0.013241853564977646,
-0.00814549159258604,
0.03195374459028244,
-0.04515021666884422,
-0.023942679166793823,
-0.03915141895413399,
0.041149284690618515,
0.022604189813137054,
0.0238180048763752,
0.012428791262209415,
-0.053427960723638535,
0.031357306987047195,
-0.03473687544465065,
-0.04560967907309532,
0.00043807498877868056,
0.012751597911119461,
-0.028311146423220634,
0.04321819543838501,
0.015725716948509216,
-0.04401509091258049,
-0.018400052562355995,
-0.00814618356525898,
-0.03472674638032913,
0.04472832381725311,
0.01110772229731083,
0.1100631058216095,
-0.0507587231695652,
-0.0726989135146141,
0.02436709590256214,
-0.006576888263225555,
-0.031219476833939552,
0.004759565461426973,
0.018522636964917183,
-0.004298494663089514,
-0.011135680601000786,
0.010120921768248081,
0.032271865755319595,
-0.05160388723015785,
-0.012207664549350739,
0.05193091183900833,
-0.009125110693275928,
0.030329234898090363,
-0.04124454781413078,
-0.015792936086654663,
0.009595414623618126,
-0.009852171875536442,
-0.024132972583174706,
0.055126991122961044,
-0.01389983482658863,
-0.013288511894643307,
-0.0440409854054451,
-0.0674528032541275,
0.007874654605984688,
0.05932169780135155,
-0.015745140612125397,
-0.026184070855379105,
-0.01821538805961609,
0.02314513921737671,
0.06188183277845383,
0.0345640629529953,
-0.03326977789402008,
0.027092870324850082,
0.04541725665330887,
0.04344375059008598,
-0.013113626278936863,
0.06672853976488113,
0.0014065956929698586,
-0.021965209394693375,
-0.0380113460123539,
0.028781088069081306,
0.019378794357180595,
-0.05336584895849228,
0.0010257057147100568,
0.04334825649857521,
0.008963104337453842,
-0.05274605751037598,
-0.036108605563640594,
0.051267363131046295,
-0.010832048952579498,
-0.010372591204941273,
0.0001505923137301579,
-0.01590600237250328,
-0.013460496440529823,
0.022800004109740257,
-0.011541301384568214,
0.018163874745368958,
-0.034884013235569,
-0.02346269227564335,
-0.005186810623854399,
0.03533032536506653,
0.03983570635318756,
0.05092678964138031,
-0.013132805936038494,
0.08065180480480194,
-0.02831795997917652,
0.003619513940066099,
-0.03370453789830208,
-0.0731201171875,
-0.001032642787322402,
0.0665879100561142,
0.051191676408052444,
0.03823162615299225,
-0.008161497302353382,
-0.06362263113260269,
0.041506484150886536,
0.06017987057566643,
0.06462973356246948,
0.0009092657128348947,
-0.0349673256278038,
-0.007617573253810406,
0.040391355752944946,
0.048115313053131104,
-0.06137022376060486,
-0.03922933712601662,
0.0057020485401153564,
0.050856877118349075,
-0.010325421579182148,
0.019794294610619545,
-0.02827068790793419,
0.0300339013338089,
-0.07512930780649185,
-0.05027688294649124,
0.05120428651571274,
0.009477701969444752,
0.01025421917438507,
0.0308382548391819,
-0.020035376772284508,
-0.0015721905510872602,
0.017695408314466476,
-0.00028210849268361926,
0.010898709297180176,
-0.03392321988940239,
0.016065610572695732,
-0.0029622591100633144,
0.04848581179976463,
-0.05500095337629318,
0.04561903327703476,
-0.021246889606118202,
0.004150355700403452,
0.057990994304418564,
-0.04410330951213837,
0.027407856658101082,
0.036236103624105453,
0.005954179912805557,
-0.047221165150403976,
0.0025958542246371508,
0.023045353591442108,
0.052184946835041046,
0.0609336756169796,
0.015419412404298782,
0.050553902983665466,
0.015842488035559654,
0.038888540118932724,
0.08893179148435593,
0.05309711769223213,
0.011249605566263199,
0.03450774773955345,
0.07641544193029404,
0.014329303056001663,
-0.014489465393126011,
0.060112640261650085,
-0.05968962237238884,
0.005474884994328022,
-0.04089077562093735,
0.01232202723622322,
-0.006870264653116465,
-0.0012707748683169484,
0.03925531730055809,
0.0033972407691180706,
-0.013285841792821884,
0.025876684114336967,
-0.038706839084625244,
-0.021191980689764023,
0.055616509169340134,
0.006266390439122915,
-0.010412243194878101,
-0.017721956595778465,
-0.04282878339290619,
0.005722243804484606,
-0.08762235939502716,
-0.012626088224351406,
-0.019181201234459877,
-0.028582695871591568,
0.019460082054138184,
-0.07059667259454727,
-0.03494833782315254,
-0.06222367659211159,
-0.025266526266932487,
0.03697729855775833,
0.011581876315176487,
0.00853742752224207,
-0.03350406885147095,
0.004923774860799313,
-0.047194622457027435,
-0.03220042213797569,
-0.04722470045089722,
-0.04689246788620949,
-0.039990637451410294,
-0.07671447098255157,
0.05256708711385727,
0.015450638718903065,
0.031679246574640274,
0.005231624934822321,
0.0027613965794444084,
-0.009672144427895546,
-0.018576931208372116,
0.045946478843688965,
0.05629420652985573,
-0.05480851233005524,
-0.031704116612672806,
0.00722278468310833,
-0.015026628039777279,
0.02270924113690853,
-0.003719062078744173,
-0.030991142615675926,
0.07269768416881561,
0.06622648984193802,
-0.0026945017743855715,
0.031011467799544334,
-0.006642511114478111,
-0.05975648760795593,
-0.06924045830965042,
-0.003889872692525387,
-0.025625765323638916,
-0.02428780123591423,
-0.024888411164283752,
-0.04051660746335983,
-0.03683049976825714,
-0.04096514731645584,
0.002948539098724723,
0.005034381989389658,
-0.005561589263379574,
0.02449261024594307,
0.03263773396611214,
0.024165159091353416,
0.011995770037174225,
-0.041851241141557693,
-0.02437787875533104,
0.05936777591705322,
0.0032746519427746534,
-0.0140651511028409,
-0.0864785686135292,
-0.03004700131714344,
0.044734809547662735,
0.020472897216677666,
0.02365543320775032,
0.023514341562986374,
0.10175442695617676,
0.012782775796949863,
-0.0053184181451797485,
0.003885483369231224,
-0.04162038862705231,
-0.027095939964056015,
0.0003133250284008682,
-0.005073843989521265,
-0.01893823780119419,
-0.033864378929138184,
-0.031575173139572144,
-0.002408319618552923,
0.05462084710597992,
-0.0525369793176651,
-0.04036302492022514,
-0.038359932601451874,
0.04636865109205246,
0.033915504813194275,
-0.006481357850134373,
-0.03392700478434563,
-0.004280600696802139,
-0.040994394570589066,
-0.00322206923738122,
0.017761318013072014,
0.024563191458582878,
0.03449224680662155,
0.04263696074485779,
0.010197433643043041,
-0.02021264098584652,
0.04799392446875572,
0.03376267850399017,
0.06990531831979752,
0.04574643447995186,
-0.023992104455828667,
0.01864008605480194,
-0.03657751902937889,
0.021875670179724693,
-0.01903688721358776,
-0.04927375540137291,
-0.04427457973361015,
-0.08827867358922958,
-0.0047010015696287155,
0.015987271443009377,
-0.016353584825992584,
-0.00509457616135478,
0.04976506158709526,
-0.01139046624302864,
-0.007956788875162601,
-0.00016033914289437234,
0.03233285993337631,
0.03098498471081257,
-0.05906980484724045,
0.06188029795885086,
0.017508478835225105,
0.030738908797502518,
-0.04490606486797333,
0.021550795063376427,
-0.036043886095285416,
-0.017690733075141907,
0.0032611500937491655,
0.060881663113832474,
0.0034036149736493826,
0.07331810146570206,
0.08548680692911148,
0.017700232565402985,
-0.05276920273900032,
0.027460863813757896,
0.05688019469380379,
-0.009948314167559147,
-0.045051682740449905,
0.013780618086457253,
-0.019170092418789864,
-0.03478677198290825,
-0.016501853242516518,
-0.02861977182328701,
0.032123152166604996,
0.03870178759098053,
-0.0009468645439483225,
0.014482863247394562,
0.000983329489827156,
-0.01635822094976902,
-0.016368281096220016,
-0.059721458703279495,
-0.03912293538451195,
0.011205586604773998,
-0.010615086182951927,
0.038147781044244766,
0.013277209363877773,
-0.0035939449444413185,
0.035294149070978165,
0.04208889976143837,
-0.056498318910598755,
-0.03560204431414604,
-0.009892074391245842,
0.03109576739370823,
-0.03030829317867756,
-0.05797787010669708,
-0.024495895951986313,
0.035484280437231064,
0.053226862102746964,
-0.005581479985266924,
-0.06349728256464005,
0.011352060362696648,
0.060581184923648834,
-0.02006364054977894,
0.06070691719651222,
-0.022608330473303795,
0.030675353482365608,
0.05915277823805809,
-0.003732316428795457,
0.02233564667403698,
-0.033907122910022736,
0.007301339879631996,
0.00030383162084035575,
-0.001254712580703199,
-0.052418678998947144,
-0.031517282128334045,
-0.05811743438243866,
0.018276141956448555,
0.03943192586302757,
0.034204985946416855,
0.04587114602327347,
-0.0415521077811718,
-0.05223542079329491,
0.02826988324522972,
0.04677914083003998,
-0.0356154665350914,
0.02630099095404148,
0.031245563179254532,
0.021836476400494576,
-0.030490940436720848,
-0.03384269028902054,
-0.02536509558558464,
-0.009119685739278793,
0.024753671139478683,
0.0009324694983661175,
-0.06067449226975441,
-0.02890324778854847,
0.03811529651284218,
-0.028668062761425972,
-0.025609556585550308,
-0.09764585644006729,
-0.010809298604726791,
-0.02847815677523613,
-0.004385578911751509,
0.05846461281180382,
0.043641701340675354,
0.03126822039484978,
0.044549379497766495,
0.01604895107448101,
0.012651324272155762,
-0.03269433602690697,
0.04327058792114258,
-0.029686609283089638,
-0.01762448251247406,
-0.0238798875361681,
-0.018826477229595184,
-0.019789885729551315,
-0.038354553282260895,
-0.06484869122505188,
-0.04635648801922798,
-0.01976737193763256,
0.011636564508080482,
-0.025935877114534378,
-0.014138453640043736,
-0.011031157337129116,
0.04388345032930374,
-0.030580246821045876,
-0.021226178854703903,
-0.034567687660455704,
-0.020769599825143814,
-0.05733410641551018,
-0.05913408845663071,
0.05122194439172745,
0.00844761822372675,
0.04379662126302719,
0.010081039741635323,
0.011135362088680267,
0.02785038761794567,
-0.014374800026416779,
-0.008808082900941372,
0.028789367526769638,
-0.022891204804182053,
-0.03469175472855568,
-0.004731251858174801,
0.024933112785220146,
0.022963644936680794,
0.026800336316227913,
-0.035131849348545074,
0.051325682550668716,
0.030633755028247833,
-0.025428786873817444,
-0.011095200665295124,
-0.013899717479944229,
0.036065466701984406,
-0.073760986328125,
-0.04441625997424126,
0.002415677532553673,
-0.03789966180920601,
0.0035685778129845858,
-0.04296048358082771,
-0.01720152236521244,
0.014342095702886581,
0.022282488644123077,
0.057771727442741394,
-0.0058605121448636055,
-0.037437554448843,
0.03773994743824005,
-0.018086690455675125,
0.013045411556959152,
-0.05286119878292084,
0.037526536732912064,
-0.03399236127734184,
0.0029042288661003113,
-0.004436015151441097,
0.01521126739680767,
-0.050711341202259064,
0.046532824635505676,
-0.03915215656161308,
-0.024492647498846054,
-0.016952646896243095,
-0.01199301891028881,
-0.028402158990502357,
0.02772851660847664,
-0.007253194693475962,
0.022410918027162552,
-0.046372685581445694,
0.07835666090250015,
-0.04087104648351669,
0.004744395613670349,
-0.044702064245939255,
0.00008005435665836558,
-0.018438953906297684,
0.0035290445666760206,
0.0172201469540596,
-0.02299637719988823,
0.044596027582883835,
0.059799857437610626,
0.041459497064352036,
0.01844891905784607,
-0.021085157990455627,
-0.013244979083538055,
0.030717559158802032,
-0.03788767382502556,
-0.0147507069632411,
-0.0012312850449234247,
0.006754926405847073,
0.005819242913275957,
0.03970880061388016,
0.01834828406572342,
-0.04285655915737152,
-0.08487002551555634,
0.02312382496893406,
0.014698625542223454,
0.01655847206711769,
0.014740418642759323,
0.024604525417089462,
0.018018221482634544,
0.05671143904328346,
-0.027839496731758118,
-0.013986245729029179,
-0.017228269949555397,
-0.03327372670173645,
0.022654205560684204,
-0.003774333978071809,
0.015176123939454556,
-0.005664332304149866,
-0.0338485985994339,
-0.013779020868241787,
0.04453377053141594,
-0.00199590134434402,
0.03140566498041153,
-0.01373517606407404,
-0.0639670342206955,
0.031705111265182495,
-0.011642727069556713,
-0.04896770417690277,
0.0029026432894170284,
0.013777388259768486,
-0.030924450606107712,
0.0918193981051445,
-0.0037742622662335634,
0.011759363114833832,
0.07504427433013916,
0.01219414547085762,
-0.0027743990067392588,
0.03282628580927849,
-0.026049770414829254,
-0.014056496322154999,
0.04864306002855301,
-0.05585995316505432,
-0.001985893351957202,
-0.007991929538547993,
0.0770358145236969,
-0.05852625519037247,
0.042608145624399185,
0.050609685480594635,
0.03336367756128311,
0.0137642165645957,
-0.05007016658782959,
-0.03097863867878914,
-0.0033706091344356537,
-0.007858366705477238,
0.06216677278280258,
0.023501994088292122,
-0.059498127549886703,
0.06641462445259094,
0.0011218648869544268,
-0.06920099258422852,
0.031241415068507195,
0.026202527806162834,
0.01437307707965374,
0.018761826679110527,
0.03935658559203148,
-0.05632885545492172,
-0.0025777150876820087,
-0.04713927209377289,
0.017434414476156235,
-0.04921984300017357,
-0.0041161044500768185,
0.01635047234594822,
-0.03686527535319328,
-0.030887272208929062,
0.030345475301146507,
-0.012342425994575024,
-0.0036814433988183737,
0.04163246229290962,
-0.05336607247591019,
-0.025154855102300644,
0.005900115240365267,
0.01970573514699936,
-0.046830322593450546,
0.028571467846632004,
-0.033438585698604584,
0.01210461650043726,
0.02596442960202694,
-0.003622169839218259,
-0.009597133845090866,
-0.001100802794098854,
0.019323378801345825,
-0.04039106145501137,
-0.0562780387699604,
0.022174254059791565,
0.017728544771671295,
-0.039048369973897934,
0.05745415762066841,
0.009069708175957203,
0.012917709536850452,
0.02190164476633072,
0.016409259289503098,
0.04523273557424545,
-0.04922507330775261,
0.00493847718462348,
-0.008764829486608505,
0.044385090470314026,
0.02327018417418003,
-0.019701173529028893,
0.06956447660923004,
0.041136354207992554,
0.020186232402920723,
-0.010192285291850567,
-0.025109171867370605,
-0.030996298417448997,
0.035927001386880875,
-0.035136837512254715,
0.003999596461653709,
0.013854277320206165,
-0.05196430906653404,
-0.02401188760995865,
-0.025516830384731293,
-0.017728501930832863,
0.046283941715955734,
-0.05620771646499634,
0.004700507037341595,
0.03949251025915146,
0.009221683256328106,
-0.04804746061563492,
-0.08021911978721619,
-0.027314405888319016,
-0.05508510395884514,
0.008464925922453403,
0.03009062260389328,
-0.05426285043358803,
0.02976120449602604,
-0.03921079635620117,
-0.038731157779693604,
0.020540237426757812,
0.018816130235791206,
-0.04270235449075699,
0.05390210822224617,
0.020988840609788895,
-0.060030970722436905,
0.011360646225512028,
0.04125287011265755,
-0.05011739954352379,
0.035990431904792786,
0.027407566085457802,
-0.0033430210314691067,
0.015704169869422913,
0.01513337530195713,
-0.039555732160806656,
-0.046423982828855515,
-0.06927968561649323,
-0.05553210899233818,
-0.027428915724158287,
0.01144641824066639,
0.05393191799521446
] |
AnonymousSub/SR_SDR_HF_model_base | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 1 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
model-index:
- name: jason-expert-uspto-3k-preeval
results: []
---
<!-- 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. -->
# jason-expert-uspto-3k-preeval
This model is a fine-tuned version of [EleutherAI/pythia-1b-deduped](https://huggingface.co/EleutherAI/pythia-1b-deduped) on an unknown dataset.
## 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.0001
- train_batch_size: 1
- eval_batch_size: 8
- seed: 42
- distributed_type: multi-GPU
- num_devices: 8
- gradient_accumulation_steps: 8
- total_train_batch_size: 64
- total_eval_batch_size: 64
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- training_steps: 3000
### Training results
### Framework versions
- Transformers 4.28.1
- Pytorch 2.0.1+rocm5.4.2
- Datasets 2.11.0
- Tokenizers 0.13.3
| [
-0.036526527255773544,
-0.012735727243125439,
-0.02468424290418625,
0.02900591865181923,
0.04436182230710983,
0.026188818737864494,
-0.007013784255832434,
-0.0014002855168655515,
-0.03521192446351051,
0.045861586928367615,
0.024950137361884117,
-0.015977170318365097,
-0.011546759866178036,
0.04497896507382393,
-0.03377852961421013,
-0.05380850285291672,
-0.029917549341917038,
0.003585552331060171,
-0.03989310562610626,
0.02538093365728855,
0.017519807443022728,
-0.010740654543042183,
-0.015536175109446049,
0.03155296668410301,
-0.007621199823915958,
0.010292163118720055,
0.000710256164893508,
0.003539872355759144,
0.022438926622271538,
-0.06758995354175568,
-0.002668245928362012,
-0.03932609409093857,
-0.04589367285370827,
-0.008668704889714718,
-0.022501248866319656,
-0.012700896710157394,
0.014001092873513699,
0.029751436784863472,
0.04518063738942146,
0.054920319467782974,
-0.0033034917432814837,
0.010618475265800953,
0.003047390142455697,
-0.02032882533967495,
0.0332566499710083,
0.000013302078514243476,
-0.0425453819334507,
-0.0057942625135183334,
0.031675469130277634,
-0.021594030782580376,
-0.07052712142467499,
-0.05644236505031586,
-0.016527535393834114,
0.0018542755860835314,
-0.0003521985490806401,
-0.021968713030219078,
-0.05349870026111603,
-0.02117036283016205,
0.05178890377283096,
-0.05571792647242546,
-0.027047105133533478,
0.008804820477962494,
-0.10008274018764496,
0.041303083300590515,
0.02989760786294937,
-0.018293047323822975,
0.0036138712894171476,
-0.042857225984334946,
0.037438370287418365,
-0.013932525180280209,
0.053005658090114594,
-0.019849104806780815,
0.009904562495648861,
-0.08712095022201538,
-0.025727003812789917,
-0.01194458082318306,
0.018216367810964584,
0.04983563721179962,
-0.026322798803448677,
0.04677383229136467,
0.009346171282231808,
-0.01692098192870617,
0.0623355507850647,
-0.03710293769836426,
0.0062150838784873486,
0.02125719003379345,
-0.047358814626932144,
0.007507212460041046,
0.017015423625707626,
0.04139387235045433,
-0.035126153379678726,
-0.04409394785761833,
-0.040589168667793274,
-0.03222287446260452,
-0.011020423844456673,
0.040159329771995544,
0.03625458478927612,
0.01613868959248066,
0.03499279543757439,
0.002676072996109724,
0.04042457789182663,
0.029654599726200104,
-0.0193292535841465,
0.07174571603536606,
-0.013841718435287476,
-0.00838170200586319,
-0.01718108542263508,
-0.02259586751461029,
-0.03146522119641304,
0.044750165194272995,
0.025834232568740845,
-0.028775498270988464,
-0.05455193668603897,
0.03241146355867386,
0.01767650805413723,
0.0013471004785969853,
0.04930787906050682,
-0.03779343515634537,
-0.03972362354397774,
-0.00712789548560977,
0.01984027400612831,
0.026647575199604034,
0.006356000434607267,
-0.02243715152144432,
-0.04241916537284851,
0.006901448126882315,
-0.03567555174231529,
-0.02358563430607319,
-0.01058309618383646,
0.0012733556795865297,
-0.010648672468960285,
0.04391081631183624,
0.029997076839208603,
-0.0599195770919323,
0.0022794106043875217,
0.026640767231583595,
-0.05758963152766228,
0.05196350812911987,
0.02623121626675129,
0.09228406101465225,
-0.0794687569141388,
-0.0826013907790184,
0.03021981753408909,
0.011773292906582355,
-0.02494274452328682,
0.001405071117915213,
0.015271810814738274,
-0.04364797845482826,
-0.027757706120610237,
-0.01441542524844408,
0.026823583990335464,
-0.043777525424957275,
-0.006008379627019167,
0.05590912699699402,
-0.015653306618332863,
0.04245281219482422,
-0.05456682667136192,
-0.01954074203968048,
0.01565258391201496,
-0.006776906084269285,
-0.011817911639809608,
0.033015843480825424,
-0.013189556077122688,
0.021517787128686905,
-0.05523666739463806,
-0.029999596998095512,
-0.0055789463222026825,
0.10309279710054398,
0.010831555351614952,
-0.030681191012263298,
-0.01251570601016283,
0.023855477571487427,
0.0667593851685524,
0.033985815942287445,
-0.014386705122888088,
0.04236319288611412,
0.05714413896203041,
0.047862667590379715,
-0.04299325868487358,
0.03610589727759361,
0.0501057505607605,
-0.013839262537658215,
-0.015366821549832821,
0.010015981271862984,
0.01015760563313961,
-0.05252308398485184,
0.002469101455062628,
0.021596886217594147,
0.013254028744995594,
-0.041216932237148285,
-0.018660085275769234,
0.04529446363449097,
-0.0015507761854678392,
-0.020827721804380417,
0.010249404236674309,
-0.008059476502239704,
-0.002321382984519005,
0.040553342550992966,
-0.022191151976585388,
-0.009051387198269367,
-0.024375759065151215,
-0.025958381593227386,
-0.0016120404470711946,
0.04445061832666397,
0.026722639799118042,
0.05157051235437393,
-0.0046729412861168385,
0.08395522832870483,
-0.017720818519592285,
0.02029026672244072,
-0.03653272986412048,
-0.05724487081170082,
0.0018437010003253818,
0.049181412905454636,
0.030540425330400467,
0.059573639184236526,
0.01722574234008789,
-0.038282960653305054,
0.06720797717571259,
0.052184175699949265,
0.030018232762813568,
-0.00048415991477668285,
-0.03132524713873863,
-0.012421172112226486,
0.03290495276451111,
0.060159604996442795,
-0.04412856698036194,
-0.02614298090338707,
0.034285809844732285,
0.050624676048755646,
0.007083200849592686,
0.0286214929074049,
-0.015139971859753132,
0.04277874156832695,
-0.06258588284254074,
-0.06716545671224594,
0.037736181169748306,
0.022987937554717064,
0.002604840323328972,
0.01901423931121826,
-0.002142244717106223,
-0.008711719885468483,
0.01462339423596859,
0.009577748365700245,
-0.00963942427188158,
-0.013278304599225521,
0.026902327314019203,
0.011727146804332733,
0.054830402135849,
-0.048059944063425064,
0.040685590356588364,
-0.009172122925519943,
0.0011796040926128626,
0.04423358291387558,
-0.030968209728598595,
0.020262671634554863,
0.02653791382908821,
0.022397853434085846,
-0.027702337130904198,
-0.00809172447770834,
-0.019951824098825455,
0.03033328428864479,
0.03265880420804024,
0.004760893061757088,
0.06413865089416504,
-0.0038530139718204737,
0.05096441134810448,
0.06832243502140045,
0.017596792429685593,
0.04976514354348183,
0.03759021684527397,
0.060570165514945984,
0.03014938160777092,
-0.013906100764870644,
0.03981279581785202,
-0.04004945605993271,
0.01659618504345417,
-0.04376911371946335,
0.015591057017445564,
-0.012239512987434864,
-0.019893059507012367,
0.04203702136874199,
-0.00040330918272957206,
0.006914135999977589,
-0.019487325102090836,
-0.023435914888978004,
-0.041310060769319534,
0.019561871886253357,
0.0060183084569871426,
0.008244362659752369,
0.015898026525974274,
-0.006265146192163229,
-0.01229347288608551,
-0.06193823739886284,
-0.03379165753722191,
-0.006808392703533173,
-0.04479607567191124,
-0.006539338268339634,
-0.08203230798244476,
-0.003652100218459964,
-0.051792893558740616,
0.0036486354656517506,
0.0542910173535347,
-0.0031616217456758022,
-0.008506745100021362,
-0.06035228446125984,
0.02761394903063774,
-0.02989254705607891,
-0.038402315229177475,
-0.04985896497964859,
-0.05662025511264801,
-0.037913981825113297,
-0.08420167863368988,
0.021766778081655502,
0.013026455417275429,
0.017284398898482323,
-0.007391571532934904,
0.01759306527674198,
-0.0030694615561515093,
-0.026377394795417786,
0.03607765957713127,
0.055805668234825134,
-0.03858846798539162,
-0.060039740055799484,
0.03175337240099907,
-0.01003770437091589,
-0.007974060252308846,
0.008692540228366852,
-0.030672067776322365,
0.0904138833284378,
0.06636638939380646,
0.017174389213323593,
0.0016507756663486362,
-0.04892426356673241,
-0.053814224898815155,
-0.057632241398096085,
-0.011366170831024647,
-0.054998114705085754,
0.0016094375168904662,
-0.02594130113720894,
-0.04856638237833977,
-0.019027594476938248,
-0.053289514034986496,
0.009438024833798409,
-0.005631048232316971,
0.004628385417163372,
0.022946475073695183,
0.036420129239559174,
0.022576194256544113,
0.03747491538524628,
-0.03464199975132942,
-0.05644921213388443,
0.07298659533262253,
-0.00010034062870545313,
0.0067844083532691,
-0.05577530711889267,
-0.020068801939487457,
0.05433214083313942,
0.03920856863260269,
0.022510604932904243,
-0.03469819575548172,
0.06683492660522461,
0.016258379444479942,
-0.010359690524637699,
0.01857461780309677,
-0.003262321697548032,
-0.04257948696613312,
-0.016894081607460976,
-0.0074213226325809956,
-0.02081879787147045,
-0.03538050875067711,
-0.03558182716369629,
-0.015643959864974022,
0.04283033311367035,
-0.08275023847818375,
-0.04029861092567444,
-0.021844973787665367,
0.03467554599046707,
0.06508587300777435,
0.019038358703255653,
-0.04920421540737152,
-0.005283528007566929,
-0.05384301766753197,
0.0031107438262552023,
0.01629834808409214,
0.007581950165331364,
0.03317757323384285,
0.015918171033263206,
0.01140061765909195,
-0.009119370952248573,
0.06549672037363052,
0.03398790955543518,
0.09599867463111877,
0.031357087194919586,
-0.04953114315867424,
0.0016798743745312095,
-0.011011234484612942,
0.03693312406539917,
0.0009594729053787887,
0.00329430028796196,
-0.033879831433296204,
-0.1135743036866188,
-0.01822574995458126,
0.014525158330798149,
0.0009320675162598491,
-0.013907192274928093,
0.03970121592283249,
-0.0033920856658369303,
-0.012335444800555706,
0.007551507093012333,
0.02702118083834648,
0.05097359046339989,
-0.03111807256937027,
0.06667637825012207,
0.009518331848084927,
0.03168685734272003,
-0.04636477679014206,
0.0030808693263679743,
-0.044614825397729874,
-0.023629482835531235,
0.004519312642514706,
0.06334876269102097,
0.005366850644350052,
0.07261556386947632,
0.10335763543844223,
-0.011568902060389519,
-0.03480417653918266,
0.016577981412410736,
0.06440950185060501,
-0.03549720346927643,
-0.06259076297283173,
-0.005524532403796911,
-0.03292647749185562,
-0.006163539364933968,
-0.001082881004549563,
-0.021816330030560493,
0.042518556118011475,
0.0311993807554245,
0.0012281843228265643,
0.030505554750561714,
0.007930700667202473,
0.0033238143660128117,
-0.038339968770742416,
-0.05432790890336037,
-0.019766148179769516,
0.008026758208870888,
-0.025589914992451668,
0.005038895644247532,
0.028535783290863037,
0.008493030443787575,
0.05310847610235214,
0.030320705845952034,
-0.049381472170352936,
-0.04840628430247307,
0.016767902299761772,
0.030360406264662743,
-0.04013336822390556,
-0.08316946774721146,
-0.04119887202978134,
0.032357994467020035,
0.027149660512804985,
-0.02854890003800392,
-0.0654386654496193,
0.009532483294606209,
0.054627470672130585,
-0.03457227721810341,
0.05046062543988228,
-0.015611468814313412,
0.035215917974710464,
0.05794914811849594,
-0.014861647970974445,
0.021264798939228058,
-0.023665571585297585,
-0.0027087891940027475,
0.028789615258574486,
0.03144698962569237,
-0.008341163396835327,
-0.05293773114681244,
-0.04158059135079384,
0.02498353272676468,
0.06209937483072281,
0.053479306399822235,
0.047677937895059586,
-0.02639026753604412,
-0.05100324749946594,
-0.013684873469173908,
0.038700398057699203,
-0.034056343138217926,
0.011935856193304062,
0.04495745524764061,
0.03140133619308472,
-0.055358655750751495,
-0.044019460678100586,
-0.02723650075495243,
-0.02087029442191124,
0.03497055545449257,
-0.011390386149287224,
-0.04972647875547409,
-0.035371169447898865,
0.016567418351769447,
0.004874158184975386,
-0.028623046353459358,
-0.06843961030244827,
0.05880440026521683,
0.003511968068778515,
-0.008892000652849674,
0.0716780424118042,
0.03353816643357277,
0.01349636074155569,
0.07659109681844711,
0.009869481436908245,
0.027869191020727158,
-0.04827766865491867,
0.021357599645853043,
-0.05922778323292732,
-0.022296732291579247,
0.013983151875436306,
-0.05385196581482887,
-0.02426396869122982,
-0.040113579481840134,
-0.018620869144797325,
-0.041610196232795715,
-0.010595491155982018,
0.003333634464070201,
-0.0044274842366576195,
-0.02566608600318432,
0.003609005594626069,
0.05140640214085579,
-0.027910441160202026,
-0.028913604095578194,
-0.04537835344672203,
-0.02999190241098404,
-0.04617495834827423,
-0.057078298181295395,
0.0257888101041317,
0.0002727097598835826,
0.04395801201462746,
0.015786776319146156,
0.012388703413307667,
0.02003440447151661,
0.010622581467032433,
-0.02100059762597084,
0.01608887128531933,
0.01643705740571022,
-0.019747603684663773,
-0.016381382942199707,
0.027525678277015686,
0.016895145177841187,
0.019777975976467133,
-0.026840200647711754,
0.037039875984191895,
0.0019398528384044766,
-0.005394525360316038,
-0.01457727700471878,
0.01157902367413044,
0.019254285842180252,
-0.05817342549562454,
-0.011844759806990623,
0.0005209772498346865,
-0.05329713970422745,
0.014154758304357529,
-0.028625842183828354,
-0.03268084675073624,
-0.016207970678806305,
-0.0038048536516726017,
0.03395271301269531,
-0.0023613765370100737,
-0.018743593245744705,
0.019804680719971657,
-0.0049809906631708145,
0.0322183221578598,
-0.04877127334475517,
0.054847199469804764,
-0.04245400428771973,
0.009463721886277199,
-0.008425342850387096,
0.030327916145324707,
-0.06623612344264984,
0.032617904245853424,
-0.018020356073975563,
-0.01223214901983738,
-0.02850528061389923,
0.015233171172440052,
-0.032873861491680145,
0.03197092190384865,
-0.001624331227503717,
0.03432529419660568,
-0.014871050603687763,
0.0675436332821846,
-0.04805319756269455,
0.007613446097820997,
-0.022176487371325493,
0.022262347862124443,
-0.04022998735308647,
-0.014182955957949162,
-0.012970373034477234,
-0.02464749477803707,
0.013913307338953018,
0.06734394282102585,
0.035218045115470886,
0.013011381030082703,
-0.03733139857649803,
-0.04515113681554794,
0.030536096543073654,
-0.07214242219924927,
-0.02180681750178337,
-0.020613176748156548,
0.013055812567472458,
0.002590850228443742,
0.06630195677280426,
0.0472748689353466,
-0.0362304151058197,
-0.05292659252882004,
0.04988526552915573,
0.00939877238124609,
0.011502977460622787,
0.0034800111316144466,
0.01565798744559288,
-0.004163817502558231,
0.044223397970199585,
-0.03376155346632004,
0.00534852733835578,
-0.005283496342599392,
-0.046809520572423935,
0.04064099118113518,
-0.003387272357940674,
0.020009061321616173,
0.007369006518274546,
-0.03900009021162987,
-0.021071279421448708,
0.06640611588954926,
0.0515979640185833,
0.020534392446279526,
-0.017823640257120132,
-0.054340802133083344,
0.04329533874988556,
0.0008031388279050589,
-0.061361052095890045,
0.0037772648502141237,
-0.007931915111839771,
-0.020225603133440018,
0.07432746142148972,
-0.014901635237038136,
0.007717887870967388,
0.05272699519991875,
0.04139348492026329,
-0.04918784648180008,
0.01623106189072132,
-0.027512338012456894,
-0.001440501306205988,
0.050311025232076645,
-0.060200780630111694,
0.0008244036580435932,
-0.020324070006608963,
0.053007569164037704,
-0.05483601242303848,
0.037237197160720825,
0.04367620497941971,
-0.011212493292987347,
0.0037131167482584715,
-0.026477647945284843,
-0.042898762971162796,
0.020884273573756218,
-0.02989841252565384,
0.07504250854253769,
-0.0026033322792500257,
-0.055099278688430786,
0.04459121823310852,
-0.0022810676600784063,
-0.05111762136220932,
0.030215168371796608,
0.018976561725139618,
0.05792051553726196,
0.037421852350234985,
0.04836718738079071,
-0.06024504080414772,
0.009201147593557835,
-0.057914406061172485,
0.04155760630965233,
-0.03734726458787918,
-0.004971707705408335,
0.03175025060772896,
-0.03107479400932789,
-0.03554631024599075,
0.06466403603553772,
0.011543307453393936,
-0.0084620900452137,
0.050072312355041504,
-0.05711276829242706,
-0.043029557913541794,
0.011216873303055763,
0.007119426038116217,
-0.038941241800785065,
0.02242187224328518,
-0.04168526083230972,
-0.010944604873657227,
0.01782081089913845,
-0.003802154678851366,
0.0034033157862722874,
0.00237913616001606,
0.0313531719148159,
-0.03920195624232292,
-0.04486183822154999,
0.02003876306116581,
0.022113461047410965,
-0.01972275972366333,
0.04306671768426895,
-0.0015361178666353226,
0.03043445385992527,
0.026176514104008675,
-0.0036921624559909105,
0.01706233248114586,
-0.033134449273347855,
-0.040253330022096634,
0.025117143988609314,
-0.0031019484158605337,
0.051321398466825485,
-0.005196873098611832,
0.05332547426223755,
0.02018457092344761,
0.03206083923578262,
-0.021486449986696243,
-0.02832462452352047,
-0.04755597561597824,
0.02039281465113163,
-0.03740444406867027,
0.021762235090136528,
-0.003078700741752982,
-0.05691331997513771,
-0.04488241299986839,
-0.013970413245260715,
-0.047180574387311935,
0.015681061893701553,
-0.07404962182044983,
-0.0051312437281012535,
0.031896162778139114,
0.017848895862698555,
-0.0561458058655262,
-0.08257527649402618,
-0.03736547753214836,
-0.03847113251686096,
0.006624062079936266,
0.017745379358530045,
-0.03322184458374977,
0.030144235119223595,
-0.030064092949032784,
-0.05512472987174988,
0.0501231849193573,
0.0052344840951263905,
-0.033792898058891296,
0.027102438732981682,
0.04835302755236626,
-0.05258993059396744,
0.0028672884218394756,
0.01958347111940384,
-0.030350172892212868,
0.009559891186654568,
0.013508505187928677,
0.003025937592610717,
0.033882249146699905,
0.015902621671557426,
-0.05212211236357689,
-0.03327067196369171,
-0.06718127429485321,
-0.047100938856601715,
-0.05416347458958626,
0.02157602459192276,
0.07089055329561234
] |
AnonymousSub/SR_rule_based_bert_quadruplet_epochs_1_shard_1 | [
"pytorch",
"bert",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"BertModel"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 1 | 2023-05-18T04:24:10Z | ---
tags:
- generated_from_trainer
datasets:
- imagefolder
metrics:
- accuracy
model-index:
- name: swin-tiny-patch4-window7-224-finetuned-eurosat
results:
- task:
name: Image Classification
type: image-classification
dataset:
name: imagefolder
type: imagefolder
config: default
split: train
args: default
metrics:
- name: Accuracy
type: accuracy
value: 0.5862068965517241
---
<!-- 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. -->
# swin-tiny-patch4-window7-224-finetuned-eurosat
This model was trained from scratch on the imagefolder dataset.
It achieves the following results on the evaluation set:
- Loss: 0.7576
- Accuracy: 0.5862
## 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.0001
- train_batch_size: 1
- eval_batch_size: 2
- seed: 42
- gradient_accumulation_steps: 8
- total_train_batch_size: 8
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_ratio: 0.1
- num_epochs: 3
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
| 0.6968 | 0.98 | 32 | 0.7576 | 0.5862 |
| 0.6144 | 2.0 | 65 | 0.7457 | 0.5862 |
| 0.5981 | 2.95 | 96 | 0.6591 | 0.5862 |
### Framework versions
- Transformers 4.29.2
- Pytorch 1.12.1
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.014912552200257778,
-0.008543519303202629,
-0.01432286947965622,
0.03396008536219597,
0.043475717306137085,
-0.010739821009337902,
-0.0095234839245677,
0.01882070116698742,
-0.009164086543023586,
0.06037348508834839,
0.011814934201538563,
-0.00834682211279869,
-0.0033314016181975603,
0.040199339389801025,
-0.023726779967546463,
-0.05338897183537483,
0.013142365962266922,
0.0011988640762865543,
-0.015775715932250023,
0.01019507460296154,
0.015415504574775696,
-0.009139970876276493,
-0.013750165700912476,
0.018331658095121384,
-0.0028095608577132225,
-0.0006746435537934303,
0.028991106897592545,
0.01202201284468174,
0.05212648585438728,
-0.07922077178955078,
0.016048429533839226,
-0.05270439386367798,
-0.07187508046627045,
-0.008333464153110981,
-0.00683617265895009,
0.017736617475748062,
0.008226794190704823,
0.015400098636746407,
0.03012126125395298,
0.05762754753232002,
-0.00506607023999095,
0.022009851410984993,
-0.023497043177485466,
-0.02585161104798317,
0.04198264330625534,
-0.008063139393925667,
-0.03519375994801521,
0.004987580236047506,
0.024438075721263885,
-0.036390576511621475,
-0.09418146312236786,
-0.06488874554634094,
-0.005189558956772089,
0.019586246460676193,
-0.04007239639759064,
-0.03864770382642746,
-0.04630794748663902,
0.006096928380429745,
0.05626687780022621,
-0.042768433690071106,
-0.0489753820002079,
0.013348491862416267,
-0.06617159396409988,
0.024580147117376328,
0.029644861817359924,
-0.018668275326490402,
0.006188996601849794,
-0.041938528418540955,
0.030711084604263306,
-0.002702287631109357,
0.05483965203166008,
-0.021074282005429268,
0.009782331995666027,
-0.07775235921144485,
-0.027192343026399612,
-0.00813274085521698,
0.017894260585308075,
0.06348323076963425,
-0.03844232112169266,
0.036110177636146545,
0.05620571970939636,
-0.008058002218604088,
0.03258166089653969,
-0.048774272203445435,
-0.002517685992643237,
0.025078393518924713,
-0.022158591076731682,
0.00920077320188284,
0.014329008758068085,
0.030749866738915443,
-0.030614010989665985,
-0.008637245744466782,
-0.008179589174687862,
-0.03106582537293434,
-0.028376184403896332,
0.021582085639238358,
0.02770932763814926,
0.0002944680454675108,
0.04617350548505783,
0.030144566670060158,
0.024509692564606667,
0.037495046854019165,
-0.013544708490371704,
0.07263464480638504,
-0.007710693404078484,
-0.02912333235144615,
-0.018746916204690933,
-0.02725066803395748,
-0.04250023886561394,
0.03561237454414368,
0.027845831587910652,
-0.02421892248094082,
-0.020985808223485947,
0.04821920022368431,
-0.005940002854913473,
0.013401472009718418,
0.06539216637611389,
-0.020824063569307327,
-0.03013370744884014,
-0.04812252148985863,
0.019765421748161316,
0.026151306927204132,
0.004897898994386196,
0.006728920619934797,
-0.0453374944627285,
-0.001411201898008585,
-0.007884342223405838,
-0.03604259341955185,
-0.0025540320202708244,
0.006685004103928804,
-0.0048858108930289745,
0.04717596247792244,
0.030573833733797073,
-0.07938356697559357,
-0.003807615488767624,
0.024716457352042198,
-0.04674948751926422,
0.03845161199569702,
-0.002898671431466937,
0.10925658792257309,
-0.042849764227867126,
-0.06810712814331055,
0.0066687180660665035,
0.01771085523068905,
-0.0279312115162611,
0.0164644792675972,
0.014743697829544544,
-0.051674745976924896,
-0.01908225193619728,
-0.005928846076130867,
0.020436987280845642,
-0.04770630970597267,
0.002988510997965932,
0.05449848994612694,
0.03313172981142998,
0.02044978179037571,
-0.05555957183241844,
-0.03883921355009079,
0.00876798015087843,
0.004057848360389471,
0.004594673402607441,
0.027659822255373,
-0.015201400965452194,
-0.010323368944227695,
-0.03640492260456085,
-0.04713398218154907,
-0.02354532852768898,
0.06578999757766724,
-0.01808958314359188,
-0.031253594905138016,
-0.019750408828258514,
0.02606509067118168,
0.04991373419761658,
0.034643203020095825,
-0.01996920071542263,
0.04269679635763168,
0.061042629182338715,
0.0348498672246933,
-0.03355748578906059,
0.04829993471503258,
0.02941841259598732,
-0.04959098994731903,
-0.03523127734661102,
0.018041115254163742,
-0.015199821442365646,
-0.032791800796985626,
0.028779011219739914,
0.051100023090839386,
0.0020488430745899677,
-0.046120934188365936,
-0.023085150867700577,
0.08845984935760498,
-0.00479121133685112,
0.006631545256823301,
0.010831485502421856,
-0.01754203625023365,
-0.017769208177924156,
0.0361483134329319,
-0.00657543633133173,
-0.01467973180115223,
-0.0105874203145504,
-0.04312929883599281,
0.010975626297295094,
0.016868680715560913,
0.019641993567347527,
0.0466865636408329,
-0.004972805269062519,
0.07991466671228409,
-0.034089356660842896,
0.028722232207655907,
-0.028170287609100342,
-0.06716860830783844,
0.02257157489657402,
0.06815384328365326,
0.047721512615680695,
0.06497984379529953,
-0.011598166078329086,
-0.03918782249093056,
0.03296074643731117,
0.07079876214265823,
0.027754591777920723,
0.0034638522192835808,
-0.056319739669561386,
-0.013334444724023342,
0.016953159123659134,
0.03571062907576561,
-0.040276866406202316,
-0.030625348910689354,
0.023790791630744934,
0.011271881870925426,
-0.010458351112902164,
0.016620654612779617,
-0.024217737838625908,
0.053034160286188126,
-0.05696841701865196,
-0.07239727675914764,
0.03291120007634163,
0.011137901805341244,
-0.009570259600877762,
0.03743571788072586,
0.002430186839774251,
0.007125675678253174,
0.019077349454164505,
0.02169201336801052,
0.004728034604340792,
-0.04289814829826355,
0.03533579409122467,
0.01904093101620674,
0.04052303358912468,
-0.053033895790576935,
0.024228794500231743,
-0.014510482549667358,
0.002537715481594205,
0.06517233699560165,
-0.05983811244368553,
0.04182606190443039,
0.06090715155005455,
0.03703044354915619,
-0.02235015109181404,
0.020530497655272484,
0.02157716453075409,
0.009838723577558994,
0.03124094009399414,
0.008292409591376781,
0.06832189112901688,
-0.02691805548965931,
0.04243525117635727,
0.08935730904340744,
0.020244844257831573,
0.015356003306806087,
0.017858486622571945,
0.0871126726269722,
0.011559467762708664,
-0.029840003699064255,
0.055188968777656555,
-0.05358092486858368,
0.005473238416016102,
-0.029964763671159744,
0.002869426505640149,
-0.01739666238427162,
0.03199407458305359,
0.04620267078280449,
0.0018676178297027946,
-0.04671504348516464,
-0.006987038534134626,
-0.0016856510192155838,
-0.023825617507100105,
0.024418236687779427,
0.002829737728461623,
-0.013734362088143826,
0.0008906754083000124,
0.0019493973813951015,
-0.008540869690477848,
-0.02616199664771557,
-0.03631115332245827,
-0.0323612354695797,
-0.04411933571100235,
-0.012079712934792042,
-0.07630277425050735,
0.004560133907943964,
-0.06641718745231628,
-0.009728769771754742,
0.040125686675310135,
0.010036282241344452,
-0.011308293789625168,
-0.03731338679790497,
0.026452232152223587,
-0.027419498190283775,
-0.0545215830206871,
-0.04121267423033714,
-0.05390217900276184,
-0.05066646263003349,
-0.0700574666261673,
0.027329368516802788,
0.029289839789271355,
0.014056719839572906,
0.009114736691117287,
0.02062484808266163,
-0.009355957619845867,
-0.004145342390984297,
0.04393245279788971,
0.06120390072464943,
-0.024636315181851387,
-0.03574305400252342,
0.03145570680499077,
-0.02183603122830391,
0.017672250047326088,
-0.00817581545561552,
-0.002354045631363988,
0.08110254257917404,
0.0820421352982521,
-0.003763338318094611,
0.00904946681112051,
-0.003906277008354664,
-0.040377046912908554,
-0.044816676527261734,
-0.02195015735924244,
-0.01838589459657669,
0.000880066305398941,
-0.03799610212445259,
-0.0439855121076107,
-0.04118653014302254,
-0.012732741422951221,
-0.01210676971822977,
0.0022143111564219,
-0.0135372094810009,
0.043593570590019226,
0.03698338195681572,
0.01930839940905571,
0.02337309718132019,
-0.05060505494475365,
-0.0640273168683052,
0.054539769887924194,
0.012634605169296265,
-0.0067188553512096405,
-0.07238674908876419,
0.0037398897111415863,
0.0312273558229208,
0.01685015670955181,
-0.00458201440051198,
-0.0018259361386299133,
0.08972764760255814,
-0.00025443415506742895,
-0.009465314447879791,
0.03121325932443142,
-0.0007726856274530292,
-0.01811974123120308,
-0.014827756211161613,
0.010039706714451313,
-0.012303014285862446,
-0.032955337315797806,
-0.01949765346944332,
0.005842206999659538,
0.03087245672941208,
-0.06520294398069382,
-0.058772798627614975,
-0.008692326955497265,
0.04276163503527641,
0.036913078278303146,
0.01032123900949955,
-0.05595720559358597,
-0.02763144113123417,
-0.0840129405260086,
0.012222149409353733,
0.049737557768821716,
0.02562333457171917,
0.013248085975646973,
0.05207662656903267,
0.009480878710746765,
-0.02622922509908676,
0.0551636777818203,
0.017850350588560104,
0.05611615255475044,
0.00942477211356163,
-0.04009529575705528,
0.01668378710746765,
-0.011966339312493801,
0.024506861343979836,
0.004079384729266167,
-0.0021901102736592293,
-0.03028864599764347,
-0.10842393338680267,
-0.029048578813672066,
0.010185625404119492,
-0.005906336009502411,
-0.017703846096992493,
0.050050199031829834,
-0.034566160291433334,
-0.01824530027806759,
0.005822670646011829,
0.010349348187446594,
0.059582021087408066,
-0.08309970796108246,
0.06598770618438721,
-0.01850447617471218,
0.019492167979478836,
-0.05208077281713486,
0.02091769129037857,
-0.02416851557791233,
-0.01550286915153265,
0.025917919352650642,
0.048682354390621185,
0.006669707130640745,
0.018663369119167328,
0.08608169853687286,
0.019184429198503494,
-0.04188763350248337,
0.011313634924590588,
0.04500104486942291,
-0.03239118680357933,
-0.0629899799823761,
0.009645061567425728,
-0.012184517458081245,
-0.0024509821087121964,
-0.0002151315420633182,
-0.009912189096212387,
0.0423264317214489,
0.02901424653828144,
-0.03705882281064987,
0.007243438623845577,
-0.004602061118930578,
-0.014386611990630627,
-0.03184414282441139,
-0.050538212060928345,
0.00272351480089128,
0.0025100719649344683,
-0.01604177989065647,
0.0063476539216935635,
0.028825070708990097,
0.004811911843717098,
0.04799880459904671,
0.039166346192359924,
-0.02266368642449379,
-0.020504657179117203,
0.019824959337711334,
0.029035933315753937,
-0.019952889531850815,
-0.07635140419006348,
-0.00889788381755352,
0.04561687633395195,
0.006345154717564583,
-0.007598963100463152,
-0.05979124829173088,
0.004636901896446943,
0.04740624874830246,
-0.05311886966228485,
0.05368895083665848,
0.02111726626753807,
0.04124743491411209,
0.06544921547174454,
-0.010527337901294231,
0.03742244467139244,
-0.025897014886140823,
0.007843046449124813,
-0.01081078127026558,
0.040797192603349686,
-0.008190636523067951,
-0.04140185937285423,
-0.0418834388256073,
0.043568722903728485,
0.01585235260426998,
0.044790077954530716,
0.054437749087810516,
-0.03711637854576111,
-0.04457751289010048,
0.009928815066814423,
0.04178847372531891,
-0.07370314002037048,
0.012864474207162857,
0.007398691028356552,
0.04908115044236183,
-0.03894679620862007,
-0.0255566593259573,
-0.022208645939826965,
-0.025439810007810593,
0.02698213793337345,
-0.011683535762131214,
-0.06140175461769104,
-0.031210431829094887,
0.030223755165934563,
0.0017389049753546715,
-0.020476961508393288,
-0.100767120718956,
0.04821529611945152,
-0.019934965297579765,
-0.01639602705836296,
0.04101775959134102,
0.040730323642492294,
0.023506224155426025,
0.08106805384159088,
0.04076863452792168,
0.03846193850040436,
-0.03580453619360924,
0.0375494584441185,
-0.055370643734931946,
-0.010458898730576038,
0.004457731731235981,
-0.020312121137976646,
-0.03215798735618591,
-0.011699383147060871,
-0.03228595107793808,
-0.03660283982753754,
-0.03569142520427704,
0.023129049688577652,
0.016862673684954643,
-0.02926015853881836,
-0.008033332414925098,
0.012422211468219757,
-0.016362255439162254,
-0.01956806145608425,
-0.02557813934981823,
-0.007247282657772303,
-0.05212673172354698,
-0.05655547231435776,
0.04449271410703659,
-0.02113271690905094,
0.045270826667547226,
0.016050733625888824,
0.01862936280667782,
0.0011154507519677281,
0.030026331543922424,
-0.02112523652613163,
0.04031477868556976,
0.008411367423832417,
0.005448326468467712,
-0.009419026784598827,
0.01571757160127163,
0.012417596764862537,
0.037922605872154236,
-0.02275271899998188,
0.03322289139032364,
0.020297804847359657,
0.024648793041706085,
0.009445536881685257,
0.029577791690826416,
0.033582329750061035,
-0.06617571413516998,
-0.04707629978656769,
0.022547783330082893,
-0.039179906249046326,
0.04020413011312485,
-0.02186012454330921,
-0.003991461358964443,
-0.0028567202389240265,
-0.014338864013552666,
0.03944894298911095,
-0.012403457425534725,
-0.011986077763140202,
0.034213192760944366,
-0.03567618131637573,
0.021385202184319496,
-0.0582057386636734,
0.0366266705095768,
-0.04066551849246025,
0.0035506219137459993,
-0.03451458737254143,
-0.009846599772572517,
-0.033707428723573685,
0.03305593505501747,
-0.022853093221783638,
-0.01884673349559307,
-0.005367959849536419,
0.048461683094501495,
-0.02181016094982624,
0.016218556091189384,
0.002514120889827609,
0.03107522986829281,
-0.034889042377471924,
0.06083518639206886,
-0.038160137832164764,
0.03173482418060303,
-0.03181895986199379,
0.004645273555070162,
-0.034366827458143234,
0.007456446066498756,
-0.024485664442181587,
-0.027599718421697617,
0.02130560390651226,
0.07243506610393524,
0.02573506347835064,
0.002368225483223796,
-0.033672016113996506,
-0.020123057067394257,
0.04250399023294449,
-0.04623832181096077,
-0.040571194142103195,
-0.006173835601657629,
-0.0021249232813715935,
-0.0206462349742651,
0.05485323444008827,
0.06212601438164711,
-0.07635479420423508,
-0.07936049997806549,
0.05143146216869354,
0.016794925555586815,
0.00014298982569016516,
0.020204469561576843,
0.013777040876448154,
0.045823536813259125,
0.040977608412504196,
-0.03381345421075821,
0.01352698914706707,
-0.012518995441496372,
-0.04901105910539627,
0.025050731375813484,
0.002893672091886401,
0.03866211697459221,
0.01721881330013275,
-0.0400201641023159,
-0.01045475248247385,
0.06385537981987,
0.04374183714389801,
0.03292306512594223,
-0.027664555236697197,
-0.05303451791405678,
0.05080796778202057,
0.008189280517399311,
-0.048787884414196014,
0.033905625343322754,
0.025113901123404503,
-0.009558879770338535,
0.057334475219249725,
-0.014493009075522423,
0.007916172966361046,
0.04334346577525139,
0.043192386627197266,
-0.03077736869454384,
0.04928875342011452,
-0.02248205430805683,
0.01792686991393566,
0.04865998402237892,
-0.08749102056026459,
-0.010743334889411926,
-0.03660821542143822,
0.08115547895431519,
-0.04954288527369499,
0.0368020236492157,
0.05323340371251106,
0.005023100413382053,
0.006514309905469418,
-0.01481303945183754,
-0.06536691635847092,
0.02349158376455307,
-0.049298565834760666,
0.08308269828557968,
0.015018469654023647,
-0.04769826680421829,
0.0862482413649559,
0.016988227143883705,
-0.09195882081985474,
0.02965148538351059,
0.026037096977233887,
0.03466134890913963,
0.039488062262535095,
0.03958924859762192,
-0.02427719533443451,
0.014869959093630314,
-0.059607814997434616,
0.03720201551914215,
-0.04129834473133087,
-0.026461336761713028,
0.040525827556848526,
-0.03181806206703186,
0.004488055128604174,
0.05758119001984596,
-0.01884576492011547,
-0.015698587521910667,
0.055437374860048294,
-0.02270156517624855,
-0.02834886871278286,
0.01961352303624153,
0.029831571504473686,
-0.0347740463912487,
0.013537246733903885,
-0.008305673487484455,
0.020322024822235107,
0.010841337963938713,
-0.001928711892105639,
-0.026851199567317963,
0.007418282795697451,
0.040601156651973724,
-0.08065778017044067,
-0.027478227391839027,
0.013386337086558342,
0.006541147828102112,
-0.013562510721385479,
0.012000031769275665,
0.017857473343610764,
0.011398076079785824,
0.02773035131394863,
0.0035675624385476112,
0.01197882927954197,
-0.03928237780928612,
-0.03298188000917435,
0.02588362619280815,
0.01471690647304058,
0.015498870983719826,
0.015262722969055176,
0.046500515192747116,
0.0466475635766983,
0.03838253766298294,
-0.00910953152924776,
-0.011832785792648792,
-0.01882375404238701,
0.02122780866920948,
-0.01981460675597191,
0.012976950965821743,
0.00010613971971906722,
-0.07718425989151001,
-0.04594811797142029,
0.007844055071473122,
-0.02215118333697319,
0.02843480370938778,
-0.06105824187397957,
-0.024403996765613556,
0.010397669859230518,
-0.0007552438182756305,
-0.062028948217630386,
-0.10400974750518799,
-0.010397900827229023,
-0.04649601876735687,
0.020893974229693413,
0.05389619991183281,
-0.02912546508014202,
0.03312254324555397,
-0.023740418255329132,
-0.05448918789625168,
0.027728181332349777,
0.003121302928775549,
-0.016678011044859886,
0.03398463875055313,
0.07198846340179443,
-0.04115205630660057,
0.01869371347129345,
0.02986922115087509,
-0.03981780260801315,
-0.000103042482805904,
0.0034865497145801783,
0.02264789491891861,
0.02514985017478466,
0.013715460896492004,
-0.031244998797774315,
0.010347493924200535,
-0.06392927467823029,
-0.026970600709319115,
-0.039670430123806,
0.018227823078632355,
0.04531120881438255
] |
AnonymousSub/SR_rule_based_only_classfn_twostage_epochs_1_shard_1 | [
"pytorch",
"bert",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"BertModel"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | Access to model mahimairaja/people-track-x-model is restricted and you are not in the authorized list. Visit https://huggingface.co/mahimairaja/people-track-x-model to ask for access. | [
-0.04390934854745865,
-0.002322584157809615,
-0.002249507000669837,
0.02073119953274727,
0.031551431864500046,
0.030336810275912285,
0.006510570645332336,
0.005609158892184496,
-0.039398275315761566,
0.048899561166763306,
0.04391825199127197,
-0.028155364096164703,
0.024546800181269646,
0.03719359636306763,
-0.005574234761297703,
-0.021093102172017097,
-0.005859103053808212,
-0.010525668039917946,
-0.03164022043347359,
0.027063196524977684,
0.03264584019780159,
0.04288060590624809,
-0.03843647241592407,
0.045399658381938934,
-0.018177008256316185,
0.018351910635828972,
-0.0433216467499733,
0.03859744220972061,
0.02665596455335617,
-0.053389690816402435,
-0.005279175937175751,
-0.03227733448147774,
0.0015512810787186027,
-0.04330788552761078,
-0.022328993305563927,
-0.01347801461815834,
0.03256610408425331,
0.001460996805690229,
0.029116593301296234,
0.046370286494493484,
-0.023094456642866135,
0.016102077439427376,
-0.008038016967475414,
-0.040734026581048965,
0.007985091768205166,
-0.0370292142033577,
-0.027471888810396194,
-0.038778625428676605,
0.061130914837121964,
-0.000057056320656556636,
-0.0582960806787014,
-0.06993958353996277,
-0.012933995574712753,
-0.0016509117558598518,
-0.0012578378664329648,
-0.01831238344311714,
-0.019775183871388435,
-0.028950367122888565,
0.05248337239027023,
-0.08586706966161728,
-0.034769803285598755,
-0.0007544126710854471,
-0.08143850415945053,
0.032331034541130066,
0.02648239955306053,
-0.06693511456251144,
0.03548600524663925,
-0.05150244012475014,
0.04559384658932686,
-0.010820427909493446,
0.021480418741703033,
-0.039149194955825806,
0.016357794404029846,
-0.055658597499132156,
-0.028641045093536377,
-0.016330059617757797,
0.05502312257885933,
0.04915342107415199,
-0.047928184270858765,
0.049972061067819595,
0.00168138206936419,
-0.009342124685645103,
0.027558980509638786,
-0.01830688863992691,
-0.019861819222569466,
0.03507109358906746,
-0.041297655552625656,
0.00900994148105383,
-0.00959912221878767,
-0.012702004052698612,
-0.05277451500296593,
-0.0334562212228775,
0.004898014944046736,
-0.03680591285228729,
-0.01147657074034214,
0.016850300133228302,
0.04249458760023117,
-0.028158515691757202,
0.020688755437731743,
0.014674734324216843,
0.037906307727098465,
0.015057477168738842,
-0.0023781294003129005,
0.061611779034137726,
-0.028869926929473877,
-0.006031867116689682,
-0.005987511016428471,
-0.02883991226553917,
-0.036838557571172714,
-0.006186486221849918,
0.016618695110082626,
-0.05198147892951965,
-0.02728729322552681,
0.01135456282645464,
-0.002308221999555826,
-0.011288711801171303,
0.04893860965967178,
-0.04644963890314102,
-0.051232680678367615,
-0.05906037241220474,
0.03648895025253296,
0.02703133039176464,
-0.00022583217651117593,
-0.02416878193616867,
-0.0534883551299572,
0.027675917372107506,
-0.0026322517078369856,
-0.029895082116127014,
0.0023836493492126465,
0.008001798763871193,
-0.008733892813324928,
0.035100843757390976,
-0.0031421142630279064,
-0.056032322347164154,
-0.0011939422693103552,
0.009490035474300385,
-0.053015731275081635,
-0.011478566564619541,
0.007007532753050327,
0.09693148732185364,
-0.05811719596385956,
-0.06889473646879196,
0.0007266917964443564,
0.005936490837484598,
-0.03909824788570404,
0.0005491829942911863,
0.011976698413491249,
-0.04441491886973381,
-0.0456123985350132,
-0.026052428409457207,
0.030385760590434074,
-0.046461448073387146,
-0.012101416476070881,
0.09481243044137955,
-0.012607334181666374,
0.0492950864136219,
-0.02014015056192875,
-0.0018330771708860993,
0.024367503821849823,
0.02481083571910858,
-0.009815813042223454,
0.04658568277955055,
-0.032881103456020355,
-0.017670828849077225,
-0.03767687827348709,
-0.05645813047885895,
0.00852611567825079,
0.08963987231254578,
-0.027204133570194244,
0.004161508288234472,
-0.05348436161875725,
0.030239436775445938,
0.034438762813806534,
-0.0013059696648269892,
-0.019569527357816696,
0.03687528893351555,
0.05089874938130379,
0.032804641872644424,
-0.016882281750440598,
0.018037915229797363,
0.007495577912777662,
-0.02457584999501705,
-0.03054816834628582,
-0.012626001611351967,
0.03104410693049431,
-0.017949067056179047,
0.00839292723685503,
0.044254519045352936,
-0.007663573604077101,
-0.037583380937576294,
-0.006250923499464989,
0.038280848413705826,
-0.03853954002261162,
0.006883063819259405,
0.02756812982261181,
-0.011801510117948055,
-0.02420630492269993,
0.017667444422841072,
-0.010170700028538704,
-0.01949417032301426,
-0.04380486533045769,
0.008130595088005066,
0.03875977545976639,
0.01938290148973465,
0.02518571726977825,
0.0513257160782814,
-0.052578575909137726,
0.07426042854785919,
-0.04192225635051727,
0.011699027381837368,
-0.014898494817316532,
-0.054628562182188034,
0.00941410381346941,
0.04624178260564804,
0.03017313778400421,
0.02320169098675251,
-0.023209240287542343,
-0.0372144840657711,
0.045224715024232864,
0.0373908169567585,
0.06916607916355133,
0.017100602388381958,
-0.04406333342194557,
0.008078803308308125,
0.007248789072036743,
0.030638227239251137,
-0.07192426174879074,
-0.037724532186985016,
0.007951273582875729,
0.060669463127851486,
-0.04065624624490738,
0.019841952249407768,
-0.008312050253152847,
0.016783764585852623,
-0.04962047189474106,
-0.08849424868822098,
0.03760300204157829,
0.04168086498975754,
0.0050226738676428795,
0.032858956605196,
-0.0017647561617195606,
0.006196871399879456,
0.0032723748590797186,
-0.02252599410712719,
0.007695083040744066,
-0.0333312563598156,
0.016571924090385437,
0.007212537340819836,
0.08976472914218903,
-0.050451550632715225,
0.04135385900735855,
0.006596685387194157,
-0.008509667590260506,
0.018833599984645844,
-0.03367844223976135,
0.03255605697631836,
0.0789048820734024,
0.012477030977606773,
-0.03390871733427048,
0.05324173346161842,
0.015553642995655537,
0.028821665793657303,
0.04576458781957626,
0.01689721830189228,
0.060679830610752106,
-0.015253343619406223,
0.047861624509096146,
0.05224170908331871,
0.00026708884979598224,
-0.05319702997803688,
0.01525833923369646,
0.06101437285542488,
0.014159416779875755,
-0.004881301429122686,
0.06508243829011917,
-0.024204349145293236,
0.002283588983118534,
-0.06533581018447876,
0.029493890702724457,
-0.028580259531736374,
-0.007663474418222904,
0.04897068440914154,
-0.014337526634335518,
-0.008337259292602539,
-0.013651162385940552,
-0.010261379182338715,
-0.005909103434532881,
0.05107181519269943,
-0.021747440099716187,
-0.02550610527396202,
-0.027286430820822716,
-0.03499295562505722,
0.013601213693618774,
-0.0620620995759964,
-0.019614730030298233,
-0.0021918085403740406,
-0.03717326372861862,
-0.002709891414269805,
-0.09645136445760727,
0.007627634331583977,
-0.06507470458745956,
-0.01959187351167202,
0.03239965811371803,
0.01834343560039997,
0.0202880147844553,
-0.029034826904535294,
0.00825302954763174,
-0.03950406238436699,
-0.06112407520413399,
-0.05495300143957138,
-0.06266894936561584,
0.0004351421957835555,
-0.061937522143125534,
0.006949423346668482,
0.029111336916685104,
0.017883844673633575,
0.004007040522992611,
0.0022947255056351423,
-0.01893439330160618,
-0.0329035148024559,
0.04525423422455788,
0.023116782307624817,
0.0005892969202250242,
-0.06956972181797028,
0.014839639887213707,
-0.020856240764260292,
-0.02654985338449478,
-0.02883775159716606,
-0.04025423899292946,
0.08078357577323914,
0.04041988402605057,
0.05360732600092888,
0.0342022180557251,
0.0018413643119856715,
-0.031069835647940636,
-0.025878775864839554,
-0.038973622024059296,
-0.055353906005620956,
-0.023362791165709496,
-0.027135076001286507,
-0.011727049946784973,
0.014359001070261002,
-0.03298451378941536,
0.004037972539663315,
-0.030285274609923363,
-0.008850639685988426,
0.023428544402122498,
0.029919348657131195,
0.034264352172613144,
0.05414596572518349,
-0.03616057336330414,
-0.054112765938043594,
0.053083740174770355,
-0.017007235437631607,
-0.030071444809436798,
-0.0650225430727005,
-0.05486026033759117,
0.04823566600680351,
0.01682457886636257,
0.015568381175398827,
-0.028633875772356987,
0.02517653815448284,
0.024802397936582565,
-0.021596010774374008,
0.008682557381689548,
-0.03688393533229828,
0.0013949725544080138,
-0.018238218501210213,
-0.024588456377387047,
-0.007122613023966551,
-0.026421215385198593,
-0.027641471475362778,
0.029446670785546303,
0.07234600931406021,
-0.04616047814488411,
-0.013378429226577282,
0.011618422344326973,
0.014740383252501488,
0.06122153252363205,
-0.0027944836765527725,
-0.05630260333418846,
0.024464160203933716,
-0.03206552937626839,
-0.023292016237974167,
0.043639689683914185,
-0.00817924365401268,
0.05611104518175125,
0.05273258686065674,
0.03893449157476425,
-0.008095940575003624,
0.04222271963953972,
0.01328737661242485,
0.05108734965324402,
0.04040619358420372,
-0.02223869040608406,
-0.0032970167230814695,
-0.00690791942179203,
0.013383113779127598,
-0.011587954126298428,
-0.03504170849919319,
-0.060182224959135056,
-0.099518321454525,
-0.007203496061265469,
0.03908565640449524,
-0.017394211143255234,
0.004625315777957439,
0.04065762460231781,
0.021247586235404015,
-0.02863587997853756,
0.019566675648093224,
0.032686296850442886,
0.02148381620645523,
-0.031146464869379997,
0.04691778123378754,
-0.002739878837019205,
0.009646064601838589,
-0.039680540561676025,
0.0037850525695830584,
-0.05527717247605324,
-0.0299259964376688,
-0.007287859451025724,
0.04049147292971611,
-0.003541333135217428,
0.0658961832523346,
0.0562390573322773,
-0.010976473800837994,
-0.04101787135004997,
0.028092823922634125,
0.08205634355545044,
-0.03729664534330368,
-0.08006579428911209,
0.005100871901959181,
0.007004872430115938,
-0.01140595506876707,
-0.02874261885881424,
0.00362257263623178,
0.040992945432662964,
0.03279365226626396,
-0.016635773703455925,
0.011946449056267738,
0.01526469737291336,
-0.02477431856095791,
-0.006165226921439171,
-0.046416256576776505,
0.017155341804027557,
0.016733765602111816,
0.018342267721891403,
-0.0232363473623991,
0.021486639976501465,
0.035858165472745895,
0.04895433411002159,
0.015611927025020123,
-0.051461681723594666,
-0.06183306500315666,
0.036086972802877426,
0.005871926434338093,
-0.06388505548238754,
-0.09833385050296783,
-0.023931173607707024,
0.02550596185028553,
0.051492590457201004,
-0.014027798548340797,
-0.04683689773082733,
0.05786960572004318,
0.03827674686908722,
-0.030919019132852554,
0.051057517528533936,
0.006894068326801062,
0.04335018992424011,
0.031041525304317474,
-0.025130584836006165,
0.01475424412637949,
-0.034726228564977646,
-0.014597795903682709,
0.02189542166888714,
0.04207279160618782,
-0.02903646230697632,
-0.009359780699014664,
-0.050678204745054245,
0.012609404511749744,
0.05538566783070564,
0.026055121794342995,
0.045382022857666016,
-0.03765776753425598,
-0.06797008961439133,
0.00506127905100584,
0.042322590947151184,
-0.033380553126335144,
0.0253126360476017,
0.06351480633020401,
0.01586947776377201,
-0.03745483234524727,
-0.07047436386346817,
0.008514118380844593,
-0.011188818141818047,
0.02217024378478527,
-0.07622770965099335,
-0.04721469059586525,
-0.015007374808192253,
-0.00463870307430625,
0.01325085386633873,
-0.01994578167796135,
-0.08007997274398804,
0.03170435130596161,
0.029393726959824562,
-0.040464647114276886,
0.0643715038895607,
0.032313764095306396,
0.029150238260626793,
0.05314955115318298,
0.03494870662689209,
0.04048314318060875,
-0.030411532148718834,
0.052702710032463074,
-0.019495373591780663,
-0.015497625805437565,
0.003257962642237544,
-0.061496589332818985,
-0.04273485392332077,
-0.021263569593429565,
-0.03468963876366615,
-0.03194152191281319,
-0.037286337465047836,
0.015160580165684223,
-0.01300904806703329,
0.03867020830512047,
-0.02722008340060711,
0.02879943884909153,
-0.01692405715584755,
-0.05438102409243584,
-0.02973521128296852,
-0.03917667642235756,
-0.07561744004487991,
-0.05141270533204079,
0.041578952223062515,
0.002738439943641424,
-0.008772102184593678,
-0.00994409341365099,
0.032358378171920776,
0.05732862278819084,
0.027621537446975708,
-0.03829784691333771,
0.01767403446137905,
0.01046181283891201,
-0.03251652047038078,
-0.024059737101197243,
-0.009426974691450596,
0.019209042191505432,
0.033342648297548294,
-0.011281079612672329,
0.01881568320095539,
0.01948407292366028,
-0.013849092647433281,
-0.022251438349485397,
0.010508781298995018,
0.018652290105819702,
-0.05159462243318558,
-0.011133206076920033,
-0.0008404600084759295,
-0.02647295966744423,
0.03361554816365242,
-0.026654426008462906,
-0.033384114503860474,
0.027787402272224426,
-0.02236396260559559,
0.037807103246450424,
0.034335214644670486,
-0.011967825703322887,
0.019123530015349388,
-0.031051218509674072,
-0.000025071301934076473,
-0.037677161395549774,
0.04257463663816452,
-0.026402411982417107,
0.03330797702074051,
-0.012394511140882969,
-0.005221186205744743,
-0.08680425584316254,
0.05527611821889877,
-0.05111447349190712,
-0.01571730524301529,
0.002216481603682041,
0.022447962313890457,
-0.009601886384189129,
-0.0023721749894320965,
-0.009744906798005104,
0.020271718502044678,
-0.05781376361846924,
0.08968038111925125,
-0.026444224640727043,
-0.003995896782726049,
-0.020910443738102913,
0.02565082348883152,
-0.047415491193532944,
-0.004802163224667311,
-0.015270772390067577,
-0.030975263565778732,
0.028452076017856598,
0.022419139742851257,
0.024385610595345497,
0.03663528710603714,
-0.03720424324274063,
0.004534853622317314,
0.021457461640238762,
-0.05570747330784798,
0.005565074738115072,
0.004607507959008217,
0.012679857201874256,
0.027684936299920082,
0.03860117122530937,
0.00907635223120451,
-0.02391960285604,
-0.061803076416254044,
0.055639367550611496,
0.029641570523381233,
0.009466562420129776,
-0.018184395506978035,
0.020768100395798683,
0.02039557509124279,
0.04146961122751236,
-0.03191833198070526,
-0.039843007922172546,
-0.019986875355243683,
-0.03304791823029518,
0.05206691101193428,
-0.0029867563862353563,
0.023278387263417244,
-0.007278345990926027,
-0.06538944691419601,
-0.056951846927404404,
0.06278762966394424,
0.0368000864982605,
0.0303671695291996,
-0.022019557654857635,
-0.054144322872161865,
0.07491379231214523,
-0.008974846452474594,
-0.03624262288212776,
0.021021703258156776,
0.03816904127597809,
-0.027609648182988167,
0.02798507548868656,
-0.00008657104626763612,
0.037870004773139954,
0.042609699070453644,
0.0407954603433609,
-0.027627771720290184,
0.02598356269299984,
-0.012080020271241665,
0.006642734166234732,
0.05334344506263733,
-0.05414493381977081,
-0.026168981567025185,
-0.058593664318323135,
0.05709308758378029,
-0.054177556186914444,
0.0623394176363945,
0.01579933986067772,
-0.013035664334893227,
-0.01747804693877697,
-0.044889967888593674,
-0.043415289372205734,
-0.003102701622992754,
-0.028529101982712746,
0.06865782290697098,
-0.023673629388213158,
-0.054785314947366714,
0.06283147633075714,
0.01499293465167284,
-0.06759243458509445,
0.04834743216633797,
0.03515434265136719,
0.018155107274651527,
0.013306394219398499,
0.03012617491185665,
-0.05154113844037056,
0.022035155445337296,
-0.04486781358718872,
0.0377361923456192,
-0.03539808839559555,
-0.004021019209176302,
0.008558898232877254,
-0.02478504739701748,
-0.06069730222225189,
0.01060667634010315,
0.0024213604629039764,
0.027150703594088554,
0.0365087054669857,
-0.03998268023133278,
-0.051621213555336,
-0.021979009732604027,
0.008817925117909908,
-0.007825274020433426,
-0.0015075281262397766,
-0.06414960324764252,
-0.010610859841108322,
0.030527587980031967,
0.006215859670192003,
-0.015770133584737778,
0.0198482908308506,
0.00257426081225276,
-0.06866999715566635,
-0.04278802126646042,
0.05238467454910278,
0.01261547114700079,
-0.032533224672079086,
0.009566590189933777,
0.007413022685796022,
0.031820058822631836,
0.03360353410243988,
-0.008608915843069553,
0.0578005313873291,
-0.04929409548640251,
-0.04214916005730629,
0.023177629336714745,
-0.0334787592291832,
0.01595436781644821,
-0.009325017221271992,
0.01440851204097271,
0.05419452115893364,
0.03444571793079376,
0.010430380702018738,
-0.04151233658194542,
-0.05939796194434166,
0.009653274901211262,
-0.025049638003110886,
0.018256083130836487,
-0.018380625173449516,
-0.05405576899647713,
-0.04093777388334274,
-0.007732815109193325,
-0.042594064027071,
0.0555405467748642,
-0.04085557535290718,
0.03932875394821167,
0.029218943789601326,
0.03740725293755531,
-0.0687800943851471,
-0.06518856436014175,
-0.022222988307476044,
-0.03800325095653534,
0.006162108853459358,
0.007179378531873226,
-0.02514684945344925,
0.02251681499183178,
-0.03107292577624321,
-0.07162459194660187,
0.045979227870702744,
-0.0057820966467261314,
-0.00914754904806614,
0.04664306342601776,
0.04800054058432579,
0.002948733512312174,
0.018154403194785118,
0.03408757597208023,
-0.03194141760468483,
0.01597171276807785,
0.006258570589125156,
0.016826706007122993,
0.02193746715784073,
0.024740422144532204,
-0.01698964461684227,
-0.02454041689634323,
-0.046653881669044495,
-0.05474729463458061,
-0.035552483052015305,
-0.0019113008165732026,
0.06143293157219887
] |
AnonymousSub/bert_triplet_epochs_1_shard_10 | [
"pytorch",
"bert",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"BertModel"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 1 | null | ---
language: en
tags:
- multivae
license: apache-2.0
---
### Downloading this model from the Hub
This model was trained with multivae. It can be downloaded or reloaded using the method `load_from_hf_hub`
```python
>>> from multivae.models import AutoModel
>>> model = AutoModel.load_from_hf_hub(hf_hub_path="your_hf_username/repo_name")
```
| [
-0.03653835132718086,
-0.0589064285159111,
-0.005368987563997507,
0.005391913000494242,
0.05030456930398941,
0.01870766468346119,
-0.006683170795440674,
-0.011249218136072159,
-0.02457122877240181,
0.02907027117908001,
0.0364757664501667,
0.00390697130933404,
0.03047722764313221,
0.04623886197805405,
-0.03794432058930397,
-0.020379548892378807,
-0.016867248341441154,
0.01913566328585148,
-0.06022094935178757,
0.003557350253686309,
0.03541235625743866,
0.017231319099664688,
-0.01924034021794796,
0.056218892335891724,
-0.009203637950122356,
-0.0014166191685944796,
0.005358221475034952,
0.02857666276395321,
0.03042895533144474,
-0.03500586375594139,
-0.006961334962397814,
-0.018316447734832764,
-0.04089336842298508,
-0.027679461985826492,
-0.012879469431936741,
0.0004695974930655211,
0.013268986716866493,
0.017253544181585312,
0.04153020307421684,
0.03985690698027611,
-0.033293452113866806,
0.006735892966389656,
-0.03065025433897972,
-0.02076013572514057,
0.051138363778591156,
0.017789455130696297,
-0.05357955023646355,
-0.07007883489131927,
0.019428210332989693,
-0.03591998293995857,
-0.052648235112428665,
-0.08905493468046188,
-0.023169465363025665,
0.03132591024041176,
-0.01311787310987711,
-0.03147052973508835,
-0.06035957112908363,
0.0005433755577541888,
0.05781544744968414,
-0.05618497356772423,
-0.004224841948598623,
0.022874267771840096,
-0.07422199100255966,
0.004319923929870129,
0.06732691824436188,
-0.04297355189919472,
0.009938218630850315,
-0.010648590512573719,
0.025675149634480476,
-0.026315076276659966,
0.056430451571941376,
-0.03673400357365608,
0.014852190390229225,
-0.061370670795440674,
-0.010391832329332829,
-0.0005625757621601224,
0.038416389375925064,
0.04170273616909981,
-0.03764668107032776,
0.05764945596456528,
0.00322168692946434,
-0.005975981708616018,
0.02824198268353939,
-0.016486050561070442,
0.0031241162214428186,
0.018756357952952385,
-0.027907593175768852,
0.014062057249248028,
-0.011407959274947643,
0.04382830485701561,
-0.05304591730237007,
-0.04236830025911331,
0.023244712501764297,
-0.02388385869562626,
-0.029878610745072365,
0.04557359963655472,
0.034064292907714844,
-0.027813654392957687,
0.026241932064294815,
0.0402655191719532,
0.02101537212729454,
0.02551089972257614,
-0.004422211088240147,
0.0654582604765892,
-0.01650647446513176,
0.0011813045712187886,
-0.04754916578531265,
-0.04233439266681671,
-0.02593913860619068,
0.031235165894031525,
0.015317457728087902,
-0.04126176983118057,
0.0009994927095249295,
0.06201457977294922,
0.0063222250901162624,
-0.008705283515155315,
0.07001321762800217,
-0.03317420929670334,
-0.019966110587120056,
-0.061003874987363815,
0.05232994630932808,
0.02523181214928627,
-0.02481016516685486,
0.023239443078637123,
-0.03770006075501442,
0.0008221686002798378,
-0.02440531924366951,
-0.042343128472566605,
0.009290887042880058,
0.019469620659947395,
-0.00979266595095396,
0.029885392636060715,
0.01523866131901741,
-0.08386615663766861,
0.023876044899225235,
0.0401790626347065,
-0.05475885421037674,
0.025554655119776726,
0.015381718054413795,
0.09178122878074646,
-0.03722762688994408,
-0.02624625526368618,
0.02287149801850319,
0.0038300289306789637,
-0.01896735467016697,
0.020021220669150352,
-0.007547722198069096,
-0.015626562759280205,
-0.03373004496097565,
-0.02159873954951763,
0.03777804225683212,
-0.02688191644847393,
-0.03127949684858322,
0.06196681782603264,
-0.027126803994178772,
0.052806172519922256,
-0.014125889167189598,
0.026248304173350334,
0.0004607862501870841,
-0.0056815617717802525,
0.008356462232768536,
0.04333847761154175,
-0.01113801822066307,
0.0022598665673285723,
-0.01629800722002983,
-0.04515685886144638,
-0.010635726153850555,
0.10414169728755951,
-0.008871796540915966,
-0.03164014592766762,
-0.03948146849870682,
0.020742086693644524,
0.008994382806122303,
0.02797471173107624,
-0.00715639116242528,
0.02146308124065399,
0.050528883934020996,
0.039864350110292435,
-0.01858575828373432,
0.053466010838747025,
0.01971730962395668,
-0.011312817223370075,
-0.013586297631263733,
0.024678101763129234,
0.0039931959472596645,
-0.02253223955631256,
-0.007955110631883144,
0.06399843841791153,
-0.018308041617274284,
-0.037877604365348816,
-0.004587984178215265,
0.04949965327978134,
0.010265983641147614,
-0.01702883094549179,
0.007616266142576933,
-0.012751972302794456,
-0.022916046902537346,
0.034706246107816696,
-0.031529828906059265,
-0.037947800010442734,
-0.02574331872165203,
-0.002938555320724845,
0.002273542806506157,
0.00022843146871309727,
0.03125346824526787,
0.032577887177467346,
0.005259580444544554,
0.08569318056106567,
-0.009891337715089321,
0.007467861287295818,
-0.044047728180885315,
-0.06567508727312088,
0.0017082549165934324,
0.03744647279381752,
0.027750128880143166,
0.04771023243665695,
-0.0012689479626715183,
-0.06591365486383438,
0.05289948359131813,
0.0638592317700386,
0.05741448327898979,
0.009537696838378906,
-0.061723481863737106,
-0.010344740003347397,
0.0017675760900601745,
0.05783488601446152,
-0.0676586776971817,
-0.029895054176449776,
0.02839510515332222,
0.07000762224197388,
-0.0477648600935936,
0.017441093921661377,
-0.01591043546795845,
0.03875073045492172,
-0.030673163011670113,
-0.06163795292377472,
0.024117514491081238,
0.04688875749707222,
0.01557838823646307,
0.01781550422310829,
0.005601782817393541,
-0.007133231498301029,
0.011860694736242294,
0.04811428487300873,
0.006991838105022907,
-0.05325780808925629,
-0.0010358091676607728,
0.04554852470755577,
0.07897786051034927,
-0.04238736256957054,
0.06762015074491501,
-0.006745492108166218,
0.017879273742437363,
0.022831957787275314,
-0.07176157087087631,
0.03214283287525177,
0.06936555355787277,
0.00851456355303526,
-0.03179458901286125,
0.035948142409324646,
0.007337749470025301,
0.035547755658626556,
0.03566986322402954,
0.026407184079289436,
0.06382487714290619,
0.019715839996933937,
0.027780979871749878,
0.057460758835077286,
0.01768632046878338,
0.012403137050569057,
0.033303841948509216,
0.0814175009727478,
0.006320151034742594,
0.00927774142473936,
0.04905739799141884,
-0.03845897316932678,
0.01477555837482214,
-0.03579850122332573,
-0.019456615671515465,
-0.007950391620397568,
0.014951669611036777,
0.05383428931236267,
-0.015130506828427315,
-0.0000699775482644327,
0.02240668423473835,
-0.003327568992972374,
-0.019619202241301537,
0.02571139857172966,
-0.02133522555232048,
-0.0002596390841063112,
0.005150557961314917,
-0.00167705281637609,
0.02129850722849369,
-0.07278750091791153,
-0.0222091693431139,
-0.018296632915735245,
-0.055469997227191925,
-0.018862349912524223,
-0.03941299021244049,
-0.01736075058579445,
-0.06693108379840851,
-0.0339493602514267,
0.036194704473018646,
0.007574363145977259,
-0.009996656328439713,
-0.03893806412816048,
0.009445910342037678,
-0.017599545419216156,
-0.038339462131261826,
-0.047982107847929,
-0.07200756669044495,
-0.03321781009435654,
-0.06784951686859131,
0.040320366621017456,
0.008416040800511837,
0.010477881878614426,
-0.009763135574758053,
0.006483654025942087,
-0.009264299646019936,
-0.023035909980535507,
0.04156135767698288,
0.05951297655701637,
-0.03179117664694786,
-0.05032818764448166,
0.017294397577643394,
0.0009445754694752395,
-0.01307474821805954,
-0.010944237932562828,
-0.0434337817132473,
0.061762385070323944,
0.03719564527273178,
0.013990147039294243,
-0.0009296219795942307,
0.011805793270468712,
-0.05474938824772835,
-0.03612641245126724,
-0.01594512164592743,
-0.05625859647989273,
-0.017202097922563553,
-0.023007966578006744,
-0.05097094178199768,
-0.006029908545315266,
-0.060225293040275574,
-0.0330386646091938,
-0.02017311006784439,
-0.018388673663139343,
0.01655513606965542,
0.06911256164312363,
0.034980855882167816,
0.039885956794023514,
-0.03476468846201897,
-0.030564401298761368,
0.05419059842824936,
0.02678488753736019,
-0.014265786856412888,
-0.06258124858140945,
-0.04423857852816582,
0.030142221599817276,
0.007431927602738142,
-0.0028874347917735577,
-0.02575753629207611,
0.06155521422624588,
0.012970433570444584,
0.0152598200365901,
0.017043650150299072,
-0.0312403105199337,
-0.017318101599812508,
-0.01936963014304638,
0.011372590437531471,
-0.017395740374922752,
-0.05934428423643112,
0.00547734135761857,
0.005321012809872627,
0.04847993329167366,
-0.06779906898736954,
-0.04321813955903053,
-0.02664348855614662,
0.01960359886288643,
0.01865725964307785,
-0.008989344350993633,
-0.040652841329574585,
-0.010854486376047134,
-0.07156755030155182,
-0.018482692539691925,
0.034451477229595184,
-0.02213849313557148,
0.017007149755954742,
0.0784391313791275,
0.03059997595846653,
-0.00704371789470315,
0.07584229856729507,
0.03677073121070862,
0.050171494483947754,
0.03214385360479355,
-0.054493248462677,
0.012537938542664051,
-0.03172309324145317,
0.03760753944516182,
-0.0010339806322008371,
-0.006213419605046511,
-0.052086327224969864,
-0.06945781409740448,
-0.028190329670906067,
0.032078202813863754,
-0.007588554173707962,
-0.012797923758625984,
0.07419191300868988,
-0.03016509674489498,
-0.029872683808207512,
-0.029929881915450096,
0.00508941151201725,
0.03831838443875313,
-0.05511895939707756,
0.0778065174818039,
0.015368056483566761,
0.03998766839504242,
-0.035368870943784714,
0.008705508895218372,
-0.027681201696395874,
-0.034389033913612366,
0.023716270923614502,
0.04368262737989426,
0.020487602800130844,
0.07223216444253922,
0.0412609688937664,
-0.011896011419594288,
-0.020987125113606453,
0.07332876324653625,
0.04070275276899338,
-0.00084888213314116,
-0.0331268310546875,
0.024056782945990562,
-0.014556762762367725,
-0.03178019821643829,
-0.02759299799799919,
-0.024090660735964775,
0.04913433641195297,
0.04447862505912781,
0.0015229274285957217,
0.03690577670931816,
0.00037670950405299664,
-0.0037687509320676327,
-0.02073991857469082,
-0.027390409260988235,
-0.008921224623918533,
0.0132444454357028,
0.008542349562048912,
-0.001143895206041634,
0.052674826234579086,
0.0017333179712295532,
0.04572582244873047,
0.04831893369555473,
-0.033332325518131256,
-0.05508149787783623,
0.00018735101912170649,
0.016268517822027206,
-0.029173340648412704,
-0.057619206607341766,
-0.015689203515648842,
0.05635377764701843,
0.03118319995701313,
-0.025134123861789703,
-0.0759405717253685,
0.011015956290066242,
0.06206187233328819,
-0.04164844751358032,
0.05204584077000618,
-0.012455662712454796,
0.031056135892868042,
0.06679674237966537,
-0.03188219666481018,
0.01468038558959961,
-0.035865746438503265,
0.008008217439055443,
-0.010002235881984234,
0.031239453703165054,
-0.01651153899729252,
-0.054837387055158615,
-0.018532898277044296,
0.021179702132940292,
0.049981482326984406,
0.029545292258262634,
0.026840638369321823,
-0.04692783206701279,
-0.06494230031967163,
-0.01127168070524931,
0.036284614354372025,
-0.026850536465644836,
0.00256329239346087,
0.03420489653944969,
0.017835408449172974,
-0.05337918922305107,
-0.023192614316940308,
-0.0292477086186409,
-0.01697058603167534,
0.025162935256958008,
-0.012227875180542469,
-0.04750435799360275,
-0.0450243316590786,
0.02426774986088276,
0.013895806856453419,
-0.02674209326505661,
-0.09684325754642487,
-0.002129973378032446,
0.0006977980956435204,
-0.013505271635949612,
0.06590434163808823,
0.0022066175006330013,
0.050470057874917984,
0.0651717260479927,
-0.016715550795197487,
0.014414706267416477,
-0.03768252208828926,
0.05724985525012016,
-0.029064053669571877,
-0.04064387455582619,
-0.015490545891225338,
-0.04138048738241196,
-0.04646379500627518,
-0.019151324406266212,
-0.038720518350601196,
-0.022841133177280426,
-0.020001763477921486,
0.006155236158519983,
0.00047212716890498996,
0.005495082121342421,
0.006653661839663982,
0.01134965568780899,
-0.03663972392678261,
-0.011128812097012997,
-0.061596017330884933,
0.000915598648134619,
-0.055635448545217514,
-0.033482976257801056,
0.05334125831723213,
0.01955190859735012,
0.014710613526403904,
0.01036012452095747,
0.01727980561554432,
0.0344591848552227,
0.01705937087535858,
-0.021502044051885605,
0.015048789791762829,
0.010929486714303493,
-0.05990331247448921,
-0.016013605520129204,
0.010871176607906818,
0.021603981032967567,
0.032593097537755966,
-0.019438982009887695,
0.02213236317038536,
0.01013191044330597,
-0.008355917409062386,
0.0003303708217572421,
0.026949316263198853,
-0.0035116630606353283,
-0.03532508760690689,
-0.025714943185448647,
0.007779297884553671,
-0.05091191083192825,
0.031202208250761032,
-0.033075202256441116,
-0.008108828216791153,
0.009064842946827412,
0.009753496386110783,
0.04764978960156441,
-0.005467759910970926,
-0.03557697683572769,
0.04434780776500702,
-0.023004859685897827,
-0.017728688195347786,
-0.0706191435456276,
0.00539025291800499,
-0.030301032587885857,
0.030586401000618935,
-0.012656879611313343,
-0.0219406858086586,
-0.04371989145874977,
0.05924983695149422,
-0.029537109658122063,
-0.02484324388206005,
-0.024910511448979378,
0.021409712731838226,
-0.03784727677702904,
0.06277491897344589,
-0.0011286260560154915,
-0.006248863413929939,
-0.022471634671092033,
0.0630207285284996,
-0.05889875814318657,
-0.017696239054203033,
-0.04096285253763199,
-0.020944567397236824,
-0.009959875606000423,
-0.014568155631422997,
-0.046436261385679245,
-0.016878027468919754,
0.016576219350099564,
0.035287123173475266,
0.032026566565036774,
0.000588736031204462,
-0.02583296038210392,
-0.007536584045737982,
0.03040492907166481,
-0.068753182888031,
-0.036406029015779495,
-0.010080023668706417,
0.017734099179506302,
0.009793422184884548,
0.06755339354276657,
0.051092732697725296,
-0.05605773255228996,
-0.055320896208286285,
0.07995570451021194,
0.02032618038356304,
0.018147442489862442,
0.002044129651039839,
0.031354401260614395,
0.024805355817079544,
0.024092627689242363,
-0.03571571782231331,
-0.02488197758793831,
-0.023432862013578415,
-0.024376749992370605,
0.025958117097616196,
-0.016568772494792938,
0.022367695346474648,
0.022098414599895477,
-0.04242313280701637,
-0.01893918216228485,
0.055162690579891205,
0.038023367524147034,
0.04904843866825104,
-0.04269510880112648,
-0.0378771647810936,
0.02934284321963787,
0.004156280774623156,
-0.03855809196829796,
0.01436593383550644,
0.018413908779621124,
-0.04330476000905037,
0.06634138524532318,
-0.014324516989290714,
0.02834511175751686,
0.052519965916872025,
0.05344625934958458,
-0.040914203971624374,
0.04283503070473671,
-0.03738430142402649,
0.003686098614707589,
0.08616779744625092,
-0.07128587365150452,
-0.014768078923225403,
-0.03466568514704704,
0.06007346510887146,
-0.0729433223605156,
0.06740841269493103,
0.023366525769233704,
0.01868862472474575,
0.031534068286418915,
-0.06245650723576546,
-0.022734442725777626,
-0.011579527519643307,
-0.057002704590559006,
0.10827931761741638,
0.016981249675154686,
-0.0632329210639,
0.07182544469833374,
0.012747563421726227,
-0.08543266355991364,
0.023531705141067505,
0.014975626952946186,
0.003253230592235923,
0.028079234063625336,
0.033339399844408035,
-0.03481694683432579,
0.014923774637281895,
-0.030595330521464348,
0.039692338556051254,
-0.0513954795897007,
0.01366232056170702,
0.04060288891196251,
-0.03227020800113678,
-0.008016284555196762,
0.04239697381854057,
-0.012026558630168438,
0.005741189233958721,
0.0013844980858266354,
-0.04056929051876068,
-0.062307290732860565,
0.0020008462015539408,
0.025496279820799828,
-0.004101249855011702,
0.012021617032587528,
-0.019987130537629128,
0.007738293148577213,
0.02151343785226345,
-0.010122152045369148,
-0.016517380252480507,
-0.015290522016584873,
0.03204130381345749,
-0.07103744149208069,
-0.04747762531042099,
0.008366077207028866,
-0.004246720112860203,
-0.03522021323442459,
0.013832082971930504,
0.0026200604625046253,
0.019243020564317703,
0.007822987623512745,
0.0037739244289696217,
0.005129584111273289,
-0.06437056511640549,
-0.014522751793265343,
0.011046298779547215,
-0.003293295856565237,
0.035204265266656876,
-0.02721576765179634,
0.040247976779937744,
0.02255127765238285,
0.00174096436239779,
0.016272924840450287,
-0.024860508739948273,
-0.012515773996710777,
0.008795349858701229,
-0.05519641190767288,
-0.002066368702799082,
-0.022644126787781715,
-0.031630128622055054,
-0.035480618476867676,
0.010400013998150826,
-0.014320412650704384,
0.05618041381239891,
-0.045323509722948074,
0.014688673429191113,
0.0010307467309758067,
-0.01029975526034832,
-0.05325010418891907,
-0.11370205134153366,
-0.03998284786939621,
-0.03198140859603882,
0.025985579937696457,
0.0006696816417388618,
-0.024047495797276497,
0.03685036674141884,
-0.019789615646004677,
-0.06844426691532135,
0.03613574057817459,
0.019504504278302193,
-0.010046949610114098,
0.04757368937134743,
0.03573896363377571,
-0.05206426605582237,
0.015363717451691628,
0.04449347034096718,
-0.02272219955921173,
0.05151967331767082,
-0.0030764639377593994,
-0.0015816300874575973,
0.006071071606129408,
-0.0007945179240778089,
-0.043229710310697556,
-0.01063796877861023,
-0.054350875318050385,
-0.04731578379869461,
-0.007025117054581642,
-0.01608392223715782,
0.054811254143714905
] |
AnonymousSub/cline | [
"pytorch",
"roberta",
"transformers"
] | null | {
"architectures": [
"LecbertForPreTraining"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null |
---
license: creativeml-openrail-m
base_model: runwayml/stable-diffusion-v1-5
instance_prompt: A picture of <target> coding
tags:
- stable-diffusion
- stable-diffusion-ppdiffusers
- text-to-image
- ppdiffusers
- lora
inference: false
---
# LoRA DreamBooth - mortal99/test
本仓库的 LoRA 权重是基于 runwayml/stable-diffusion-v1-5 训练而来的,我们采用[DreamBooth](https://dreambooth.github.io/)的技术并使用 A picture of <target> coding 文本进行了训练。
| [
-0.031168852001428604,
-0.018786156550049782,
-0.006156939547508955,
0.021907947957515717,
0.04378790035843849,
-0.0011468882439658046,
-0.0054695867002010345,
-0.018505219370126724,
-0.002285894937813282,
0.055439967662096024,
0.026839865371584892,
-0.007926424965262413,
-0.024058930575847626,
0.030260534957051277,
-0.005088781472295523,
-0.05915876105427742,
-0.006726790219545364,
0.0071040731854736805,
-0.03271394595503807,
0.015152070671319962,
0.05718027800321579,
0.004867990501224995,
-0.007925531826913357,
0.023601554334163666,
0.00817927997559309,
-0.0003539356403052807,
-0.023605331778526306,
0.03485379368066788,
0.018749281764030457,
-0.07061880826950073,
-0.00387847819365561,
-0.03746228292584419,
-0.016820028424263,
-0.01459648460149765,
-0.04302721470594406,
0.008875851519405842,
0.025399072095751762,
0.013177631422877312,
0.012228564359247684,
0.08011500537395477,
-0.0024859579280018806,
0.012075846083462238,
0.006486807484179735,
-0.03857472538948059,
0.051386505365371704,
-0.01998075656592846,
-0.03983122110366821,
-0.041775792837142944,
0.05669292062520981,
-0.036534734070301056,
-0.06939540803432465,
-0.04582693427801132,
-0.01424591988325119,
0.02309618704020977,
0.006557035725563765,
-0.018841933459043503,
-0.054174553602933884,
-0.017815617844462395,
0.026355700567364693,
-0.04372478276491165,
-0.04132505878806114,
0.00029176115640439093,
-0.06501628458499908,
-0.004941385705024004,
0.005803038366138935,
-0.03594019636511803,
0.0008415956981480122,
-0.05167089030146599,
0.009269136935472488,
0.014477705582976341,
0.06357225030660629,
-0.03919968008995056,
0.008536718785762787,
-0.06294867396354675,
-0.00558788888156414,
-0.016338767483830452,
0.0719153955578804,
0.029495680704712868,
-0.03629312664270401,
0.05034446343779564,
0.04016018658876419,
0.02177366614341736,
0.011024901643395424,
-0.007552070077508688,
-0.008182038553059101,
0.028861720114946365,
-0.004745160695165396,
-0.002925755688920617,
0.010766981169581413,
0.005105833988636732,
-0.04445704072713852,
-0.048134706914424896,
-0.04325708746910095,
-0.03505481034517288,
0.006403474137187004,
0.027428539469838142,
0.06351158022880554,
-0.011930661275982857,
0.017608575522899628,
0.00814416166394949,
0.02386232651770115,
0.05776872858405113,
-0.011370329186320305,
0.04548715800046921,
-0.04032601788640022,
-0.03345094621181488,
-0.015290255658328533,
-0.03141755983233452,
-0.04721144586801529,
0.037412602454423904,
0.014305511489510536,
-0.01086710300296545,
-0.01946355774998665,
0.021641883999109268,
0.0006624634843319654,
0.002557354746386409,
0.04351628199219704,
-0.011582259088754654,
-0.03279611095786095,
-0.0725221261382103,
0.06334144622087479,
0.0006636778707616031,
-0.020312873646616936,
0.020805884152650833,
-0.03878277540206909,
0.007149235345423222,
-0.044916782528162,
-0.04534832388162613,
0.007426366209983826,
0.025860121473670006,
-0.00689698988571763,
0.03770771622657776,
-0.004273386672139168,
-0.058892518281936646,
0.04134659469127655,
0.032369647175073624,
-0.07521947473287582,
0.04142574220895767,
0.00957122165709734,
0.1459709107875824,
-0.059607818722724915,
-0.05242412909865379,
0.02861212007701397,
0.019721416756510735,
-0.042162224650382996,
0.0018220616038888693,
-0.01784028857946396,
-0.04598831757903099,
-0.016473961994051933,
-0.020914286375045776,
0.027303118258714676,
-0.06354083865880966,
-0.01302399393171072,
0.031854238361120224,
0.013389398343861103,
0.04063161090016365,
-0.01674753613770008,
-0.03799794241786003,
-0.006687002722173929,
-0.016336750239133835,
-0.01929335482418537,
0.03996697813272476,
-0.008521772921085358,
-0.0395851768553257,
-0.02802799828350544,
-0.029350658878684044,
-0.0037019371520727873,
0.06617088615894318,
0.00287027470767498,
-0.0345676988363266,
-0.03261229768395424,
0.026397814974188805,
0.05025915056467056,
0.021915245801210403,
0.006602051202207804,
0.050640448927879333,
0.05437958240509033,
0.019252531230449677,
-0.028984954580664635,
0.0657900720834732,
0.021633077412843704,
-0.03324314206838608,
-0.02568805031478405,
-0.011952603235840797,
0.006115710362792015,
-0.029819166287779808,
-0.02462780848145485,
0.03964320570230484,
0.011100413277745247,
-0.027724670246243477,
-0.010913506150245667,
0.0482318289577961,
-0.0076573570258915424,
-0.027522213757038116,
0.007037998177111149,
-0.013100508600473404,
-0.012810107320547104,
0.04986824095249176,
-0.007644790690392256,
-0.017499607056379318,
-0.018299834802746773,
-0.02152695320546627,
-0.010714775882661343,
0.0007134003681130707,
0.04875357076525688,
0.05370958521962166,
0.010279804468154907,
0.0787435844540596,
-0.04349610581994057,
0.018861297518014908,
-0.057131554931402206,
-0.06971743702888489,
0.017338449135422707,
0.06534423679113388,
0.0016187690198421478,
0.026883255690336227,
-0.018789131194353104,
-0.037480466067790985,
0.04123871773481369,
0.04999050870537758,
0.017344987019896507,
0.0021611815318465233,
-0.030268343165516853,
-0.016522614285349846,
0.035859983414411545,
0.030199246481060982,
-0.03471970930695534,
-0.03937189280986786,
0.020059438422322273,
0.050329990684986115,
-0.059731025248765945,
0.005749126896262169,
-0.01543223112821579,
0.0177182424813509,
-0.03682020306587219,
-0.045028459280729294,
0.015116522088646889,
0.03957488760352135,
0.010303950868546963,
0.026083122938871384,
-0.005090353544801474,
0.013092941604554653,
0.037824440747499466,
0.021266961470246315,
0.056119147688150406,
-0.04232441633939743,
0.018451020121574402,
0.030618667602539062,
0.05360117927193642,
-0.06107493117451668,
0.05546640232205391,
0.009679478593170643,
0.013679683208465576,
0.039499446749687195,
-0.05972685292363167,
0.0055272881872951984,
0.09135475754737854,
0.03362778574228287,
-0.05184807628393173,
0.04535071924328804,
0.006214136257767677,
0.022101741284132004,
0.053939417004585266,
-0.00426090881228447,
0.05752585083246231,
-0.052034612745046616,
0.05253176763653755,
0.07946568727493286,
0.02296353504061699,
-0.011776430532336235,
0.029753483831882477,
0.08273583650588989,
-0.015736538916826248,
0.001011944841593504,
0.06218224763870239,
-0.03940262272953987,
0.00804270152002573,
-0.033251069486141205,
0.015158374793827534,
-0.043278031051158905,
-0.010995205491781235,
0.07331779599189758,
0.011625041253864765,
-0.053092606365680695,
-0.006943199783563614,
0.006364413537085056,
0.011411154642701149,
0.02099546603858471,
-0.017030522227287292,
0.018482420593500137,
-0.0006844809395261109,
-0.018092073500156403,
0.031952790915966034,
-0.056502535939216614,
-0.039781685918569565,
-0.015509855933487415,
-0.03147999197244644,
-0.002338605932891369,
-0.07639025151729584,
-0.030145645141601562,
-0.04206456243991852,
-0.005896222777664661,
0.04109811410307884,
-0.006341654807329178,
-0.003193083219230175,
0.0019258013926446438,
0.029391977936029434,
-0.03466315567493439,
-0.024604549631476402,
-0.06817921996116638,
-0.04634295031428337,
-0.0004680145939346403,
-0.05862747132778168,
0.04118311405181885,
-0.005280617158859968,
0.03393031284213066,
0.009054237976670265,
-0.0023153943475335836,
-0.0012876742985099554,
-0.03191232681274414,
0.04968179389834404,
0.045951858162879944,
-0.029300013557076454,
-0.027233155444264412,
-0.026924146339297295,
-0.02249245159327984,
0.00832892581820488,
-0.016089247539639473,
-0.041421130299568176,
0.10374942421913147,
0.028821049258112907,
0.003496799385175109,
-0.011827499605715275,
0.01430981233716011,
-0.0472414493560791,
-0.014547236263751984,
-0.02496670000255108,
-0.03146183118224144,
-0.02348192408680916,
-0.03566686809062958,
-0.034904878586530685,
-0.03262714296579361,
-0.027235018089413643,
-0.025165706872940063,
-0.0021022330038249493,
-0.01350280549377203,
0.05211959406733513,
0.047882840037345886,
0.049124591052532196,
0.05970111861824989,
-0.038751740008592606,
-0.04463296756148338,
0.032621078193187714,
0.030952971428632736,
-0.01937568001449108,
-0.029113957658410072,
-0.02547096461057663,
0.025622524321079254,
0.009702975861728191,
-0.03079351596534252,
0.007524927146732807,
0.06310489773750305,
0.005041163880378008,
-0.028468584641814232,
0.0009339564712718129,
-0.03259222209453583,
0.039881497621536255,
-0.019713765010237694,
0.0030230022966861725,
-0.028205161914229393,
-0.018708689138293266,
0.01898270845413208,
0.0006164954393170774,
0.042725030332803726,
-0.06507565826177597,
-0.06700511276721954,
-0.030179470777511597,
0.010215300135314465,
0.04787816107273102,
0.018173227086663246,
-0.05442442744970322,
-0.010887638665735722,
-0.05476163327693939,
0.004258462227880955,
0.04093632847070694,
-0.006994106341153383,
0.011243975721299648,
0.0262686125934124,
-0.013339001685380936,
-0.00920259952545166,
0.04335063695907593,
0.037542253732681274,
0.030364856123924255,
0.031362056732177734,
-0.03818279877305031,
0.026101868599653244,
-0.01376658771187067,
0.037096910178661346,
0.001066981814801693,
-0.02979067899286747,
-0.03980373591184616,
-0.09567489475011826,
-0.02348872646689415,
0.014791525900363922,
-0.019174527376890182,
0.017788058146834373,
0.07910138368606567,
0.0010006879456341267,
-0.006007805932313204,
0.010080820880830288,
0.03625169023871422,
0.057661086320877075,
-0.04029068350791931,
0.04893641546368599,
-0.016662800684571266,
0.018101833760738373,
-0.035282328724861145,
0.014459523372352123,
-0.0024780721869319677,
-0.04118970036506653,
0.01966599002480507,
0.02492022141814232,
0.03338506072759628,
0.055919673293828964,
0.028028437867760658,
0.034545235335826874,
-0.05452193319797516,
0.040966615080833435,
0.05703039839863777,
-0.009041364304721355,
-0.050299398601055145,
-0.023971732705831528,
-0.005127044394612312,
-0.010338200256228447,
0.022466985508799553,
-0.010609055869281292,
0.024165157228708267,
0.03824828565120697,
-0.016143884509801865,
-0.00037549823173321784,
0.006115517113357782,
-0.0233985036611557,
-0.022341517731547356,
-0.03367028012871742,
-0.003680472495034337,
-0.0196292195469141,
-0.04684395715594292,
0.006896862294524908,
0.05567272752523422,
0.0320068821310997,
0.06022248789668083,
0.06641507148742676,
-0.031470321118831635,
-0.08825156092643738,
0.038801196962594986,
0.001215581432916224,
-0.025265242904424667,
-0.09757666289806366,
-0.01823444850742817,
0.0028223537374287844,
0.04524374008178711,
-0.007975202985107899,
-0.09293846786022186,
0.04123977944254875,
0.036046817898750305,
-0.07668601721525192,
0.0573049820959568,
0.0024339528754353523,
0.0019305483438074589,
0.0394388847053051,
0.009453240782022476,
0.03899676352739334,
-0.051330287009477615,
0.013890061527490616,
-0.022275539115071297,
0.022593824192881584,
-0.027453618124127388,
-0.02840191312134266,
-0.03713201731443405,
0.04924364387989044,
0.016360478475689888,
0.010748839937150478,
0.05247058346867561,
-0.06755298376083374,
-0.07969780266284943,
-0.0457674004137516,
0.033788252621889114,
-0.0507376454770565,
0.0189213789999485,
0.023124592378735542,
0.03468126431107521,
-0.02448984794318676,
-0.026054048910737038,
-0.01564464159309864,
0.001430130796507001,
0.023560011759400368,
-0.031950224190950394,
-0.04321792721748352,
-0.02883433923125267,
0.03387674689292908,
-0.00047675910172984004,
-0.021864905953407288,
-0.09729282557964325,
0.01784626580774784,
-0.018350234255194664,
-0.04518132284283638,
0.04937008395791054,
0.02077811025083065,
0.04341394826769829,
0.06156275421380997,
0.010352903977036476,
0.04148139804601669,
-0.020509907975792885,
0.020328564569354057,
-0.0202323105186224,
-0.008570518344640732,
-0.011304466053843498,
-0.047247514128685,
-0.03701939806342125,
0.009910307824611664,
-0.05030278488993645,
-0.048194050788879395,
-0.00242037046700716,
0.03824027255177498,
0.018844502046704292,
0.022319747135043144,
0.01610557921230793,
0.019703280180692673,
-0.0011925330618396401,
-0.04501039534807205,
-0.01209547184407711,
-0.0036301137879490852,
-0.09079442918300629,
-0.032928649336099625,
0.040147434920072556,
-0.002440406009554863,
-0.0013168810401111841,
-0.02819134294986725,
0.036459796130657196,
0.042022060602903366,
0.03189342841506004,
-0.02763870172202587,
0.028642771765589714,
0.01457196194678545,
-0.020561235025525093,
-0.006176808383315802,
0.018727146089076996,
0.02185853198170662,
-0.002107228385284543,
-0.03112628497183323,
0.03421765938401222,
0.0033295475877821445,
-0.012320894747972488,
-0.030328653752803802,
0.025297774001955986,
0.008911962620913982,
-0.04591769352555275,
-0.010655146092176437,
-0.017299529165029526,
-0.03868294134736061,
0.02789035625755787,
-0.027372820302844048,
-0.021961618214845657,
-0.008219591341912746,
0.004913551267236471,
0.011311317794024944,
-0.032334182411432266,
-0.03902299702167511,
0.004058232065290213,
-0.05233019217848778,
0.03704838454723358,
-0.055188022553920746,
0.021882466971874237,
-0.019482359290122986,
0.007267043460160494,
-0.025307491421699524,
-0.004467397462576628,
-0.029585575684905052,
0.034020621329545975,
0.016772670671343803,
-0.0010552590247243643,
-0.009358927607536316,
0.02800077386200428,
-0.023511605337262154,
0.05306672304868698,
0.0051292241550982,
0.011107878759503365,
-0.016864527016878128,
0.05989367142319679,
-0.03887176141142845,
0.02113279141485691,
-0.004175203386694193,
-0.00292399525642395,
-0.03368004038929939,
-0.02397054061293602,
-0.0536796934902668,
-0.03871788829565048,
0.031590890139341354,
0.050040505826473236,
0.015541594475507736,
0.018069785088300705,
-0.019597498700022697,
0.02044181525707245,
0.02362915500998497,
-0.06780147552490234,
-0.02835291624069214,
0.011715185828506947,
-0.008667546324431896,
0.006019618362188339,
0.06619752943515778,
0.027975061908364296,
-0.04567091539502144,
-0.041955363005399704,
0.0609716959297657,
0.008799780160188675,
0.019250376150012016,
-0.015178444795310497,
0.0018115461571142077,
0.04988955706357956,
0.0409916415810585,
-0.06581778079271317,
0.008976869285106659,
-0.018605010583996773,
0.01611354574561119,
-0.004636928904801607,
-0.024638285860419273,
0.01759074442088604,
0.0077020879834890366,
-0.05675015226006508,
-0.03042999468743801,
0.07560473680496216,
0.012785051949322224,
0.04006122425198555,
-0.0005966349854134023,
-0.03452673554420471,
0.06651458889245987,
0.0014943351270630956,
-0.05034106969833374,
0.01688295230269432,
0.025086456909775734,
-0.031390026211738586,
0.030350172892212868,
-0.00412841746583581,
0.010103389620780945,
0.032526928931474686,
0.04020887240767479,
-0.002763002412393689,
0.08028899878263474,
-0.04141337424516678,
0.03549546003341675,
0.02362992614507675,
-0.05460110679268837,
-0.02566692978143692,
-0.03662126883864403,
0.0590747594833374,
-0.0632624551653862,
0.08381553739309311,
0.028133686631917953,
0.014949808828532696,
0.02991487644612789,
-0.03745868057012558,
-0.023020196706056595,
0.006231025792658329,
-0.024518808349967003,
0.08503622561693192,
-0.02156469039618969,
-0.06944211572408676,
0.08381442725658417,
0.051857974380254745,
-0.09536479413509369,
0.043782103806734085,
0.04345398768782616,
0.02177109196782112,
0.02380327880382538,
0.04376217722892761,
-0.042936261743307114,
0.06362960487604141,
-0.04342836141586304,
0.029338469728827477,
-0.06703094393014908,
-0.01583879441022873,
0.03272254392504692,
-0.04985427111387253,
-0.012363788671791553,
0.018356122076511383,
-0.002861593384295702,
0.0010759644210338593,
0.02388557232916355,
-0.0207599438726902,
-0.026225890964269638,
0.0029512548353523016,
-0.006123796105384827,
0.04500152915716171,
-0.020142924040555954,
-0.005216218531131744,
0.020568886771798134,
0.04213571920990944,
0.009962130337953568,
-0.02838241681456566,
-0.0035664255265146494,
0.0067803869023919106,
-0.0609949566423893,
-0.034071184694767,
0.058789774775505066,
0.020149998366832733,
-0.04774586111307144,
-0.0005360482027754188,
-0.007868198677897453,
0.01329233217984438,
0.002480296418070793,
-0.004494565073400736,
0.0021898914128541946,
-0.06068270653486252,
-0.001192836556583643,
0.01802065782248974,
0.014173094183206558,
0.0017772915307432413,
-0.008204328827559948,
0.008509689942002296,
0.0658276230096817,
0.03279638662934303,
0.021737344563007355,
-0.014268959872424603,
-0.0026297138538211584,
0.011117068119347095,
-0.06937823444604874,
0.00453114602714777,
-0.023599518463015556,
-0.04359976574778557,
-0.03159961849451065,
0.004540783353149891,
-0.05750332400202751,
0.027001576498150826,
-0.0443987175822258,
0.023903431370854378,
0.04609239101409912,
-0.0033242362551391125,
-0.05995960906147957,
-0.10501258075237274,
-0.03149298578500748,
-0.018247265368700027,
0.005364906974136829,
0.014869371429085732,
-0.05442086607217789,
-0.0017421077936887741,
-0.024332446977496147,
-0.04044463485479355,
0.044774606823921204,
0.020438332110643387,
-0.00016023355419747531,
0.054045021533966064,
0.07321042567491531,
-0.02225918509066105,
0.030862638726830482,
0.010465377941727638,
-0.061547450721263885,
0.005053909495472908,
0.0029149609617888927,
0.018066950142383575,
-0.00022047932725399733,
0.009435353800654411,
-0.001335980836302042,
-0.009740233421325684,
-0.041120290756225586,
-0.02583073452115059,
-0.044291410595178604,
0.0033486776519566774,
0.05594060197472572
] |
AnonymousSub/cline_squad2.0 | [
"pytorch",
"roberta",
"question-answering",
"transformers",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"RobertaForQuestionAnswering"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
datasets:
- cuad_v1
model-index:
- name: distilbert-base-uncased-finetuned-cuad_smaller_4
results: []
---
<!-- 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-cuad_smaller_4
This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the cuad_v1 dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1199
## 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.0001
- train_batch_size: 40
- eval_batch_size: 40
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 4
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:-----:|:---------------:|
| 0.1067 | 1.0 | 3769 | 0.0894 |
| 0.0858 | 2.0 | 7538 | 0.1010 |
| 0.0683 | 3.0 | 11307 | 0.1043 |
| 0.0399 | 4.0 | 15076 | 0.1199 |
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.022686239331960678,
0.017437495291233063,
-0.035327911376953125,
0.04197365790605545,
0.04618849605321884,
0.02173614874482155,
-0.016761433333158493,
-0.030519483610987663,
-0.03585387021303177,
0.05026356503367424,
0.017511514946818352,
-0.02523665316402912,
0.006018606014549732,
0.05678333342075348,
-0.024691862985491753,
-0.04094383865594864,
-0.0035303300246596336,
-0.011011164635419846,
-0.039670150727033615,
-0.017971748486161232,
0.0024118695873767138,
-0.0145221296697855,
0.006090390961617231,
0.004727854859083891,
-0.012308603152632713,
0.0030121244490146637,
0.0012875230750069022,
0.022197404876351357,
0.03461688756942749,
-0.06739495694637299,
0.008348037488758564,
-0.04254615306854248,
-0.040449973195791245,
-0.0307979304343462,
-0.01886560767889023,
-0.0011092263739556074,
0.02271140180528164,
0.019130447879433632,
0.027683798223733902,
0.03633866831660271,
-0.008525250479578972,
0.024064840748906136,
0.010259325616061687,
-0.020189855247735977,
0.05707654356956482,
0.010095127858221531,
-0.04441569745540619,
0.00008830185834085569,
0.03838726878166199,
-0.03131537139415741,
-0.07939795404672623,
-0.06895744055509567,
-0.022040167823433876,
0.03669365122914314,
-0.016398534178733826,
-0.006870642304420471,
-0.07235930860042572,
-0.007026777137070894,
0.06179139018058777,
-0.04524276405572891,
-0.02108636498451233,
0.018738484010100365,
-0.06902289390563965,
0.0198834165930748,
0.028960682451725006,
-0.006805337034165859,
0.009284901432693005,
-0.04377539083361626,
0.043747127056121826,
-0.008466329425573349,
0.052409883588552475,
-0.014847601763904095,
0.02621711604297161,
-0.06970014423131943,
0.004376317840069532,
-0.015406236052513123,
0.03815517574548721,
0.04969142749905586,
-0.029279835522174835,
0.0415051206946373,
0.01925358548760414,
0.00045510241761803627,
0.04252846911549568,
-0.025711921975016594,
-0.000684881117194891,
0.02810276858508587,
-0.03122861497104168,
0.012457110919058323,
0.023880328983068466,
0.034110330045223236,
-0.026779839769005775,
-0.04984595254063606,
-0.04302778095006943,
-0.04374178871512413,
0.002376351971179247,
0.03058810532093048,
0.02962755411863327,
0.021380336955189705,
0.033709172159433365,
0.030607443302869797,
0.022575875744223595,
0.036836110055446625,
-0.02489260770380497,
0.06807969510555267,
-0.0032049145083874464,
-0.011141563765704632,
-0.005483708344399929,
-0.02092122659087181,
-0.044352054595947266,
0.03252359479665756,
0.03370238468050957,
-0.015622887760400772,
-0.03256865218281746,
0.030421532690525055,
0.006758458912372589,
-0.004041552077978849,
0.07443906366825104,
-0.02305040881037712,
-0.033030372112989426,
-0.03185166418552399,
0.02314579114317894,
0.01217527687549591,
-0.0007481558714061975,
0.008961084298789501,
-0.03642119839787483,
-0.01695503480732441,
-0.03146185353398323,
-0.020387809723615646,
-0.021354973316192627,
0.021586118265986443,
0.013747021555900574,
0.07056157290935516,
0.023072386160492897,
-0.0850130096077919,
0.010170504450798035,
0.02324158139526844,
-0.048660874366760254,
0.06055939197540283,
0.010999203659594059,
0.11077085882425308,
-0.05450092628598213,
-0.06645593792200089,
0.005450354889035225,
-0.001423934823833406,
-0.0440695621073246,
0.0012142513878643513,
0.0024522305466234684,
-0.041598331183195114,
0.0021549316588789225,
0.014796232804656029,
0.05064057931303978,
-0.032436877489089966,
-0.01572972536087036,
0.0599893294274807,
-0.008800138719379902,
0.03290048986673355,
-0.06091668829321861,
-0.01849040947854519,
0.0022186872083693743,
-0.008294784463942051,
-0.04913461580872536,
0.06532963365316391,
-0.004534892272204161,
-0.010209443047642708,
-0.015306026674807072,
-0.026106400415301323,
0.022805558517575264,
0.0792614221572876,
-0.011195667088031769,
-0.03837761655449867,
-0.010557075031101704,
0.03369759023189545,
0.03606381267309189,
0.06018483638763428,
-0.03018612414598465,
0.04138309881091118,
0.04687080904841423,
0.01973891817033291,
-0.01812250167131424,
0.027615390717983246,
0.023568566888570786,
-0.027576809749007225,
-0.012657522223889828,
0.02828029729425907,
0.00508702639490366,
-0.05890132859349251,
0.03214654326438904,
0.0010935197351500392,
0.009769216179847717,
-0.08350808173418045,
-0.049730125814676285,
0.04994775727391243,
-0.003844473510980606,
-0.0009937813738361,
0.008503874763846397,
0.0098396772518754,
-0.02016673982143402,
0.060490842908620834,
-0.012011838145554066,
0.016441937536001205,
-0.04048427194356918,
-0.016163835301995277,
0.00916655920445919,
-0.01708754152059555,
0.02594885230064392,
0.053474195301532745,
-0.008821403607726097,
0.07495585829019547,
-0.047069717198610306,
0.02222679927945137,
-0.055612798780202866,
-0.04475008696317673,
0.03158419206738472,
0.06176331639289856,
0.053765520453453064,
0.044130463153123856,
0.009174021892249584,
-0.04102838411927223,
0.05432729795575142,
0.07492836564779282,
0.0391169972717762,
0.00431382842361927,
-0.030093306675553322,
-0.01835925690829754,
0.0490497425198555,
0.04903952032327652,
-0.05693107843399048,
0.0001973729085875675,
0.004277635365724564,
0.02618529088795185,
-0.006037941202521324,
0.009353014640510082,
-0.016103800386190414,
0.03224700689315796,
-0.056326981633901596,
-0.05671161040663719,
0.04403960332274437,
0.02490459568798542,
-0.001462550018914044,
0.016008492559194565,
0.018785469233989716,
0.0023363276850432158,
0.004696518182754517,
0.017588168382644653,
0.0032667340710759163,
-0.04908157140016556,
0.020329339429736137,
0.006453375332057476,
0.04908275976777077,
-0.06277391314506531,
0.02950737625360489,
-0.022844819352030754,
0.008459101431071758,
0.03779525309801102,
-0.03464845195412636,
0.019186006858944893,
0.061713773757219315,
0.034667178988456726,
-0.034423500299453735,
0.03257851302623749,
0.005053003318607807,
0.04759793356060982,
0.04375153407454491,
0.013102478347718716,
0.0630103275179863,
0.008699932135641575,
0.05417240038514137,
0.0783202201128006,
0.019965818151831627,
0.03105243667960167,
0.007365530356764793,
0.06136874482035637,
0.022669842466711998,
-0.008298717439174652,
0.04936335235834122,
-0.043319813907146454,
0.02618217095732689,
-0.05255090445280075,
-0.0008315204177051783,
-0.04844914749264717,
-0.013899737037718296,
0.057273443788290024,
0.024781331419944763,
-0.015047024004161358,
-0.013916992582380772,
0.007558063603937626,
-0.020843226462602615,
0.03233693540096283,
-0.007752655539661646,
0.0000536885745532345,
-0.005416638683527708,
-0.019058402627706528,
-0.04119096323847771,
-0.06625822186470032,
-0.05882633104920387,
-0.02895939350128174,
-0.02309192158281803,
-0.020542733371257782,
-0.08967746794223785,
-0.00611965311691165,
-0.07336236536502838,
-0.02598068304359913,
0.04105990752577782,
0.011086995713412762,
-0.017703646793961525,
-0.03669789433479309,
0.019516058266162872,
-0.05739026516675949,
-0.03899267688393593,
-0.06739912182092667,
-0.050943609327077866,
-0.040939610451459885,
-0.0790051519870758,
0.0291695985943079,
0.00868898257613182,
0.015854274854063988,
0.005790789145976305,
0.03736032173037529,
0.002756028436124325,
-0.01892859674990177,
0.04263053089380264,
0.0623508058488369,
-0.020954126492142677,
-0.04859504848718643,
0.03729230910539627,
0.002476467052474618,
0.012523771263659,
0.008218951523303986,
-0.03533141314983368,
0.09288521111011505,
0.06317488104104996,
0.00819285400211811,
0.03379790484905243,
-0.017194706946611404,
-0.06026015803217888,
-0.06504015624523163,
-0.01802278310060501,
-0.04581788182258606,
-0.0214602742344141,
-0.03352285549044609,
-0.037193212658166885,
-0.03256206586956978,
-0.04248926416039467,
0.009445643983781338,
-0.011517317965626717,
0.026090119034051895,
0.023181702941656113,
0.04818036034703255,
0.01763003319501877,
0.03413914889097214,
-0.031330931931734085,
-0.0419919490814209,
0.04004182666540146,
0.009720967151224613,
0.00900360383093357,
-0.08337601274251938,
-0.02447226271033287,
0.033364590257406235,
0.0136123551055789,
0.0017778676701709628,
-0.0038400045596063137,
0.06193707510828972,
-0.005631542298942804,
-0.008658438920974731,
0.02162003330886364,
-0.015913771465420723,
-0.0013983852695673704,
0.009945273399353027,
-0.0017773578874766827,
-0.0004592510813381523,
-0.03172444924712181,
-0.031865380704402924,
-0.0041933562606573105,
0.039162661880254745,
-0.05396483838558197,
-0.05939938500523567,
-0.011909897439181805,
0.034420955926179886,
0.03867211192846298,
0.01032212097197771,
-0.059117499738931656,
-0.0006278365617617965,
-0.08290554583072662,
-0.010672190226614475,
0.02881343476474285,
0.010938407853245735,
0.007750438991934061,
0.037619512528181076,
0.016110816970467567,
-0.023228786885738373,
0.02126224711537361,
0.06152522191405296,
0.07485248893499374,
0.003866465063765645,
-0.07232894748449326,
-0.01678188517689705,
-0.0338064543902874,
0.017674293369054794,
-0.016214381903409958,
-0.022775819525122643,
-0.023778975009918213,
-0.09128710627555847,
-0.031120581552386284,
-0.010482571087777615,
0.0019307807087898254,
-0.01636495441198349,
0.01942833699285984,
0.008180126547813416,
-0.027523525059223175,
0.013239224441349506,
0.014900223352015018,
0.05415919050574303,
-0.026470469310879707,
0.07761386781930923,
-0.008186398074030876,
0.0102322893217206,
-0.0562799908220768,
0.0058651696890592575,
-0.035636790096759796,
-0.01568368449807167,
-0.003777945414185524,
0.0609954372048378,
-0.01758834533393383,
0.06918523460626602,
0.09019636362791061,
0.03532306104898453,
-0.04404602572321892,
0.04695433750748634,
0.060702547430992126,
-0.042042143642902374,
-0.02731960453093052,
0.003934776876121759,
-0.016309522092342377,
-0.02288283035159111,
0.0024397047236561775,
-0.014606727287173271,
0.05180112272500992,
0.035810790956020355,
-0.00047776108840480447,
0.012815205380320549,
-0.00580099830403924,
-0.000015447161786141805,
-0.0395360141992569,
-0.05249112471938133,
-0.030081238597631454,
0.021320238709449768,
-0.03839298337697983,
0.011406417936086655,
0.03035973757505417,
0.031190447509288788,
0.07099297642707825,
0.03123210370540619,
-0.018407773226499557,
-0.014697053469717503,
0.026023371145129204,
0.014309856109321117,
-0.014561126008629799,
-0.07085749506950378,
-0.0442335270345211,
0.027638595551252365,
0.048723042011260986,
-0.018325023353099823,
-0.062049299478530884,
0.012220117263495922,
0.04437565430998802,
-0.04224563390016556,
0.05792495608329773,
-0.02240636758506298,
0.04310084506869316,
0.06488686800003052,
-0.013079419732093811,
0.024227388203144073,
-0.029128866270184517,
-0.003365452867001295,
0.007053111679852009,
0.023103861138224602,
-0.023633332923054695,
-0.04250146076083183,
-0.05487537011504173,
0.02403133548796177,
0.03447145223617554,
0.026318758726119995,
0.031092260032892227,
-0.03843287378549576,
-0.04928828775882721,
0.020069748163223267,
0.031013574451208115,
-0.05283406004309654,
-0.00541248032823205,
0.03275300934910774,
0.02875417284667492,
-0.05414280667901039,
-0.023563861846923828,
-0.04377287998795509,
-0.020907916128635406,
0.04388007894158363,
0.0022437111474573612,
-0.03202221542596817,
-0.04552118852734566,
0.04116009548306465,
-0.014416984282433987,
-0.034412991255521774,
-0.07031774520874023,
0.042112935334444046,
-0.013631711713969707,
-0.01634543016552925,
0.05622018873691559,
0.0412711575627327,
0.03609331697225571,
0.0690993145108223,
0.03174100071191788,
0.020664434880018234,
-0.03308359161019325,
0.03707677870988846,
-0.044275056570768356,
-0.028869451954960823,
0.009393462911248207,
-0.05322584882378578,
-0.031547706574201584,
0.008038943633437157,
-0.05946947634220123,
-0.0441729873418808,
-0.019887879490852356,
0.02589281089603901,
0.00624433159828186,
-0.016931302845478058,
-0.0029794974252581596,
0.04222412407398224,
-0.010762417688965797,
-0.010560601018369198,
-0.049837108701467514,
-0.012731117196381092,
-0.05459173023700714,
-0.05543907731771469,
-0.015811944380402565,
0.02114761434495449,
0.028960809111595154,
0.0174697395414114,
0.028911344707012177,
0.01249002106487751,
0.020341048017144203,
-0.033999815583229065,
0.01365751028060913,
0.016128966584801674,
-0.03598407283425331,
-0.021188028156757355,
0.029724789783358574,
0.023272113874554634,
0.03062250278890133,
-0.030828168615698814,
0.04583427682518959,
0.008173435926437378,
0.009824897162616253,
-0.020128509029746056,
0.019404849037528038,
0.023390311747789383,
-0.060117945075035095,
-0.023845557123422623,
-0.016174104064702988,
-0.02854621596634388,
0.030792301520705223,
-0.031558357179164886,
-0.015325422398746014,
0.003782855113968253,
0.009143236093223095,
0.03248262032866478,
-0.024151718243956566,
-0.014912777580320835,
0.03750132769346237,
-0.0025509216357022524,
0.02466222643852234,
-0.04768504202365875,
0.06469713151454926,
-0.039551910012960434,
0.023767592385411263,
-0.027678895741701126,
-0.0018422651337459683,
-0.0299613606184721,
0.0239667147397995,
-0.025771489366889,
-0.021072307601571083,
-0.003233414376154542,
0.04866694286465645,
-0.02929646521806717,
0.036094821989536285,
-0.01469868142157793,
0.03362932801246643,
-0.030231349170207977,
0.07056377083063126,
-0.04563278332352638,
0.014462937600910664,
-0.04112859070301056,
0.036226581782102585,
-0.03689654543995857,
0.00481254979968071,
0.004131022375077009,
-0.029644599184393883,
0.03336787223815918,
0.06658020615577698,
0.026453780010342598,
0.015338744036853313,
-0.006962272338569164,
-0.005835909862071276,
0.015017210505902767,
-0.05699841305613518,
-0.02987712435424328,
-0.01419399119913578,
-0.0014473481569439173,
-0.015055547468364239,
0.04540371522307396,
0.026569899171590805,
-0.038079626858234406,
-0.06829891353845596,
0.036679185926914215,
0.026165636256337166,
0.014178953133523464,
0.016830645501613617,
0.043172504752874374,
0.016123658046126366,
0.039098843932151794,
-0.025717981159687042,
-0.001723640481941402,
0.018787821754813194,
-0.04297243803739548,
0.023973478004336357,
-0.000692188274115324,
0.0332903154194355,
0.017763234674930573,
-0.029942257329821587,
-0.017416028305888176,
0.06566282361745834,
0.03860711306333542,
0.019565775990486145,
-0.00903930515050888,
-0.05282137915492058,
0.029588906094431877,
-0.00556978490203619,
-0.031564220786094666,
0.024604804813861847,
0.015760010108351707,
-0.03239278122782707,
0.04353325814008713,
0.0018671081634238362,
0.000525185838341713,
0.03138699010014534,
0.03132425621151924,
-0.020845936611294746,
0.06351204961538315,
-0.04046912491321564,
0.021870266646146774,
0.026212474331259727,
-0.07928694784641266,
0.0018364994321018457,
-0.05520530417561531,
0.06637722998857498,
-0.060740381479263306,
0.02861999161541462,
0.05864522233605385,
-0.0046993158757686615,
0.029421420767903328,
-0.04835391044616699,
-0.06977178901433945,
0.017146313562989235,
-0.03434622287750244,
0.0654299184679985,
0.003145192051306367,
-0.06258893758058548,
0.05801576003432274,
0.0009561651386320591,
-0.05554090067744255,
0.044311653822660446,
0.02923060581088066,
0.0711604505777359,
0.033839136362075806,
0.04699111357331276,
-0.054444342851638794,
-0.003507723333314061,
-0.04075959324836731,
0.012336647137999535,
-0.056748680770397186,
-0.020015062764286995,
0.03006674535572529,
-0.03464653715491295,
-0.029576309025287628,
0.047275375574827194,
-0.005925967823714018,
-0.01345186959952116,
0.0496387705206871,
-0.043014924973249435,
-0.03606339916586876,
0.004243773408234119,
0.006850775331258774,
-0.04063492640852928,
-0.016670560464262962,
-0.03313146531581879,
0.0075486344285309315,
0.00575632369145751,
-0.011473488993942738,
-0.016306830570101738,
-0.004788708407431841,
0.040483519434928894,
-0.04100116342306137,
-0.026832997798919678,
0.012391319498419762,
-0.012181778438389301,
-0.0373135544359684,
0.039375826716423035,
0.007047835271805525,
0.026453014463186264,
0.020137442275881767,
-0.004409091547131538,
0.004922417923808098,
-0.033025939017534256,
-0.019530970603227615,
0.013296023942530155,
0.0018621098715811968,
0.028903592377901077,
0.0022914432920515537,
0.035375360399484634,
0.047716010361909866,
0.02167050540447235,
-0.011525383219122887,
-0.02834773249924183,
-0.03108137473464012,
0.015427148900926113,
-0.02961069904267788,
-0.006390868220478296,
-0.005914516746997833,
-0.046654704958200455,
-0.03714359179139137,
0.003995385020971298,
-0.03915908560156822,
0.033044327050447464,
-0.0806381031870842,
0.016042329370975494,
0.03857604041695595,
-0.01938444934785366,
-0.047465357929468155,
-0.10326094180345535,
-0.018097899854183197,
-0.04817463457584381,
-0.008933605626225471,
0.03711739182472229,
-0.03378099203109741,
0.04242356866598129,
-0.04474065825343132,
-0.03389725834131241,
0.03670600801706314,
0.03449225425720215,
-0.06343483179807663,
0.062820203602314,
0.045481935143470764,
-0.0434541292488575,
0.012874293141067028,
0.007167432457208633,
-0.03622926026582718,
0.023304257541894913,
0.01824543997645378,
0.010006243363022804,
0.029313376173377037,
-0.008753005415201187,
-0.06571166962385178,
-0.03252273425459862,
-0.0675710141658783,
-0.0419640988111496,
-0.040218569338321686,
0.003034869208931923,
0.04599190130829811
] |
AnonymousSub/cline_wikiqa | [
"pytorch",
"roberta",
"text-classification",
"transformers"
] | text-classification | {
"architectures": [
"RobertaForSequenceClassification"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 27 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
metrics:
- rouge
model-index:
- name: flan-t5-base-gecfirst-e8-b16
results: []
---
<!-- 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. -->
# flan-t5-base-gecfirst-e8-b16
This model is a fine-tuned version of [google/flan-t5-base](https://huggingface.co/google/flan-t5-base) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 0.2233
- Rouge1: 42.0185
- Rouge2: 34.0704
- Rougel: 42.0403
- Rougelsum: 41.8957
- Gen Len: 18.9865
## 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.001
- train_batch_size: 16
- eval_batch_size: 16
- seed: 42
- optimizer: Adafactor
- lr_scheduler_type: linear
- num_epochs: 8
### Training results
| Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
|:-------------:|:-----:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
| 0.9817 | 0.25 | 74 | 0.4035 | 38.3182 | 28.427 | 38.3215 | 38.2591 | 18.9882 |
| 0.6805 | 0.5 | 148 | 0.3467 | 39.9659 | 30.9972 | 40.04 | 39.9619 | 18.9831 |
| 0.5885 | 0.75 | 222 | 0.3205 | 40.4848 | 31.33 | 40.4959 | 40.3976 | 18.9797 |
| 0.5476 | 1.0 | 296 | 0.2869 | 40.2589 | 31.6407 | 40.3592 | 40.223 | 18.9831 |
| 0.4504 | 1.25 | 370 | 0.2754 | 40.7626 | 31.8985 | 40.755 | 40.6406 | 18.9831 |
| 0.4463 | 1.49 | 444 | 0.2650 | 40.908 | 32.2358 | 40.9207 | 40.8062 | 18.9831 |
| 0.4155 | 1.74 | 518 | 0.2561 | 41.056 | 32.4906 | 41.029 | 40.9401 | 18.9831 |
| 0.3948 | 1.99 | 592 | 0.2493 | 41.1813 | 32.7917 | 41.2183 | 41.1256 | 18.9831 |
| 0.329 | 2.24 | 666 | 0.2413 | 41.8005 | 33.7235 | 41.88 | 41.7556 | 18.9831 |
| 0.3195 | 2.49 | 740 | 0.2390 | 41.5207 | 33.2502 | 41.5599 | 41.4291 | 18.9848 |
| 0.3148 | 2.74 | 814 | 0.2344 | 41.5913 | 33.398 | 41.614 | 41.4909 | 18.9831 |
| 0.316 | 2.99 | 888 | 0.2266 | 41.6858 | 33.7369 | 41.731 | 41.6293 | 18.9831 |
| 0.2498 | 3.24 | 962 | 0.2353 | 41.7077 | 33.3652 | 41.7111 | 41.6256 | 18.9848 |
| 0.2534 | 3.49 | 1036 | 0.2299 | 41.8645 | 33.9926 | 41.9435 | 41.8168 | 18.9848 |
| 0.2435 | 3.74 | 1110 | 0.2233 | 42.0185 | 34.0704 | 42.0403 | 41.8957 | 18.9865 |
| 0.2514 | 3.99 | 1184 | 0.2292 | 41.9069 | 33.8917 | 41.9112 | 41.7937 | 18.9831 |
| 0.193 | 4.24 | 1258 | 0.2462 | 41.9671 | 34.0261 | 42.024 | 41.9178 | 18.9831 |
| 0.1927 | 4.48 | 1332 | 0.2322 | 42.2226 | 34.6158 | 42.3306 | 42.1946 | 18.9848 |
| 0.1984 | 4.73 | 1406 | 0.2278 | 41.9762 | 34.0828 | 41.999 | 41.9107 | 18.9848 |
| 0.1929 | 4.98 | 1480 | 0.2299 | 41.8244 | 33.831 | 41.8673 | 41.7786 | 18.9848 |
| 0.1522 | 5.23 | 1554 | 0.2432 | 41.9142 | 33.9634 | 41.9635 | 41.859 | 18.9848 |
| 0.1509 | 5.48 | 1628 | 0.2408 | 41.707 | 33.6909 | 41.7144 | 41.6345 | 18.9831 |
| 0.1457 | 5.73 | 1702 | 0.2426 | 42.1729 | 34.2971 | 42.2318 | 42.119 | 18.9848 |
| 0.1497 | 5.98 | 1776 | 0.2386 | 42.1408 | 34.3303 | 42.148 | 42.0599 | 18.9865 |
| 0.1195 | 6.23 | 1850 | 0.2627 | 41.897 | 34.0092 | 41.9336 | 41.8262 | 18.9865 |
| 0.1145 | 6.48 | 1924 | 0.2560 | 41.8456 | 33.7951 | 41.8578 | 41.7709 | 18.9865 |
| 0.1198 | 6.73 | 1998 | 0.2525 | 41.8393 | 33.6033 | 41.8313 | 41.7505 | 18.9831 |
| 0.114 | 6.98 | 2072 | 0.2524 | 41.8194 | 33.7992 | 41.8752 | 41.775 | 18.9848 |
| 0.1 | 7.23 | 2146 | 0.2690 | 41.9724 | 33.9339 | 42.0248 | 41.9444 | 18.9848 |
| 0.0948 | 7.47 | 2220 | 0.2715 | 41.8806 | 33.9232 | 41.9392 | 41.8432 | 18.9848 |
| 0.0947 | 7.72 | 2294 | 0.2722 | 41.8981 | 33.8642 | 41.9622 | 41.877 | 18.9848 |
| 0.0904 | 7.97 | 2368 | 0.2705 | 41.8596 | 33.9216 | 41.915 | 41.8342 | 18.9848 |
### Framework versions
- Transformers 4.28.1
- Pytorch 1.11.0a0+b6df043
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.023003967478871346,
-0.018794987350702286,
-0.00777039909735322,
0.037624869495630264,
0.0397813655436039,
-0.011089765466749668,
-0.01651296764612198,
-0.013629992492496967,
-0.036949243396520615,
0.03415035828948021,
0.012929472140967846,
-0.0224591214209795,
0.009320655837655067,
0.010408462956547737,
-0.03983299434185028,
-0.03019091486930847,
-0.020931174978613853,
-0.003784085623919964,
-0.02829287387430668,
0.008758087642490864,
0.016953419893980026,
0.013989096507430077,
-0.012205300852656364,
0.026371143758296967,
0.013552955351769924,
0.016486603766679764,
0.018969127908349037,
0.031669531017541885,
0.0370054692029953,
-0.07174565643072128,
-0.012478303164243698,
-0.04903663322329521,
-0.0463382862508297,
-0.02680518664419651,
-0.00006520824535982683,
-0.011073780246078968,
0.0037137488834559917,
-0.0058311400935053825,
0.034207139164209366,
0.05642805993556976,
0.019858306273818016,
0.02378631941974163,
-0.037599578499794006,
-0.026101214811205864,
0.03911806643009186,
0.0008155390969477594,
-0.056626614183187485,
0.001606817590072751,
0.028341276571154594,
-0.026967544108629227,
-0.07357628643512726,
-0.07362399995326996,
-0.001463811844587326,
0.023604873567819595,
-0.01795046031475067,
-0.025231964886188507,
-0.06478040665388107,
0.023559045046567917,
0.0633779913187027,
-0.034675098955631256,
-0.03907501697540283,
0.006281260401010513,
-0.07115601003170013,
0.02894369512796402,
0.03254825621843338,
-0.014640194363892078,
0.017450692132115364,
-0.02447848953306675,
0.03379032388329506,
-0.004011272452771664,
0.04587035998702049,
-0.010164097882807255,
-0.0023478770162910223,
-0.06464242190122604,
-0.010225028730928898,
-0.0011180019937455654,
0.037579651921987534,
0.05163263529539108,
-0.05805238336324692,
0.05434084311127663,
0.05043652653694153,
-0.01638278178870678,
0.03517641872167587,
-0.015166317112743855,
-0.008455793373286724,
0.01870831660926342,
-0.04621903970837593,
-0.007396794389933348,
0.028979742899537086,
0.04298751428723335,
-0.05032854899764061,
-0.04059002175927162,
-0.03664156049489975,
-0.03438938409090042,
0.0038006852846592665,
0.03937363997101784,
0.02864382416009903,
-0.007563805673271418,
0.04162092134356499,
-0.02228682115674019,
0.040821343660354614,
0.023136986419558525,
-0.017920982092618942,
0.074516661465168,
-0.011915221810340881,
-0.02268473245203495,
-0.011135443113744259,
-0.03865194320678711,
-0.05275140702724457,
0.033196184784173965,
0.002563750371336937,
-0.03953941538929939,
-0.04049189016222954,
0.041847702115774155,
-0.004069265443831682,
-0.027598967775702477,
0.06455310434103012,
-0.0435379333794117,
-0.05180233716964722,
-0.04248274862766266,
0.03792569413781166,
0.027306165546178818,
-0.02093965746462345,
0.0033208681270480156,
-0.035859838128089905,
0.00872278492897749,
-0.005110239144414663,
-0.038739677518606186,
-0.018711771816015244,
0.026358412578701973,
-0.021847855299711227,
0.05229765549302101,
0.020898757502436638,
-0.05873486399650574,
-0.002449902007356286,
-0.016951553523540497,
-0.07165998220443726,
0.04656427353620529,
-0.009822349064052105,
0.12643615901470184,
-0.0711464211344719,
-0.06624934822320938,
0.018504632636904716,
-0.013829267583787441,
-0.03418560326099396,
0.017643531784415245,
-0.009686984121799469,
-0.055136702954769135,
-0.02631210908293724,
-0.012825057841837406,
0.04648897051811218,
-0.0471450500190258,
-0.014197081327438354,
0.06318406760692596,
0.0009752672631293535,
0.026497868821024895,
-0.03528553992509842,
-0.015573258511722088,
0.019170112907886505,
-0.009700082242488861,
0.003596659516915679,
0.041229017078876495,
-0.0016282325377687812,
-0.0048707216046750546,
-0.03200685605406761,
-0.04446397349238396,
-0.0018500889418646693,
0.07514790445566177,
-0.009167084470391273,
-0.003791108261793852,
-0.023217204958200455,
0.0357646718621254,
0.03132808580994606,
0.035083360970020294,
-0.013701721094548702,
0.038544923067092896,
0.04511963948607445,
0.02666473388671875,
-0.023583149537444115,
0.03346991539001465,
0.037623487412929535,
-0.014604869298636913,
-0.049549248069524765,
0.019482048228383064,
-0.005642130505293608,
-0.0308372862637043,
0.018284380435943604,
0.03900660574436188,
0.0323149599134922,
-0.041919246315956116,
-0.029812820255756378,
0.0274352990090847,
0.0045333425514400005,
-0.011322208680212498,
-0.01718769036233425,
0.0014806905528530478,
-0.04675564542412758,
0.030081449076533318,
-0.012806031852960587,
0.014811109751462936,
-0.024159753695130348,
-0.02549719624221325,
0.009257739409804344,
-0.003896527923643589,
0.016823476180434227,
0.0457913838326931,
-0.0005833121249452233,
0.07007860392332077,
-0.03739365562796593,
0.022977907210588455,
-0.03572184592485428,
-0.06431381404399872,
0.006473601330071688,
0.06908152997493744,
0.04899881035089493,
0.053517382591962814,
-0.008029174990952015,
-0.06892586499452591,
0.034188803285360336,
0.05632277950644493,
0.05301018804311752,
0.008382270112633705,
-0.043521780520677567,
-0.01884271390736103,
0.05882097780704498,
0.060253340750932693,
-0.03962952271103859,
-0.027133461087942123,
0.032156117260456085,
0.03691776469349861,
-0.03523734211921692,
0.019716816022992134,
-0.026285825297236443,
0.05103982985019684,
-0.06414374709129333,
-0.062497373670339584,
0.03521088510751724,
0.026849426329135895,
0.025377899408340454,
0.01914653740823269,
0.009539248421788216,
0.02773825265467167,
0.026761550456285477,
0.00731230154633522,
0.0011863602558150887,
-0.05248357728123665,
0.03311198577284813,
-0.008285962976515293,
0.04667571932077408,
-0.042391423135995865,
0.05231660231947899,
-0.013509610667824745,
-0.0038889143615961075,
0.027605243027210236,
-0.04409681260585785,
-0.0030712687876075506,
0.06130710616707802,
0.015187186188995838,
-0.03578108921647072,
0.00010071421274915338,
0.03223521262407303,
0.046405017375946045,
0.03003198653459549,
-0.007812016643583775,
0.06450484693050385,
-0.009959512390196323,
0.016594864428043365,
0.0840068832039833,
0.008373195305466652,
0.004752765409648418,
0.04054735228419304,
0.0776866152882576,
0.014148949645459652,
-0.0044862343929708,
0.04491083323955536,
-0.04809573292732239,
0.0018136913422495127,
-0.025246037170290947,
0.007630086503922939,
-0.030271586030721664,
0.002614369848743081,
0.04452899470925331,
0.023875730112195015,
-0.03494323045015335,
-0.010076893493533134,
-0.005751966964453459,
-0.020376330241560936,
0.02544320933520794,
-0.023847227916121483,
0.00986870564520359,
-0.0049834162928164005,
-0.012466415762901306,
0.009398804046213627,
-0.053733084350824356,
-0.01827925629913807,
-0.013807511888444424,
-0.03908782824873924,
-0.03014405444264412,
-0.09695150703191757,
-0.003014293033629656,
-0.0531286746263504,
-0.02143537439405918,
0.030858151614665985,
0.023136714473366737,
-0.010015657171607018,
-0.04737192764878273,
0.02695976011455059,
-0.03619962930679321,
-0.03799479827284813,
-0.060372911393642426,
-0.05345732346177101,
-0.027060026302933693,
-0.08338762074708939,
0.039638109505176544,
0.039112675935029984,
0.04300510138273239,
-0.00007324751641135663,
0.01667063683271408,
0.0049140495248138905,
-0.01578700728714466,
0.04396899789571762,
0.06339192390441895,
-0.04265214502811432,
-0.06753500550985336,
0.01781357079744339,
-0.008500101044774055,
0.02296268194913864,
-0.005427993834018707,
-0.028008971363306046,
0.07899914681911469,
0.05264635384082794,
0.012597874738276005,
0.0115862637758255,
0.004345676861703396,
-0.08253338187932968,
-0.06377533823251724,
-0.019270144402980804,
-0.041837241500616074,
-0.020029136911034584,
-0.023097457364201546,
-0.013263885863125324,
-0.03968017175793648,
-0.024400493130087852,
0.00019671881454996765,
0.018047653138637543,
-0.010268266312777996,
0.027598869055509567,
0.030119992792606354,
0.025777071714401245,
0.02836700528860092,
-0.05331110209226608,
-0.044710662215948105,
0.058529336005449295,
0.008106408640742302,
-0.012773916125297546,
-0.06258891522884369,
-0.004644583445042372,
0.023051276803016663,
0.028126943856477737,
0.014052771963179111,
0.02400532364845276,
0.08652446419000626,
0.016824575141072273,
-0.0006691367016173899,
0.016633091494441032,
-0.029714403674006462,
-0.01578974351286888,
0.009131859987974167,
0.010307700373232365,
-0.008432259783148766,
-0.053640130907297134,
-0.010493244975805283,
-0.02381402626633644,
0.0409356914460659,
-0.04157491400837898,
-0.0599304661154747,
-0.02005881443619728,
0.02135033905506134,
0.04946799948811531,
0.002080881269648671,
-0.03629584610462189,
-0.006485370919108391,
-0.08167856931686401,
-0.002197030931711197,
0.03456725925207138,
0.019663888961076736,
0.013425548560917377,
0.07020770013332367,
0.04383542388677597,
-0.012369787320494652,
0.015085199847817421,
0.03690483421087265,
0.06609167903661728,
0.04134919494390488,
-0.05856412276625633,
0.01431228406727314,
-0.005803165957331657,
0.04457014054059982,
0.0028002276085317135,
-0.03610939905047417,
-0.02811882086098194,
-0.09310558438301086,
-0.04576430469751358,
0.010471356101334095,
-0.004901217762380838,
-0.015957864001393318,
0.06279293447732925,
0.01276912447065115,
-0.020456714555621147,
-0.013879979960620403,
-0.013371479697525501,
0.04314110800623894,
-0.04447401687502861,
0.051353976130485535,
-0.011946802958846092,
0.01393137127161026,
-0.052945978939533234,
-0.004739538766443729,
-0.008811148814857006,
-0.024546807631850243,
0.012445276603102684,
0.05507519468665123,
0.017699740827083588,
0.07334639877080917,
0.05303702875971794,
0.01713019423186779,
-0.050112538039684296,
0.04644986614584923,
0.06046159192919731,
-0.013916164636611938,
-0.05542873591184616,
-0.0015921086305752397,
-0.012367863208055496,
-0.00792716071009636,
-0.0003079612215515226,
-0.0011627036146819592,
0.03807662054896355,
0.038180477917194366,
-0.005977898370474577,
0.012817167676985264,
0.017198115587234497,
-0.017849840223789215,
-0.026005616411566734,
-0.056922413408756256,
-0.0038586037699133158,
0.0009042309247888625,
-0.04173664376139641,
-0.007486290764063597,
0.050516508519649506,
0.019417917355895042,
0.06700656563043594,
0.029417647048830986,
-0.03578496724367142,
-0.027806585654616356,
0.012315460480749607,
0.011742530390620232,
-0.005974037107080221,
-0.0736905112862587,
-0.008790000341832638,
0.03376077115535736,
0.01664106547832489,
0.00324265961535275,
-0.038855280727148056,
0.004247706383466721,
0.0666356161236763,
-0.06140067055821419,
0.04986856132745743,
0.012570072896778584,
0.038010746240615845,
0.038863107562065125,
-0.007644498720765114,
0.0367138646543026,
-0.03431185707449913,
0.006530042737722397,
-0.020556606352329254,
0.01575598493218422,
-0.009418086148798466,
-0.003767333459109068,
-0.05763474479317665,
0.02700672671198845,
0.023704076185822487,
0.036338258534669876,
0.011460534296929836,
-0.03113383613526821,
-0.05860625207424164,
0.008022247813642025,
0.06317383795976639,
-0.06258977949619293,
0.012715240940451622,
0.017341867089271545,
0.021391622722148895,
-0.036901745945215225,
-0.016404258087277412,
-0.037878479808568954,
-0.015129848383367062,
0.030430590733885765,
-0.01387607678771019,
-0.04379459097981453,
-0.0434141643345356,
0.027246534824371338,
0.021689865738153458,
-0.006147546693682671,
-0.07831377536058426,
0.024706287309527397,
-0.024067064747214317,
-0.017552226781845093,
0.050189368426799774,
0.04279673099517822,
0.02461913228034973,
0.0707397609949112,
0.023782925680279732,
0.018207086250185966,
-0.03277866169810295,
0.04135875776410103,
-0.04425498843193054,
-0.016032520681619644,
-0.008288925513625145,
-0.05008833855390549,
-0.018438074737787247,
-0.021279923617839813,
-0.05083134397864342,
-0.04821139946579933,
-0.03291383385658264,
-0.0034206637647002935,
-0.0020256685093045235,
0.011859663762152195,
-0.0056986697018146515,
0.0519280843436718,
-0.0051940432749688625,
-0.027926815673708916,
-0.027898311614990234,
-0.02895640954375267,
-0.055107783526182175,
-0.04212059825658798,
0.03525916859507561,
0.0022136939223855734,
0.056165266782045364,
0.017814194783568382,
0.014520828612148762,
0.033776190131902695,
0.012923610396683216,
-0.03796577826142311,
0.02138685993850231,
0.003424051683396101,
-0.007935247384011745,
-0.01578817330300808,
0.019543379545211792,
0.015510277822613716,
0.07608336210250854,
-0.007610920816659927,
0.03692038729786873,
0.01672551967203617,
-0.009133541025221348,
0.00886363722383976,
0.024720890447497368,
0.01422396395355463,
-0.05239832401275635,
-0.029878787696361542,
0.006655178032815456,
-0.014185651205480099,
0.009720518253743649,
-0.029834717512130737,
-0.013803211972117424,
0.006084047723561525,
0.011406947858631611,
0.06225139647722244,
-0.005631244741380215,
-0.026765333488583565,
0.007197361905127764,
-0.012092744931578636,
0.00970503594726324,
-0.05350319296121597,
0.03546638414263725,
-0.04941083863377571,
0.002399490447714925,
-0.029556486755609512,
0.009151693433523178,
-0.04072251915931702,
0.018131563439965248,
-0.02052358165383339,
-0.02294347621500492,
-0.0017863491084426641,
0.06161563843488693,
-0.016162319108843803,
0.04043139889836311,
-0.032336991280317307,
0.007835104130208492,
-0.044664930552244186,
0.06842461228370667,
-0.02992645837366581,
0.018352318555116653,
-0.033214494585990906,
0.014843831770122051,
-0.026283221319317818,
0.01032590214163065,
-0.029428569599986076,
-0.024456296116113663,
0.06043227016925812,
0.06963188946247101,
0.011531883850693703,
0.016711819916963577,
-0.010014480911195278,
0.00648105563595891,
0.01816672459244728,
-0.03811981528997421,
-0.03220134973526001,
-0.0006346805021166801,
-0.0050531839951872826,
-0.0256990697234869,
0.04079417511820793,
0.034286778420209885,
-0.03723691776394844,
-0.049417465925216675,
0.0469760037958622,
0.017528174445033073,
0.0024897742550820112,
0.008854752406477928,
0.01199953444302082,
0.04108833894133568,
0.039388950914144516,
-0.03366953507065773,
-0.001669665682129562,
-0.016194205731153488,
-0.029948865994811058,
0.052898477762937546,
-0.03321361914277077,
0.05061531066894531,
0.01479855366051197,
-0.0069827307015657425,
-0.013615031726658344,
0.08064092695713043,
0.03229696676135063,
0.015030167996883392,
-0.008514253422617912,
-0.045954227447509766,
0.017169933766126633,
0.00894131138920784,
-0.04524456337094307,
0.006837171968072653,
0.0225108340382576,
-0.036420341581106186,
0.05174880847334862,
-0.013666579499840736,
0.015566762536764145,
0.07671535760164261,
0.05132151395082474,
-0.013359859585762024,
0.0780009999871254,
-0.016416924074292183,
0.015304089523851871,
0.044480100274086,
-0.06776013970375061,
0.005598076619207859,
-0.0404311828315258,
0.07662571221590042,
-0.05917353928089142,
0.03232364356517792,
0.030705248937010765,
-0.02013641968369484,
0.014187872409820557,
-0.026456454768776894,
-0.05072382465004921,
0.022355273365974426,
-0.04178709164261818,
0.08998441696166992,
0.0011916387593373656,
-0.05948362126946449,
0.0618862584233284,
0.02551877312362194,
-0.05843089893460274,
0.024632155895233154,
0.053785290569067,
0.021739652380347252,
0.02704501338303089,
0.03643779084086418,
-0.06979449838399887,
0.02956325002014637,
-0.02456856518983841,
0.05917097628116608,
-0.05732929706573486,
-0.021375199779868126,
0.04375225678086281,
-0.05918220803141594,
-0.02019118331372738,
0.03846971318125725,
0.004721088334918022,
-0.013563037849962711,
0.04879267141222954,
-0.03316415101289749,
-0.05812222883105278,
0.041098300367593765,
0.029763642698526382,
-0.029449772089719772,
-0.0035758409649133682,
-0.04784711077809334,
0.02025546319782734,
0.017169395461678505,
0.010698243975639343,
-0.013682154007256031,
-0.007418103516101837,
-0.00971263274550438,
-0.07230254262685776,
-0.030656611546874046,
0.034568946808576584,
-0.006898827850818634,
-0.03150395303964615,
0.02639254368841648,
-0.004076584242284298,
0.017233949154615402,
-0.004815848544239998,
0.0010718507692217827,
0.023327063769102097,
-0.05775415524840355,
-0.013396196998655796,
0.013921932317316532,
-0.0023175659589469433,
0.029980139806866646,
-0.0060936142690479755,
0.03938226029276848,
0.018290817737579346,
0.001991447526961565,
0.0005840255762450397,
-0.029731081798672676,
-0.05620161071419716,
0.03149745613336563,
-0.04513620212674141,
0.03254777193069458,
0.0016795539995655417,
-0.04177967831492424,
-0.053435493260622025,
0.006260338239371777,
-0.04079626873135567,
0.01490720547735691,
-0.0673048123717308,
-0.01702069491147995,
0.024010946974158287,
0.000206223368877545,
-0.06436416506767273,
-0.11360000818967819,
-0.02551080472767353,
-0.036845896393060684,
0.021418623626232147,
0.023551372811198235,
-0.05929963290691376,
0.022505756467580795,
-0.05060926824808121,
-0.05483319237828255,
0.04704537242650986,
0.01633630506694317,
-0.04092547297477722,
0.03146280720829964,
0.03601416200399399,
-0.052521850913763046,
0.011119448579847813,
0.025932330638170242,
-0.035114921629428864,
0.016600044444203377,
0.03637930750846863,
0.00028277485398575664,
0.03267615661025047,
-0.0026501675602048635,
-0.02733163721859455,
-0.039401575922966,
-0.07427985966205597,
-0.04159838333725929,
-0.04329107701778412,
0.03731651231646538,
0.06473967432975769
] |
AnonymousSub/consert-s10-SR | [
"pytorch",
"bert",
"text-classification",
"transformers"
] | text-classification | {
"architectures": [
"BertForSequenceClassification"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 28 | null | ---
license: creativeml-openrail-m
tags:
- text-to-image
- stable-diffusion
---
# Model Card for MNKAD
## Model Description
- **Developed by:** BADMONK
- **Model type:** Dreambooth Model + Extracted LoRA
- **Language(s) (NLP):** EN
- **License:** Creativeml-Openrail-M
- **Parent Model:** ChilloutMix
# How to Get Started with the Model
Use the code below to get started with the model.
### MNKAD ### | [
-0.04762059822678566,
-0.022680237889289856,
-0.022928642109036446,
0.010718023404479027,
0.0449000783264637,
0.025470633059740067,
-0.002462158678099513,
-0.0015046013286337256,
-0.005603422876447439,
0.060988012701272964,
0.05077658221125603,
-0.01478972751647234,
-0.0019908116664737463,
0.035902414470911026,
-0.010924245230853558,
-0.026624146848917007,
-0.020024094730615616,
-0.0029512899927794933,
-0.05009254440665245,
0.010039444081485271,
0.021234523504972458,
0.018600663170218468,
-0.006131731439381838,
0.01013252791017294,
-0.005955846048891544,
0.016203170642256737,
0.016659965738654137,
0.03284986689686775,
0.028749745339155197,
-0.04443274438381195,
0.0020893458276987076,
-0.048308391124010086,
-0.026545194908976555,
-0.017931662499904633,
-0.04101107642054558,
0.025230247527360916,
0.03851829841732979,
0.006856176070868969,
0.05178966000676155,
0.03778938204050064,
-0.031812433153390884,
0.012724561616778374,
-0.018419237807393074,
-0.02580285258591175,
0.03152841702103615,
-0.006686257664114237,
-0.029792528599500656,
-0.023888781666755676,
0.05978575721383095,
-0.030674602836370468,
-0.056321654468774796,
-0.045072779059410095,
-0.027544930577278137,
0.015138230286538601,
-0.0033426929730921984,
-0.02573525719344616,
-0.059060193598270416,
0.0030700156930834055,
0.036820799112319946,
-0.0397857166826725,
-0.025689857080578804,
-0.017474373802542686,
-0.05615686997771263,
-0.006951452232897282,
0.04575441777706146,
-0.04858734831213951,
0.0011840348597615957,
-0.048833154141902924,
0.0378655269742012,
-0.012030525133013725,
0.057775143533945084,
-0.040626879781484604,
-0.0025462331250309944,
-0.07757040858268738,
-0.027349457144737244,
-0.024851808324456215,
0.07231862843036652,
0.02492951601743698,
-0.04405516758561134,
0.05095924064517021,
0.02616455778479576,
0.008520218543708324,
0.0000014637120102634071,
-0.001252471236512065,
-0.013707704842090607,
0.03815288096666336,
-0.01395051833242178,
-0.0030482327565550804,
-0.015185047872364521,
0.018912989646196365,
-0.05412488058209419,
-0.03244926780462265,
0.0029892767779529095,
-0.04138239100575447,
0.018146643415093422,
0.020180920138955116,
0.05257803946733475,
-0.04666169360280037,
0.03868281468749046,
0.029061542823910713,
0.02385919727385044,
0.05144761502742767,
-0.0459558367729187,
0.07995131611824036,
-0.015550208278000355,
-0.02330530434846878,
-0.004530441015958786,
-0.031792644411325455,
-0.0470876544713974,
0.023145463317632675,
0.006790803279727697,
-0.03139214962720871,
-0.019538534805178642,
0.017140399664640427,
0.03239360824227333,
-0.012528114020824432,
0.03498495742678642,
-0.014145218767225742,
-0.051206741482019424,
-0.06752865761518478,
0.05481360852718353,
-0.00796094723045826,
-0.007170293480157852,
0.01260988600552082,
-0.0740915983915329,
0.02189808525145054,
-0.07963668555021286,
-0.046943265944719315,
0.013547113165259361,
0.015070408582687378,
-0.0010754646500572562,
0.03423827886581421,
-0.0020740232430398464,
-0.0617239773273468,
0.022892072796821594,
0.021394044160842896,
-0.03721656650304794,
0.02382001467049122,
-0.01891298219561577,
0.12378837913274765,
-0.06276398152112961,
-0.03947947174310684,
0.017030902206897736,
0.016506783664226532,
-0.04624870792031288,
0.026420854032039642,
-0.009785388596355915,
-0.03529798239469528,
-0.012518912553787231,
-0.015992170199751854,
0.014304909855127335,
-0.049514785408973694,
-0.034538593143224716,
0.007378965616226196,
0.0054264971986413,
0.03582298755645752,
-0.03676357492804527,
-0.040317755192518234,
-0.01740088127553463,
-0.010912192054092884,
-0.022996725514531136,
0.04773258790373802,
0.0013023153878748417,
-0.03709711879491806,
-0.03415327146649361,
-0.04752650856971741,
0.025914300233125687,
0.08952321857213974,
-0.0355667918920517,
-0.03790217638015747,
-0.013746487908065319,
0.030528971925377846,
0.04760045185685158,
0.012763195671141148,
-0.03560573607683182,
0.037588704377412796,
0.07002880424261093,
0.015937238931655884,
-0.026053443551063538,
0.05267772451043129,
0.008852994069457054,
-0.030770299956202507,
-0.011658257804811,
0.009774967096745968,
0.0046091689728200436,
-0.055661775171756744,
-0.024608299136161804,
0.03682682663202286,
-0.005262025166302919,
-0.023722440004348755,
-0.02523070015013218,
0.037746917456388474,
-0.024283893406391144,
-0.021912891417741776,
0.010597762651741505,
-0.02720506116747856,
-0.028912991285324097,
0.06892087310552597,
-0.007046384271234274,
0.009280301630496979,
-0.013779934495687485,
-0.005494426004588604,
0.01911429688334465,
-0.004302244167774916,
0.035870905965566635,
0.05707458034157753,
0.0005077355890534818,
0.08855507522821426,
-0.03533337637782097,
-0.008274908177554607,
-0.04193166643381119,
-0.05502930283546448,
0.022414565086364746,
0.052880991250276566,
0.03875045105814934,
0.028599634766578674,
-0.024050435051321983,
-0.074177585542202,
0.04876691475510597,
0.049123313277959824,
0.04223192483186722,
0.026410626247525215,
-0.03466981276869774,
-0.01636205054819584,
0.00029547009035013616,
0.03336014971137047,
-0.05111554637551308,
-0.044247496873140335,
0.022808264940977097,
0.03788990527391434,
-0.06740546226501465,
0.018884317949414253,
-0.0011869445443153381,
0.04322788119316101,
-0.03616194799542427,
-0.0854896605014801,
0.05219700187444687,
0.03719940781593323,
0.005578973796218634,
0.01595953106880188,
0.004045732785016298,
0.011016369797289371,
0.03499386087059975,
0.016490520909428596,
0.03237774223089218,
-0.03924781456589699,
-0.0001153382399934344,
0.028114954009652138,
0.06193690747022629,
-0.043131887912750244,
0.0645499974489212,
-0.000050016202294500545,
0.03169340267777443,
0.03629704564809799,
-0.09727298468351364,
0.029300637543201447,
0.10365975648164749,
0.006885555572807789,
-0.057318806648254395,
0.05568245053291321,
0.020006831735372543,
0.050032079219818115,
0.04527369141578674,
-0.029140906408429146,
0.06484891474246979,
-0.04385795816779137,
0.060614701360464096,
0.05838342756032944,
0.03601883351802826,
0.010267321020364761,
0.02633502334356308,
0.06512495130300522,
-0.01861654222011566,
-0.02686482109129429,
0.07369966804981232,
-0.042306315153837204,
-0.023071276023983955,
-0.05924967676401138,
0.02207893691956997,
-0.01916547119617462,
0.0036503118462860584,
0.05471979081630707,
0.02589104138314724,
-0.028328007087111473,
-0.008251556195318699,
0.02056337147951126,
0.004327951930463314,
0.03371840715408325,
-0.013296082615852356,
0.005178828723728657,
-0.018574245274066925,
-0.017970701679587364,
0.018352830782532692,
-0.07333599776029587,
-0.05730486661195755,
-0.02245357818901539,
-0.037689730525016785,
0.015620005317032337,
-0.06585235148668289,
-0.0030133065301924944,
-0.04101444408297539,
-0.0032387583050876856,
0.03713054209947586,
0.00041224848246201873,
-0.003047897247597575,
-0.025064274668693542,
0.0280001237988472,
-0.030199112370610237,
-0.007491454482078552,
-0.06649873405694962,
-0.0570792593061924,
0.017393818125128746,
-0.06268850713968277,
0.033738505095243454,
0.015807799994945526,
0.015040197409689426,
0.00566863501444459,
0.01891300268471241,
0.010866846889257431,
-0.043836433440446854,
0.024908117949962616,
0.0556483268737793,
-0.04941490665078163,
-0.04549068957567215,
-0.013458166271448135,
-0.02050876058638096,
0.02920227311551571,
-0.047969233244657516,
-0.014151903800666332,
0.10881494730710983,
0.04450129717588425,
-0.005331499967724085,
-0.004123861901462078,
0.04442986845970154,
-0.04461056739091873,
-0.009538816288113594,
-0.03312593698501587,
-0.032070595771074295,
-0.043280452489852905,
-0.019938424229621887,
-0.02284333109855652,
-0.014806004241108894,
-0.054088227450847626,
-0.024621915072202682,
-0.013973221182823181,
-0.0064544593915343285,
0.03472462669014931,
0.05353853851556778,
0.015765173360705376,
0.0451136976480484,
-0.06048404052853584,
-0.04253564774990082,
0.04174031317234039,
0.020263755694031715,
-0.030107878148555756,
-0.021948907524347305,
-0.046229325234889984,
0.03345959261059761,
0.03293411806225777,
-0.02255968190729618,
0.006530681159347296,
0.06744283437728882,
0.01160363107919693,
-0.003943885676562786,
0.016989324241876602,
-0.04062913358211517,
0.008554344065487385,
0.014174352400004864,
-0.0105072520673275,
-0.0014374625170603395,
-0.0395771823823452,
0.013714557513594627,
0.005089268088340759,
0.05706869065761566,
-0.03661216050386429,
-0.06478291749954224,
-0.005453326273709536,
0.017392879351973534,
0.039072874933481216,
-0.015952693298459053,
-0.036545589566230774,
-0.01014106534421444,
-0.04090678319334984,
0.017450526356697083,
0.021162018179893494,
0.0070448704063892365,
0.01222980860620737,
0.03640638664364815,
-0.013307731598615646,
-0.024971509352326393,
0.037695374339818954,
0.03578459098935127,
0.03668636456131935,
0.020415324717760086,
-0.05434948578476906,
0.004947590176016092,
-0.0242279265075922,
0.03524119406938553,
-0.008847182616591454,
-0.04845508188009262,
-0.027578573673963547,
-0.0887204259634018,
-0.02185050956904888,
0.01852121204137802,
-0.0226916391402483,
0.011489340104162693,
0.060658324509859085,
0.006121369078755379,
-0.0022917327005416155,
0.015851683914661407,
0.01567339338362217,
0.05048646405339241,
-0.03529703989624977,
0.04646511375904083,
-0.028421025723218918,
-0.015540411695837975,
-0.036198388785123825,
0.021636079996824265,
-0.030836399644613266,
-0.01706329919397831,
0.026719223707914352,
0.0615856871008873,
0.034394100308418274,
0.05024472251534462,
0.037922292947769165,
0.014158759266138077,
-0.06374597549438477,
0.03519069030880928,
0.03679598495364189,
-0.02936318702995777,
-0.034695252776145935,
0.012495014816522598,
-0.027144743129611015,
-0.02820383571088314,
0.000071745875175111,
-0.0066964952275156975,
0.04034791886806488,
0.029481206089258194,
0.0031736039090901613,
-0.01003022026270628,
0.02721918560564518,
0.001050818245857954,
-0.02870877832174301,
-0.03480396047234535,
-0.009374489076435566,
0.009127411060035229,
-0.05178919434547424,
0.019548324868083,
0.031123101711273193,
0.04743942618370056,
0.057823099195957184,
0.031880833208560944,
-0.01537252776324749,
-0.05312969908118248,
0.010959295555949211,
-0.0076241884380578995,
-0.03592521324753761,
-0.10404624044895172,
-0.0320478230714798,
0.027437089011073112,
0.056992750614881516,
0.0024566787760704756,
-0.05939299985766411,
0.035033661872148514,
0.038197170943021774,
-0.05623036250472069,
0.030094945803284645,
-0.021672623232007027,
0.026607884094119072,
0.028481723740696907,
-0.015140448696911335,
0.04034890606999397,
-0.03514965623617172,
0.01755334623157978,
-0.009509381838142872,
0.01415185071527958,
-0.014188909903168678,
-0.03935026749968529,
-0.04248545691370964,
0.03696253523230553,
0.02400047704577446,
0.039254434406757355,
0.029399514198303223,
-0.06754963099956512,
-0.05884731933474541,
-0.040116168558597565,
0.018143370747566223,
-0.04802323505282402,
0.025447111576795578,
0.02336787059903145,
0.03537286818027496,
-0.03891264274716377,
-0.029817473143339157,
-0.015034248121082783,
-0.021823300048708916,
0.02320224419236183,
-0.02444671466946602,
-0.054877109825611115,
-0.0051253861747682095,
0.03189540281891823,
-0.001460416242480278,
-0.0049719191156327724,
-0.07444432377815247,
-0.0007380055030807853,
-0.011345120146870613,
-0.05444244667887688,
0.04808172583580017,
0.013904066756367683,
0.055787961930036545,
0.048264145851135254,
0.010509288869798183,
0.04252554103732109,
-0.01781078614294529,
0.03478764370083809,
-0.026907971128821373,
-0.003952174447476864,
0.03877643868327141,
-0.06514795869588852,
-0.047111641615629196,
-0.01040212344378233,
-0.04738933593034744,
-0.05209476128220558,
-0.01043827272951603,
0.0365532711148262,
-0.027332542464137077,
-0.011633654125034809,
-0.010107561014592648,
0.029337985441088676,
-0.02525193616747856,
-0.0424715019762516,
-0.03627598285675049,
-0.007163107395172119,
-0.018093910068273544,
-0.015604500658810139,
0.008276740089058876,
0.015706060454249382,
0.006883740425109863,
-0.000021257001208141446,
0.0032049263827502728,
0.029973726719617844,
0.016062697395682335,
-0.03266312554478645,
0.04025588184595108,
-0.00837553571909666,
-0.019484706223011017,
-0.03705017268657684,
-0.0017466441495344043,
0.026186740025877953,
0.02286929450929165,
-0.0321219228208065,
0.011512985453009605,
0.024393994361162186,
-0.015638742595911026,
-0.04187877103686333,
0.02707383967936039,
0.015159317292273045,
-0.044970378279685974,
-0.020562779158353806,
-0.003691022517159581,
-0.028044937178492546,
0.045892711728811264,
-0.05541967228055,
-0.021449623629450798,
0.015400579199194908,
-0.010529380291700363,
0.02099643461406231,
-0.01659528538584709,
-0.028354957699775696,
0.022039314731955528,
-0.026794960722327232,
0.03548859432339668,
-0.06276530772447586,
0.04719236493110657,
-0.0343959741294384,
0.03839273005723953,
-0.021732468158006668,
-0.006803515832871199,
-0.04043973982334137,
0.036105718463659286,
-0.0029647171031683683,
-0.004057434853166342,
-0.004978528246283531,
0.0016885995864868164,
-0.04576818645000458,
0.04450533539056778,
-0.001992971869185567,
0.015573852695524693,
-0.018858090043067932,
0.07688847184181213,
-0.020858224481344223,
0.00943021010607481,
-0.013684999197721481,
0.025012850761413574,
-0.05184184014797211,
-0.005456629209220409,
-0.032509952783584595,
-0.016591876745224,
0.008604543283581734,
0.05875450372695923,
-0.005826570093631744,
0.03310338035225868,
-0.018231408670544624,
-0.0013647275045514107,
0.0039014415815472603,
-0.07217582315206528,
-0.01679302752017975,
0.008402339182794094,
0.014120959676802158,
-0.006453579291701317,
0.05977199971675873,
0.041153524070978165,
-0.04611004889011383,
-0.037595003843307495,
0.03682703524827957,
0.017305392771959305,
0.03042096644639969,
-0.010834390297532082,
0.012344926595687866,
-0.0008583461167290807,
0.0614040307700634,
-0.04766484722495079,
-0.009273230098187923,
-0.010732396505773067,
-0.0002582485321909189,
0.00740321958437562,
-0.006082374136894941,
0.0023676406126469374,
0.018480883911252022,
-0.03980192169547081,
-0.03967302665114403,
0.08326537162065506,
0.012376227416098118,
0.03225298598408699,
0.005405876319855452,
-0.03617095947265625,
0.06095237657427788,
0.020815856754779816,
-0.023361530154943466,
0.004621575120836496,
0.03574681654572487,
-0.02108939178287983,
0.0288240984082222,
0.0038314980920404196,
0.037372998893260956,
0.02708035707473755,
0.06332464516162872,
-0.005560098681598902,
0.07445178180932999,
-0.04784809798002243,
0.041126150637865067,
0.044227730482816696,
-0.04654856026172638,
-0.038207948207855225,
-0.022085722535848618,
0.045914310961961746,
-0.09552566707134247,
0.08484338968992233,
0.0390438437461853,
0.014724325388669968,
0.02165921963751316,
-0.060939986258745193,
-0.04060418903827667,
0.0030115735717117786,
-0.022565186023712158,
0.056569598615169525,
0.008159416727721691,
-0.04459308460354805,
0.07256025820970535,
0.04606374353170395,
-0.08512099832296371,
0.048404064029455185,
0.03540434688329697,
0.02453010529279709,
0.013138928450644016,
0.03609857335686684,
-0.03399159386754036,
0.05872924625873566,
-0.05924227833747864,
0.021129516884684563,
-0.08348672091960907,
-0.02159469574689865,
0.04175771400332451,
-0.056718770414590836,
-0.019892994314432144,
0.022859826683998108,
-0.016195228323340416,
0.02126086689531803,
0.05152830481529236,
-0.039957866072654724,
-0.052945397794246674,
-0.006503832992166281,
0.0061439150013029575,
0.013960576616227627,
-0.036659788340330124,
-0.002279501175507903,
-0.00015019727288745344,
0.04128837585449219,
0.024045147001743317,
-0.04419659078121185,
0.01676509901881218,
0.02206927351653576,
-0.037041354924440384,
-0.049868371337652206,
0.046995386481285095,
0.02049325592815876,
-0.023835381492972374,
0.017753805965185165,
0.006022738758474588,
0.05157371237874031,
-0.010649965144693851,
-0.0003033255343325436,
-0.01677028462290764,
-0.07367035001516342,
-0.024933531880378723,
0.025890730321407318,
-0.002667901339009404,
-0.0073873684741556644,
-0.018800457939505577,
-0.01263834536075592,
0.08367306739091873,
0.019556529819965363,
0.014020166359841824,
-0.014319691807031631,
0.007144729141145945,
0.011918550357222557,
-0.03293852508068085,
-0.0004148648586124182,
-0.0022040149196982384,
-0.03316199779510498,
-0.01762070506811142,
0.003592533292248845,
-0.0327480211853981,
0.03283638507127762,
-0.06392190605401993,
0.011646436527371407,
0.01751730963587761,
-0.022844849154353142,
-0.05497637763619423,
-0.06582675874233246,
-0.02980877086520195,
0.009084662422537804,
0.0062240660190582275,
0.017245830968022346,
-0.045527491718530655,
0.025950998067855835,
-0.04173508286476135,
-0.04334449768066406,
0.029488269239664078,
-0.01281531248241663,
-0.020098619163036346,
0.07422668486833572,
0.053259581327438354,
-0.008479065261781216,
0.029172394424676895,
-0.004172900225967169,
-0.058918386697769165,
0.018997978419065475,
-0.0008091051713563502,
0.019043220207095146,
0.024066800251603127,
-0.007339504547417164,
0.0009484814945608377,
-0.01653592474758625,
-0.06792907416820526,
-0.03340277448296547,
-0.05867752060294151,
0.008527632802724838,
0.0504981130361557
] |
AnonymousSub/dummy_1 | [
"pytorch",
"bert",
"text-classification",
"transformers"
] | text-classification | {
"architectures": [
"BertForSequenceClassification"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 33 | null | ---
datasets:
- food101
language:
- en
metrics:
- accuracy
library_name: transformers
---
# Image Classification
Classifies food images using a subset of the food101 dataset.<br>
Uses PyTorch for the preprocessing, training, and inference.
```
output_dir="cats_vs_dogs_model"
remove_unused_columns=False
evaluation_strategy="epoch"
save_strategy="epoch"
learning_rate=5e-5
per_device_train_batch_size=16
gradient_accumulation_steps=4
per_device_eval_batch_size=16
num_train_epochs=3
warmup_ratio=0.1
logging_steps=10
load_best_model_at_end=True
metric_for_best_model="accuracy"
push_to_hub=True
``` | [
-0.02219492197036743,
-0.002897371305152774,
-0.012418077327311039,
0.05086803808808327,
0.05578794330358505,
-0.000009994579158956185,
0.000724177691154182,
0.009492711164057255,
-0.03573855385184288,
0.06565184891223907,
0.045115794986486435,
-0.0004035780148115009,
0.004541981965303421,
0.017783815041184425,
-0.018367186188697815,
-0.02422666922211647,
-0.02340277098119259,
-0.029905226081609726,
-0.04022473096847534,
0.006816342007368803,
0.0032442237716168165,
-0.009255029261112213,
0.014083192683756351,
0.03532896563410759,
0.005347716622054577,
0.01609998196363449,
0.0035935789346694946,
0.026626383885741234,
0.041548650711774826,
-0.07170756906270981,
0.0038474048487842083,
-0.059788428246974945,
-0.026434365659952164,
-0.00438590906560421,
-0.007196439895778894,
0.010580859147012234,
0.03684365376830101,
0.014610371552407742,
0.031340960413217545,
0.03660301864147186,
0.016823843121528625,
0.003364044241607189,
-0.04533085227012634,
-0.036845773458480835,
0.03162277862429619,
0.03117789328098297,
-0.019332174211740494,
-0.029564399272203445,
0.04344889149069786,
-0.014864782802760601,
-0.067858025431633,
-0.07075998932123184,
-0.0601811520755291,
0.0463106594979763,
-0.044506385922431946,
-0.028388990089297295,
-0.029602564871311188,
0.03237023949623108,
0.05124609172344208,
-0.05055256932973862,
-0.022224798798561096,
0.012299016118049622,
-0.08959901332855225,
0.04851745814085007,
-0.006758547853678465,
-0.03532962128520012,
0.013761932961642742,
-0.037859946489334106,
0.013269292190670967,
-0.045269228518009186,
0.0975574254989624,
-0.02838786691427231,
0.020621314644813538,
-0.04361836612224579,
-0.00265707541257143,
-0.03063041903078556,
0.025428619235754013,
0.03895128518342972,
-0.03302336111664772,
0.058349061757326126,
0.05812320113182068,
-0.007577918469905853,
0.018286295235157013,
-0.019165964797139168,
-0.022705180570483208,
0.05071214213967323,
-0.015365567989647388,
-0.009131369180977345,
0.001397342188283801,
0.04276711121201515,
-0.08570884168148041,
-0.054317835718393326,
-0.01938740536570549,
-0.03391321375966072,
-0.012552623637020588,
-0.00525252241641283,
0.024946635589003563,
-0.0008459673845209181,
0.03411475941538811,
0.0426621288061142,
0.061558473855257034,
0.057313013821840286,
0.005453207995742559,
0.028234640136361122,
-0.006317433435469866,
-0.0011548018082976341,
-0.028509801253676414,
-0.0618315115571022,
-0.048537496477365494,
0.028169799596071243,
0.030090127140283585,
-0.005170111544430256,
-0.026910431683063507,
0.060255907475948334,
-0.02013385109603405,
-0.020579559728503227,
0.08145555108785629,
-0.036294758319854736,
-0.02578585408627987,
-0.031206417828798294,
0.06772847473621368,
-0.0025631750468164682,
-0.015379030257463455,
0.01239547785371542,
-0.019484270364046097,
-0.016437072306871414,
-0.055119700729846954,
-0.05685366317629814,
-0.006842005532234907,
0.03997374698519707,
0.007369804196059704,
0.05110315605998039,
0.04366777837276459,
-0.034588057547807693,
-0.000900169659871608,
0.007096856366842985,
-0.06365032494068146,
0.06357093900442123,
0.023505952209234238,
0.09882698208093643,
-0.08747278898954391,
-0.0454966239631176,
0.038894396275281906,
0.007940764538943768,
-0.010766062885522842,
0.02532588690519333,
0.02241237461566925,
-0.060894619673490524,
-0.04068621248006821,
-0.01535584032535553,
0.04266856983304024,
-0.057917457073926926,
-0.02134140022099018,
0.02799767628312111,
0.006139886565506458,
0.04610424116253853,
-0.06550981104373932,
-0.025859933346509933,
-0.0030247019603848457,
-0.017817776650190353,
-0.02129502035677433,
0.05256319046020508,
0.025132032111287117,
0.005383254494518042,
-0.05000469833612442,
-0.03638927638530731,
0.0021703119855374098,
0.11180806159973145,
-0.01689177192747593,
-0.0012892702361568809,
-0.010663238354027271,
0.04288552701473236,
0.026471350342035294,
0.03961962088942528,
-0.023221826180815697,
0.035258062183856964,
0.07329432666301727,
0.022632915526628494,
-0.056156694889068604,
0.05201723426580429,
0.034490860998630524,
-0.04309762269258499,
-0.02699088864028454,
-0.0002355925680603832,
-0.008088042959570885,
-0.037917159497737885,
0.02195248007774353,
0.00969830621033907,
0.001904257107526064,
-0.0340660959482193,
-0.013828291557729244,
0.04348573833703995,
0.0032083617988973856,
-0.017665894702076912,
0.0007486343965865672,
-0.031130481511354446,
-0.03681419789791107,
0.031288910657167435,
-0.03644023463129997,
-0.009415999054908752,
-0.0078970305621624,
-0.009273532778024673,
0.014151723124086857,
-0.019875992089509964,
0.015546657145023346,
0.040058355778455734,
-0.0005973720108158886,
0.07699836045503616,
-0.008143584243953228,
-0.007457180414348841,
-0.05104867368936539,
-0.06188522279262543,
0.008163806051015854,
0.03478821739554405,
0.05205448344349861,
0.03252241015434265,
-0.016552438959479332,
-0.05560161545872688,
0.042048849165439606,
0.04557561129331589,
0.0651504322886467,
0.00021622612257488072,
-0.004539471585303545,
0.0025416421703994274,
0.01918075978755951,
0.07059596478939056,
-0.041547808796167374,
-0.033812545239925385,
0.014766334556043148,
0.029790928587317467,
0.005544109735637903,
0.02083497866988182,
0.00010739346907939762,
0.028875216841697693,
-0.05237139016389847,
-0.06796056032180786,
0.03559248521924019,
0.03981080651283264,
-0.0019310618517920375,
0.015247717499732971,
0.022390713915228844,
0.01573800854384899,
0.02138742431998253,
0.014945424161851406,
-0.006988443899899721,
-0.06706144660711288,
0.005081765353679657,
0.024986833333969116,
0.026921719312667847,
-0.03507319837808609,
0.023665916174650192,
-0.007123352959752083,
-0.01301472820341587,
0.039243023842573166,
-0.038682498037815094,
0.032799072563648224,
0.02251223661005497,
0.027445625513792038,
0.009233447723090649,
0.01482614316046238,
0.026433080434799194,
0.011384504847228527,
0.05087179318070412,
-0.0035101808607578278,
0.056063853204250336,
-0.026312222704291344,
0.03682267665863037,
0.09887166321277618,
0.009802651591598988,
0.03308287262916565,
0.04680284485220909,
0.07881146669387817,
-0.018689734861254692,
-0.016201743856072426,
0.0265590138733387,
-0.05573253333568573,
0.0010740096913650632,
-0.013670558109879494,
-0.005178465042263269,
-0.030575785785913467,
0.01685938611626625,
0.055176712572574615,
0.011814074590802193,
-0.04277336224913597,
0.0009736852953210473,
0.018275678157806396,
-0.01888853684067726,
0.04574396833777428,
-0.006842386443167925,
-0.021702729165554047,
0.012482994236052036,
0.011912303045392036,
0.013306575827300549,
-0.03711153194308281,
-0.03223389387130737,
-0.02682923525571823,
-0.05215728282928467,
-0.03463640809059143,
-0.04987344145774841,
-0.03147746995091438,
-0.06659284234046936,
-0.023399127647280693,
0.04805222898721695,
0.005433008540421724,
0.008021321147680283,
-0.03585266321897507,
0.036397453397512436,
-0.052165739238262177,
-0.022119857370853424,
-0.035974983125925064,
-0.05951978266239166,
-0.04104440659284592,
-0.07756977528333664,
0.05003844574093819,
0.007190061267465353,
0.025901837274432182,
-0.0016591351013630629,
-0.0008222137112170458,
-0.04521799460053444,
-0.0036286315880715847,
0.057870928198099136,
0.03286856412887573,
0.0005913570639677346,
-0.03519686311483383,
0.0492052398622036,
-0.03133146092295647,
0.018682193011045456,
0.001124776084907353,
-0.04190526902675629,
0.061323247849941254,
0.034018032252788544,
0.012332105077803135,
-0.008954264223575592,
0.01014983281493187,
-0.06124351546168327,
-0.06698126345872879,
-0.013185087591409683,
-0.0025020954199135303,
0.01686338149011135,
-0.03363509476184845,
-0.015161294490098953,
-0.021764008328318596,
-0.027287157252430916,
-0.03871156647801399,
-0.024638136848807335,
0.016447199508547783,
0.05292515829205513,
0.04880605265498161,
0.03707422688603401,
0.03871464729309082,
-0.03330382704734802,
-0.013359855860471725,
0.04164685681462288,
-0.004021004308015108,
-0.0036226066295057535,
-0.05722198262810707,
-0.0032554075587540865,
0.024559207260608673,
0.04072413593530655,
0.00012709527800325304,
-0.01584506221115589,
0.07351306080818176,
0.006628274917602539,
-0.012636006809771061,
0.018102051690220833,
-0.022447722032666206,
0.002011993434280157,
0.024976031854748726,
-0.0030828898306936026,
-0.007003428414463997,
-0.048642080277204514,
-0.037062257528305054,
-0.01451323926448822,
0.03025028109550476,
-0.05436408147215843,
-0.08049506694078445,
-0.0076698302291333675,
0.04468116536736488,
-0.007290613371878862,
0.054883331060409546,
-0.05413642153143883,
-0.0028868019580841064,
-0.07756099104881287,
0.00528139341622591,
0.01899842545390129,
0.020665546879172325,
0.018274914473295212,
0.04871341586112976,
-0.0018038791604340076,
-0.022991949692368507,
0.001123025780543685,
0.024411765858530998,
0.058830376714468,
0.01810563914477825,
-0.04076772183179855,
0.017916588112711906,
-0.020994937047362328,
0.032628804445266724,
-0.002888880204409361,
-0.03758370876312256,
-0.018149785697460175,
-0.08131405711174011,
-0.025032199919223785,
-0.0016830969834700227,
-0.030408110469579697,
-0.021411804482340813,
0.061989039182662964,
0.007944605313241482,
-0.02183309569954872,
0.014659925363957882,
-0.0038405999075621367,
0.05157735198736191,
-0.02225564606487751,
0.06031673774123192,
-0.011458753608167171,
0.012365767732262611,
-0.028588324785232544,
0.010007552802562714,
-0.03890309855341911,
-0.022526346147060394,
-0.008182594552636147,
0.04842252656817436,
0.0011980755953118205,
0.036193907260894775,
0.07788947224617004,
0.017215292900800705,
-0.04273618757724762,
0.047330886125564575,
0.042866915464401245,
-0.015986919403076172,
-0.033245038241147995,
0.013512267731130123,
-0.019535446539521217,
-0.016968904063105583,
0.006574841681867838,
-0.001944099785760045,
0.003893096698448062,
0.03297014534473419,
-0.020332857966423035,
-0.023216571658849716,
-0.03132732957601547,
-0.017726115882396698,
-0.037621092051267624,
-0.05755569785833359,
-0.017709806561470032,
0.008742360398173332,
-0.014022383838891983,
-0.016826989129185677,
0.050272610038518906,
0.03830157220363617,
0.049581632018089294,
0.027369648218154907,
-0.003947298042476177,
-0.01537339761853218,
0.026750147342681885,
0.017231037840247154,
-0.04653031751513481,
-0.04123888164758682,
-0.03967812657356262,
0.03260358050465584,
0.020939607173204422,
-0.0015579868340864778,
-0.07585135102272034,
0.010233983397483826,
0.0653657391667366,
-0.04156066104769707,
0.07768770307302475,
0.044730134308338165,
0.04485611617565155,
0.04499863460659981,
-0.021323254331946373,
0.027258988469839096,
-0.02047785185277462,
-0.0075522433035075665,
0.01275244913995266,
0.03996553272008896,
-0.016124440357089043,
-0.03328791260719299,
-0.05524292215704918,
0.03369086608290672,
0.03195830434560776,
0.054207559674978256,
0.05369165912270546,
-0.014620986767113209,
-0.0686974748969078,
0.0028203227557241917,
0.044323474168777466,
-0.024763628840446472,
0.025794129818677902,
0.04303066432476044,
0.03873533383011818,
-0.030013641342520714,
-0.057041946798563004,
-0.015287867747247219,
-0.04447072744369507,
0.013943947851657867,
0.033824652433395386,
-0.026654768735170364,
-0.029068179428577423,
0.019188430160284042,
0.01088162325322628,
-0.027220292016863823,
-0.07849813997745514,
0.08080650120973587,
-0.03883981704711914,
-0.029184430837631226,
0.055743467062711716,
0.012132436037063599,
0.0262367594987154,
0.05385884270071983,
0.006261333357542753,
0.007938651368021965,
-0.02961910329759121,
0.037073779851198196,
-0.021120840683579445,
0.0013251379132270813,
0.0024498365819454193,
-0.06327158212661743,
-0.021114598959684372,
-0.04373346269130707,
-0.06542498618364334,
-0.04478400573134422,
-0.016324056312441826,
0.0049671512097120285,
-0.00489503238350153,
-0.015981154516339302,
-0.013083422556519508,
0.01853042282164097,
-0.02298778109252453,
-0.0035783573985099792,
-0.03721269965171814,
-0.019905472174286842,
-0.04614812135696411,
-0.0269742701202631,
0.03587660193443298,
0.004679277539253235,
0.06281137466430664,
-0.015480597503483295,
0.018618561327457428,
0.024804674088954926,
-0.005308279301971197,
0.011784163303673267,
0.024809934198856354,
0.02006416767835617,
0.0019731756765395403,
-0.015369248576462269,
0.04045858606696129,
0.01961698569357395,
0.04333435744047165,
-0.021049370989203453,
-0.0029342484194785357,
0.016304494813084602,
0.003710733726620674,
0.003738090395927429,
0.01149379275739193,
0.03374391421675682,
-0.0680164098739624,
-0.052210208028554916,
0.015516679733991623,
-0.03389041870832443,
0.021443262696266174,
-0.016579750925302505,
-0.034612152725458145,
0.026816993951797485,
-0.004764952696859837,
0.018408890813589096,
-0.03386109694838524,
-0.0068446071818470955,
0.020242054015398026,
-0.013259370811283588,
0.009126436896622181,
-0.05669436976313591,
0.01999170146882534,
-0.02959764562547207,
0.008808049373328686,
-0.0044081793166697025,
0.000746885605622083,
-0.06408087909221649,
0.03425044193863869,
0.021262621507048607,
-0.012585833668708801,
-0.037082694470882416,
0.04744921624660492,
-0.03219292685389519,
0.005918971728533506,
-0.024305302649736404,
-0.014154976233839989,
-0.01196505781263113,
0.024543901905417442,
-0.06368235498666763,
0.03990674391388893,
-0.01027977280318737,
0.007924185134470463,
-0.022685011848807335,
-0.04140340909361839,
-0.005898892879486084,
-0.007675400469452143,
0.015199209563434124,
0.045680418610572815,
0.029030650854110718,
0.027890684083104134,
-0.004845104180276394,
0.016261538490653038,
0.02562299184501171,
-0.07160568237304688,
-0.03412354364991188,
-0.021045435220003128,
-0.01917547732591629,
0.0019535354804247618,
0.04742342233657837,
0.03266127407550812,
-0.05038173869252205,
-0.03403478488326073,
0.038209836930036545,
0.04040896147489548,
0.0008411935996264219,
0.011562636122107506,
0.015073981136083603,
0.028794072568416595,
0.042136359959840775,
-0.015894155949354172,
-0.007330266758799553,
-0.03931933268904686,
-0.02688533626496792,
0.022995643317699432,
-0.02228543534874916,
0.044266413897275925,
-0.0031265271827578545,
-0.009284566156566143,
0.01682857982814312,
0.08475465327501297,
0.06515993922948837,
0.040426820516586304,
0.002511930651962757,
-0.05919108912348747,
0.03209574893116951,
0.0432579405605793,
-0.05324265733361244,
-0.0031911670230329037,
0.006619520019739866,
-0.021804707124829292,
0.08445034921169281,
0.005164600908756256,
0.00012117009464418516,
0.0453709177672863,
0.05280798673629761,
-0.004381215665489435,
0.062454793602228165,
-0.0370844341814518,
0.03629126772284508,
0.01849737949669361,
-0.0690598338842392,
-0.024683242663741112,
-0.029229892417788506,
0.06567896902561188,
-0.07067593187093735,
0.06453414261341095,
0.04624059423804283,
-0.018261771649122238,
-0.002916437340900302,
-0.02036207914352417,
-0.037165675312280655,
0.026662806048989296,
-0.06649238616228104,
0.08146651089191437,
-0.005605279467999935,
-0.06111140921711922,
0.08032553642988205,
0.021107686683535576,
-0.07802863419055939,
0.050646279007196426,
0.04043479636311531,
0.02408394031226635,
0.058505162596702576,
0.03857480734586716,
-0.0591786727309227,
-0.010253526270389557,
-0.04696516692638397,
0.053612470626831055,
-0.04596330597996712,
-0.01806379295885563,
0.0037166511174291372,
-0.05809870362281799,
-0.009435789659619331,
0.02564551681280136,
-0.0072212060913443565,
0.02079864963889122,
0.007793258875608444,
-0.030442243441939354,
-0.062360264360904694,
0.006710024084895849,
0.026190878823399544,
-0.027809977531433105,
-0.0000034283252716704737,
-0.011406446807086468,
0.021040549501776695,
0.013412578031420708,
0.014294701628386974,
-0.01812109723687172,
-0.025211405009031296,
-0.012967483140528202,
-0.05605285242199898,
-0.030689900740981102,
0.03465092554688454,
0.01621205359697342,
-0.025596030056476593,
0.030746357515454292,
0.007272342219948769,
0.03537612408399582,
0.020085269585251808,
-0.007250049151480198,
0.030277786776423454,
-0.03002109006047249,
-0.014500030316412449,
0.021542895585298538,
0.000494698528200388,
0.01744692027568817,
-0.01500297524034977,
0.021089661866426468,
0.015969986096024513,
0.03494320064783096,
-0.01005245465785265,
-0.01694416254758835,
-0.01715482771396637,
0.006617119535803795,
-0.027205772697925568,
0.035293154418468475,
0.030094292014837265,
-0.026370376348495483,
-0.056264471262693405,
0.043623652309179306,
-0.012729359790682793,
0.029350556433200836,
-0.05514085665345192,
0.009551767259836197,
0.0264009777456522,
-0.003924869932234287,
-0.05975046381354332,
-0.07159794121980667,
-0.04423632100224495,
-0.060927122831344604,
0.018616782501339912,
0.05446122586727142,
-0.06067422032356262,
0.02729037217795849,
-0.03503281995654106,
-0.04872807115316391,
0.023226119577884674,
0.0437953919172287,
-0.014358656480908394,
0.07111535966396332,
0.06682226806879044,
-0.05503137409687042,
0.017810901626944542,
0.035475801676511765,
-0.05631231144070625,
0.0017513867933303118,
0.02093476802110672,
0.01668255217373371,
0.03677170351147652,
0.006969444453716278,
-0.0024598357267677784,
-0.01545519009232521,
-0.055229730904102325,
-0.031227409839630127,
-0.04264101758599281,
0.017470305785536766,
0.0363311842083931
] |
AnonymousSub/rule_based_roberta_hier_quadruplet_0.1_epochs_1_shard_1 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | null | ---
tags:
- generated_from_trainer
metrics:
- accuracy
model-index:
- name: zero-shot-learning-arabert
results: []
---
<!-- 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. -->
# zero-shot-learning-arabert
This model is a fine-tuned version of [aubmindlab/bert-large-arabertv02-twitter](https://huggingface.co/aubmindlab/bert-large-arabertv02-twitter) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 0.6305
- Macro F1: 0.7841
- Accuracy: 0.7826
## 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: 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
- num_epochs: 2
### Training results
| Training Loss | Epoch | Step | Validation Loss | Macro F1 | Accuracy |
|:-------------:|:-----:|:----:|:---------------:|:--------:|:--------:|
| No log | 1.0 | 418 | 0.6115 | 0.7669 | 0.7670 |
| 0.6523 | 2.0 | 836 | 0.6305 | 0.7841 | 0.7826 |
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.009632132947444916,
0.0021858131512999535,
-0.02851572260260582,
0.045916520059108734,
0.057658083736896515,
-0.006031403783708811,
-0.019371431320905685,
-0.03031175583600998,
-0.04877423495054245,
0.06161825358867645,
0.026927556842565536,
-0.012502729892730713,
0.0032118374947458506,
0.049789514392614365,
-0.03130495175719261,
-0.03462287038564682,
-0.01336546428501606,
0.006998512428253889,
-0.015245725400745869,
-0.00871758721768856,
0.007174761965870857,
-0.002820958150550723,
-0.005369492340832949,
0.015307056717574596,
-0.0007309240172617137,
0.021790923550724983,
-0.013689693994820118,
0.02164207398891449,
0.037014834582805634,
-0.08256417512893677,
0.009344611316919327,
-0.02545752376317978,
-0.020297875627875328,
0.0017155794193968177,
-0.018486270681023598,
-0.019315719604492188,
-0.005883798003196716,
0.02916782535612583,
0.035413745790719986,
0.043841633945703506,
0.01753455586731434,
0.007106040138751268,
-0.00423435028642416,
-0.03150365501642227,
0.05368463322520256,
-0.005189109593629837,
-0.047939833253622055,
0.003328915685415268,
0.058902159333229065,
-0.011964845471084118,
-0.07734622806310654,
-0.054468631744384766,
-0.02974282205104828,
0.050771769136190414,
-0.012751183472573757,
-0.03250911831855774,
-0.05478298291563988,
-0.0109763965010643,
0.07600217312574387,
-0.04688997566699982,
-0.040901750326156616,
-0.01054532453417778,
-0.0539771243929863,
0.015633415430784225,
0.028902797028422356,
-0.01631285808980465,
0.014742599800229073,
-0.039914991706609726,
0.04325452819466591,
-0.00943311769515276,
0.0659833773970604,
-0.018002239987254143,
0.02399684302508831,
-0.0827561467885971,
-0.028271328657865524,
-0.009294360876083374,
0.042516302317380905,
0.06768308579921722,
-0.021877428516745567,
0.057501666247844696,
0.0222216434776783,
-0.01355711743235588,
0.04025915265083313,
-0.036031074821949005,
0.00038610000046901405,
0.040817990899086,
-0.03890271857380867,
0.010763139463961124,
0.02102702111005783,
0.020610155537724495,
-0.04978763312101364,
-0.023274317383766174,
-0.021538425236940384,
-0.020836638286709785,
-0.01763336732983589,
0.021441377699375153,
0.05584804341197014,
0.005882247816771269,
0.04702934995293617,
0.009520728141069412,
0.04212648794054985,
0.0366041399538517,
-0.01110199186950922,
0.09196709096431732,
-0.012972217984497547,
-0.03229790925979614,
-0.009365689009428024,
-0.015307039022445679,
-0.03828506916761398,
0.009801867417991161,
0.03161611407995224,
-0.020473551005125046,
-0.016023831441998482,
0.04201178625226021,
0.01051427237689495,
0.02458922564983368,
0.04737604036927223,
-0.02650102786719799,
-0.030631957575678825,
-0.03284476697444916,
0.024782372638583183,
0.012193090282380581,
-0.010571285150945187,
0.013084232807159424,
-0.046489156782627106,
-0.011954584158957005,
-0.02061045914888382,
-0.035813767462968826,
0.00034175478504039347,
0.008863338269293308,
-0.0007246238528750837,
0.037465378642082214,
0.015419727191329002,
-0.04841948673129082,
-0.003847320331260562,
0.023327277973294258,
-0.048462118953466415,
0.0426936037838459,
0.010839310474693775,
0.09813372045755386,
-0.04904220998287201,
-0.092167928814888,
0.022389546036720276,
0.0010093576274812222,
-0.02788042277097702,
0.007600883953273296,
0.018834242597222328,
-0.01712389849126339,
-0.014710351824760437,
0.015700694173574448,
0.0508500412106514,
-0.057031627744436264,
-0.022304637357592583,
0.06687480211257935,
0.005403320770710707,
0.04724876582622528,
-0.05975937470793724,
-0.044085543602705,
0.007191713899374008,
-0.01170770451426506,
-0.02399935945868492,
0.03545957803726196,
-0.031847916543483734,
-0.026086527854204178,
-0.018707308918237686,
-0.052740417420864105,
0.0035824349615722895,
0.07568959891796112,
-0.01706237532198429,
-0.029022416099905968,
-0.027736501768231392,
0.024926679208874702,
0.05494620278477669,
0.043640486896038055,
-0.026407307013869286,
0.0503196194767952,
0.06316187977790833,
0.03267043083906174,
-0.06074896454811096,
0.04385922849178314,
0.034512899816036224,
-0.045769330114126205,
-0.036248013377189636,
0.026352934539318085,
0.009416687302291393,
-0.038580458611249924,
0.02540237456560135,
0.014110327698290348,
0.007730427663773298,
-0.058605682104825974,
-0.04280220717191696,
0.05446087196469307,
-0.0014842454111203551,
0.0029121176339685917,
0.004045624751597643,
-0.0019806367345154285,
-0.012617661617696285,
0.03323797881603241,
-0.01958503946661949,
0.011118143796920776,
-0.020884275436401367,
-0.03609436750411987,
-0.001753105316311121,
-0.004782988224178553,
0.03694107383489609,
0.08302409201860428,
-0.010723804123699665,
0.0819602683186531,
-0.024061882868409157,
0.036362409591674805,
-0.05030505359172821,
-0.0442410372197628,
0.016664469614624977,
0.05906397104263306,
0.06533154100179672,
0.055844105780124664,
0.006536388304084539,
-0.04606834799051285,
0.03887520730495453,
0.08718438446521759,
0.04498698562383652,
-0.0020521085243672132,
-0.04370138794183731,
-0.012758748605847359,
0.006685534492135048,
0.050746332854032516,
-0.048885587602853775,
-0.020155245438218117,
0.004887123592197895,
0.03560931980609894,
-0.001865436672233045,
0.011061811819672585,
-0.02697043865919113,
0.028097210451960564,
-0.04585682228207588,
-0.04806312173604965,
0.040861982852220535,
0.052140429615974426,
0.007389124017208815,
0.039420682936906815,
0.01830163598060608,
0.001462913933210075,
0.014819170348346233,
0.039407942444086075,
0.023321853950619698,
-0.04125657677650452,
0.005207930691540241,
-0.0030426562298089266,
0.03547888249158859,
-0.03680464252829552,
0.037073176354169846,
-0.01706201583147049,
-0.0050735133700072765,
0.03914478048682213,
-0.029302535578608513,
0.040228962898254395,
0.06759987771511078,
0.04092123731970787,
-0.02918199449777603,
0.012567034922540188,
0.018025776371359825,
0.024203218519687653,
0.020974567160010338,
-0.003966836258769035,
0.05301591381430626,
0.021412597969174385,
0.03927348181605339,
0.07620155066251755,
0.01887424662709236,
0.02983630821108818,
0.03495221957564354,
0.09227727353572845,
0.01788637414574623,
-0.013312045484781265,
0.037978075444698334,
-0.03702692687511444,
0.021886629983782768,
-0.03826286271214485,
-0.006608414929360151,
-0.028072834014892578,
-0.019180648028850555,
0.05545978248119354,
0.03419119492173195,
-0.015832912176847458,
-0.018828928470611572,
-0.00119784043636173,
-0.012379050254821777,
0.04596693813800812,
-0.02341592125594616,
0.009067307226359844,
-0.003951932303607464,
-0.02836713008582592,
-0.013040716759860516,
-0.04729088768362999,
-0.03692521154880524,
-0.0064275735057890415,
0.00025320611894130707,
-0.015470162965357304,
-0.1050032526254654,
-0.0061373463831841946,
-0.06999675184488297,
0.0006546026561409235,
0.03421870246529579,
0.008177685551345348,
-0.01892785355448723,
-0.02224087156355381,
0.01107099186629057,
-0.04190785065293312,
-0.03015262633562088,
-0.0367199070751667,
-0.0687304139137268,
-0.02621147222816944,
-0.0757138729095459,
0.013001038692891598,
0.04261089488863945,
0.009577775374054909,
-0.006441830191761255,
0.013575009070336819,
-0.006173275876790285,
-0.034526508301496506,
0.05331389233469963,
0.04455401748418808,
-0.03240089491009712,
-0.07485193014144897,
0.02196340635418892,
-0.011559680104255676,
0.012903930619359016,
0.015895111486315727,
-0.031095284968614578,
0.0841466560959816,
0.0729917660355568,
0.02045159414410591,
0.007976863533258438,
-0.027205990627408028,
-0.04392985254526138,
-0.055228691548109055,
-0.027615513652563095,
-0.03873869404196739,
0.003097505308687687,
-0.05450557544827461,
-0.030394870787858963,
-0.029066618531942368,
-0.04092415049672127,
0.01262168399989605,
-0.005432116333395243,
-0.0013993033207952976,
0.022721905261278152,
0.031834010034799576,
0.02457810752093792,
0.06203899532556534,
-0.02791634202003479,
-0.04996267333626747,
0.0925028845667839,
0.009738803841173649,
-0.015552454628050327,
-0.08684892952442169,
0.00920005701482296,
0.03563486039638519,
0.030278490856289864,
0.008576973341405392,
-0.011206642724573612,
0.05515749379992485,
0.007703698240220547,
-0.01468857005238533,
0.011700295843183994,
-0.01266570296138525,
-0.010090116411447525,
-0.023165445774793625,
-0.0015102721517905593,
-0.010865134187042713,
-0.03311656042933464,
-0.0376846008002758,
-0.013624400831758976,
0.04107257351279259,
-0.05955569073557854,
-0.05634165182709694,
-0.011343731544911861,
0.04866362363100052,
0.03575412929058075,
-0.0007408433593809605,
-0.04157845675945282,
-0.01757819391787052,
-0.08886630088090897,
-0.00264824740588665,
0.03352893888950348,
0.005198907572776079,
0.014868857339024544,
0.040848035365343094,
0.008814595639705658,
0.022435307502746582,
0.050587765872478485,
0.04704853147268295,
0.05286036431789398,
0.009238905273377895,
-0.06823655217885971,
0.018333084881305695,
-0.005139630753546953,
0.017861707136034966,
-0.01573454588651657,
-0.0321880578994751,
-0.030066978186368942,
-0.11197388172149658,
-0.010588269680738449,
-0.007755405735224485,
-0.010895161889493465,
-0.004908727016299963,
0.04703317582607269,
-0.003065133234485984,
-0.0037514183204621077,
-0.01473466120660305,
0.009215322323143482,
0.04326073080301285,
-0.06883200258016586,
0.0630669966340065,
-0.026028551161289215,
0.020698918029665947,
-0.029784608632326126,
0.02762039378285408,
-0.06249445676803589,
-0.026502322405576706,
0.004005794413387775,
0.04988500848412514,
-0.002376396209001541,
0.058435194194316864,
0.06218279153108597,
0.02390066161751747,
-0.0405692383646965,
0.0332702212035656,
0.0555582232773304,
-0.021584102883934975,
-0.050315383821725845,
-0.011712288483977318,
0.008601531386375427,
-0.017201703041791916,
-0.006974241230636835,
0.01169115211814642,
0.02473866008222103,
0.03392702341079712,
0.014965676702558994,
0.027794327586889267,
0.0010985711123794317,
0.011506830342113972,
-0.04073061794042587,
-0.0591723695397377,
-0.0049222479574382305,
0.008000405505299568,
-0.015786347910761833,
-0.006424303166568279,
0.023690244182944298,
0.02814137190580368,
0.0664844959974289,
0.03461300954222679,
-0.0392078161239624,
-0.019349027425050735,
0.029666481539607048,
0.01578938588500023,
-0.023403910920023918,
-0.0788830816745758,
-0.015679670497775078,
0.027307212352752686,
0.05125147104263306,
-0.0139155313372612,
-0.06429798156023026,
-0.01777942106127739,
0.030860429629683495,
-0.05469176545739174,
0.05348541587591171,
0.009316964074969292,
0.039365582168102264,
0.056587036699056625,
-0.021312331780791283,
0.05188087001442909,
-0.024746384471654892,
-0.017046814784407616,
-0.007030440028756857,
0.018796425312757492,
-0.023293083533644676,
-0.015572713688015938,
-0.06839460879564285,
0.024398868903517723,
0.02172868326306343,
0.02004348300397396,
0.053423237055540085,
-0.034442875534296036,
-0.03413964435458183,
0.008310612291097641,
0.046394750475883484,
-0.049776941537857056,
-0.007028855383396149,
0.036675598472356796,
0.024738848209381104,
-0.054820284247398376,
-0.028151242062449455,
-0.008244363591074944,
-0.027274509891867638,
0.027861272916197777,
0.01120667438954115,
-0.026294097304344177,
-0.025444412603974342,
0.04352881759405136,
-0.012317338958382607,
-0.013616682030260563,
-0.06582964211702347,
0.0605156309902668,
-0.013817911967635155,
-0.015387045219540596,
0.03444330394268036,
0.016700513660907745,
0.02407742850482464,
0.07333666831254959,
0.013948336243629456,
0.013429819606244564,
-0.017847716808319092,
0.031358752399683,
-0.028841499239206314,
-0.02765042893588543,
-0.0034614549949765205,
-0.04401596635580063,
-0.03810716047883034,
-0.03011484257876873,
-0.02869456075131893,
-0.03823520615696907,
-0.015671418979763985,
0.005188141483813524,
0.008876734413206577,
-0.012180734425783157,
-0.01433619111776352,
0.07142572849988937,
-0.012140026316046715,
-0.03641077131032944,
-0.03162289783358574,
-0.01226549968123436,
-0.05029544606804848,
-0.05688735842704773,
0.020495790988206863,
0.017830871045589447,
0.038788266479969025,
0.04410191997885704,
0.03435567021369934,
0.021996695548295975,
0.0033535354305058718,
-0.04370995983481407,
0.01279115304350853,
-0.01735609583556652,
-0.016292082145810127,
-0.038377534598112106,
0.03654206171631813,
0.008735847659409046,
0.02372162789106369,
-0.04689221829175949,
0.03863893076777458,
0.015909645706415176,
-0.004989852663129568,
-0.014335423707962036,
0.032120026648044586,
0.00367210921831429,
-0.0561736561357975,
-0.0282509233802557,
0.01376719493418932,
-0.03610186651349068,
0.03113473951816559,
-0.027162477374076843,
-0.0046242657117545605,
-0.00714352261275053,
0.019335908815264702,
0.0376143641769886,
-0.03201403096318245,
-0.016345471143722534,
0.020805729553103447,
-0.007578852586448193,
0.043799880892038345,
-0.04637128859758377,
0.026051100343465805,
-0.05043942108750343,
-0.01264664065092802,
-0.016816772520542145,
0.015285653993487358,
-0.04205890744924545,
0.03784516826272011,
-0.02067367546260357,
-0.031811684370040894,
-0.011280540376901627,
0.040428537875413895,
-0.018526850268244743,
0.027477456256747246,
-0.007467334158718586,
0.04089512303471565,
-0.03995306417346001,
0.06625732034444809,
-0.046241942793130875,
0.020788444206118584,
-0.03502263128757477,
0.0241570882499218,
-0.022142892703413963,
0.00343517167493701,
-0.0025791858788579702,
-0.028003258630633354,
0.046125564724206924,
0.06126968935132027,
0.03819914534687996,
0.0439566969871521,
-0.0008144077728502452,
-0.014529834501445293,
0.01288468949496746,
-0.054097674787044525,
-0.04215016961097717,
-0.017903940752148628,
0.008108270354568958,
-0.0060606407932937145,
0.0561278872191906,
0.05933471396565437,
-0.05853913351893425,
-0.07278236001729965,
0.027981417253613472,
0.012233841232955456,
-0.00670253299176693,
-0.014710662886500359,
0.04915669932961464,
0.02421252243220806,
0.04789149761199951,
-0.021598415449261665,
-0.00777046661823988,
-0.011513683013617992,
-0.04336592182517052,
0.0211366955190897,
0.0004983071121387184,
0.019500061869621277,
0.02462342008948326,
-0.058377187699079514,
-0.03295101597905159,
0.06632793694734573,
0.029956597834825516,
0.016418838873505592,
0.008140011690557003,
-0.030384821817278862,
0.03218522667884827,
0.006199020426720381,
-0.04648401588201523,
0.02131224423646927,
-0.00748349167406559,
-0.0032713126856833696,
0.06815137714147568,
-0.004791854415088892,
0.012909150682389736,
0.05776524543762207,
0.03822332248091698,
-0.0018254391616210341,
0.06114273518323898,
-0.0405416302382946,
0.02317720092833042,
0.0527648851275444,
-0.05472518503665924,
-0.009231739677488804,
-0.032359618693590164,
0.056813403964042664,
-0.05173037201166153,
0.055042143911123276,
0.060997124761343,
0.0015866190660744905,
0.008088682778179646,
-0.038628023117780685,
-0.0394110344350338,
0.011966745369136333,
-0.03500090911984444,
0.0792946144938469,
0.006799796130508184,
-0.06745560467243195,
0.044827114790678024,
0.011536708101630211,
-0.05587274208664894,
0.05181827023625374,
0.03513412922620773,
0.04667231813073158,
0.03677402809262276,
0.05477916821837425,
-0.048000920563936234,
0.009033300913870335,
-0.03732791915535927,
0.0363287553191185,
-0.041072048246860504,
-0.03571757674217224,
0.03640669956803322,
-0.045196533203125,
-0.014945887960493565,
0.03752526268362999,
-0.020437657833099365,
-0.03147045522928238,
0.05310223251581192,
-0.03587213531136513,
-0.05376889184117317,
0.022479569539427757,
0.018996942788362503,
-0.02933746762573719,
0.02021995186805725,
-0.030153797939419746,
0.018041294068098068,
-0.00147532531991601,
-0.01494352612644434,
-0.019844677299261093,
-0.005022823810577393,
0.020958639681339264,
-0.05997369810938835,
-0.02703915722668171,
0.04803412780165672,
-0.02732989378273487,
-0.005045888014137745,
0.04445384070277214,
0.0115259550511837,
0.00961495190858841,
0.027570925652980804,
-0.014881364069879055,
0.01265313196927309,
-0.03812253847718239,
-0.01787518337368965,
0.04678221419453621,
0.012600850313901901,
0.0063435533083975315,
0.0009512539254501462,
0.02577206864953041,
0.04395841062068939,
0.03887481987476349,
0.005399497225880623,
-0.020892299711704254,
-0.023716000840067863,
0.018886437639594078,
-0.031783945858478546,
-0.004287807736545801,
0.0053637376986444,
-0.04587172344326973,
-0.038442615419626236,
-0.017962517216801643,
-0.06729678809642792,
0.03259729966521263,
-0.05690188333392143,
0.017277916893363,
0.029229940846562386,
-0.0039877090603113174,
-0.049765296280384064,
-0.10439581423997879,
-0.031403325498104095,
-0.05010741204023361,
0.014847815036773682,
0.03288450464606285,
-0.03559475392103195,
0.03155551105737686,
-0.04606148973107338,
-0.030215544626116753,
0.0557846799492836,
0.020873956382274628,
-0.0412842221558094,
0.041367027908563614,
0.03959490731358528,
-0.05359414592385292,
0.006669952999800444,
0.016261955723166466,
-0.0442652702331543,
-0.013302120380103588,
0.027653582394123077,
0.005917014554142952,
0.021598834544420242,
0.019152279943227768,
-0.04814223200082779,
-0.01138949766755104,
-0.068625308573246,
-0.03330108895897865,
-0.046641815453767776,
0.009326081722974777,
0.055525947362184525
] |
AnonymousSub/rule_based_roberta_twostage_quadruplet_epochs_1_shard_10 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 3 | null | ---
license: other
datasets:
- ehartford/wizard_vicuna_70k_unfiltered
language:
- en
tags:
- uncensored
---
# Wizard-Vicuna-7B-Uncensored GPTQ
This is GPTQ format quantised 4bit models of [Eric Hartford's 'uncensored' training of Wizard-Vicuna 7B](https://huggingface.co/ehartford/Wizard-Vicuna-7B-Uncensored).
It is the result of quantising to 4bit using [GPTQ-for-LLaMa](https://github.com/qwopqwop200/GPTQ-for-LLaMa).
## Repositories available
* [4bit GPTQ models for GPU inference](https://huggingface.co/TheBloke/Wizard-Vicuna-7B-Uncensored-GPTQ).
* [4bit and 5bit GGML models for CPU inference](https://huggingface.co/TheBloke/Wizard-Vicuna-7B-Uncensored-GGML).
* [float16 HF format model for GPU inference and further conversions](https://huggingface.co/TheBloke/Wizard-Vicuna-7B-Uncensored-HF).
## How to easily download and use this model in text-generation-webui
Open the text-generation-webui UI as normal.
1. Click the **Model tab**.
2. Under **Download custom model or LoRA**, enter `TheBloke/Wizard-Vicuna-7B-Uncensored-GPTQ`.
3. Click **Download**.
4. Wait until it says it's finished downloading.
5. Click the **Refresh** icon next to **Model** in the top left.
6. In the **Model drop-down**: choose the model you just downloaded, `Wizard-Vicuna-7B-Uncensored-GPTQ`.
7. If you see an error in the bottom right, ignore it - it's temporary.
8. Fill out the `GPTQ parameters` on the right: `Bits = 4`, `Groupsize = 128`, `model_type = Llama`
9. Click **Save settings for this model** in the top right.
10. Click **Reload the Model** in the top right.
11. Once it says it's loaded, click the **Text Generation tab** and enter a prompt!
## Provided files
**Compatible file - Wizard-Vicuna-7B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors**
In the `main` branch - the default one - you will find `Wizard-Vicuna-7B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors`
This will work with all versions of GPTQ-for-LLaMa. It has maximum compatibility
It was created without the `--act-order` parameter. It may have slightly lower inference quality compared to the other file, but is guaranteed to work on all versions of GPTQ-for-LLaMa and text-generation-webui.
* `Wizard-Vicuna-7B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors`
* Works with all versions of GPTQ-for-LLaMa code, both Triton and CUDA branches
* Works with AutoGPTQ.
* Works with text-generation-webui one-click-installers
* Parameters: Groupsize = 128g. No act-order.
* Command used to create the GPTQ:
```
python llama.py ehartford_Wizard-Vicuna-7B-Uncensored wikitext2 --wbits 4 --groupsize 128 --true-sequential --save_safetensors Wizard-Vicuna-7B-Uncensored-GPTQ-4bit-128g.compat.no-act-order.safetensors
```
# Original model card
This is [wizard-vicuna-13b](https://huggingface.co/junelee/wizard-vicuna-13b) trained against LLaMA-7B with a subset of the dataset - responses that contained alignment / moralizing were removed. The intent is to train a WizardLM that doesn't have alignment built-in, so that alignment (of any sort) can be added separately with for example with a RLHF LoRA.
Shout out to the open source AI/ML community, and everyone who helped me out.
Note:
An uncensored model has no guardrails.
You are responsible for anything you do with the model, just as you are responsible for anything you do with any dangerous object such as a knife, gun, lighter, or car.
Publishing anything this model generates is the same as publishing it yourself.
You are responsible for the content you publish, and you cannot blame the model any more than you can blame the knife, gun, lighter, or car for what you do with it.
| [
-0.01399360504001379,
-0.020804021507501602,
0.009992076084017754,
0.0495179109275341,
0.0445767343044281,
0.02354496717453003,
0.010991785675287247,
-0.010198180563747883,
-0.01473503839224577,
0.03256534785032272,
0.038322336971759796,
0.007892603054642677,
0.02379603497684002,
0.05810810253024101,
-0.0008385239052586257,
-0.03203868493437767,
-0.022005919367074966,
0.006671038456261158,
-0.07340317219495773,
0.0007816034485585988,
0.00036052442737855017,
0.0025271784979850054,
-0.015140185132622719,
0.017355600371956825,
-0.012423821724951267,
0.010374807752668858,
-0.014502071775496006,
0.0003041036252398044,
0.02036341466009617,
-0.04477717727422714,
-0.006716628558933735,
-0.02307317405939102,
-0.04224686324596405,
-0.02511180005967617,
-0.035832975059747696,
-0.011941089294850826,
0.01478607952594757,
-0.006391375791281462,
0.008465882390737534,
0.03459930792450905,
0.011725332587957382,
0.0160467941313982,
0.01659705489873886,
-0.02238215133547783,
0.06615713983774185,
0.019122054800391197,
-0.05168425664305687,
-0.03075820952653885,
0.03555504232645035,
-0.03988056257367134,
-0.03587489202618599,
-0.09725935012102127,
-0.02722029946744442,
0.022065607830882072,
-0.01844172365963459,
-0.03188939765095711,
-0.06369825452566147,
-0.027125123888254166,
0.07367701828479767,
-0.03957643732428551,
-0.020021844655275345,
0.0005444299895316362,
-0.058253150433301926,
0.021947717294096947,
0.025509348139166832,
-0.037958648055791855,
0.002641604980453849,
-0.01899554766714573,
0.008932564407587051,
-0.038220081478357315,
0.07577371597290039,
-0.037736520171165466,
0.025526439771056175,
-0.08583017438650131,
-0.009532912634313107,
-0.013231232762336731,
0.039810921996831894,
0.05441518500447273,
-0.04008091986179352,
0.0505911223590374,
0.02552553080022335,
0.018703671172261238,
0.040239717811346054,
-0.011092008091509342,
-0.0017323476495221257,
0.01684381440281868,
-0.05072185397148132,
0.009905482642352581,
0.021715940907597542,
0.04322383180260658,
-0.018133118748664856,
-0.05259032920002937,
-0.025051690638065338,
-0.020754678174853325,
-0.019622476771473885,
0.021144917234778404,
0.01271430216729641,
-0.005694230552762747,
0.0290381982922554,
0.03376072645187378,
0.014601976610720158,
0.02872917801141739,
-0.017874499782919884,
0.06707591563463211,
-0.03269463777542114,
0.00941828265786171,
-0.022364789620041847,
-0.03433915972709656,
-0.03562169522047043,
0.017503511160612106,
0.03670584037899971,
-0.03498702496290207,
-0.03926629200577736,
0.0392577163875103,
0.028141453862190247,
-0.0018698248313739896,
0.06070088595151901,
-0.03325122967362404,
-0.060160327702760696,
-0.054219745099544525,
0.037499599158763885,
0.040039367973804474,
0.010568417608737946,
0.00870431773364544,
-0.0536641925573349,
0.010718101635575294,
-0.043464355170726776,
-0.03133091703057289,
-0.0241116750985384,
0.013411348685622215,
-0.032386090606451035,
0.039688386023044586,
0.021422946825623512,
-0.07147205621004105,
0.0009288073051720858,
0.019055696204304695,
-0.05251624062657356,
0.017558297142386436,
0.010574460960924625,
0.13333725929260254,
-0.08202756941318512,
-0.03203495591878891,
0.021657075732946396,
0.0020441217347979546,
-0.020494097843766212,
0.026064876466989517,
-0.006684886757284403,
-0.04044339433312416,
-0.046561479568481445,
-0.01700827293097973,
0.05304295942187309,
-0.05502687022089958,
-0.006114402320235968,
0.05118027329444885,
-0.022845692932605743,
0.03935513645410538,
-0.035301219671964645,
-0.005691678263247013,
-0.00589940557256341,
0.014334243722259998,
-0.010699372738599777,
0.03064310923218727,
0.0019690743647515774,
-0.00048820144729688764,
-0.03383728489279747,
-0.05327507480978966,
-0.0006717311916872859,
0.07371644675731659,
0.0014681861503049731,
-0.01602306216955185,
-0.034358080476522446,
0.011624169535934925,
0.02411104366183281,
0.01709282398223877,
-0.01655658520758152,
0.04447539523243904,
0.03923705220222473,
0.0399092398583889,
-0.03776448965072632,
0.06913019716739655,
0.009099193848669529,
-0.028774842619895935,
-0.038276173174381256,
0.018659967929124832,
0.028698621317744255,
-0.02072593756020069,
0.026647387072443962,
0.033030733466148376,
-0.00007662517600692809,
-0.05432457849383354,
-0.031007222831249237,
0.06608875840902328,
-0.0020770973060280085,
0.015335950069129467,
0.025763629004359245,
0.014206424355506897,
-0.01573438197374344,
0.05900910124182701,
-0.04955442249774933,
-0.003660119604319334,
-0.02485625073313713,
-0.001650968100875616,
-0.02463049627840519,
0.01544214691966772,
-0.006618260871618986,
0.05457236245274544,
-0.007811157964169979,
0.05805265158414841,
-0.01908768154680729,
0.017182709649205208,
-0.05285314843058586,
-0.03820190951228142,
-0.037009112536907196,
0.024911873042583466,
0.007108395453542471,
0.051295410841703415,
0.022993288934230804,
-0.05921414867043495,
0.02760837972164154,
0.08128432184457779,
0.044970955699682236,
0.010343628004193306,
-0.028248388320207596,
0.0005991634097881615,
0.04863433912396431,
0.06562471389770508,
-0.026089316233992577,
-0.029714424163103104,
0.034050289541482925,
0.03270753100514412,
-0.02918749302625656,
0.03143242746591568,
-0.00013199166278354824,
0.0403570793569088,
-0.04955321550369263,
-0.08543838560581207,
0.052547112107276917,
0.05337429791688919,
-0.001730355084873736,
0.019147539511322975,
0.015965992584824562,
-0.002876951126381755,
0.00430610915645957,
0.00730073032900691,
0.0016492977738380432,
-0.03424534201622009,
0.008493057452142239,
0.014829792082309723,
0.03486514464020729,
-0.06086188554763794,
0.03095456026494503,
0.005606385413557291,
-0.0021123166661709547,
0.027024313807487488,
-0.04348701611161232,
0.03086874447762966,
0.06963583081960678,
0.0016971096629276872,
-0.023883134126663208,
0.01599811017513275,
0.0018460806459188461,
0.04623524844646454,
0.051592711359262466,
0.02154456079006195,
0.05397574603557587,
0.0340622253715992,
0.023846730589866638,
0.08664998412132263,
-0.0013722855364903808,
-0.013925231993198395,
0.036875169724226,
0.06911143660545349,
0.025133704766631126,
0.014969130046665668,
0.06200467050075531,
-0.03400325030088425,
0.023487988859415054,
-0.06001322343945503,
-0.047230154275894165,
0.002030471106991172,
-0.025828508660197258,
0.040211983025074005,
0.030587248504161835,
-0.021967124193906784,
0.011646521277725697,
-0.003360535018146038,
-0.030525589361786842,
0.030131913721561432,
-0.0569143183529377,
0.01601281948387623,
-0.015516668558120728,
-0.0058937668800354,
-0.02626657858490944,
-0.06054798141121864,
-0.04367317259311676,
0.002270136959850788,
-0.0480734147131443,
0.006405373569577932,
-0.08053842931985855,
0.0021090058144181967,
-0.06787759810686111,
-0.00797172263264656,
0.0314304381608963,
0.04227878525853157,
-0.0011103561846539378,
-0.05116558447480202,
-0.0073472848162055016,
-0.04525570571422577,
-0.06800860911607742,
-0.02932719886302948,
-0.021673500537872314,
-0.029835885390639305,
-0.07224966585636139,
0.035459838807582855,
0.02004658430814743,
0.017768176272511482,
0.003623554017394781,
0.011723863892257214,
-0.0032749869860708714,
0.010101085528731346,
0.027344517409801483,
0.07053118199110031,
-0.03335133194923401,
-0.06484117358922958,
0.017028894275426865,
0.013676567934453487,
0.01136751938611269,
-0.05339585617184639,
-0.005688730627298355,
0.06551796942949295,
0.05675447732210159,
0.03269835561513901,
-0.020787538960576057,
-0.020393650978803635,
-0.050521936267614365,
-0.03916635364294052,
-0.01748354732990265,
-0.05525568500161171,
-0.016689471900463104,
-0.028250833973288536,
-0.031936220824718475,
-0.013212916441261768,
-0.047937531024217606,
0.019304007291793823,
-0.019768543541431427,
-0.012411115691065788,
0.024570124223828316,
0.026986580342054367,
0.032834671437740326,
0.045098934322595596,
-0.03664563596248627,
-0.009339438751339912,
0.03472035378217697,
0.02277274988591671,
0.00577385863289237,
-0.05635211989283562,
-0.039505355060100555,
0.0274948813021183,
0.039574336260557175,
-0.009946565143764019,
0.0011487988522276282,
0.08454431593418121,
0.020442882552742958,
-0.020900506526231766,
0.007532041985541582,
-0.02017986960709095,
-0.02035379782319069,
-0.025920065119862556,
-0.01295654010027647,
-0.036739323288202286,
-0.0456974133849144,
-0.021214649081230164,
-0.005066815763711929,
0.04409247264266014,
-0.07821321487426758,
-0.05934258550405502,
0.0022012325935065746,
0.021357517689466476,
0.03098486363887787,
-0.020246298983693123,
-0.048023343086242676,
-0.006516952998936176,
-0.03537537157535553,
-0.015681469812989235,
0.01640450581908226,
-0.0005196241545490921,
0.004303234163671732,
0.044054191559553146,
0.07114160805940628,
-0.022655250504612923,
0.069935142993927,
0.02652273327112198,
0.03640246391296387,
-0.0005232361727394164,
-0.05281687155365944,
0.0159134678542614,
-0.032155152410268784,
0.030948137864470482,
-0.004925771616399288,
0.0056058126501739025,
-0.05306188762187958,
-0.0921386107802391,
-0.021950479596853256,
-0.0011200442677363753,
0.0002751443244051188,
-0.005281781777739525,
0.04124172031879425,
-0.011222651228308678,
-0.052770473062992096,
-0.01159977912902832,
0.010006207041442394,
0.029443219304084778,
-0.07755765318870544,
0.04606232792139053,
-0.0012712515890598297,
0.021982386708259583,
-0.04142110422253609,
0.010918468236923218,
-0.04430839791893959,
-0.06340335309505463,
0.00946320965886116,
0.059941377490758896,
0.0104253850877285,
0.07330185920000076,
0.03976428136229515,
0.013084594160318375,
-0.049148231744766235,
0.06128751114010811,
0.03357930853962898,
-0.0205007866024971,
-0.02713656798005104,
-0.00017820049833972007,
-0.017788592725992203,
-0.01897028647363186,
-0.029484009370207787,
0.0027307975105941296,
0.040284380316734314,
0.02678028866648674,
0.004363228566944599,
0.017534499987959862,
-0.011938651092350483,
-0.021080775186419487,
-0.012580436654388905,
-0.05175250023603439,
-0.009318415075540543,
-0.004375739023089409,
-0.062216877937316895,
0.03339093551039696,
0.031869132071733475,
-0.0017826317343860865,
0.05946698039770126,
0.044449228793382645,
-0.02639574185013771,
-0.03736796975135803,
0.005500998347997665,
0.022687850520014763,
-0.052794620394706726,
-0.053339943289756775,
-0.05537460371851921,
0.04143481329083443,
0.036483678966760635,
0.011678586713969707,
-0.08743579685688019,
0.016107438132166862,
0.03059241734445095,
-0.07916558533906937,
0.028345422819256783,
-0.012629357166588306,
0.05061236023902893,
0.04068513214588165,
-0.003210828872397542,
0.02032400667667389,
-0.01298943068832159,
0.004786620382219553,
0.02451067604124546,
0.041141487658023834,
-0.03809376060962677,
-0.006517552305012941,
-0.04808761179447174,
0.03021680749952793,
0.02995089255273342,
0.03309882432222366,
0.023839406669139862,
-0.03144245967268944,
-0.06148885190486908,
0.012500890530645847,
0.040623944252729416,
-0.014512141235172749,
0.023810066282749176,
0.014540394768118858,
-0.0022481640335172415,
-0.08872939646244049,
-0.04019428789615631,
0.0037380752619355917,
-0.014322463423013687,
0.035412464290857315,
-0.004539255052804947,
-0.03924471139907837,
-0.022164981812238693,
0.023062689229846,
0.011683806777000427,
-0.03916996717453003,
-0.09195587038993835,
0.019894877448678017,
-0.0066262888722121716,
-0.008617156185209751,
0.03138410300016403,
0.04782223328948021,
0.014814878813922405,
0.06871801614761353,
0.0047186450101435184,
0.007660372648388147,
-0.03334011137485504,
0.02835085056722164,
-0.028280343860387802,
-0.03705126419663429,
0.012809544801712036,
-0.04078209772706032,
-0.02021211013197899,
-0.029791532084345818,
-0.028973542153835297,
-0.042557407170534134,
-0.0041914754547178745,
0.03911829739809036,
-0.0027571385726332664,
-0.0013246001908555627,
0.010686950758099556,
0.02740558050572872,
-0.032538529485464096,
-0.012577425688505173,
-0.05153842270374298,
-0.018096189945936203,
-0.08028706163167953,
-0.02110918052494526,
0.04791266471147537,
0.024022629484534264,
0.018836215138435364,
0.005129457917064428,
0.03375282883644104,
0.018138056620955467,
0.024951137602329254,
-0.0020439457148313522,
0.00763356639072299,
0.02880876138806343,
-0.034268684685230255,
-0.027202297002077103,
0.004338772967457771,
0.0210706889629364,
0.03454325348138809,
-0.0063333408907055855,
0.0213773213326931,
-0.0015037953853607178,
-0.013376825489103794,
-0.004610143136233091,
0.0352107472717762,
0.0009354032808914781,
-0.033139850944280624,
-0.04435764625668526,
0.001149522140622139,
-0.049503203481435776,
0.037876322865486145,
-0.017895381897687912,
-0.021024135872721672,
-0.006028023548424244,
-0.006635966710746288,
0.04479668289422989,
-0.017945997416973114,
-0.023373980075120926,
0.02543439343571663,
-0.057709429413080215,
0.03767428174614906,
-0.03426015004515648,
0.06235596910119057,
-0.02327542193233967,
0.01413462869822979,
-0.04144758731126785,
0.011677468195557594,
-0.045569032430648804,
0.043651606887578964,
-0.05075061321258545,
-0.0259786918759346,
-0.0025812319945544004,
0.034398458898067474,
-0.006214504595845938,
0.026815319433808327,
-0.030891483649611473,
0.02981654554605484,
-0.06589765101671219,
0.05924462899565697,
-0.039309680461883545,
0.013897671364247799,
-0.04535965621471405,
-0.020836658775806427,
-0.05942186713218689,
-0.012119711376726627,
-0.01844746246933937,
-0.03879072144627571,
0.030191877856850624,
0.0354406014084816,
0.046947233378887177,
0.02490595355629921,
0.0006384429871104658,
-0.0030244593508541584,
0.042079318314790726,
-0.07044360041618347,
-0.02717854455113411,
-0.000978801748715341,
0.015300625935196877,
-0.014957732520997524,
0.0489799939095974,
0.0525507777929306,
-0.06670378893613815,
-0.06594444811344147,
0.04270440712571144,
0.03767302259802818,
0.0038155093789100647,
0.006754742003977299,
0.04261579364538193,
0.02669735811650753,
0.01931816339492798,
-0.02668345347046852,
-0.020053796470165253,
-0.0034698606468737125,
-0.03717445582151413,
0.02890031598508358,
0.003117659594863653,
0.04458760470151901,
0.04844408109784126,
-0.04200281575322151,
-0.007868507876992226,
0.04939650371670723,
0.04107869416475296,
0.02548648789525032,
0.004706712905317545,
-0.02934151142835617,
0.005095900502055883,
-0.005881111137568951,
-0.029411006718873978,
0.018712390214204788,
0.025459308177232742,
-0.021311745047569275,
0.0689525231719017,
-0.01495915837585926,
0.004974804352968931,
0.045575086027383804,
0.025758909061551094,
-0.020569244399666786,
0.060400187969207764,
-0.047555722296237946,
-0.007140198722481728,
0.05875057727098465,
-0.0523732528090477,
-0.012449580244719982,
-0.0428139790892601,
0.061136044561862946,
-0.08848720788955688,
0.036448199301958084,
0.037001777440309525,
-0.020298587158322334,
-0.0016479331534355879,
-0.034503281116485596,
-0.03031269647181034,
0.013232744298875332,
-0.058265041559934616,
0.07810338586568832,
-0.021234791725873947,
-0.06051668897271156,
0.07744161039590836,
0.01669074036180973,
-0.07371081411838531,
0.025626281276345253,
0.046869777143001556,
0.008804158307611942,
0.030901579186320305,
0.07168640196323395,
-0.05898294597864151,
-0.007352028042078018,
-0.033332034945487976,
0.033660463988780975,
-0.0658213421702385,
-0.04446658864617348,
0.04304562881588936,
-0.03660669922828674,
-0.009210160933434963,
0.05320059135556221,
0.011541888117790222,
-0.021731987595558167,
0.02710556611418724,
-0.04405216500163078,
-0.03749186918139458,
-0.00289618456736207,
0.0357518270611763,
-0.020618386566638947,
-0.013089966960251331,
-0.027120234444737434,
0.020577657967805862,
0.005539348348975182,
-0.01620747521519661,
-0.02932232804596424,
0.01050647720694542,
-0.0009984159842133522,
-0.09321591258049011,
-0.02932044491171837,
0.014765935018658638,
-0.011566855944693089,
-0.03619048744440079,
0.02432853914797306,
-0.004287926945835352,
0.006517117843031883,
0.01747637800872326,
-0.016830112785100937,
0.007758522406220436,
-0.07884123176336288,
-0.010948422364890575,
0.02148875594139099,
-0.00913814827799797,
0.010450501926243305,
0.008238524198532104,
0.025630176067352295,
0.05763614550232887,
0.023660490289330482,
0.026295935735106468,
-0.01706051640212536,
-0.01784478686749935,
0.040881238877773285,
-0.03390999883413315,
0.03308754786849022,
-0.014422913081943989,
-0.03591843321919441,
-0.03866761550307274,
0.015179747715592384,
0.0060439808294177055,
0.03983454406261444,
-0.04001019522547722,
0.03435977175831795,
0.04041668772697449,
-0.009527580812573433,
-0.06626862287521362,
-0.0757499411702156,
-0.014566372148692608,
-0.04171881452202797,
0.02581779658794403,
0.029377609491348267,
-0.04133913293480873,
0.04149380326271057,
-0.06653750687837601,
-0.05603891611099243,
0.04186803475022316,
0.010843794792890549,
-0.019793104380369186,
0.020952215418219566,
0.04924388974905014,
-0.015582685358822346,
0.002126304665580392,
0.019244620576500893,
-0.020983807742595673,
0.0015626532258465886,
0.007565808016806841,
0.01909320056438446,
0.02038155309855938,
0.007093001157045364,
-0.0258758757263422,
-0.01097031868994236,
-0.060112420469522476,
-0.046632006764411926,
-0.0522216334939003,
-0.02089018188416958,
0.049125950783491135
] |
AnonymousSub/rule_based_roberta_twostage_quadruplet_epochs_1_shard_1_squad2.0 | [
"pytorch",
"roberta",
"question-answering",
"transformers",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"RobertaForQuestionAnswering"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
license: other
datasets:
- ehartford/wizard_vicuna_70k_unfiltered
language:
- en
tags:
- uncensored
inference: false
---
# Wizard-Vicuna-7B-Uncensored GGML
This is GGML format quantised 4bit and 5bit models of [Eric Hartford's 'uncensored' training of Wizard-Vicuna 13B](https://huggingface.co/ehartford/Wizard-Vicuna-7B-Uncensored).
This repo is the result of quantising to 4bit and 5bit GGML for CPU inference using [llama.cpp](https://github.com/ggerganov/llama.cpp).
## Repositories available
* [4-bit GPTQ models for GPU inference](https://huggingface.co/TheBloke/Wizard-Vicuna-7B-Uncensored-GPTQ).
* [4-bit, 5-bit and 8-bit GGML models for CPU (+CUDA) inference](https://huggingface.co/TheBloke/Wizard-Vicuna-7B-Uncensored-GGML).
* [float16 HF format model for GPU inference and further conversions](https://huggingface.co/TheBloke/Wizard-Vicuna-7B-Uncensored-HF).
## THE FILES IN MAIN BRANCH REQUIRES LATEST LLAMA.CPP (May 19th 2023 - commit 2d5db48)!
llama.cpp recently made another breaking change to its quantisation methods - https://github.com/ggerganov/llama.cpp/pull/1508
I have quantised the GGML files in this repo with the latest version. Therefore you will require llama.cpp compiled on May 19th or later (commit `2d5db48` or later) to use them.
For files compatible with the previous version of llama.cpp, please see branch `previous_llama_ggmlv2`.
## Provided files
| Name | Quant method | Bits | Size | RAM required | Use case |
| ---- | ---- | ---- | ---- | ---- | ----- |
`Wizard-Vicuna-7B-Uncensored.ggmlv3.q4_0.bin` | q4_0 | 4bit | 4.21GB | 7.0GB | 4-bit. |
`Wizard-Vicuna-7B-Uncensored.ggmlv3.q4_1.bin` | q4_1 | 4bit | 4.63GB | 7.5GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
`Wizard-Vicuna-7B-Uncensored.ggmlv3.q5_0.bin` | q5_0 | 5bit | 4.63GB | 7.5GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
`Wizard-Vicuna-7B-Uncensored.ggmlv3.q5_1.bin` | q5_1 | 5bit | 5.06GB | 7.5GB | 5-bit. Even higher accuracy, and higher resource usage and slower inference. |
`Wizard-Vicuna-7B-Uncensored.ggmlv3.q8_0.bin` | q8_0 | 8bit | 7.58GB | 9.0GB | 8-bit. Almost indistinguishable from float16. Huge resource use and slow. Not recommended for normal use. |
## How to run in `llama.cpp`
I use the following command line; adjust for your tastes and needs:
```
./main -t 8 -m Wizard-Vicuna-7B-Uncensored.ggmlv3.q5_0.bin --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction: write a story about llamas ### Response:"
```
Change `-t 8` to the number of physical CPU cores you have.
## How to run in `text-generation-webui`
GGML models can be loaded into text-generation-webui by installing the llama.cpp module, then placing the ggml model file in a model folder as usual.
Further instructions here: [text-generation-webui/docs/llama.cpp-models.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp-models.md).
Note: at this time text-generation-webui may not support the new May 19th llama.cpp quantisation methods for q4_0, q4_1 and q8_0 files.
# Original model card
This is [wizard-vicuna-13b](https://huggingface.co/junelee/wizard-vicuna-13b) trained against LLaMA-7B with a subset of the dataset - responses that contained alignment / moralizing were removed. The intent is to train a WizardLM that doesn't have alignment built-in, so that alignment (of any sort) can be added separately with for example with a RLHF LoRA.
Shout out to the open source AI/ML community, and everyone who helped me out.
Note:
An uncensored model has no guardrails.
You are responsible for anything you do with the model, just as you are responsible for anything you do with any dangerous object such as a knife, gun, lighter, or car.
Publishing anything this model generates is the same as publishing it yourself.
You are responsible for the content you publish, and you cannot blame the model any more than you can blame the knife, gun, lighter, or car for what you do with it.
| [
-0.03218771144747734,
-0.013079111464321613,
-0.002174515277147293,
0.04320245236158371,
0.04924873262643814,
0.007911009714007378,
0.011400865390896797,
-0.0028774410020560026,
-0.008529010228812695,
0.024338373914361,
0.039666466414928436,
0.011784859001636505,
0.017469098791480064,
0.05958043783903122,
-0.011160355992615223,
-0.03642578423023224,
-0.014383946545422077,
-0.0061490945518016815,
-0.06376800686120987,
0.01689981296658516,
0.008384505286812782,
-0.006277408450841904,
-0.012198222801089287,
0.03769000247120857,
-0.007498966995626688,
0.017117511481046677,
-0.007821350358426571,
0.004600366577506065,
0.01453284453600645,
-0.05308409780263901,
-0.011609943583607674,
-0.03996579721570015,
-0.04118015617132187,
-0.03342028707265854,
-0.034662578254938126,
-0.0057800146751105785,
0.0072572804056108,
0.009453834034502506,
-0.004076879937201738,
0.02925468422472477,
0.015384283848106861,
0.023419443517923355,
0.01245192438364029,
-0.028083039447665215,
0.06117406114935875,
0.026210447773337364,
-0.026555245742201805,
-0.013791972771286964,
0.03322236239910126,
-0.025328563526272774,
-0.04051828756928444,
-0.0751679465174675,
-0.017041485756635666,
0.033401425927877426,
-0.010967747308313847,
-0.010209983214735985,
-0.05453377589583397,
-0.022757213562726974,
0.05184795334935188,
-0.05049215257167816,
-0.006058769300580025,
-0.003653615713119507,
-0.06634889543056488,
0.021641921252012253,
0.014473441056907177,
-0.03620448336005211,
0.013496583327651024,
-0.017743051052093506,
0.014395107515156269,
-0.032265592366456985,
0.09724107384681702,
-0.043079983443021774,
0.016112342476844788,
-0.07420944422483444,
-0.004514763131737709,
-0.018820807337760925,
0.03763256594538689,
0.055702850222587585,
-0.048726946115493774,
0.046577002853155136,
0.030597256496548653,
0.03027942031621933,
0.04457840323448181,
-0.028559159487485886,
0.008459812961518764,
0.019362343475222588,
-0.04916555806994438,
0.012481190264225006,
0.03879041597247124,
0.05456061661243439,
-0.012409677729010582,
-0.038903143256902695,
-0.02361498400568962,
-0.023262865841388702,
-0.023412007838487625,
0.027897825464606285,
0.02119271457195282,
0.003906718920916319,
0.014996283687651157,
0.039440080523490906,
0.03254127502441406,
0.018198354169726372,
-0.01879226230084896,
0.05157018452882767,
-0.03141627833247185,
0.00047952443128451705,
-0.013274984434247017,
-0.029294723644852638,
-0.0373104028403759,
0.008991051465272903,
0.05403478443622589,
-0.033500444144010544,
-0.031270671635866165,
0.036239143460989,
0.013791992329061031,
0.010478940792381763,
0.07772109657526016,
-0.03099997341632843,
-0.062954381108284,
-0.03943541273474693,
0.05527132377028465,
0.03799489885568619,
-0.012503721751272678,
0.008426068350672722,
-0.044557295739650726,
-0.012508150190114975,
-0.050106871873140335,
-0.02691229060292244,
-0.02096834033727646,
0.0075357286259531975,
-0.016044355928897858,
0.046674106270074844,
0.024465102702379227,
-0.07120530307292938,
0.003927667159587145,
0.01559155061841011,
-0.06301301717758179,
0.003614391665905714,
0.01996457204222679,
0.12282474339008331,
-0.07418295741081238,
-0.037374358624219894,
0.017331110313534737,
-0.00028784258756786585,
-0.02335289493203163,
0.02433229796588421,
0.012350322678685188,
-0.041981201618909836,
-0.06344590336084366,
-0.025431744754314423,
0.047100264579057693,
-0.0565883032977581,
0.005451202392578125,
0.05429057404398918,
-0.02080395072698593,
0.03588911518454552,
-0.03462740033864975,
-0.00009912878158502281,
-0.005308115389198065,
0.009873014874756336,
-0.00017320719780400395,
0.03552476316690445,
-0.00035829885746352375,
-0.009739122353494167,
-0.04025693237781525,
-0.043325070291757584,
0.013270948082208633,
0.08697054535150528,
0.0014771746937185526,
-0.01678451895713806,
-0.04132939502596855,
0.022554967552423477,
0.009802197106182575,
0.031373728066682816,
-0.02207406982779503,
0.05349643900990486,
0.04549380764365196,
0.03804671764373779,
-0.01593303121626377,
0.05233791843056679,
0.02862904593348503,
-0.039245836436748505,
-0.04420227184891701,
-0.0002651236718520522,
0.03819951042532921,
-0.025343479588627815,
0.013856334611773491,
0.031049098819494247,
0.0034148558042943478,
-0.05363483354449272,
-0.03885054215788841,
0.07104595750570297,
-0.0057015069760382175,
0.012094730511307716,
0.025258688256144524,
0.004743094090372324,
-0.01581517420709133,
0.04332008957862854,
-0.05915745720267296,
-0.0016869554528966546,
-0.02526131086051464,
0.002566178096458316,
-0.019112586975097656,
0.010633720085024834,
-0.01694980449974537,
0.04879637807607651,
0.006845566909760237,
0.08087867498397827,
-0.026449628174304962,
0.01877177134156227,
-0.051345277577638626,
-0.037909165024757385,
-0.02164328098297119,
0.031716156750917435,
0.01212291605770588,
0.04634375125169754,
0.011003157123923302,
-0.05846494436264038,
0.029082823544740677,
0.0675550252199173,
0.03751828894019127,
0.016321757808327675,
-0.030013786628842354,
-0.021150827407836914,
0.04972412437200546,
0.05903516709804535,
-0.026883846148848534,
-0.02588159777224064,
0.03256331756711006,
0.015195929445326328,
-0.031150927767157555,
0.03646176680922508,
-0.008206621743738651,
0.04594803228974342,
-0.05345189571380615,
-0.09498005360364914,
0.055056650191545486,
0.04445815458893776,
-0.011480359360575676,
0.028890928253531456,
0.012342817150056362,
0.014573726803064346,
-0.007446637377142906,
0.0116170234978199,
0.0021430104970932007,
-0.05097375437617302,
0.01966373436152935,
0.0046514724381268024,
0.026071449741721153,
-0.06796429306268692,
0.028928201645612717,
-0.008778597228229046,
-0.0010496332542970777,
0.028706364333629608,
-0.02724800817668438,
0.035164833068847656,
0.05826118588447571,
-0.0008638084982521832,
-0.02292526327073574,
0.030313553288578987,
0.017975909635424614,
0.052220698446035385,
0.05762224644422531,
0.027324145659804344,
0.05668923631310463,
0.03071456216275692,
0.021283116191625595,
0.0775095596909523,
-0.009082929231226444,
-0.00025712879141792655,
0.03551873192191124,
0.06835626065731049,
0.024955319240689278,
0.007147204130887985,
0.05309149622917175,
-0.03787081316113472,
0.02178366295993328,
-0.04274744912981987,
-0.05118237063288689,
-0.0046844761818647385,
-0.024124177172780037,
0.04062354192137718,
0.023411964997649193,
-0.020856084302067757,
-0.0037296146620064974,
-0.007316089700907469,
-0.03742356225848198,
0.03335166722536087,
-0.0540136955678463,
-0.010344883427023888,
-0.01798575185239315,
-0.007064303383231163,
-0.021059762686491013,
-0.069613978266716,
-0.04603639617562294,
0.0007413543062284589,
-0.03184328228235245,
0.01388582680374384,
-0.08284849673509598,
-0.0015221041394397616,
-0.0594630166888237,
-0.026774907484650612,
0.035682313144207,
0.03906255587935448,
-0.007718069478869438,
-0.053216882050037384,
-0.0005026611033827066,
-0.0384410060942173,
-0.06546244025230408,
-0.033497247844934464,
-0.02394258789718151,
-0.02334936149418354,
-0.08683786541223526,
0.02842210792005062,
0.01004626601934433,
0.033160317689180374,
0.015226483345031738,
0.003120061941444874,
0.004142556805163622,
0.006669984199106693,
0.04244682565331459,
0.07803388684988022,
-0.033110830932855606,
-0.06095816567540169,
0.017136186361312866,
0.034286316484212875,
0.005301624536514282,
-0.04885739088058472,
-0.010046769864857197,
0.0722474604845047,
0.06308494508266449,
0.027828078716993332,
-0.03376542031764984,
-0.003240419551730156,
-0.05644049122929573,
-0.062087684869766235,
-0.01774802803993225,
-0.04610978066921234,
-0.013274823315441608,
-0.026543619111180305,
-0.029245013371109962,
-0.01804797537624836,
-0.043816111981868744,
0.011268586851656437,
-0.012081367895007133,
-0.012635250575840473,
0.021946558728814125,
0.04047809913754463,
0.029482074081897736,
0.03752866014838219,
-0.04955396056175232,
-0.0167673472315073,
0.04200330749154091,
0.02892088145017624,
0.0019303412409499288,
-0.06886520981788635,
-0.0343649797141552,
0.03515176847577095,
0.03526941314339638,
-0.009313751943409443,
-0.008288105018436909,
0.0851951315999031,
0.002932713134214282,
-0.025075139477849007,
0.02542683482170105,
-0.03809197619557381,
-0.019354216754436493,
-0.012945793569087982,
-0.00546004343777895,
-0.030386924743652344,
-0.02857983112335205,
-0.014640315435826778,
-0.015523075126111507,
0.047611601650714874,
-0.057193975895643234,
-0.04142443463206291,
0.006299762520939112,
0.02564241923391819,
0.03129350021481514,
-0.02291208505630493,
-0.05267630144953728,
0.0006787262391299009,
-0.03426829352974892,
0.0014987478498369455,
0.010336321778595448,
-0.006634144112467766,
-0.0015818000538274646,
0.04833594337105751,
0.05950335040688515,
-0.03145107999444008,
0.07533474266529083,
0.01856188289821148,
0.040289416909217834,
0.005588475614786148,
-0.04747940972447395,
0.014800741337239742,
-0.029613981023430824,
0.020893022418022156,
0.001183791784569621,
0.001184837776236236,
-0.0585862398147583,
-0.08986488729715347,
-0.005713308695703745,
0.013480998575687408,
-0.0037227896973490715,
-0.01832190714776516,
0.048407141119241714,
0.00046856541302986443,
-0.051600515842437744,
0.0011197353014722466,
-0.001968699973076582,
0.04603080078959465,
-0.06573206186294556,
0.04657778888940811,
-0.010001986287534237,
0.013440199196338654,
-0.05175629258155823,
-0.007460488472133875,
-0.0465824268758297,
-0.042537152767181396,
0.013622663915157318,
0.055641233921051025,
0.0009508971706964076,
0.05549739673733711,
0.06371791660785675,
0.01588408090174198,
-0.05163619667291641,
0.05492040142416954,
0.029240690171718597,
-0.024297453463077545,
-0.026165295392274857,
0.0032161071430891752,
-0.011930493637919426,
0.0015023472951725125,
-0.03018188290297985,
0.017167823389172554,
0.03840859606862068,
0.0371105782687664,
0.0063864984549582005,
0.025287741795182228,
0.00968746654689312,
-0.013709853403270245,
-0.009414036758244038,
-0.05463307723402977,
-0.012711153365671635,
0.003330879146233201,
-0.07381318509578705,
0.028821241110563278,
0.02789956144988537,
-0.0022524301894009113,
0.04625999927520752,
0.041166387498378754,
-0.03693564236164093,
-0.03856666013598442,
0.023968202993273735,
0.027345284819602966,
-0.05190524458885193,
-0.044315941631793976,
-0.04206662252545357,
0.042689017951488495,
0.03218066319823265,
0.010988798923790455,
-0.07540653645992279,
0.007307693362236023,
0.03939197584986687,
-0.07933726161718369,
0.026214370504021645,
-0.0007289672503247857,
0.050639864057302475,
0.039236463606357574,
0.005660867318511009,
0.02235640399158001,
-0.009350644424557686,
0.007226139307022095,
0.01418839581310749,
0.04343496635556221,
-0.028363294899463654,
-0.007668348029255867,
-0.049036670476198196,
0.028971990570425987,
0.029325401410460472,
0.03484538197517395,
0.027882935479283333,
-0.030995311215519905,
-0.0605827197432518,
0.003520097117871046,
0.04273025691509247,
-0.028942199423909187,
0.026316070929169655,
0.017172301188111305,
-0.0009884823812171817,
-0.08956223726272583,
-0.038867343217134476,
-0.0003168150724377483,
-0.0056980387307703495,
0.025987058877944946,
0.004529387224465609,
-0.03708802908658981,
-0.009345770813524723,
0.0353497639298439,
0.005003154277801514,
-0.05375470593571663,
-0.09507381916046143,
0.03571584075689316,
-0.02403280697762966,
-0.0010412554256618023,
0.02922799065709114,
0.03350032866001129,
0.02712741307914257,
0.0615423321723938,
0.010002397000789642,
0.008463269099593163,
-0.03567185625433922,
0.05236247926950455,
-0.026074090972542763,
-0.044434551149606705,
0.017524123191833496,
-0.0399574413895607,
-0.017665116116404533,
-0.021305330097675323,
-0.025429420173168182,
-0.026028256863355637,
-0.0074770390056073666,
0.031153766438364983,
0.015584595501422882,
-0.005004842299968004,
0.0077595943585038185,
0.04269670322537422,
-0.01861466094851494,
-0.0063803247176110744,
-0.046903569251298904,
-0.015574436634778976,
-0.0706583634018898,
-0.022101592272520065,
0.045500341802835464,
0.01415286399424076,
0.019508961588144302,
0.0011761700734496117,
0.026963558048009872,
0.005633680149912834,
0.023320194333791733,
-0.0029668458737432957,
0.012276120483875275,
0.028540004044771194,
-0.03212029114365578,
-0.004597347229719162,
0.014034057967364788,
0.012027548626065254,
0.046330053359270096,
-0.01648312248289585,
0.020093362778425217,
-0.0021894341334700584,
-0.017055898904800415,
-0.01050166692584753,
0.04090523347258568,
0.009664385579526424,
-0.038035742938518524,
-0.0401785746216774,
0.00755692133679986,
-0.03589121624827385,
0.026599232107400894,
-0.014612422324717045,
-0.027151944115757942,
-0.006981721613556147,
-0.014479908160865307,
0.039128802716732025,
-0.025578627362847328,
-0.016778839752078056,
0.024648156017065048,
-0.043793994933366776,
0.036444876343011856,
-0.037992142140865326,
0.05997336283326149,
-0.013340444304049015,
0.0012599944602698088,
-0.057988185435533524,
0.014513315632939339,
-0.06463967263698578,
0.04906408488750458,
-0.04997029900550842,
-0.027429228648543358,
-0.005114274099469185,
0.02492729015648365,
-0.018859053030610085,
0.02230917476117611,
-0.032199397683143616,
0.017230665311217308,
-0.08519722521305084,
0.05489366501569748,
-0.05104720965027809,
0.007009977474808693,
-0.041394177824258804,
-0.008668108843266964,
-0.06944947689771652,
0.004499602131545544,
-0.023003747686743736,
-0.03123391978442669,
0.03562336787581444,
0.03660096228122711,
0.06748734414577484,
0.028703920543193817,
0.0028849460650235415,
-0.024135736748576164,
0.043797288089990616,
-0.0576888807117939,
-0.03443116322159767,
-0.0022422759793698788,
0.015972865745425224,
-0.01862620934844017,
0.03508646413683891,
0.06804527342319489,
-0.07780200242996216,
-0.07580719143152237,
0.028531214222311974,
0.03830435499548912,
0.01171842496842146,
0.023921236395835876,
0.04117463901638985,
0.03591585531830788,
0.023281686007976532,
-0.022519534453749657,
-0.025237800553441048,
-0.004437315743416548,
-0.021723615005612373,
0.04379092901945114,
-0.010817664675414562,
0.04138180613517761,
0.05441035330295563,
-0.039131876081228256,
-0.016216829419136047,
0.06521448493003845,
0.044101595878601074,
0.031847987323999405,
-0.006322081666439772,
-0.04086246341466904,
0.0053327144123613834,
-0.004989541135728359,
-0.04087729752063751,
0.037868380546569824,
0.005940570030361414,
-0.02604302205145359,
0.0696287453174591,
-0.014241257682442665,
0.00894211232662201,
0.043689511716365814,
0.032555997371673584,
-0.021961094811558723,
0.06797228753566742,
-0.03906989097595215,
-0.01546257920563221,
0.04756396636366844,
-0.050207097083330154,
-0.008229102939367294,
-0.04807799309492111,
0.059262167662382126,
-0.0889500230550766,
0.051182039082050323,
0.023797614499926567,
-0.04161074757575989,
-0.007690852042287588,
-0.016641614958643913,
-0.042812418192625046,
0.017554333433508873,
-0.049832917749881744,
0.0789271667599678,
-0.01903206668794155,
-0.06606920808553696,
0.0858013704419136,
0.0134089644998312,
-0.06936033815145493,
0.03423513099551201,
0.0246802419424057,
0.008488114923238754,
0.02797519601881504,
0.04305633157491684,
-0.05868017300963402,
-0.00009313752525486052,
-0.044833336025476456,
0.031212475150823593,
-0.058688655495643616,
-0.05747387185692787,
0.04181987792253494,
-0.027306953445076942,
-0.003299317555502057,
0.05523237958550453,
-0.00451149744912982,
-0.027583418413996696,
0.012808763422071934,
-0.07307947427034378,
-0.03680848330259323,
0.01185071561485529,
0.026398727670311928,
-0.018042128533124924,
-0.022904546931385994,
-0.021972529590129852,
0.010975232347846031,
0.021769972518086433,
-0.009359907358884811,
-0.031998760998249054,
-0.00994059070944786,
-0.0004079853242728859,
-0.06922989338636398,
-0.023721175268292427,
0.009803621098399162,
0.00017398687487002462,
-0.041344210505485535,
0.009211210533976555,
-0.01282508671283722,
0.02014823816716671,
0.01419613417237997,
-0.012620428577065468,
0.00948724988847971,
-0.06330020725727081,
-0.015015354380011559,
0.03598606958985329,
-0.002195020904764533,
0.005866003222763538,
0.007619107607752085,
0.01240657176822424,
0.05229722335934639,
0.029410656541585922,
0.025994036346673965,
-0.012515300884842873,
-0.015502597205340862,
0.03191277012228966,
-0.015276544727385044,
0.03676813095808029,
-0.023532060906291008,
-0.056696709245443344,
-0.03665829077363014,
0.027317538857460022,
0.02122551016509533,
0.026765350252389908,
-0.038483522832393646,
0.01100962795317173,
0.024070948362350464,
-0.007965318858623505,
-0.05824553221464157,
-0.07281788438558578,
-0.024323703721165657,
-0.04331082105636597,
0.004191664047539234,
0.031081171706318855,
-0.04462922737002373,
0.02787589095532894,
-0.06995361298322678,
-0.04630151763558388,
0.05228503420948982,
0.008216455578804016,
-0.017410390079021454,
0.012780910357832909,
0.03790615499019623,
-0.020071811974048615,
0.01722598262131214,
0.03757331892848015,
-0.028557782992720604,
0.015512264333665371,
0.008535315282642841,
0.02229165844619274,
0.031578611582517624,
0.008684849366545677,
-0.02267705649137497,
-0.0037047488149255514,
-0.05900280922651291,
-0.03276568651199341,
-0.0483054518699646,
-0.01547568291425705,
0.04576181247830391
] |
AnonymousSub/rule_based_roberta_twostagequadruplet_hier_epochs_1_shard_10 | [
"pytorch",
"roberta",
"feature-extraction",
"transformers"
] | feature-extraction | {
"architectures": [
"RobertaModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | ---
datasets:
- Travad98/SOGC-archive-trademarks-1883-2001
language:
- de
- it
- fr
metrics:
- accuracy
library_name: transformers
pipeline_tag: image-to-text
tags:
- trademarks
- document-parsing
--- | [
-0.0024514528922736645,
-0.020209746435284615,
-0.010517627000808716,
0.0007035898743197322,
0.07200608402490616,
0.006612328812479973,
-0.013846104964613914,
0.02933402732014656,
-0.0346374474465847,
0.04444228112697601,
0.03845128044486046,
-0.006461224053055048,
-0.009380909614264965,
0.04452807828783989,
-0.026239030063152313,
-0.03587954118847847,
-0.014116976410150528,
-0.018734116107225418,
-0.06230245158076286,
0.013610788621008396,
0.03248484805226326,
0.01173484232276678,
-0.0487164743244648,
0.007855216972529888,
0.000833783415146172,
0.0038635104428976774,
-0.01011791080236435,
0.04189303517341614,
0.0394129604101181,
-0.05808548256754875,
0.003289748914539814,
-0.0354844406247139,
-0.029510626569390297,
-0.027822185307741165,
-0.02111317776143551,
-0.0012403728906065226,
0.017071139067411423,
0.000986018916592002,
0.05334090068936348,
0.03602822124958038,
0.002323317574337125,
0.01387085858732462,
0.011973372660577297,
-0.04955106973648071,
0.03152457997202873,
0.010336914099752903,
-0.04749052971601486,
-0.03230629861354828,
0.005433746613562107,
-0.04321314021945,
-0.06938198953866959,
-0.07942461222410202,
-0.028067534789443016,
0.01363413780927658,
0.006041963584721088,
-0.010238065384328365,
-0.038827769458293915,
0.0016136572230607271,
0.07022834569215775,
-0.025151032954454422,
-0.01659809984266758,
0.022387584671378136,
-0.05775320902466774,
0.008745146915316582,
0.0311636533588171,
-0.03759952634572983,
0.014485075138509274,
-0.04909149184823036,
0.04248293489217758,
-0.013901948928833008,
0.05958809331059456,
-0.06166917458176613,
-0.004501247312873602,
-0.07762210071086884,
-0.029776614159345627,
-0.020646313205361366,
0.0197980385273695,
0.05813807249069214,
-0.028931962326169014,
0.04959097132086754,
0.03053847886621952,
0.020338712260127068,
0.0302315354347229,
-0.026184316724538803,
-0.018207969143986702,
0.057509053498506546,
-0.02170458249747753,
0.004396668169647455,
0.005860261153429747,
0.06960486620664597,
-0.02389216236770153,
-0.019067399203777313,
-0.022180693224072456,
-0.02065938152372837,
-0.009934118948876858,
0.04061507806181908,
0.07219794392585754,
-0.015799924731254578,
0.002478628885000944,
0.028497397899627686,
0.012866316363215446,
0.04937255382537842,
-0.009954125620424747,
0.01711934432387352,
-0.013493828475475311,
-0.005120792426168919,
0.0019055522279813886,
-0.015856971964240074,
-0.03693098574876785,
0.038406748324632645,
0.0209068451076746,
-0.033081065863370895,
-0.03261096775531769,
0.03342832624912262,
-0.001529950532130897,
-0.055748071521520615,
0.10356825590133667,
-0.03523172065615654,
-0.04086734354496002,
-0.0559067539870739,
0.04536700248718262,
0.020078066736459732,
-0.01946071721613407,
0.0038533711340278387,
-0.03837807849049568,
-0.0155246052891016,
-0.03799436241388321,
-0.02336771786212921,
0.021133312955498695,
-0.007057577837258577,
-0.003472294192761183,
0.04660618677735329,
0.003663341049104929,
-0.07338090986013412,
0.021790171042084694,
0.021175812929868698,
-0.06966007500886917,
0.009353305213153362,
0.06074308976531029,
0.0804264172911644,
-0.054965171962976456,
-0.030803050845861435,
0.013666748069226742,
0.022058283910155296,
-0.020195651799440384,
0.0032345799263566732,
0.009064788930118084,
-0.043838124722242355,
-0.03853518143296242,
-0.00960499607026577,
0.05942009389400482,
-0.08176083117723465,
0.01286981999874115,
0.059101566672325134,
-0.019379213452339172,
0.05482332035899162,
-0.010614997707307339,
0.00688974279910326,
0.011804758571088314,
0.003916140180081129,
-0.061283521354198456,
0.047153275460004807,
0.004378640558570623,
-0.005928095895797014,
-0.020426299422979355,
-0.022109439596533775,
0.001916192239150405,
0.08394696563482285,
0.011363758705556393,
-0.03388262167572975,
-0.045375339686870575,
0.0158646572381258,
0.04383799061179161,
0.029390085488557816,
-0.01861542835831642,
0.020687038078904152,
0.05614008754491806,
0.047756969928741455,
-0.006184087600558996,
0.05592295899987221,
0.04283783584833145,
-0.04639861732721329,
-0.04424155876040459,
0.01852325350046158,
0.018284447491168976,
-0.015679337084293365,
-0.007334543392062187,
0.04996216669678688,
0.010580968111753464,
-0.006003672257065773,
-0.020163042470812798,
0.022356241941452026,
-0.020291324704885483,
0.009652433916926384,
0.02494114078581333,
-0.02161748707294464,
-0.010759872384369373,
0.04267972335219383,
-0.02974647283554077,
0.021103661507368088,
-0.028965789824724197,
-0.01230553351342678,
0.04425167292356491,
0.030029885470867157,
0.02544146217405796,
0.02274729311466217,
-0.009441375732421875,
0.07844742387533188,
-0.05079783871769905,
-0.010923492722213268,
-0.032122764736413956,
-0.05305558070540428,
0.002159509574994445,
0.01976606249809265,
0.020096374675631523,
0.03783199191093445,
-0.01749633625149727,
-0.06116365268826485,
0.007912011817097664,
0.08932417631149292,
0.03543144091963768,
0.02731502056121826,
-0.012535404413938522,
-0.0037166313268244267,
0.03944605961441994,
0.04303243011236191,
-0.03894771263003349,
-0.04139333218336105,
0.018045710399746895,
0.016246063634753227,
-0.004169936757534742,
0.012913969345390797,
-0.02424565888941288,
0.01434854231774807,
-0.020630821585655212,
-0.06295710057020187,
0.021954283118247986,
0.01632765866816044,
-0.014168345369398594,
0.03298461437225342,
-0.016501111909747124,
0.01203660387545824,
0.02941046841442585,
0.0014115890953689814,
0.01735340990126133,
-0.07131864875555038,
0.04260881990194321,
0.0037851035594940186,
0.048905421048402786,
-0.045632440596818924,
0.02123737521469593,
0.006667410489171743,
0.003230421571061015,
0.04783272370696068,
-0.052758894860744476,
0.03298276290297508,
0.06121072918176651,
0.058289311826229095,
-0.02158287726342678,
0.029884906485676765,
0.0010964958928525448,
0.022657111287117004,
0.08429646492004395,
0.008725653402507305,
0.0406397320330143,
-0.02664092555642128,
0.05407428368926048,
0.07702337950468063,
0.01715191639959812,
-0.013704805634915829,
0.04171714931726456,
0.0754120945930481,
-0.004895264282822609,
-0.03775491192936897,
0.05661003664135933,
-0.031518466770648956,
0.020184991881251335,
-0.05452141910791397,
0.002805102849379182,
-0.028416143730282784,
0.007492596283555031,
0.02690046653151512,
0.00021987177024129778,
-0.030164241790771484,
0.02022678032517433,
-0.006952743045985699,
0.009984412230551243,
0.06200019642710686,
-0.008575303480029106,
0.01640731655061245,
0.00010192410263698548,
-0.020675931125879288,
0.016623981297016144,
-0.041302938014268875,
-0.030049839988350868,
-0.013337419368326664,
-0.029026003554463387,
-0.012553614564239979,
-0.0729420855641365,
-0.021206123754382133,
-0.06757910549640656,
-0.04127001389861107,
0.07270891964435577,
0.023609548807144165,
-0.0022330153733491898,
-0.06261131167411804,
0.009743754751980305,
-0.027975037693977356,
-0.044449105858802795,
-0.0739971399307251,
-0.05635911598801613,
-0.020481720566749573,
-0.08373421430587769,
0.032814398407936096,
0.040422432124614716,
0.01395496167242527,
0.01766773872077465,
-0.01793644018471241,
-0.047530390322208405,
-0.00313718244433403,
0.06063200533390045,
0.025629187002778053,
-0.018097668886184692,
-0.015290266834199429,
0.020125893875956535,
-0.04020870476961136,
0.021419985219836235,
0.006283741444349289,
-0.05683296173810959,
0.10053253173828125,
0.054315708577632904,
0.03903265669941902,
-0.014067484997212887,
0.020624764263629913,
-0.05051885545253754,
-0.05027368664741516,
-0.03650528937578201,
-0.02651815302670002,
-0.0042574601247906685,
-0.0365464873611927,
-0.02961912378668785,
-0.0075518060475587845,
-0.03132263943552971,
-0.0061520980671048164,
0.024285105988383293,
-0.002527995267882943,
0.008547182194888592,
0.0530770942568779,
0.04860227555036545,
0.04023047164082527,
-0.04606807604432106,
-0.03987446427345276,
0.08442054688930511,
0.009494992904365063,
-0.03344248607754707,
-0.07050999253988266,
-0.03667765110731125,
0.04482932388782501,
0.008198317140340805,
0.022576842457056046,
-0.028316861018538475,
0.039480261504650116,
0.007349299266934395,
0.015066540800035,
0.007800803054124117,
-0.020190881565213203,
-0.02058565430343151,
-0.0023158276453614235,
-0.005232376977801323,
-0.050728172063827515,
-0.05682499334216118,
-0.019370414316654205,
0.008172640576958656,
0.04355640709400177,
-0.06438255310058594,
-0.043272994458675385,
-0.017235256731510162,
0.031709786504507065,
0.03557712957262993,
-0.012187899090349674,
-0.03372069448232651,
0.011259764432907104,
-0.05146874487400055,
-0.05323904752731323,
0.03625021129846573,
0.003964130766689777,
0.026880212128162384,
0.051021870225667953,
0.00829274207353592,
-0.05617266893386841,
0.016416069120168686,
0.03556039556860924,
0.0722070261836052,
0.046036750078201294,
-0.02033056691288948,
0.016601858660578728,
-0.011336741968989372,
0.0028267886955291033,
-0.0032985396683216095,
-0.00789235532283783,
-0.03780863434076309,
-0.07924564927816391,
-0.007389150094240904,
0.018579455092549324,
-0.016638968139886856,
-0.004101800266653299,
0.05685554817318916,
-0.0025180079974234104,
-0.012884675525128841,
0.006096899509429932,
0.017221882939338684,
0.03252620995044708,
-0.027561336755752563,
0.055843617767095566,
-0.01465992908924818,
0.0200925562530756,
-0.04767666757106781,
0.013475621119141579,
-0.05488582327961922,
0.0019419007003307343,
-0.012954083271324635,
0.058548081666231155,
0.02000739797949791,
0.04981573298573494,
0.06628696620464325,
-0.010989196598529816,
-0.01243374403566122,
0.00492414366453886,
0.05033314600586891,
-0.01515926793217659,
-0.06496808677911758,
-0.0052418396808207035,
-0.01115353498607874,
-0.029083671048283577,
-0.0011358517222106457,
-0.030123474076390266,
0.01785903051495552,
0.026201192289590836,
-0.01333157904446125,
-0.01637868769466877,
-0.010195562615990639,
-0.017463574185967445,
-0.05349758267402649,
-0.05956348031759262,
-0.026446813717484474,
0.022115517407655716,
-0.02937767282128334,
0.009609926491975784,
0.06386037170886993,
0.022728750482201576,
0.08778871595859528,
0.024758057668805122,
-0.05870960280299187,
-0.05785932019352913,
0.023093098774552345,
0.03517691418528557,
-0.024871204048395157,
-0.06741630285978317,
-0.04918808862566948,
0.029390737414360046,
0.012395977042615414,
0.0011275592260062695,
-0.06007608771324158,
0.023264123126864433,
0.025206096470355988,
-0.04765485227108002,
0.07733035087585449,
0.0027180665638297796,
0.05818699672818184,
0.06726714968681335,
-0.04119193181395531,
0.023465003818273544,
-0.05185053497552872,
0.007993425242602825,
-0.014072903431952,
0.040129344910383224,
-0.05419145151972771,
-0.027224797755479813,
-0.029424678534269333,
0.0315588004887104,
0.01267301756888628,
0.06489299982786179,
0.0050498563796281815,
-0.03746819868683815,
-0.045926544815301895,
0.006849690340459347,
0.03834788501262665,
-0.07296649366617203,
0.01335914060473442,
0.025929056107997894,
0.0828467458486557,
-0.043613288551568985,
-0.03401418402791023,
-0.011923911049962044,
0.0308427382260561,
0.04240398108959198,
-0.025542521849274635,
-0.018600773066282272,
-0.03549695014953613,
0.03402673080563545,
-0.05087892338633537,
-0.03769408166408539,
-0.10776487737894058,
0.03439262881875038,
0.0023775033187121153,
-0.050056248903274536,
0.05729632452130318,
0.03336091339588165,
0.026876917108893394,
0.0336458645761013,
-0.001469869981519878,
0.032895367592573166,
-0.03267644718289375,
0.036025263369083405,
-0.023839058354496956,
-0.012693816795945168,
0.0076916879042983055,
-0.05382222309708595,
-0.016717854887247086,
-0.018982654437422752,
-0.04777226969599724,
-0.03719283267855644,
-0.0035701009910553694,
0.015248328447341919,
0.007732103578746319,
0.000878486258443445,
-0.02002808265388012,
0.015973452478647232,
-0.0050868382677435875,
-0.021113472059369087,
-0.02985735982656479,
-0.028727291151881218,
-0.07135967165231705,
-0.02674761228263378,
0.0186837837100029,
-0.01595543883740902,
0.02768024429678917,
0.017167771235108376,
-0.00901034940034151,
0.01452910527586937,
0.017300603911280632,
-0.029824554920196533,
0.03043530508875847,
0.016151098534464836,
-0.03985140100121498,
-0.019010350108146667,
0.0030908805783838034,
0.007017897441983223,
0.03960037603974342,
-0.006675506941974163,
0.004447263665497303,
0.00851817149668932,
-0.027868108823895454,
-0.037877462804317474,
-0.0038898636121302843,
0.019741332158446312,
-0.06080704927444458,
-0.05969778075814247,
-0.02964007295668125,
-0.028415588662028313,
0.027915896847844124,
0.005330255255103111,
-0.030005862936377525,
0.013356456533074379,
0.025441449135541916,
0.028656773269176483,
-0.000488738005515188,
-0.016685660928487778,
0.013725201599299908,
-0.01477193832397461,
0.013848046772181988,
-0.07521326839923859,
0.044644925743341446,
-0.021822268143296242,
0.01317328680306673,
-0.01288088783621788,
-0.012182840146124363,
-0.07241006195545197,
0.04557959362864494,
-0.008697787299752235,
-0.012660018168389797,
-0.009470881894230843,
0.03451599180698395,
-0.015047174878418446,
0.015266837552189827,
-0.00023937570222187787,
0.010236241854727268,
-0.01575610041618347,
0.05480647832155228,
-0.06657024472951889,
0.02654297463595867,
-0.007503385655581951,
0.016238972544670105,
-0.0395522266626358,
-0.03974608704447746,
-0.010464783757925034,
-0.038156673312187195,
0.037196122109889984,
0.03720203787088394,
-0.005060198251157999,
0.0009886056650429964,
-0.01866133324801922,
-0.0062919193878769875,
0.03114999458193779,
-0.057184454053640366,
-0.01912512257695198,
-0.020745152607560158,
-0.005770297255367041,
-0.0345442034304142,
0.0629180297255516,
0.009189442731440067,
-0.029659617692232132,
-0.045964330434799194,
0.04875960201025009,
0.006013064179569483,
-0.008953569456934929,
-0.008189350366592407,
0.028427982702851295,
0.03271897882223129,
0.06784070283174515,
-0.026220763102173805,
0.005720143672078848,
-0.001983220688998699,
-0.0008475920185446739,
-0.0015961547615006566,
0.009951142594218254,
0.015727022662758827,
-0.015046045184135437,
-0.03696487843990326,
-0.027043858543038368,
0.06008173152804375,
0.027176422998309135,
0.03438545763492584,
-0.02168094925582409,
-0.04247412830591202,
0.02373732440173626,
0.04919584468007088,
-0.035139091312885284,
0.013477597385644913,
0.02142629586160183,
-0.04251546785235405,
0.05709925293922424,
-0.01695823110640049,
0.02478640154004097,
0.014817912131547928,
0.03780189901590347,
-0.022818200290203094,
0.044082723557949066,
-0.020932408049702644,
0.007856793701648712,
0.03830073028802872,
-0.05037006735801697,
-0.005330360494554043,
-0.020504653453826904,
0.05245360732078552,
-0.07844569534063339,
0.06832057982683182,
0.024364179000258446,
0.024374039843678474,
0.02877137064933777,
-0.03512628376483917,
-0.00048826803686097264,
0.03103366680443287,
-0.046238433569669724,
0.09910188615322113,
-0.003425703849643469,
-0.08871839940547943,
0.06067391112446785,
0.024127857759594917,
-0.08471594750881195,
0.0350036695599556,
0.04630030691623688,
0.016841718927025795,
0.025245072320103645,
0.02077467180788517,
-0.04486870765686035,
0.0115667674690485,
-0.029239311814308167,
0.012134642340242863,
-0.06230946257710457,
-0.011535055935382843,
-0.001458534738048911,
-0.04024497792124748,
-0.02874530479311943,
0.03049764409661293,
-0.017262080684304237,
0.02190004289150238,
0.012973425909876823,
-0.03382085636258125,
-0.034688208252191544,
0.015645137056708336,
0.03596572205424309,
-0.022718077525496483,
0.037549570202827454,
-0.02979312837123871,
0.011409393511712551,
0.028647923842072487,
-0.0023306398652493954,
-0.03821359947323799,
0.017670223489403725,
-0.009820246137678623,
-0.06605523824691772,
-0.0162764023989439,
0.024539675563573837,
0.020272836089134216,
-0.04002220183610916,
0.010160069912672043,
-0.010144446976482868,
0.024153463542461395,
0.020189505070447922,
-0.013468370772898197,
-0.004084037151187658,
-0.05220915377140045,
-0.000015240766515489668,
0.007538339588791132,
0.0054982672445476055,
0.0031275784131139517,
0.009810342453420162,
0.026307960972189903,
0.058939993381500244,
0.05203123763203621,
-0.006616877857595682,
-0.020320098847150803,
-0.020131578668951988,
0.036948949098587036,
-0.030341945588588715,
0.023200545459985733,
0.0019600330851972103,
-0.05690353736281395,
-0.01843719184398651,
0.007019211072474718,
-0.03151903301477432,
0.05953395739197731,
-0.04128198325634003,
0.014810129068791866,
0.026198696345090866,
0.015273775905370712,
-0.04759010672569275,
-0.09927787631750107,
-0.04044102504849434,
-0.03322654962539673,
0.009273739531636238,
0.03495044261217117,
-0.03964175656437874,
-0.016813840717077255,
-0.05030867084860802,
-0.061916109174489975,
0.04537238925695419,
0.017813963815569878,
-0.042522259056568146,
0.05441661179065704,
0.04453711584210396,
-0.04843173176050186,
0.02777312509715557,
0.026316186413168907,
-0.0452595092356205,
0.009913107380270958,
0.01149201299995184,
0.03178895264863968,
0.025300953537225723,
0.04263303428888321,
-0.003535934491083026,
-0.03569027781486511,
-0.042937032878398895,
-0.030287284404039383,
-0.020930560305714607,
-0.0018043925520032644,
0.06012050434947014
] |
Anthos23/FS-distilroberta-fine-tuned | [
"pytorch",
"roberta",
"text-classification",
"transformers",
"has_space"
] | text-classification | {
"architectures": [
"RobertaForSequenceClassification"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 33 | null | ---
language:
- en
pipeline_tag: text-generation
---
### Description:
This is a llama 13b 4 bit LoRA
### Objective for this project:
To create a model that upholds a logical thread, regardless of whether the output is verbose or concise. Training has been performed on a version of the pile of sets, reduced to 40% of its original size, to expedite training iterations. I personally utilize this model as an aid for storytelling and writing. While it serves this purpose adequately, I still perceive this version as a prototype.
### Prompt format:
Stanford Alpaca
The prompt should start on a new line after "### Response:"
- For examples with a non-empty input field:
```
Below is an instruction that describes a task, paired with an input that provides further context. Write a response that appropriately completes the request.
### Instruction:
{instruction}
### Input:
{input}
### Response:
```
- For examples with an empty input field:
```
Below is an instruction that describes a task. Write a response that appropriately completes the request.
### Instruction:
{instruction}
### Response:
```
### Perplexity Benchmarks:
- wikitext: 4.66796875
### Training information:
- 2 Epochs
- 64 / 32 R / A
- 1024 Cutoff
- 19 hours on an A6000
### Data used in training:
All cleaned and scrubbed in various ways then culled to various degrees.
- Camel biology, physics, chemistry, math, and AI society
- Alpaca evol instruct
- GPTeacher Instruct
- Alpaca GPT4
- Dolly Databricks
### Plans for the future, a brief overview:
- Pivot to a conversational format going forward
- Train another 13b LoRA against the entirety of my pile of sets rather than just a portion of it for Mk2
- Train 30b on the Mk2 pile of sets
- Expand the story generation capabilities and likely more for Mk3
### Model used for training:
https://huggingface.co/PocketDoc/llama-13b-gptq-4bit-128g
### Disclaimer:
It has not been aligned and no warranty is given for the quality or safety of its outputs. | [
-0.017428087070584297,
-0.005668851546943188,
-0.020790353417396545,
0.06750389188528061,
0.0535738579928875,
0.016196535900235176,
-0.01999884843826294,
-0.020039062947034836,
-0.005629105027765036,
0.05584796890616417,
0.03821253776550293,
-0.04438302665948868,
0.003023554105311632,
0.017385799437761307,
-0.042201075702905655,
-0.039749983698129654,
-0.03044506162405014,
0.019062990322709084,
-0.02694343402981758,
0.0029420466162264347,
0.004524430260062218,
-0.007799405604600906,
0.017580989748239517,
-0.002797054825350642,
0.0021192985586822033,
0.031807489693164825,
-0.011427016928792,
0.01126264687627554,
0.024336256086826324,
-0.06503289937973022,
-0.006853879429399967,
-0.028215961530804634,
-0.002272536978125572,
-0.0170919056981802,
-0.03443252295255661,
0.0001257119729416445,
-0.0035008026752620935,
-0.0030586111824959517,
0.0016253264620900154,
0.053126826882362366,
-0.023069817572832108,
0.00319852726534009,
-0.005480580031871796,
-0.04590863734483719,
0.044810518622398376,
0.006003106478601694,
-0.05184761434793472,
-0.027956916019320488,
0.014705175533890724,
-0.00012049750512233004,
-0.0437827929854393,
-0.06566670536994934,
-0.020841073244810104,
0.028467396274209023,
-0.00972799863666296,
-0.005446507129818201,
-0.044156331568956375,
-0.010466903448104858,
0.07722175866365433,
-0.038707975298166275,
-0.033183202147483826,
0.003389250487089157,
-0.06836556643247604,
0.02328738570213318,
0.028617016971111298,
-0.04200952872633934,
0.003778789658099413,
-0.06432989239692688,
0.025277217850089073,
-0.016005275771021843,
0.0677940770983696,
-0.03569365665316582,
0.018310151994228363,
-0.07601990550756454,
0.02154623344540596,
-0.012340204790234566,
0.07276114821434021,
0.03192627429962158,
-0.03559470921754837,
0.0631621778011322,
0.03872524946928024,
0.004678894765675068,
0.016980435699224472,
-0.0021226038224995136,
0.013613324612379074,
0.018236244097352028,
-0.06809328496456146,
0.0029947340954095125,
0.02049812115728855,
0.05254162847995758,
-0.011078559793531895,
-0.05961822718381882,
-0.037787728011608124,
-0.03320641815662384,
-0.024391431361436844,
0.044284235686063766,
0.030136434361338615,
-0.03235655650496483,
0.048645664006471634,
0.007578815799206495,
0.030796220526099205,
0.053572677075862885,
-0.03945261240005493,
0.05257399380207062,
-0.004927868023514748,
0.0028512105345726013,
0.0012590197147801518,
-0.029470834881067276,
-0.03659512847661972,
0.021644126623868942,
0.003913941327482462,
-0.05628618597984314,
-0.03386518359184265,
0.020784001797437668,
0.02611304447054863,
-0.04839672893285751,
0.04305974021553993,
-0.027395153418183327,
-0.057673562318086624,
-0.05748537927865982,
0.04971472918987274,
-0.000785020412877202,
-0.021047407761216164,
-0.001837636111304164,
-0.07306263595819473,
0.010470646433532238,
-0.05520923435688019,
-0.04610082134604454,
-0.00729266507551074,
0.004029391333460808,
-0.018094882369041443,
0.038935475051403046,
-0.0006645957473665476,
-0.05794314667582512,
0.011273538693785667,
-0.001971642952412367,
-0.057017166167497635,
0.02133025974035263,
0.003871453460305929,
0.12257753312587738,
-0.06248050555586815,
-0.06610158830881119,
0.02507508546113968,
0.03815726190805435,
-0.02478650026023388,
-0.022945892065763474,
0.007813612930476665,
0.0031290873885154724,
-0.006126753054559231,
-0.016880610957741737,
0.06237848103046417,
-0.05687863752245903,
0.009566237218677998,
0.03945294767618179,
0.03798650577664375,
0.06136762350797653,
-0.03125690668821335,
-0.02873878739774227,
0.008971928618848324,
-0.006497352849692106,
-0.005449565127491951,
0.03611636906862259,
-0.01912098377943039,
-0.02146541140973568,
-0.04550384357571602,
-0.038304686546325684,
0.03812278434634209,
0.06918054819107056,
-0.01083102822303772,
-0.0275009423494339,
-0.008908983319997787,
0.015516943298280239,
0.03477993607521057,
0.026927100494503975,
-0.01964264176785946,
0.03667158633470535,
0.04796946793794632,
0.027662508189678192,
-0.0284576453268528,
0.044747330248355865,
0.009715721011161804,
-0.03239837661385536,
-0.0333804227411747,
-0.007470394484698772,
0.015917005017399788,
-0.015978360548615456,
0.02989259548485279,
0.011315303854644299,
0.006026542279869318,
-0.012959089130163193,
-0.03302628546953201,
0.06848548352718353,
0.002856585429981351,
-0.002729979809373617,
0.0009528293740004301,
0.012712666764855385,
-0.013740324415266514,
0.01962011307477951,
-0.026231393218040466,
-0.002995715942233801,
-0.00418132683262229,
-0.013804858550429344,
0.026353927329182625,
0.004890082404017448,
0.04117554426193237,
0.07070528715848923,
-0.024448135867714882,
0.11384625732898712,
-0.03431279584765434,
0.015616805292665958,
-0.05000700801610947,
-0.05180071294307709,
-0.0012696048943325877,
0.03923682123422623,
0.03551427274942398,
0.035401396453380585,
0.00006464078614953905,
-0.0641900971531868,
0.007943160831928253,
0.07188676297664642,
0.05651754513382912,
0.011525970883667469,
-0.04832521826028824,
-0.004946640692651272,
0.04036155343055725,
0.07124132663011551,
-0.025293348357081413,
-0.010769589804112911,
0.02537284977734089,
0.04797881096601486,
-0.05436686426401138,
0.022919662296772003,
-0.00702787097543478,
0.018519805744290352,
-0.02754749357700348,
-0.07889094203710556,
0.03497777506709099,
0.04893491417169571,
0.01069625187665224,
0.041765887290239334,
-0.0050657051615417,
0.021901629865169525,
0.04321790114045143,
0.018191028386354446,
0.019314052537083626,
-0.06605443358421326,
0.002432058798149228,
0.0232890322804451,
0.053421031683683395,
-0.029950125142931938,
0.0365346223115921,
-0.013721768744289875,
0.0022331392392516136,
0.036570724099874496,
-0.010350619442760944,
0.02698979340493679,
0.07020743191242218,
0.0013767642667517066,
-0.01340358518064022,
0.03613525256514549,
-0.0018408464966341853,
0.037361275404691696,
0.03559121862053871,
-0.0014866540441289544,
0.06831803917884827,
0.014970481395721436,
0.05376685783267021,
0.07829668372869492,
0.025584885850548744,
0.0007835231954231858,
0.03936609998345375,
0.07741299271583557,
0.014328834600746632,
-0.01797817088663578,
0.031482405960559845,
-0.05429616943001747,
0.02599453181028366,
-0.030194539576768875,
0.0009394491789862514,
0.001787398592568934,
-0.03004268743097782,
0.06646090745925903,
0.016251826658844948,
-0.020576924085617065,
0.0027862556744366884,
-0.011949009262025356,
-0.004399420693516731,
0.031729623675346375,
-0.023371893912553787,
-0.00040114246075972915,
-0.03471818566322327,
-0.017533378675580025,
0.02011859230697155,
-0.08957882970571518,
-0.026818249374628067,
-0.0036050123162567616,
-0.026574043557047844,
-0.014960693195462227,
-0.07233113795518875,
-0.013202792033553123,
-0.0659860372543335,
-0.01186446938663721,
0.036521922796964645,
0.01774553209543228,
0.001183946616947651,
-0.02739589288830757,
0.00813209731131792,
-0.06874614208936691,
-0.021477172151207924,
-0.044663168489933014,
-0.05971624329686165,
-0.026763208210468292,
-0.02770565263926983,
0.00685699051246047,
0.01842372678220272,
0.02181754820048809,
0.003457646816968918,
-0.023505285382270813,
-0.041400328278541565,
-0.04276222735643387,
0.029557012021541595,
0.07002008706331253,
-0.030745215713977814,
-0.06641331315040588,
0.003515412798151374,
-0.003518299199640751,
0.030402706936001778,
-0.0346880778670311,
-0.012289556674659252,
0.08585061132907867,
0.07632051408290863,
0.02090429700911045,
-0.03482536971569061,
-0.040642522275447845,
-0.04684322327375412,
-0.039215389639139175,
-0.03189810737967491,
-0.029887747019529343,
-0.008266889490187168,
-0.022981369867920876,
-0.0337706096470356,
-0.010536829009652138,
-0.021413544192910194,
-0.01752251759171486,
-0.03624127060174942,
0.011460546404123306,
0.06136929616332054,
0.05058739706873894,
0.013424312695860863,
0.043192844837903976,
-0.04798966273665428,
-0.018431847915053368,
0.05645323172211647,
0.02056054212152958,
0.021218812093138695,
-0.06447421759366989,
-0.034389615058898926,
0.0393240749835968,
0.02259049005806446,
-0.01833372749388218,
0.0028503064531832933,
0.06809641420841217,
0.027243437245488167,
-0.018849296495318413,
0.02024485170841217,
-0.02212539315223694,
-0.013550928793847561,
-0.014864972792565823,
0.001758716651238501,
-0.03409288451075554,
-0.0360613614320755,
0.005113644991070032,
-0.03879933059215546,
0.05505372956395149,
-0.05640210211277008,
-0.038696058094501495,
-0.009293744340538979,
0.01864342764019966,
0.01110355369746685,
0.017526900395751,
-0.027871375903487206,
0.013386938720941544,
-0.03998186066746712,
-0.003936635795980692,
0.020271312445402145,
-0.007599533535540104,
-0.0053357817232608795,
0.04480254650115967,
0.019473522901535034,
0.00007912232831586152,
0.051818348467350006,
0.019907018169760704,
0.046314917504787445,
0.01194833591580391,
-0.04354426637291908,
0.01665879227221012,
0.002565887989476323,
0.04784182831645012,
-0.008419182151556015,
-0.03347310051321983,
-0.06033430993556976,
-0.07248019427061081,
-0.014745092950761318,
0.03220478445291519,
-0.041138045489788055,
0.02254042774438858,
0.05701734498143196,
-0.01492198184132576,
-0.01412599440664053,
-0.0017426644917577505,
0.023224903270602226,
0.04581987112760544,
-0.03587599843740463,
0.045668985694646835,
-0.012767959386110306,
0.014325862750411034,
-0.056266412138938904,
0.011801138520240784,
-0.018605541437864304,
-0.022825950756669044,
-0.004876210819929838,
0.05466296523809433,
0.02116498164832592,
0.08280374109745026,
0.05347943305969238,
0.03716157749295235,
-0.0463133342564106,
0.06150808557868004,
0.024013163521885872,
-0.025418449193239212,
-0.03141820430755615,
0.012175082229077816,
0.004058031365275383,
-0.033352889120578766,
-0.014942463487386703,
0.00047067718696780503,
0.015133196488022804,
0.04047008976340294,
-0.000934294075705111,
0.0019888689275830984,
0.0038816470187157393,
-0.031508706510066986,
-0.009114040061831474,
-0.0320279598236084,
-0.029511405155062675,
-0.03604130819439888,
-0.024159569293260574,
0.027741335332393646,
0.042090531438589096,
0.023725131526589394,
0.041400253772735596,
0.07397021353244781,
-0.0439554825425148,
-0.0324992761015892,
0.039380572736263275,
0.01596079207956791,
-0.021756744012236595,
-0.061835192143917084,
-0.034059833735227585,
0.0386032909154892,
0.03865283355116844,
-0.01809476502239704,
-0.10728094726800919,
0.003229937981814146,
0.0619034543633461,
-0.06835062056779861,
0.02892167866230011,
-0.010288244113326073,
0.029429718852043152,
0.04881708696484566,
0.023928852751851082,
0.06552159786224365,
-0.0275514405220747,
0.03568997606635094,
-0.0008103890577331185,
0.05221135541796684,
0.020469628274440765,
-0.0036711927969008684,
-0.05580143630504608,
0.06306471675634384,
0.04915132373571396,
0.030736451968550682,
0.029213441535830498,
-0.01857469230890274,
-0.057396870106458664,
-0.024253033101558685,
0.03369250148534775,
-0.05476628988981247,
0.02112666144967079,
0.022291164845228195,
0.04309526085853577,
-0.04238015413284302,
-0.02379135973751545,
-0.011854980140924454,
0.0005490180337801576,
0.023908140137791634,
-0.015803365036845207,
-0.007514295633882284,
-0.051438797265291214,
0.04031703621149063,
-0.008765863254666328,
-0.03250508010387421,
-0.07884214073419571,
0.03467519208788872,
-0.026857411488890648,
-0.025479808449745178,
0.027664555236697197,
0.032415248453617096,
0.020063627511262894,
0.07140685617923737,
0.015967046841979027,
0.041413284838199615,
-0.048109013587236404,
0.04133863002061844,
-0.028135214000940323,
-0.005025985650718212,
0.00289108301512897,
-0.05314435437321663,
-0.013863183557987213,
-0.048808660358190536,
-0.06097493693232536,
-0.015513119287788868,
-0.027970941737294197,
0.03329586982727051,
0.022558679804205894,
0.02207593247294426,
-0.011197095736861229,
0.04304450377821922,
-0.025838708505034447,
-0.0029537593945860863,
-0.02963379956781864,
-0.02702333591878414,
-0.04621700197458267,
-0.031854696571826935,
0.014897541143000126,
0.02352919429540634,
0.04621342197060585,
-0.018945159390568733,
0.032326437532901764,
0.01792573370039463,
0.001081169000826776,
-0.033926960080862045,
0.04427888244390488,
0.011062666773796082,
-0.02695520594716072,
-0.033315375447273254,
0.01669345423579216,
0.009098976850509644,
0.03104090690612793,
-0.00409336993470788,
0.02122996374964714,
0.011613914743065834,
-0.031668324023485184,
0.007754594553261995,
0.011386310681700706,
-0.0058390251360833645,
-0.057131264358758926,
-0.027895746752619743,
-0.012110220268368721,
-0.038751713931560516,
0.03312959149479866,
0.004860139451920986,
-0.04135354235768318,
-0.0015859960112720728,
-0.001873192610219121,
0.019626490771770477,
0.002721342956647277,
-0.056032974272966385,
0.012946614995598793,
-0.05104294419288635,
0.02374483458697796,
-0.0439172200858593,
0.04471666365861893,
-0.037672851234674454,
0.0001467846886953339,
-0.02529541775584221,
-0.020627306774258614,
-0.017056772485375404,
0.04060644283890724,
-0.006189293693751097,
-0.005740006919950247,
0.00464697927236557,
-0.007327544502913952,
-0.019793635234236717,
0.03670796751976013,
0.007322714664041996,
0.03260495886206627,
-0.07654525339603424,
0.05546518787741661,
-0.03804092854261398,
-0.003812708193436265,
-0.014549769461154938,
-0.009721732698380947,
-0.04051586240530014,
-0.008468168787658215,
-0.02505633980035782,
-0.03476366773247719,
0.009580036625266075,
0.05508625507354736,
0.03553660213947296,
0.039224330335855484,
-0.01574181765317917,
0.010920288972556591,
-0.003055162960663438,
-0.0689254179596901,
-0.017642095685005188,
-0.007173251826316118,
-0.01422151643782854,
0.0068035791628062725,
0.057087477296590805,
0.05258319899439812,
-0.07861741632223129,
-0.046866051852703094,
0.04714540019631386,
0.004682652652263641,
0.021747158840298653,
0.006185526959598064,
0.051014404743909836,
0.030683794990181923,
0.04742737486958504,
-0.050416164100170135,
-0.00887514092028141,
0.002670059911906719,
-0.01381444651633501,
0.01536534447222948,
-0.036143913865089417,
-0.0014794437447562814,
-0.012040500529110432,
-0.03634321317076683,
-0.03101254254579544,
0.08968693763017654,
0.007845950312912464,
-0.0013312703231349587,
-0.007516715209931135,
-0.04029602184891701,
0.026119476184248924,
-0.02062792144715786,
-0.035923607647418976,
0.028881974518299103,
-0.00235059205442667,
-0.018768707290291786,
0.0633312314748764,
-0.0050412495620548725,
-0.00625596335157752,
0.02491278015077114,
0.04442823305726051,
-0.03901859372854233,
0.027426091954112053,
-0.03728368133306503,
0.008593408390879631,
0.0397389680147171,
-0.05376305803656578,
-0.010162429884076118,
-0.029768530279397964,
0.08059432357549667,
-0.05794495716691017,
0.07095296680927277,
0.037896934896707535,
0.02632727101445198,
0.011433618143200874,
-0.008241267874836922,
-0.04385312274098396,
-0.018223408609628677,
-0.024739526212215424,
0.07820968329906464,
-0.007243086583912373,
-0.047671761363744736,
0.06306610256433487,
0.026489127427339554,
-0.0709443911910057,
0.0296432226896286,
0.06802570074796677,
0.037961360067129135,
0.030344022437930107,
0.04101404920220375,
-0.03754857927560806,
0.012884670868515968,
-0.04879559203982353,
0.04073892533779144,
-0.04094180464744568,
0.011195311322808266,
0.03106963448226452,
-0.029800711199641228,
-0.00474969856441021,
0.03180117905139923,
-0.04078647494316101,
-0.016458075493574142,
0.03154187276959419,
-0.05802234262228012,
-0.08491647243499756,
0.0044091311283409595,
0.017236771062016487,
-0.04533614590764046,
-0.006561597343534231,
-0.052205562591552734,
0.048945352435112,
0.002521994523704052,
-0.010610430501401424,
-0.0398276150226593,
0.01779385469853878,
0.01948334090411663,
-0.07232417911291122,
-0.029178177937865257,
0.05616223067045212,
0.011727821081876755,
-0.007660142611712217,
-0.0013549290597438812,
-0.013948945328593254,
0.009911714121699333,
0.011453614570200443,
-0.0008374154567718506,
0.003900437615811825,
-0.08221162855625153,
-0.010550178587436676,
0.03328976407647133,
0.015276875346899033,
0.019754942506551743,
-0.009167683310806751,
-0.0019377470016479492,
0.038409292697906494,
0.026632430031895638,
0.03005526214838028,
-0.04282694682478905,
-0.005419132765382528,
0.026207521557807922,
-0.029909010976552963,
0.03577427938580513,
-0.0033332931343466043,
-0.05790597200393677,
-0.015395166352391243,
-0.017502058297395706,
-0.030386218801140785,
0.010258372873067856,
-0.02495233714580536,
0.010516936890780926,
0.030275806784629822,
-0.027095379307866096,
-0.022162199020385742,
-0.08127663284540176,
-0.025855189189314842,
-0.04531107842922211,
0.023480771109461784,
0.036595866084098816,
-0.03341102972626686,
0.02917967550456524,
-0.06742244958877563,
-0.032320499420166016,
0.06022284924983978,
0.0058145164512097836,
-0.02901589870452881,
0.04752829670906067,
0.031578611582517624,
-0.022648315876722336,
0.01648162491619587,
0.03857346251606941,
-0.04241105169057846,
0.010548907332122326,
0.017705179750919342,
0.0037140140775591135,
0.007726388517767191,
0.02445118874311447,
-0.05097173899412155,
-0.015358426608145237,
-0.03281078860163689,
-0.04259363189339638,
-0.05983288213610649,
0.021338727325201035,
0.08707677572965622
] |
AntonClaesson/finetuning_test | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | 2023-05-18T08:37:39Z | ---
license: apache-2.0
tags:
- generated_from_trainer
model-index:
- name: distilgpt2-ft
results: []
---
<!-- 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. -->
# distilgpt2-ft
This model is a fine-tuned version of [distilgpt2](https://huggingface.co/distilgpt2) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 3.3824
## 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.000166
- 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: 20
### Training results
| Training Loss | Epoch | Step | Validation Loss |
|:-------------:|:-----:|:----:|:---------------:|
| No log | 1.0 | 16 | 2.2852 |
| No log | 2.0 | 32 | 2.2098 |
| No log | 3.0 | 48 | 2.2370 |
| No log | 4.0 | 64 | 2.3000 |
| No log | 5.0 | 80 | 2.3898 |
| No log | 6.0 | 96 | 2.4586 |
| No log | 7.0 | 112 | 2.5484 |
| No log | 8.0 | 128 | 2.6572 |
| No log | 9.0 | 144 | 2.7703 |
| No log | 10.0 | 160 | 2.9010 |
| No log | 11.0 | 176 | 2.9734 |
| No log | 12.0 | 192 | 3.0461 |
| No log | 13.0 | 208 | 3.1837 |
| No log | 14.0 | 224 | 3.2359 |
| No log | 15.0 | 240 | 3.2506 |
| No log | 16.0 | 256 | 3.2979 |
| No log | 17.0 | 272 | 3.3512 |
| No log | 18.0 | 288 | 3.3811 |
| No log | 19.0 | 304 | 3.3787 |
| No log | 20.0 | 320 | 3.3824 |
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.016055885702371597,
-0.008104230277240276,
-0.018296966329216957,
0.028565216809511185,
0.039389390498399734,
0.01408974640071392,
-0.006441570818424225,
-0.011622007936239243,
-0.04628579691052437,
0.05655674263834953,
0.012857697904109955,
-0.02867206744849682,
0.0041585518047213554,
0.043289486318826675,
-0.03667658567428589,
-0.04259282350540161,
-0.00960604753345251,
-0.017975319176912308,
-0.03024953417479992,
0.005763951689004898,
0.01416897401213646,
-0.0034490637481212616,
-0.01930231600999832,
0.008336459286510944,
-0.005032346583902836,
0.01883476786315441,
0.02168724127113819,
0.01465528178960085,
0.04709492623806,
-0.06662553548812866,
0.003131434554234147,
-0.056510284543037415,
-0.06064301356673241,
-0.01974887028336525,
-0.0158329326659441,
-0.016375010833144188,
-0.013080084696412086,
0.025680577382445335,
0.02881579101085663,
0.04520886391401291,
0.01601872406899929,
0.03515065088868141,
-0.020607363432645798,
-0.001874034060165286,
0.055140621960163116,
0.012670272029936314,
-0.03542988374829292,
-0.015801366418600082,
0.037195030599832535,
-0.016922960057854652,
-0.07186151295900345,
-0.06708747893571854,
-0.008551876060664654,
0.01779218018054962,
-0.03057808429002762,
-0.018602607771754265,
-0.06473897397518158,
0.018966546282172203,
0.0714203342795372,
-0.04922662302851677,
-0.036503419280052185,
0.0065285018645226955,
-0.08655910193920135,
0.005896490067243576,
0.03733057528734207,
-0.02898530662059784,
0.02007823996245861,
-0.05098123103380203,
0.021735377609729767,
-0.008890192955732346,
0.05282231420278549,
-0.00707572465762496,
0.016498789191246033,
-0.0860588476061821,
-0.013779357075691223,
-0.007204031106084585,
0.038941435515880585,
0.05097224563360214,
-0.035297878086566925,
0.048367585986852646,
0.04028332978487015,
-0.009734313003718853,
0.03891965001821518,
-0.028195371851325035,
0.016141673550009727,
0.024352367967367172,
-0.04945649206638336,
0.007864866405725479,
0.027053039520978928,
0.03160073235630989,
-0.04445621371269226,
-0.04161898419260979,
-0.022777985781431198,
-0.04316793009638786,
-0.00465595256537199,
0.030203143134713173,
0.016068393364548683,
0.015046614222228527,
0.037075817584991455,
0.010909122414886951,
0.02240162342786789,
0.038069628179073334,
-0.024673352017998695,
0.08197658509016037,
0.0007645299774594605,
-0.02544637955725193,
-0.023585112765431404,
-0.02545878477394581,
-0.06164660304784775,
0.00930309109389782,
0.015658825635910034,
-0.030411865562200546,
-0.030949626117944717,
0.03671010211110115,
0.004421754740178585,
0.0035717166028916836,
0.08812417834997177,
-0.04705657809972763,
-0.03368287533521652,
-0.03624000400304794,
0.017285319045186043,
0.03654628247022629,
-0.02277296595275402,
-0.00865287333726883,
-0.03880704194307327,
-0.00202874094247818,
-0.016041748225688934,
-0.01529434323310852,
-0.010852942243218422,
0.0295032300055027,
0.003906260710209608,
0.05820249021053314,
0.0340704470872879,
-0.07955103367567062,
-0.014222649857401848,
0.014676096849143505,
-0.04858574643731117,
0.03703879937529564,
0.028379682451486588,
0.10864328593015671,
-0.05729465186595917,
-0.07944219559431076,
-0.0028909712564200163,
-0.007048047613352537,
-0.03515186160802841,
0.01661069504916668,
-0.014678259380161762,
-0.05442925542593002,
-0.005704124923795462,
-0.003934107255190611,
0.053665146231651306,
-0.04933534190058708,
-0.012450809590518475,
0.06843778491020203,
-0.0009633201407268643,
0.05292558670043945,
-0.04110691323876381,
-0.03814831003546715,
0.017672840505838394,
-0.01626238413155079,
-0.022851990535855293,
0.037327561527490616,
-0.02022853121161461,
-0.0031314247753471136,
-0.021433405578136444,
-0.04318728670477867,
0.005251633003354073,
0.08317587524652481,
-0.008164102211594582,
-0.03089670091867447,
-0.02160407230257988,
0.028166979551315308,
0.04269219934940338,
0.05682556331157684,
-0.02021629735827446,
0.020929552614688873,
0.04610079526901245,
0.03463789448142052,
-0.03195064887404442,
0.03420129418373108,
0.033058278262615204,
-0.01277228631079197,
-0.020222730934619904,
0.008495710790157318,
0.013432078994810581,
-0.052762240171432495,
0.015745876356959343,
0.011530996300280094,
0.009971142746508121,
-0.062469806522130966,
-0.035530466586351395,
0.03267033398151398,
-0.00883122906088829,
-0.004946485161781311,
-0.007632450666278601,
0.010047327727079391,
-0.030118558555841446,
0.040002331137657166,
-0.011910908855497837,
0.011463255621492863,
-0.02649361453950405,
-0.02199852280318737,
0.008638686500489712,
-0.007165996357798576,
0.02245226502418518,
0.05571308732032776,
-0.023079516366124153,
0.09638840705156326,
-0.0441560260951519,
0.013942859135568142,
-0.03591468185186386,
-0.04310435801744461,
0.013613861985504627,
0.0460941456258297,
0.05791502073407173,
0.06216995045542717,
0.009045291692018509,
-0.03667742758989334,
0.05519144982099533,
0.0667477548122406,
0.060245733708143234,
0.011742931790649891,
-0.03466051071882248,
0.004248572047799826,
0.04542314261198044,
0.0555550679564476,
-0.051302719861269,
-0.010387721471488476,
0.02201858162879944,
0.03676965460181236,
-0.015721626579761505,
0.013592862524092197,
-0.02794300951063633,
0.05283841863274574,
-0.052715446799993515,
-0.058351777493953705,
0.03695385530591011,
0.021447647362947464,
-0.006455686874687672,
0.02291598916053772,
0.02101380005478859,
0.011615236289799213,
0.019304223358631134,
0.008705850690603256,
0.012358560226857662,
-0.05041411146521568,
0.02913796342909336,
0.02417333610355854,
0.05794631689786911,
-0.05429516360163689,
0.035180650651454926,
-0.016538869589567184,
0.00798623263835907,
0.04529343917965889,
-0.0412219874560833,
0.022148480638861656,
0.06600628793239594,
0.03588470444083214,
-0.042134881019592285,
0.027476133778691292,
-0.0012850492494180799,
0.031488820910453796,
0.023392852395772934,
0.002596817910671234,
0.07916524261236191,
0.013132336549460888,
0.04363495483994484,
0.07563357055187225,
0.013015763834118843,
0.03536571189761162,
0.023497361689805984,
0.0643988773226738,
0.015717770904302597,
-0.006496130488812923,
0.04600950703024864,
-0.058694709092378616,
0.016062751412391663,
-0.04020630568265915,
0.0016013681888580322,
-0.030518583953380585,
-0.006188814993947744,
0.043296802788972855,
0.027645401656627655,
-0.04345431923866272,
-0.012092702090740204,
0.002421887358650565,
-0.015095915645360947,
0.007136962842196226,
-0.018212463706731796,
-0.006082103122025728,
-0.006545126438140869,
-0.012652326375246048,
-0.01460929587483406,
-0.0669313296675682,
-0.0498015433549881,
-0.025692174211144447,
-0.015028361231088638,
-0.037137262523174286,
-0.09095752984285355,
0.012422684580087662,
-0.07274375110864639,
-0.017318740487098694,
0.033643938601017,
0.01487250067293644,
-0.00866392720490694,
-0.023141223937273026,
0.02488281950354576,
-0.0615965761244297,
-0.04565257579088211,
-0.05436186492443085,
-0.05385025963187218,
-0.04313075542449951,
-0.07023713737726212,
0.03470156341791153,
0.030735408887267113,
0.016713213175535202,
0.018333330750465393,
0.020472662523388863,
0.014819477684795856,
-0.03296606242656708,
0.04439132288098335,
0.06954920291900635,
-0.036085911095142365,
-0.04711043834686279,
0.04434726759791374,
-0.0041103665716946125,
0.0036542112939059734,
0.01201719418168068,
-0.03349434211850166,
0.0932222306728363,
0.058750152587890625,
0.009855690412223339,
0.009405417367815971,
-0.027096087113022804,
-0.06511345505714417,
-0.06416400521993637,
-0.03615179285407066,
-0.0414610356092453,
-0.019140636548399925,
-0.021659065037965775,
-0.04260295256972313,
-0.0404779389500618,
-0.047890838235616684,
-0.003604576690122485,
-0.011550886556506157,
0.00873078778386116,
0.031581196933984756,
0.030060727149248123,
0.022327294573187828,
0.028597967699170113,
-0.017035914584994316,
-0.046585649251937866,
0.05363442376255989,
0.0033012290950864553,
0.0072802393697202206,
-0.06529277563095093,
-0.016886243596673012,
0.02954724431037903,
0.018450040370225906,
-0.004929339978843927,
-0.009540929459035397,
0.07994300872087479,
-0.0019400396849960089,
0.00873721856623888,
0.027760997414588928,
-0.019532516598701477,
-0.010119516402482986,
0.010444432497024536,
-0.001055473112501204,
-0.007513224612921476,
-0.02862381935119629,
-0.010122559033334255,
-0.028477074578404427,
0.040066175162792206,
-0.060927167534828186,
-0.06384846568107605,
-0.004118439741432667,
0.026645315811038017,
0.058913297951221466,
-0.009276499040424824,
-0.0368775874376297,
-0.008721400052309036,
-0.08726410567760468,
0.005863512400537729,
0.045277781784534454,
0.013932605274021626,
0.00789327546954155,
0.05498248711228371,
0.010103704407811165,
-0.008685997687280178,
0.04509888216853142,
0.04258626326918602,
0.06665186583995819,
0.01784728653728962,
-0.07843843102455139,
-0.009400444105267525,
-0.019871162250638008,
0.023890821263194084,
-0.012673864141106606,
0.0027895167004317045,
-0.02867354266345501,
-0.10463123768568039,
-0.0462239570915699,
0.0050666616298258305,
-0.004487084224820137,
-0.0090114651247859,
0.045850418508052826,
0.0026805810630321503,
-0.024332214146852493,
0.0017194162355735898,
0.00991822499781847,
0.04341866821050644,
-0.04714169353246689,
0.03727582469582558,
-0.022382890805602074,
0.0051720342598855495,
-0.05358383059501648,
0.008035993203520775,
-0.043101683259010315,
-0.022440198808908463,
0.020064640790224075,
0.04762904718518257,
-0.027126094326376915,
0.04945477843284607,
0.07082299143075943,
0.032607585191726685,
-0.03207162022590637,
0.03396884351968765,
0.06592591106891632,
-0.05197826772928238,
-0.06597080826759338,
0.0007290304638445377,
-0.008523822762072086,
-0.001989718759432435,
-0.006691299844533205,
-0.0028981443028897047,
0.05441785603761673,
0.03488175570964813,
0.005516611505299807,
0.007365418132394552,
0.01918274350464344,
-0.004615758545696735,
-0.010736952535808086,
-0.029097869992256165,
-0.019420797005295753,
0.0035417901817709208,
-0.02373545803129673,
-0.006130360998213291,
0.02490646205842495,
0.037911947816610336,
0.08290132880210876,
0.01660757325589657,
-0.04901931434869766,
-0.016955118626356125,
0.01404215395450592,
0.011208995245397091,
-0.026513971388339996,
-0.06548406183719635,
-0.02649456262588501,
0.037407178431749344,
0.03499427065253258,
-0.02450539544224739,
-0.054265398532152176,
0.001968266209587455,
0.051591645926237106,
-0.05615851655602455,
0.05787256360054016,
0.00024794842465780675,
0.0253559872508049,
0.05213057994842529,
-0.005451815668493509,
0.028002537786960602,
-0.016839105635881424,
0.013776465319097042,
-0.0007775547564961016,
0.046186529099941254,
-0.010234319604933262,
-0.030939646065235138,
-0.05387316271662712,
0.018191441893577576,
0.03699258714914322,
0.025893812999129295,
0.03418802469968796,
-0.03357565030455589,
-0.044711340218782425,
0.004506932105869055,
0.034460458904504776,
-0.03700638562440872,
0.0041390410624444485,
0.02774186059832573,
0.03222915157675743,
-0.04229516535997391,
-0.03385978937149048,
-0.030385620892047882,
-0.01143938209861517,
0.03331243246793747,
-0.011608480475842953,
-0.022547723725438118,
-0.03619065135717392,
0.040986645966768265,
0.0058241188526153564,
0.002205959986895323,
-0.06598063558340073,
0.052073802798986435,
-0.027749404311180115,
-0.027315080165863037,
0.05993572622537613,
0.03781542927026749,
0.03334649279713631,
0.0629049763083458,
0.032483119517564774,
0.041569121181964874,
-0.03116980567574501,
0.0479668565094471,
-0.04198707267642021,
-0.013051155023276806,
0.00897698663175106,
-0.02701287902891636,
-0.04119844734668732,
-0.019045965746045113,
-0.05783382058143616,
-0.02775462716817856,
-0.0413498617708683,
0.014472666196525097,
-0.0034836684353649616,
-0.002960675163194537,
0.002540354384109378,
0.04780798405408859,
0.0077483137138187885,
-0.02855849079787731,
-0.031174037605524063,
-0.022413471713662148,
-0.07048523426055908,
-0.06886915117502213,
0.01864127442240715,
-0.00009446164040127769,
0.04084985703229904,
0.02163202315568924,
0.029570171609520912,
0.012987818568944931,
0.023731213063001633,
-0.040707558393478394,
0.018586669117212296,
0.022604210302233696,
-0.027357157319784164,
-0.022141583263874054,
0.021292833611369133,
0.01364523358643055,
0.023489998653531075,
-0.018986202776432037,
0.03479166701436043,
0.006857661996036768,
-0.01567438431084156,
-0.010604321956634521,
0.02298247069120407,
0.03308936953544617,
-0.06631197035312653,
-0.03394190967082977,
-0.008901750668883324,
-0.02680918760597706,
0.011895774863660336,
-0.025006096810102463,
-0.005172447767108679,
0.011050020344555378,
0.01583149842917919,
0.029658621177077293,
-0.02821657992899418,
-0.02371860109269619,
0.014462240040302277,
-0.001865093014203012,
0.018167145550251007,
-0.05130210518836975,
0.05569732189178467,
-0.028977936133742332,
0.03075246699154377,
-0.018850956112146378,
0.01640227623283863,
-0.03037358820438385,
0.036188848316669464,
-0.01344407256692648,
-0.014379951171576977,
-0.024147359654307365,
0.042831167578697205,
-0.019503390416502953,
0.037946995347738266,
-0.016922198235988617,
0.030622871592640877,
-0.039826665073633194,
0.08465801179409027,
-0.030204877257347107,
0.016364147886633873,
-0.031035417690873146,
0.026382911950349808,
-0.02065451629459858,
0.012161131016910076,
-0.016672173514962196,
-0.021786820143461227,
0.022061597555875778,
0.07324682176113129,
0.031347744166851044,
0.017844825983047485,
-0.016386883333325386,
-0.013567095622420311,
0.016653966158628464,
-0.04310106486082077,
-0.017159350216388702,
-0.012170656584203243,
-0.007636049296706915,
-0.019357750192284584,
0.054061345756053925,
0.0467689111828804,
-0.055112455040216446,
-0.07057752460241318,
0.04327432066202164,
0.024677136912941933,
0.002623928477987647,
-0.00040083270869217813,
0.03497318550944328,
0.02840960957109928,
0.03941812366247177,
-0.02082645148038864,
0.010911665856838226,
-0.007140831556171179,
-0.029275713488459587,
0.039769552648067474,
-0.010378926061093807,
0.02751261182129383,
0.011383358389139175,
-0.03559643775224686,
-0.004642164334654808,
0.05405588820576668,
0.03753703832626343,
0.01435905508697033,
-0.0028851369861513376,
-0.04640015959739685,
0.02635262720286846,
0.011437198147177696,
-0.04173712059855461,
0.021665634587407112,
0.009364846162497997,
-0.0249339547008276,
0.056057628244161606,
-0.021451668813824654,
0.012167696841061115,
0.059217169880867004,
0.022636298090219498,
-0.01724380813539028,
0.07575560361146927,
-0.02115672454237938,
0.011991847306489944,
0.05375541001558304,
-0.07608442008495331,
0.007311163004487753,
-0.0471625030040741,
0.05656125396490097,
-0.06662191450595856,
0.02004813961684704,
0.042959216982126236,
0.00249460618942976,
0.018321625888347626,
-0.04403062164783478,
-0.046100322157144547,
0.008361141197383404,
-0.03707008808851242,
0.07697157561779022,
0.010458768345415592,
-0.049098800867795944,
0.05498187243938446,
-0.002021313179284334,
-0.05555988848209381,
0.044926173985004425,
0.04008614271879196,
0.04375206306576729,
0.04056643694639206,
0.045861005783081055,
-0.037997033447027206,
-0.011239366605877876,
-0.02031371183693409,
0.02009819634258747,
-0.050961270928382874,
-0.009706206619739532,
0.04151352867484093,
-0.04817149043083191,
-0.028860772028565407,
0.03617732971906662,
-0.012224157340824604,
-0.021815825253725052,
0.052931081503629684,
-0.05003791302442551,
-0.04183579236268997,
0.028579672798514366,
0.02599705010652542,
-0.030852707102894783,
-0.023539651185274124,
-0.036207739263772964,
0.005387693177908659,
0.005730449687689543,
0.004216491244733334,
-0.007065908517688513,
-0.002721460536122322,
0.03719814121723175,
-0.06416215747594833,
-0.03031974658370018,
0.027901124209165573,
-0.004323883913457394,
-0.01761620119214058,
0.033078961074352264,
0.021053127944469452,
0.01566280424594879,
0.014289841055870056,
-0.020024530589580536,
0.020790770649909973,
-0.04010146111249924,
-0.02539306879043579,
0.00878370925784111,
-0.010386214591562748,
0.028693027794361115,
-0.002213278552517295,
0.03809688240289688,
0.02459857426583767,
0.01253210287541151,
0.0042695519514381886,
-0.029554471373558044,
-0.030330156907439232,
0.01934286765754223,
-0.050319794565439224,
0.022975867614150047,
-0.002486591460183263,
-0.05412892997264862,
-0.04318854957818985,
-0.0170380100607872,
-0.031828898936510086,
0.0329197496175766,
-0.0479728989303112,
0.0021990977693349123,
0.034416571259498596,
-0.0062227738089859486,
-0.058744534850120544,
-0.10550457239151001,
-0.014333060942590237,
-0.04365362226963043,
0.014775359071791172,
0.041288454085588455,
-0.04398024082183838,
0.061967767775058746,
-0.05051080882549286,
-0.037128616124391556,
0.03640413284301758,
0.0338900163769722,
-0.038770269602537155,
0.05026122182607651,
0.055112410336732864,
-0.055926613509655,
0.03107110597193241,
0.03185289353132248,
-0.05057304725050926,
0.009872411377727985,
0.007648869417607784,
-0.00019337379490025342,
0.027757007628679276,
0.005917288362979889,
-0.04683539643883705,
-0.02692137286067009,
-0.08543338626623154,
-0.04412087798118591,
-0.05031261965632439,
0.019183509051799774,
0.05813584849238396
] |
Aplinxy9plin/toxic-detection-rus | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
datasets:
- oscar-corpus/OSCAR-2301
language:
- it
tags:
- ipt-125m
---
# IPT-125m (WIP)
IPT-125m is a decoder-style transformer pretrained from scratch on 4.36 billion tokens of Italian text from the [OSCAR-2301](https://huggingface.co/datasets/oscar-corpus/OSCAR-2301) dataset.
If you like this project, consider supporting me with a cup of coffee! 🤖✨🌞
[](https://bmc.link/edoardofederici)
## How to Use
This model is best used with the Hugging Face `transformers` library for training and finetuning.
```python
from transformers import AutoModelForCausalLM, AutoTokenizer
model = AutoModelForCausalLM.from_pretrained("efederici/ipt-125m", trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained("efederici/ipt-125m")
```
## Model Description
The architecture is a modification of a standard decoder-only transformer. The model has been modified from a standard transformer in the following ways:
* It can use [FlashAttention](https://arxiv.org/pdf/2205.14135.pdf)
* It uses [ALiBi (Attention with Linear Biases)](https://arxiv.org/abs/2108.12409) and does not use positional embeddings
* It does not use biases
| Hyperparameter | Value |
|----------------|-------|
|n_parameters | 125M |
|n_layers | 12 |
| n_heads | 12 |
| d_model | 768 |
| vocab size | 50432 |
| sequence length | 2048 |
| [
-0.02480292320251465,
-0.029944313690066338,
0.022393476217985153,
0.02085079625248909,
0.0354255810379982,
0.011257480829954147,
-0.03616657108068466,
-0.03221224620938301,
-0.030554018914699554,
0.0684279054403305,
0.020181167870759964,
-0.02761116251349449,
-0.0009760844404809177,
0.0499706007540226,
-0.010776485316455364,
-0.028635935857892036,
-0.03786986693739891,
-0.009406723082065582,
-0.034997887909412384,
0.006391129456460476,
0.01782820001244545,
-0.0028644842095673084,
-0.013185151852667332,
0.020782647654414177,
-0.003948936238884926,
0.012525905855000019,
-0.003331902902573347,
0.012249783612787724,
0.029416894540190697,
-0.09223324060440063,
-0.01569930650293827,
-0.04569818824529648,
-0.028983579948544502,
-0.016453620046377182,
-0.038742005825042725,
-0.00424662372097373,
0.00612654909491539,
0.018162211403250694,
0.0489012785255909,
0.05742054432630539,
0.0071840048767626286,
0.0022642079275101423,
-0.023190507665276527,
-0.024089355021715164,
0.05078354477882385,
-0.015256685204803944,
-0.06367001682519913,
-0.01939924620091915,
0.020934581756591797,
-0.02790224738419056,
-0.040830470621585846,
-0.08282645046710968,
-0.04745498299598694,
0.042026642709970474,
0.01145263109356165,
-0.025549238547682762,
-0.07008467614650726,
-0.015528098680078983,
0.07243849337100983,
-0.052196841686964035,
-0.03482995554804802,
0.02528393641114235,
-0.04736294224858284,
0.0385289266705513,
0.03544160723686218,
-0.03418778255581856,
0.00900863204151392,
-0.03505825251340866,
0.029567547142505646,
-0.030947934836149216,
0.021612931042909622,
-0.059802912175655365,
0.02051503211259842,
-0.08223868906497955,
-0.007412071339786053,
-0.006111955735832453,
0.035350251942873,
0.03926387056708336,
-0.016864081844687462,
0.05481390655040741,
0.03967474773526192,
-0.0018711333395913243,
0.03420368209481239,
0.007013877388089895,
-0.015453546307981014,
0.055324848741292953,
-0.04773332551121712,
0.006528038065880537,
0.007420483976602554,
0.0490487702190876,
-0.03768221288919449,
-0.03949063643813133,
-0.015840429812669754,
-0.021374117583036423,
0.001644202391617,
0.021212942898273468,
0.048722557723522186,
0.009041721001267433,
0.0397140271961689,
0.030257156118750572,
0.03316955268383026,
0.05990682914853096,
-0.01468474231660366,
0.05976945906877518,
-0.024590978398919106,
-0.017584597691893578,
-0.016251716762781143,
-0.04807931184768677,
-0.05596735328435898,
0.034530095756053925,
0.037033721804618835,
-0.01916942186653614,
-0.05252712592482567,
0.03716607019305229,
0.014348061755299568,
-0.049430154263973236,
0.05425681546330452,
-0.025649072602391243,
-0.04513723775744438,
-0.054120130836963654,
0.03668477386236191,
0.017035480588674545,
-0.016246385872364044,
0.0014094808138906956,
-0.05871361494064331,
0.02368488907814026,
-0.03128901124000549,
-0.02274428680539131,
0.005402619484812021,
0.036705855280160904,
0.017856286838650703,
0.03279804810881615,
0.018299104645848274,
-0.05415147915482521,
0.006103047169744968,
0.008188147097826004,
-0.06387626379728317,
0.06521069258451462,
0.05073076859116554,
0.11818087100982666,
-0.05329415947198868,
-0.02249825745820999,
0.025104593485593796,
0.03761926293373108,
-0.023017004132270813,
-0.013381071388721466,
0.02171849086880684,
-0.05315812677145004,
-0.020576713606715202,
-0.004850120283663273,
0.05400116369128227,
-0.0526420921087265,
0.010831600055098534,
0.06601733714342117,
0.00027559371665120125,
0.04893733188509941,
-0.05054428428411484,
-0.023762129247188568,
-0.017366336658596992,
-0.01819845661520958,
-0.022772610187530518,
0.019911715760827065,
0.007131718099117279,
-0.012974181212484837,
-0.045008186250925064,
-0.03594740107655525,
0.007843866012990475,
0.08707959204912186,
0.014421241357922554,
-0.010630539618432522,
-0.025857193395495415,
0.021296389400959015,
0.04366606846451759,
0.020489271730184555,
-0.00548853725194931,
0.039263516664505005,
0.055557731539011,
0.03746091574430466,
-0.011794283986091614,
0.06233106553554535,
0.0249209962785244,
-0.02312041074037552,
-0.022422922775149345,
-0.024926280602812767,
-0.004336679354310036,
-0.041328832507133484,
0.01437447126954794,
0.02929903194308281,
-0.015073414891958237,
-0.009150998666882515,
-0.0259696152061224,
0.03943938389420509,
-0.007467289455235004,
0.001786402310244739,
-0.01783793605864048,
-0.03165111318230629,
-0.009410715661942959,
0.04114784672856331,
-0.008596116676926613,
-0.005195247940719128,
-0.028008723631501198,
-0.030704932287335396,
0.013017026707530022,
0.025385499000549316,
0.03312690556049347,
0.052103202790021896,
-0.00011289084068266675,
0.0885547623038292,
-0.03727957233786583,
0.00411437451839447,
-0.05965040624141693,
-0.06609230488538742,
0.024537228047847748,
0.04031434282660484,
0.03143298253417015,
0.05138806626200676,
-0.006111576221883297,
-0.030008552595973015,
0.0107894167304039,
0.0553671233355999,
0.04236656799912453,
0.00753258541226387,
-0.030321869999170303,
-0.023907974362373352,
0.028069384396076202,
0.0806238204240799,
-0.049536142498254776,
-0.03519303351640701,
0.03587861359119415,
0.020093025639653206,
-0.014197967015206814,
0.0231340229511261,
-0.014091632328927517,
0.04250740632414818,
-0.041600242257118225,
-0.05364177003502846,
0.0559689924120903,
0.04325104504823685,
-0.004129690583795309,
0.027580466121435165,
-0.005820866208523512,
0.011074215173721313,
0.004877711180597544,
-0.018105678260326385,
0.01293714065104723,
-0.021346833556890488,
0.03228452056646347,
0.03775655850768089,
0.07969781756401062,
-0.04265527054667473,
0.04027532786130905,
0.007069546729326248,
0.01675105281174183,
0.033158138394355774,
-0.0369025394320488,
0.029604122042655945,
0.056370001286268234,
0.009382341988384724,
-0.04549100995063782,
0.012706871144473553,
-0.01701197773218155,
0.0611766092479229,
0.03758394345641136,
0.014402104541659355,
0.05145919322967529,
0.005588994361460209,
0.039952751249074936,
0.09968043863773346,
0.0030207571107894182,
0.0030388408340513706,
0.038910072296857834,
0.07276937365531921,
0.009591629728674889,
-0.023735275492072105,
0.07917056977748871,
-0.032673534005880356,
0.0048626381903886795,
-0.03176715597510338,
0.021253174170851707,
-0.021310219541192055,
-0.014257444068789482,
0.037403613328933716,
0.00668009277433157,
-0.01080780103802681,
-0.025839930400252342,
-0.000498579756822437,
-0.01924159564077854,
0.05059771239757538,
-0.034675754606723785,
-0.02261332981288433,
-0.005157818086445332,
-0.012455838732421398,
0.01645657792687416,
-0.07797008007764816,
-0.07239113003015518,
0.01077742874622345,
-0.03672943636775017,
-0.024501020088791847,
-0.08418409526348114,
-0.03749094903469086,
-0.05193531885743141,
0.0053368075750768185,
0.025135332718491554,
0.03779369592666626,
0.004171634092926979,
-0.05623016878962517,
0.02206183597445488,
-0.027840927243232727,
-0.025578560307621956,
-0.04995032027363777,
-0.04971316456794739,
-0.03073565661907196,
-0.07397609204053879,
0.03242899104952812,
0.02656928263604641,
0.02976769395172596,
-0.018971579149365425,
0.004379146732389927,
-0.011216241866350174,
-0.028442582115530968,
0.060255151242017746,
0.049046240746974945,
-0.03261037915945053,
-0.05711137875914574,
0.030970994383096695,
-0.007338304538279772,
-0.010623526759445667,
0.017385801300406456,
-0.036951564252376556,
0.08536264300346375,
0.06135115772485733,
0.025769412517547607,
0.009776294231414795,
-0.019619569182395935,
-0.04189382493495941,
-0.045963868498802185,
-0.025720231235027313,
-0.03751170635223389,
-0.012791227549314499,
-0.025157464668154716,
-0.04631948098540306,
-0.01967707835137844,
-0.029715947806835175,
0.023474572226405144,
-0.004983123857527971,
0.016933701932430267,
0.007641004864126444,
0.025563528761267662,
0.04154878854751587,
0.03157682344317436,
-0.05573473498225212,
-0.024556109681725502,
0.0642920434474945,
0.005450541619211435,
-0.012028858996927738,
-0.08787760138511658,
-0.038682904094457626,
0.024241918697953224,
0.02154282107949257,
-0.019849445670843124,
0.011482303030788898,
0.08481814712285995,
0.03106009028851986,
-0.027825964614748955,
-0.010306010022759438,
-0.010262452997267246,
-0.011180641129612923,
-0.006555304862558842,
0.0013166253920644522,
-0.0250717643648386,
-0.040130894631147385,
-0.03526090458035469,
-0.00680090207606554,
0.05882149562239647,
-0.07593636214733124,
-0.07928615063428879,
-0.025848133489489555,
0.042361002415418625,
0.003870924934744835,
0.016307029873132706,
-0.04626186564564705,
-0.0017743599601089954,
-0.05149029567837715,
-0.01598627306520939,
0.02453770861029625,
0.000997368129901588,
0.03741942346096039,
0.0386933758854866,
0.02383124828338623,
-0.033420395106077194,
0.02872670814394951,
0.04509332403540611,
0.06878457963466644,
0.01677025854587555,
-0.033968307077884674,
0.034876905381679535,
-0.029812170192599297,
0.004355366341769695,
0.009089934639632702,
-0.019449258223176003,
-0.0445685051381588,
-0.0728909820318222,
-0.007556469179689884,
0.010894588194787502,
-0.004094175063073635,
-0.0029469248838722706,
0.019562527537345886,
-0.02426968701183796,
-0.030690249055624008,
0.011682494543492794,
0.011846470646560192,
0.06434094160795212,
-0.05854513868689537,
0.060032665729522705,
0.021516649052500725,
0.015455282293260098,
-0.05154038593173027,
0.034688711166381836,
-0.028065189719200134,
-0.0060748327523469925,
-0.009118334390223026,
0.04326855391263962,
0.021775713190436363,
0.04822668433189392,
0.0716768354177475,
0.04768459126353264,
-0.04275234043598175,
0.060566190630197525,
0.03001638874411583,
-0.028635423630475998,
-0.05222323164343834,
-0.009707198478281498,
-0.020739661529660225,
-0.023346466943621635,
-0.005246709566563368,
-0.010090767405927181,
0.026057155802845955,
0.035824552178382874,
0.008487578481435776,
-0.021752292290329933,
0.006666410714387894,
-0.02366085723042488,
-0.01528497226536274,
-0.07804993540048599,
-0.040653519332408905,
0.005537961144000292,
-0.0171985924243927,
0.023515498265624046,
0.030705995857715607,
0.03041459619998932,
0.04185738041996956,
0.05446714535355568,
-0.013924608938395977,
-0.06273386627435684,
0.028121590614318848,
0.013302293606102467,
-0.02626529522240162,
-0.06681901961565018,
-0.0464492104947567,
0.04520499333739281,
0.03333209082484245,
-0.014911023899912834,
-0.0861724317073822,
0.016005467623472214,
0.030320415273308754,
-0.041809432208538055,
0.04992096871137619,
-0.024587517604231834,
0.031313009560108185,
0.06311601400375366,
0.003482972737401724,
0.02413545362651348,
-0.03823508694767952,
0.015915390104055405,
0.018726158887147903,
0.03059449978172779,
-0.04138825833797455,
-0.02408604323863983,
-0.07674535363912582,
0.02968396618962288,
0.03921345993876457,
0.04827391728758812,
0.05114882439374924,
-0.027522526681423187,
-0.0671926885843277,
-0.005066785495728254,
0.029613560065627098,
-0.04256545752286911,
0.000627826782874763,
0.035368043929338455,
0.04616833105683327,
-0.04453541710972786,
-0.031565193086862564,
-0.026347575709223747,
0.001637598848901689,
0.029486171901226044,
0.0175845418125391,
-0.040281135588884354,
-0.02853182516992092,
0.014545684680342674,
-0.04040609300136566,
-0.03283758461475372,
-0.0719911977648735,
0.026682758703827858,
-0.012872695922851562,
-0.01676669716835022,
0.0352046936750412,
0.013962979428470135,
0.016379281878471375,
0.043095119297504425,
0.015626825392246246,
0.013957072980701923,
-0.0554424449801445,
0.031908269971609116,
-0.028071897104382515,
-0.01114980410784483,
-0.030419984832406044,
-0.05728698521852493,
0.000058591613196767867,
-0.02751062624156475,
-0.06256364285945892,
-0.0415656603872776,
-0.027018673717975616,
0.013647835701704025,
-0.010984400287270546,
0.008205528371036053,
-0.01955565996468067,
0.040179409086704254,
-0.02798977680504322,
-0.025609413161873817,
-0.041375353932380676,
-0.024014532566070557,
-0.055511925369501114,
-0.05589551478624344,
0.011261765845119953,
0.012775041162967682,
0.04336555674672127,
-0.0018697314662858844,
0.01844923570752144,
0.001892391825094819,
0.01065064501017332,
0.00045193720143288374,
0.006473264191299677,
0.012196986936032772,
-0.06385912001132965,
-0.02647259645164013,
0.037846628576517105,
0.005670909304171801,
0.048416562378406525,
-0.022703787311911583,
0.005931371357291937,
0.018492398783564568,
-0.013177876360714436,
-0.039415210485458374,
-0.005961794406175613,
0.022624358534812927,
-0.08365673571825027,
-0.027234915643930435,
-0.02085014432668686,
-0.02692868560552597,
0.002148618455976248,
-0.02075975388288498,
-0.025339322164654732,
0.016188280656933784,
0.019777564331889153,
0.037437207996845245,
-0.04093116149306297,
-0.016715560108423233,
-0.00234418548643589,
-0.028273524716496468,
0.020640045404434204,
-0.0564957857131958,
0.034516289830207825,
-0.04925813898444176,
0.006794087588787079,
-0.01787075214087963,
0.0012577298330143094,
-0.034114331007003784,
0.04897017776966095,
0.005439063999801874,
-0.021330740302801132,
0.008762907236814499,
0.015939034521579742,
-0.01901652105152607,
0.03467465192079544,
-0.022905506193637848,
0.008351156488060951,
-0.015845604240894318,
0.04724239185452461,
-0.03710762411355972,
-0.011739314533770084,
-0.0020881646778434515,
-0.013961059972643852,
-0.04355471953749657,
-0.03991971164941788,
-0.02672087773680687,
-0.029433010146021843,
0.027320249006152153,
0.030443772673606873,
0.03567484766244888,
0.01702212356030941,
-0.036175958812236786,
0.02342226728796959,
-0.003633630694821477,
-0.08416346460580826,
-0.040720149874687195,
0.008045746944844723,
0.01635151170194149,
0.007469939533621073,
0.05730630084872246,
0.0419560968875885,
-0.05733958259224892,
-0.04907168075442314,
0.050257425755262375,
0.010136082768440247,
0.024676736444234848,
0.0013916757889091969,
0.024902308359742165,
0.029198018833994865,
0.0384758822619915,
-0.04594722390174866,
0.004957662895321846,
0.014929528348147869,
-0.011496687307953835,
0.022367378696799278,
0.016113167628645897,
0.022669421508908272,
0.005743405781686306,
-0.027040740475058556,
-0.03301164507865906,
0.05710313096642494,
0.018943360075354576,
0.046545520424842834,
-0.0013436678564175963,
-0.0371236652135849,
0.002549865050241351,
-0.0039884429425001144,
-0.07257884740829468,
0.026646312326192856,
0.00964938011020422,
-0.03256107121706009,
0.05405248701572418,
-0.02381390519440174,
0.015850141644477844,
0.0460989736020565,
0.018145954236388206,
-0.03431711345911026,
0.03437533229589462,
-0.04591730609536171,
0.018668415024876595,
0.0372774563729763,
-0.03654826432466507,
-0.031453937292099,
-0.042141515761613846,
0.06506587564945221,
-0.046246904879808426,
0.05522759258747101,
0.029757509008049965,
-0.003846021369099617,
0.03452771529555321,
-0.04280293360352516,
-0.028019145131111145,
0.03715149685740471,
-0.046324223279953,
0.09751063585281372,
-0.009845202788710594,
-0.08343713730573654,
0.07220698893070221,
0.030014170333743095,
-0.06750067323446274,
0.043137673288583755,
0.04499291628599167,
0.02844640612602234,
0.02613544650375843,
0.06120990216732025,
-0.023605169728398323,
0.0093485526740551,
-0.04448258876800537,
0.026276692748069763,
-0.05588410049676895,
-0.014174320735037327,
0.026756439357995987,
-0.03861209750175476,
-0.007417979184538126,
0.026376819238066673,
-0.014111855998635292,
-0.00914082769304514,
0.019375182688236237,
-0.06042986735701561,
-0.0281954538077116,
-0.012091330252587795,
-0.006345984525978565,
0.004404361359775066,
0.017836997285485268,
-0.010521496646106243,
0.05356994643807411,
0.006897780112922192,
-0.007484142202883959,
-0.02440626733005047,
0.011540616862475872,
0.02215777151286602,
-0.05683235824108124,
-0.04719102010130882,
0.04494839906692505,
0.008246022276580334,
-0.029519561678171158,
0.03979126363992691,
-0.01566135510802269,
0.017054982483386993,
0.01629451848566532,
-0.012320122681558132,
0.018185995519161224,
-0.02186526544392109,
-0.023798566311597824,
0.009797998704016209,
0.029295388609170914,
0.00721187936142087,
-0.01262129470705986,
0.03775695711374283,
0.02668210305273533,
0.026769591495394707,
-0.0009087150683626533,
-0.033147264271974564,
-0.02305866964161396,
0.003997293300926685,
-0.03095523826777935,
0.018775789067149162,
0.013775226660072803,
-0.05910709127783775,
-0.030366547405719757,
-0.022873271256685257,
-0.017016952857375145,
0.030062153935432434,
-0.042119380086660385,
-0.007267840672284365,
0.04431276023387909,
-0.016097892075777054,
-0.02428041398525238,
-0.08579987287521362,
-0.030196543782949448,
-0.034039177000522614,
0.012895614840090275,
0.03734917193651199,
-0.050678957253694534,
0.002528781071305275,
-0.04237845167517662,
-0.06654813140630722,
0.0664101243019104,
0.02930489182472229,
-0.03170105442404747,
0.045670561492443085,
0.0461711511015892,
-0.04115184396505356,
0.03158048912882805,
0.0225824024528265,
-0.038090016692876816,
0.011838066391646862,
0.00831889919936657,
-0.011643662117421627,
0.023852147161960602,
0.014427360147237778,
-0.02144671231508255,
-0.023238353431224823,
-0.032996077090501785,
-0.02216811291873455,
-0.038538120687007904,
-0.005869773216545582,
0.07329457253217697
] |
Apoorva/k2t-test | [
"pytorch",
"t5",
"text2text-generation",
"en",
"transformers",
"keytotext",
"k2t",
"Keywords to Sentences",
"autotrain_compatible"
] | text2text-generation | {
"architectures": [
"T5ForConditionalGeneration"
],
"model_type": "t5",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": true,
"length_penalty": 2,
"max_length": 200,
"min_length": 30,
"no_repeat_ngram_size": 3,
"num_beams": 4,
"prefix": "summarize: "
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to German: "
},
"translation_en_to_fr": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to French: "
},
"translation_en_to_ro": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to Romanian: "
}
}
} | 7 | null | ---
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: 260.73 +/- 14.85
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.03745874762535095,
-0.0024203043431043625,
-0.005243696738034487,
0.025245267897844315,
0.04547147452831268,
-0.021663015708327293,
-0.005439917091280222,
-0.02776520885527134,
-0.03353114798665047,
0.06684400886297226,
0.03263544663786888,
-0.023213597014546394,
0.02230837754905224,
0.0009604632505215704,
-0.03433215990662575,
-0.025917254388332367,
0.0013109768042340875,
-0.014798537828028202,
-0.019790207967162132,
0.02732904814183712,
0.004869747906923294,
0.03608911111950874,
-0.02626986615359783,
0.03575881943106651,
-0.003498752834275365,
0.03862585127353668,
-0.023545732721686363,
0.05713177099823952,
0.016873642802238464,
-0.043335601687431335,
-0.005828049499541521,
-0.0412914901971817,
-0.020844338461756706,
-0.02075982838869095,
-0.012840197421610355,
0.013364898040890694,
0.016425667330622673,
0.020939208567142487,
0.009521317668259144,
0.033246975392103195,
-0.012444415129721165,
0.023089488968253136,
0.029997630044817924,
-0.0023685493506491184,
0.02134839817881584,
-0.01104046031832695,
-0.04942423105239868,
0.010370662435889244,
0.05575786903500557,
-0.0005365406395867467,
-0.047502994537353516,
-0.06264030188322067,
0.022369705140590668,
0.030636966228485107,
-0.0008467990555800498,
-0.013686548918485641,
-0.04302678257226944,
-0.004400791134685278,
0.062119532376527786,
-0.04367842152714729,
-0.047608986496925354,
-0.007644671481102705,
-0.044823188334703445,
0.010127280838787556,
0.02645384706556797,
-0.00005821721060783602,
0.018916070461273193,
-0.04675430804491043,
0.03550832346081734,
-0.026025738567113876,
0.06944131851196289,
-0.02155587449669838,
0.01359691470861435,
-0.05794411152601242,
-0.0009575577569194138,
0.008541136980056763,
0.037508513778448105,
0.034558672457933426,
-0.013806742615997791,
0.08781657367944717,
0.02892700955271721,
0.012762031517922878,
0.04440867528319359,
0.013587895780801773,
0.012536059133708477,
0.004774841479957104,
-0.039635833352804184,
0.006395864766091108,
0.021150950342416763,
0.029006073251366615,
-0.011660976335406303,
-0.040581293404102325,
-0.04018056020140648,
-0.022152693942189217,
-0.00033747265115380287,
0.028431029990315437,
0.04675803706049919,
0.002112739020958543,
0.06635142117738724,
0.015377595089375973,
0.002345202025026083,
0.031638581305742264,
-0.03149914741516113,
0.061592936515808105,
-0.014810831286013126,
-0.019782589748501778,
-0.014127363450825214,
-0.022623969241976738,
-0.04112127423286438,
0.05443524196743965,
0.032424669712781906,
-0.04717075452208519,
-0.037175294011831284,
0.04579053446650505,
0.02830372005701065,
-0.02091645635664463,
0.030644677579402924,
-0.03295702859759331,
-0.04051702469587326,
-0.06421494483947754,
0.07075121998786926,
-0.005272773094475269,
-0.00779935484752059,
-0.039964742958545685,
-0.028723642230033875,
-0.01802724041044712,
-0.05266794189810753,
-0.0255019161850214,
-0.025571981444954872,
0.018911059945821762,
0.009943597950041294,
0.03205951303243637,
0.015521412715315819,
-0.08604170382022858,
0.012793734669685364,
-0.011045118793845177,
-0.08785312622785568,
0.02952791191637516,
0.0030845794826745987,
0.14388343691825867,
-0.06046063080430031,
-0.05714407563209534,
0.0277369637042284,
-0.01349563430994749,
-0.05639200657606125,
0.010945843532681465,
-0.0042673577554523945,
-0.040985893458127975,
-0.009735521860420704,
-0.02713901735842228,
0.08030782639980316,
-0.054356593638658524,
-0.022068263962864876,
0.0588875487446785,
0.003297950839623809,
0.022575724869966507,
-0.007739681284874678,
0.0071624331176280975,
-0.0029321524780243635,
-0.04602738842368126,
-0.004832608159631491,
0.07038310915231705,
-0.017751652747392654,
-0.03248876705765724,
-0.04236184433102608,
-0.007476485334336758,
0.013333810493350029,
0.07793356478214264,
-0.006579009350389242,
-0.02249218337237835,
-0.02333683893084526,
0.032267823815345764,
0.017104176804423332,
0.018352238461375237,
-0.004191013518720865,
0.03862810507416725,
0.055487945675849915,
0.012405920773744583,
-0.020491676405072212,
0.0402413047850132,
0.0255945585668087,
-0.01805727370083332,
-0.005050405394285917,
0.0018652164144441485,
0.005334098823368549,
0.0013672246132045984,
-0.00622415728867054,
0.028936345130205154,
0.0040120817720890045,
-0.037021785974502563,
-0.025177905336022377,
0.01961457170546055,
0.011709822341799736,
0.006757824216037989,
-0.0016637732041999698,
0.011585989035665989,
0.01480008102953434,
0.04196691885590553,
-0.005211476236581802,
-0.014812517911195755,
-0.033314235508441925,
-0.01912134699523449,
0.028361622244119644,
0.008151523768901825,
0.040841005742549896,
0.010754863731563091,
-0.013547856360673904,
0.09207940846681595,
-0.04376375675201416,
0.041920654475688934,
-0.07392618060112,
-0.050250280648469925,
0.0033526031766086817,
0.03342645987868309,
0.06551361829042435,
0.04431459680199623,
-0.022002991288900375,
-0.04392228275537491,
0.02835816517472267,
0.044310662895441055,
0.05899738520383835,
0.017100321128964424,
-0.04102819785475731,
-0.014887961558997631,
0.031186094507575035,
0.020851345732808113,
-0.02502010390162468,
-0.03957052901387215,
0.013963953591883183,
0.048178140074014664,
0.023610126227140427,
0.024852899834513664,
-0.0326322540640831,
0.024583762511610985,
-0.03830276429653168,
-0.06095825508236885,
0.04022841528058052,
0.026300517842173576,
0.014318201690912247,
0.016533585265278816,
-0.014848507009446621,
0.041263896971940994,
0.01857231743633747,
0.020524974912405014,
0.005946731194853783,
-0.049425650388002396,
0.01348571851849556,
0.031139079481363297,
0.06335540115833282,
-0.032171282917261124,
0.05631537735462189,
-0.005015030037611723,
0.00023041940585244447,
0.041606079787015915,
-0.047891441732645035,
0.01630694419145584,
0.08706609159708023,
0.03051254153251648,
-0.014171822927892208,
0.0192257072776556,
0.005299421492964029,
0.046144045889377594,
0.03310569003224373,
-0.010151864029467106,
0.06921454519033432,
-0.01424227561801672,
0.04701012372970581,
0.06914274394512177,
0.03945717215538025,
-0.005132457707077265,
0.026876436546444893,
0.07576565444469452,
0.003579346463084221,
0.010412421077489853,
0.04811253771185875,
-0.0343787856400013,
0.019490350037813187,
-0.03772958740592003,
0.010684211738407612,
-0.025980226695537567,
-0.006263445131480694,
0.05861703306436539,
0.010572463274002075,
-0.042393870651721954,
-0.01840793713927269,
0.00025046823429875076,
0.00890807993710041,
-0.006466105114668608,
-0.01071273535490036,
0.002231408143416047,
0.004892068449407816,
-0.005357195157557726,
-0.008173408918082714,
-0.08485198020935059,
-0.08377528935670853,
-0.02765890583395958,
-0.014664273709058762,
-0.019905123859643936,
-0.07000868767499924,
-0.04308190941810608,
-0.07123041152954102,
-0.01298158336430788,
0.01951935514807701,
-0.02183890901505947,
0.002813606057316065,
-0.05694485455751419,
0.01022940594702959,
-0.05139605700969696,
-0.015312635339796543,
-0.0543028898537159,
-0.0656517893075943,
-0.039126284420490265,
-0.05776248127222061,
0.03225076198577881,
0.021256372332572937,
0.03546426072716713,
-0.003806867403909564,
-0.003714342135936022,
-0.021633192896842957,
-0.038532454520463943,
0.05484050512313843,
0.04744698479771614,
-0.017396220937371254,
-0.04327486827969551,
0.012959586456418037,
-0.004145582672208548,
0.025968585163354874,
0.009993570856750011,
-0.03356700390577316,
0.08327636867761612,
0.06238727271556854,
-0.007874814793467522,
-0.006936872843652964,
-0.006896728649735451,
-0.046229127794504166,
-0.04255951568484306,
-0.04916401207447052,
-0.04833315685391426,
-0.016599545255303383,
-0.0470132902264595,
-0.029221730306744576,
-0.008828808553516865,
-0.011788606643676758,
-0.01591823622584343,
-0.03417063504457474,
-0.0016876953886821866,
0.037727393209934235,
0.08359949290752411,
0.006724459119141102,
0.038040630519390106,
-0.05755362659692764,
-0.02017134055495262,
0.048798032104969025,
0.021262791007757187,
0.012373856268823147,
-0.07073359191417694,
-0.02428155578672886,
0.007908862084150314,
0.009237137623131275,
0.0020120623521506786,
-0.00005437031722976826,
0.06105740740895271,
0.03432605043053627,
-0.006198808550834656,
0.03015178069472313,
-0.028748348355293274,
-0.020491719245910645,
-0.037797920405864716,
0.00479670288041234,
-0.010647545568645,
-0.021229814738035202,
0.016891511157155037,
0.0004236950189806521,
0.010383585467934608,
-0.05420447513461113,
-0.052282486110925674,
-0.035713471472263336,
-0.0041302405297756195,
0.054847601801157,
0.0016414214624091983,
-0.049664754420518875,
-0.03296840935945511,
-0.06867273151874542,
0.011033067479729652,
0.040174223482608795,
-0.013461788184940815,
0.00815774779766798,
0.02801544964313507,
0.034703586250543594,
-0.0015359522076323628,
0.03783705458045006,
0.03944767639040947,
0.06044689938426018,
0.016050413250923157,
-0.04561460018157959,
0.0010695230448618531,
-0.026143431663513184,
0.03943467512726784,
0.009143384173512459,
-0.014413583092391491,
-0.03316409885883331,
-0.1006569042801857,
-0.027556009590625763,
0.023771490901708603,
-0.017915185540914536,
0.005133000202476978,
0.030212953686714172,
-0.016410410404205322,
-0.008745750412344933,
0.0015198817709460855,
-0.0032818668987601995,
0.0507587268948555,
-0.04053196683526039,
0.0580921545624733,
-0.005826457869261503,
0.023747384548187256,
-0.04303132742643356,
0.02729768119752407,
-0.015144755132496357,
-0.012555462308228016,
-0.0040148114785552025,
0.03069792129099369,
0.0457291342318058,
0.0674566924571991,
0.05349421501159668,
0.017997682094573975,
-0.06279576569795609,
0.03204260393977165,
0.0597863644361496,
-0.03867856785655022,
-0.07277553528547287,
-0.028772279620170593,
0.021731745451688766,
-0.009957469068467617,
0.01414771843701601,
-0.00860124733299017,
0.018270982429385185,
0.05819576606154442,
-0.01803380437195301,
-0.01972835510969162,
-0.00022685169824399054,
-0.008935353718698025,
-0.032289739698171616,
-0.021981311962008476,
-0.003021916840225458,
0.014277853071689606,
-0.01632295921444893,
0.005305394995957613,
0.04358259588479996,
0.024798033758997917,
0.04567338526248932,
0.06406067311763763,
-0.0076256999745965,
-0.04666751250624657,
0.054265666753053665,
0.0050420877523720264,
-0.023905858397483826,
-0.08789408206939697,
-0.028082627803087234,
0.023340994492173195,
0.035241611301898956,
0.010260019451379776,
-0.06369849294424057,
0.013934912160038948,
0.02654244937002659,
-0.06995432823896408,
0.05395122617483139,
-0.008917633444070816,
0.016218459233641624,
0.04014909639954567,
0.01620999537408352,
0.035676658153533936,
-0.03741135075688362,
-0.02950061298906803,
0.007040776312351227,
0.0390506237745285,
-0.012763375416398048,
-0.026434071362018585,
-0.021617239341139793,
0.034531354904174805,
0.041795141994953156,
0.06120415776968002,
0.037605561316013336,
-0.04930771887302399,
-0.06970228254795074,
-0.0410124845802784,
0.022465847432613373,
-0.038379568606615067,
-0.0020945880096405745,
0.04937169700860977,
0.046080827713012695,
-0.05882813408970833,
-0.04904903098940849,
-0.03153136372566223,
-0.011964843608438969,
0.03112376481294632,
0.010976660065352917,
-0.020293181762099266,
-0.01030651107430458,
0.04368523135781288,
-0.006506449542939663,
-0.02963566966354847,
-0.06368691474199295,
0.011670893989503384,
0.016660651192069054,
0.006570637691766024,
0.02791675366461277,
0.03209830820560455,
0.0577489398419857,
0.06463782489299774,
0.039008356630802155,
0.010795531794428825,
-0.04324232414364815,
0.031294792890548706,
-0.039526477456092834,
-0.027767879888415337,
0.0037002915050834417,
-0.07187868654727936,
0.003248863620683551,
-0.018304450437426567,
-0.02306053601205349,
-0.0409647636115551,
-0.023963825777173042,
0.020778559148311615,
0.006103650201112032,
0.0024795138742774725,
0.01363202091306448,
0.05322083458304405,
0.005464059766381979,
-0.04895889014005661,
-0.03225625678896904,
-0.024517633020877838,
-0.061303336173295975,
-0.06257117539644241,
0.03634900227189064,
-0.007659347262233496,
0.011201783083379269,
0.018573150038719177,
0.051397655159235,
0.030546225607395172,
0.02606252022087574,
-0.02760937437415123,
0.02220364660024643,
0.0030175475403666496,
-0.04304926469922066,
0.0121373999863863,
0.015514170750975609,
0.010505031794309616,
0.059032756835222244,
-0.014413362368941307,
0.02698984183371067,
-0.0012715974589809775,
-0.026515347883105278,
-0.02120295912027359,
0.00950781349092722,
0.03041929192841053,
-0.043913379311561584,
-0.025265058502554893,
0.009827401489019394,
-0.03258073329925537,
0.02640417218208313,
-0.01842052862048149,
-0.021081529557704926,
-0.017313459888100624,
0.00571425911039114,
0.03376949951052666,
-0.011406606994569302,
-0.05555170774459839,
0.027550142258405685,
-0.048278260976076126,
0.04437325894832611,
-0.07076670974493027,
0.024577395990490913,
-0.03929344564676285,
0.036230217665433884,
-0.017853105440735817,
-0.008900737389922142,
-0.037991002202034,
0.044992923736572266,
0.016135545447468758,
-0.027327027171850204,
-0.03599747642874718,
0.035488154739141464,
-0.010922150686383247,
0.025731319561600685,
-0.021398089826107025,
0.017146727070212364,
-0.007544551510363817,
0.0365566648542881,
-0.012842578813433647,
0.03555431216955185,
-0.011907035484910011,
0.04693222418427467,
-0.038928475230932236,
0.00029073600308038294,
-0.033133283257484436,
-0.03503656014800072,
0.019658690318465233,
0.04171330854296684,
0.025152673944830894,
0.020372768864035606,
-0.013766116462647915,
0.01768638752400875,
0.013056389056146145,
-0.039828840643167496,
-0.03353483974933624,
0.007933804765343666,
0.014600963331758976,
0.02046545408666134,
0.05211760848760605,
0.032377518713474274,
-0.07177912443876266,
-0.035935498774051666,
0.06127649173140526,
0.0043608578853309155,
0.024235012009739876,
-0.0015095645794644952,
0.035908736288547516,
0.03430641442537308,
0.05082016810774803,
-0.04623846337199211,
0.02045200765132904,
0.0026281331665813923,
-0.008502193726599216,
0.025649147108197212,
-0.02906843274831772,
0.024540750309824944,
0.021048227325081825,
-0.044953156262636185,
-0.016899673268198967,
0.07217500358819962,
0.03501539304852486,
-0.008611987344920635,
-0.027533089742064476,
-0.03901160880923271,
0.03732769563794136,
0.0003725019923876971,
-0.04431929811835289,
0.018212925642728806,
0.0213629137724638,
-0.01681823842227459,
0.062278881669044495,
-0.03633273020386696,
0.009034285321831703,
0.03989110887050629,
0.056417472660541534,
-0.023109713569283485,
0.06537480652332306,
-0.013348712585866451,
0.06042078137397766,
0.03724789619445801,
-0.07086643576622009,
-0.014878882095217705,
-0.0542038269340992,
0.08698377758264542,
-0.07112906873226166,
0.07903249561786652,
0.04165901243686676,
0.008186358027160168,
0.03047099895775318,
-0.016258837655186653,
-0.0462169349193573,
-0.013054152950644493,
-0.048430100083351135,
0.07368674129247665,
0.006589186377823353,
-0.04661872610449791,
0.06756047159433365,
0.02277914062142372,
-0.058049265295267105,
0.05349457636475563,
0.024484243243932724,
0.018992168828845024,
0.0014269709354266524,
0.047923602163791656,
-0.05077052488923073,
0.016320515424013138,
-0.06158338487148285,
0.0543464720249176,
-0.050691571086645126,
-0.003928303252905607,
0.025997783988714218,
-0.05319853872060776,
-0.022538278251886368,
0.048429038375616074,
-0.013338623568415642,
-0.015167593955993652,
0.035907261073589325,
-0.05788228288292885,
-0.06755127012729645,
0.01274287048727274,
-0.006972966715693474,
0.02299242466688156,
0.012316582724452019,
-0.034464217722415924,
0.034844476729631424,
0.03847076743841171,
0.014053812250494957,
-0.0349818617105484,
0.009184448048472404,
0.023358633741736412,
-0.03767464682459831,
-0.0263784509152174,
0.05359094589948654,
0.013721619732677937,
-0.03617839142680168,
0.0029533994384109974,
0.004121644422411919,
0.003849688684567809,
0.024131380021572113,
0.01406093966215849,
0.016460349783301353,
-0.055808618664741516,
-0.03408017382025719,
0.030077200382947922,
-0.01837020367383957,
0.026519281789660454,
-0.03229793906211853,
0.008686363697052002,
0.02076427824795246,
0.01798228733241558,
0.0022238853853195906,
-0.037404634058475494,
0.014074579812586308,
0.03386421501636505,
-0.05567876622080803,
0.002113974653184414,
0.004265826661139727,
-0.052334655076265335,
-0.027017265558242798,
-0.032267116010189056,
-0.019356952980160713,
0.007783125154674053,
-0.02962888590991497,
-0.015537265688180923,
0.054123494774103165,
0.015356880612671375,
-0.054805610328912735,
-0.10094285011291504,
-0.00529832998290658,
-0.0410873219370842,
0.03271110728383064,
0.02678357996046543,
-0.04883640632033348,
-0.012207452207803726,
-0.03128926828503609,
-0.05403956025838852,
0.06372172385454178,
0.040138859301805496,
-0.023658541962504387,
0.06205448880791664,
0.04953136295080185,
-0.01771133951842785,
0.010217111557722092,
0.0038499049842357635,
-0.05563585087656975,
0.0040134950540959835,
0.025047777220606804,
0.02221701480448246,
0.02513916976749897,
0.006546165328472853,
-0.022975929081439972,
-0.022339915856719017,
-0.027328956872224808,
-0.046202946454286575,
-0.024573039263486862,
0.027397817000746727,
0.07064200192689896
] |
ArBert/albert-base-v2-finetuned-ner-gmm-twitter | [
"pytorch",
"tensorboard",
"albert",
"token-classification",
"transformers",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"AlbertForTokenClassification"
],
"model_type": "albert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
tags:
- Pixelcopter-PLE-v0
- reinforce
- reinforcement-learning
- custom-implementation
- deep-rl-class
model-index:
- name: Reinforce-PixelCopter-PLE-v0
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: Pixelcopter-PLE-v0
type: Pixelcopter-PLE-v0
metrics:
- type: mean_reward
value: 25.40 +/- 30.69
name: mean_reward
verified: false
---
# **Reinforce** Agent playing **Pixelcopter-PLE-v0**
This is a trained model of a **Reinforce** agent playing **Pixelcopter-PLE-v0** .
To learn to use this model and train yours check Unit 4 of the Deep Reinforcement Learning Course: https://huggingface.co/deep-rl-course/unit4/introduction
| [
-0.03970784693956375,
0.01604197360575199,
0.014327909797430038,
0.01735716126859188,
0.04863662272691727,
-0.014035428874194622,
-0.01994461379945278,
-0.024077242240309715,
-0.017844349145889282,
0.0681324228644371,
0.035991501063108444,
-0.008004949428141117,
0.011250723153352737,
-0.007327146362513304,
-0.03731211647391319,
-0.06207013875246048,
0.00008854126645019278,
0.011114942841231823,
-0.02189856395125389,
0.01848282851278782,
0.005097744986414909,
-0.006785843521356583,
-0.013356448151171207,
0.03188729286193848,
0.006578069645911455,
0.016630902886390686,
0.003264425089582801,
0.02101154997944832,
0.047646764665842056,
-0.06252577900886536,
-0.014570722356438637,
-0.04256299138069153,
-0.022875607013702393,
-0.019657650962471962,
-0.006028580944985151,
-0.009868578054010868,
0.015900518745183945,
0.01619335263967514,
0.026639366522431374,
0.061143308877944946,
-0.021903246641159058,
0.021359622478485107,
0.009235450997948647,
-0.03279760852456093,
0.027471808716654778,
0.005479835439473391,
-0.012485059909522533,
-0.010294204577803612,
0.01431608572602272,
-0.014768768101930618,
-0.07835809886455536,
-0.07613752782344818,
-0.007426862604916096,
0.01726630888879299,
0.0019708112813532352,
-0.042419642210006714,
-0.0454346127808094,
-0.001735486788675189,
0.05882960185408592,
-0.062172919511795044,
-0.04438617080450058,
0.031237877905368805,
-0.026527846232056618,
0.010700362734496593,
0.028057441115379333,
-0.0316704586148262,
0.019243502989411354,
-0.04603677615523338,
0.020775185897946358,
-0.03255918249487877,
0.060159455984830856,
-0.03402494266629219,
0.012683163397014141,
-0.10605309158563614,
0.005682053044438362,
-0.007558863144367933,
0.007067179773002863,
0.01378412451595068,
-0.024127691984176636,
0.07599929720163345,
0.033942729234695435,
0.028876084834337234,
0.046181801706552505,
-0.024927491322159767,
0.013949024491012096,
0.0017612359952181578,
-0.03683222830295563,
0.019320910796523094,
0.037427011877298355,
0.04490366950631142,
-0.01396090816706419,
-0.001482757506892085,
-0.028151124715805054,
-0.032014526426792145,
-0.019737794995307922,
0.04872969165444374,
0.03775986656546593,
0.014957922510802746,
0.071623295545578,
0.016228528693318367,
0.043893635272979736,
0.03946802765130997,
-0.020259127020835876,
0.08091865479946136,
0.01741909235715866,
-0.03280147537589073,
-0.027627984061837196,
0.00356302154250443,
-0.049865640699863434,
0.061085592955350876,
0.009144408628344536,
-0.03227965533733368,
-0.02727644145488739,
0.026863612234592438,
-0.009875948540866375,
0.005525281187146902,
0.06044868752360344,
-0.02911643497645855,
-0.013707993552088737,
-0.06929818540811539,
0.08290332555770874,
0.014923308044672012,
0.019794318825006485,
-0.023925617337226868,
-0.036377448588609695,
0.0038553238846361637,
-0.05041840299963951,
-0.023556431755423546,
-0.017481587827205658,
0.011016406118869781,
0.0038954415358603,
0.04557324945926666,
-0.01082870364189148,
-0.04631933942437172,
0.005762331187725067,
0.02281966246664524,
-0.06939167529344559,
0.018161192536354065,
-0.006867515854537487,
0.06470268219709396,
-0.08481834083795547,
-0.0555131621658802,
0.009063225239515305,
0.026548070833086967,
-0.030096011236310005,
-0.017513003200292587,
0.007063352037221193,
-0.056899167597293854,
-0.057058289647102356,
-0.02213459089398384,
0.051587872207164764,
-0.062152665108442307,
-0.00578601798042655,
0.07419531047344208,
0.005464721936732531,
0.03731384873390198,
-0.019973082467913628,
0.018968254327774048,
-0.008217190392315388,
-0.03285566344857216,
-0.034202173352241516,
0.0719359740614891,
-0.04319720342755318,
-0.02646714448928833,
-0.054402656853199005,
-0.017254021018743515,
0.019006231799721718,
0.03859079256653786,
-0.025261837989091873,
-0.03677000477910042,
-0.02663283608853817,
0.02768002822995186,
0.039293427020311356,
0.006061405409127474,
0.010419720783829689,
0.03906487673521042,
0.04195425659418106,
0.036772165447473526,
-0.030179321765899658,
0.03308551385998726,
0.02032545767724514,
-0.03610100969672203,
-0.030372455716133118,
0.011206109076738358,
-0.0010182629339396954,
-0.006284620147198439,
0.007771618664264679,
0.024581007659435272,
-0.0038486458361148834,
-0.06602348387241364,
-0.009548007510602474,
0.05715646967291832,
-0.02700982056558132,
0.011388029903173447,
-0.002379119163379073,
-0.01618814840912819,
-0.01697593554854393,
0.04486451297998428,
-0.018938183784484863,
-0.009162762202322483,
-0.034502577036619186,
-0.04425005987286568,
0.03687465935945511,
0.029603159055113792,
0.0055972072295844555,
0.003304691519588232,
-0.011578946374356747,
0.09613477438688278,
-0.015457162633538246,
0.021369140595197678,
-0.057950571179389954,
-0.05972689017653465,
-0.0009124952484853566,
0.030434174463152885,
0.044143613427877426,
0.03233088180422783,
-0.017800092697143555,
-0.05778137594461441,
0.03580648824572563,
0.029447531327605247,
0.04515119269490242,
0.005227973684668541,
-0.03325207158923149,
-0.01509869284927845,
0.03113073855638504,
0.013351487927138805,
-0.01765481010079384,
-0.025021899491548538,
0.036434877663850784,
0.05383865535259247,
-0.01130380854010582,
-0.0008652981487102807,
-0.038989678025245667,
0.03315636143088341,
-0.0746636837720871,
-0.03775836527347565,
0.01910189725458622,
0.03142456337809563,
0.012981541454792023,
0.04768223688006401,
-0.01741422340273857,
0.015319885686039925,
0.013254659250378609,
0.025266818702220917,
0.015468651428818703,
-0.04962661489844322,
0.009084075689315796,
0.025249075144529343,
0.06420806795358658,
-0.030607348307967186,
0.03774315118789673,
0.01493578776717186,
-0.021180899813771248,
0.032823603600263596,
-0.04423641413450241,
0.03203006833791733,
0.08433849364519119,
0.002950052497908473,
-0.0013616953510791063,
0.042603570967912674,
-0.0029636656399816275,
0.027709836140275,
0.015632836148142815,
-0.027509018778800964,
0.0662580206990242,
-0.01587866060435772,
0.030365685001015663,
0.052608996629714966,
0.029063550755381584,
0.004269381985068321,
0.01596914231777191,
0.0777646005153656,
0.01909944973886013,
-0.011373144574463367,
0.07025010138750076,
-0.021696504205465317,
0.04608141630887985,
-0.03252344951033592,
-0.02029239758849144,
-0.011905934661626816,
-0.005896168295294046,
0.06330471485853195,
0.015761127695441246,
-0.03851868212223053,
0.014958277344703674,
-0.003772914642468095,
-0.0011298306053504348,
0.009923444129526615,
-0.020055539906024933,
0.0018723377725109458,
0.011125048622488976,
-0.02244442328810692,
0.025027450174093246,
-0.08223632723093033,
-0.06255102902650833,
-0.023473212495446205,
-0.01582294888794422,
-0.028464751318097115,
-0.05877281725406647,
-0.03359415754675865,
-0.05455397814512253,
-0.009201113134622574,
0.045024335384368896,
0.014376331120729446,
-0.007853958755731583,
-0.021308304741978645,
0.018788471817970276,
-0.03960888460278511,
-0.038234177976846695,
-0.04755193740129471,
-0.03651424124836922,
-0.06896720081567764,
-0.0636523887515068,
0.034358616918325424,
0.016980577260255814,
0.03142554685473442,
0.003995256964117289,
0.002161703770980239,
-0.03801950067281723,
-0.01757834292948246,
0.021229315549135208,
0.07502368092536926,
-0.009310364723205566,
-0.04528941586613655,
0.013719478622078896,
-0.017157815396785736,
0.013355971314013004,
0.014084537513554096,
-0.03659287467598915,
0.06294450163841248,
0.06818242371082306,
0.04138185828924179,
-0.008222753182053566,
-0.007732402998954058,
-0.04287787526845932,
-0.03436880186200142,
-0.03949475660920143,
-0.05331816151738167,
-0.009337784722447395,
-0.043933235108852386,
-0.044461753219366074,
-0.028560573235154152,
-0.022669140249490738,
-0.018126966431736946,
-0.014831572771072388,
0.012514782138168812,
0.0065290494821965694,
0.07177003473043442,
0.01271185465157032,
0.02240564487874508,
-0.047890804708004,
-0.05288320407271385,
0.026490144431591034,
0.0062982686795294285,
-0.007697871420532465,
-0.07913411408662796,
-0.038119759410619736,
0.02364371530711651,
0.000011408708814997226,
0.007768902461975813,
-0.009970169514417648,
0.0720263198018074,
0.012842386960983276,
-0.019892513751983643,
0.038000646978616714,
-0.040555793792009354,
0.0038479173090308905,
-0.01761924847960472,
-0.002746128011494875,
-0.033160895109176636,
-0.03632498160004616,
-0.0023941302206367254,
-0.0008137215045280755,
0.04453645646572113,
-0.036036934703588486,
-0.04710173234343529,
0.005515179131180048,
0.032143257558345795,
0.04799695685505867,
0.003699897788465023,
-0.055222317576408386,
-0.004652943462133408,
-0.08194391429424286,
0.001877020695246756,
0.03525608405470848,
-0.010591932572424412,
0.029365522786974907,
0.04948510602116585,
0.013007689267396927,
0.007537700701504946,
0.04070904478430748,
0.03182968869805336,
0.03894411772489548,
0.01702171005308628,
-0.030507901683449745,
0.013036707416176796,
-0.00032552608172409236,
0.06615258753299713,
0.004323226399719715,
-0.008621458895504475,
-0.04767457768321037,
-0.08481108397245407,
-0.03291812911629677,
0.020179402083158493,
-0.02748899534344673,
0.003730817697942257,
0.05184337869286537,
-0.024653110653162003,
-0.008938525803387165,
0.011263303458690643,
-0.0020825942046940327,
0.04615972563624382,
-0.04384377598762512,
0.06502462178468704,
-0.00803333055227995,
0.034866705536842346,
-0.06589603424072266,
0.022019896656274796,
-0.005263390950858593,
-0.021223651245236397,
-0.002268656622618437,
0.0525968112051487,
0.044007785618305206,
0.0746738612651825,
0.05127241834998131,
0.03304620459675789,
-0.039208266884088516,
0.006238220725208521,
0.04351537302136421,
-0.024881120771169662,
-0.06066550686955452,
-0.008620105683803558,
0.00727563351392746,
0.0033663325011730194,
-0.0007706225151196122,
-0.020609017461538315,
0.038279034197330475,
0.04534944146871567,
-0.003047678619623184,
0.004873189143836498,
0.003270800458267331,
-0.021061915904283524,
-0.04547862708568573,
-0.06182911992073059,
0.00690119806677103,
0.00677128229290247,
0.02489374950528145,
0.026700304821133614,
0.04947581887245178,
0.032033272087574005,
0.03605225309729576,
0.05867081135511398,
-0.0023305939976125956,
-0.06648722290992737,
0.046843819320201874,
0.015717869624495506,
-0.010758010670542717,
-0.044752635061740875,
-0.021989934146404266,
0.031529609113931656,
0.06254119426012039,
-0.012981196865439415,
-0.06332407891750336,
0.020647065714001656,
0.07641594111919403,
-0.06650727987289429,
0.09330713003873825,
0.0012227818369865417,
0.019564976915717125,
0.06748416274785995,
0.006868933793157339,
0.03860374912619591,
-0.020387733355164528,
-0.03621227294206619,
-0.0039552850648760796,
0.026258505880832672,
0.02393661066889763,
-0.027273181825876236,
-0.03307153284549713,
-0.0027053665835410357,
0.04795285686850548,
0.0583333745598793,
0.02259470894932747,
-0.0577341690659523,
-0.06203421950340271,
-0.03447464853525162,
0.04259442165493965,
-0.039518095552921295,
0.01171018648892641,
0.04916883260011673,
0.04429943114519119,
-0.06939855217933655,
-0.04096607491374016,
-0.04047667607665062,
-0.026317043229937553,
0.019168466329574585,
-0.009844762273132801,
-0.046062033623456955,
-0.039879780262708664,
0.04065451771020889,
-0.008018522523343563,
-0.014307452365756035,
-0.10879320651292801,
0.021717773750424385,
-0.009895890951156616,
-0.001962837763130665,
0.03323894739151001,
0.03720851242542267,
0.045943550765514374,
0.05364764854311943,
0.02452503889799118,
0.02194052003324032,
-0.018330341205000877,
0.04378320649266243,
-0.05250607058405876,
-0.0447697788476944,
0.003694697981700301,
-0.03800828009843826,
0.008285664953291416,
-0.027950016781687737,
-0.008156904019415379,
-0.017924774438142776,
-0.040929198265075684,
0.03141464293003082,
0.005073055624961853,
0.007481552194803953,
-0.019862642511725426,
0.019454779103398323,
-0.023874331265687943,
-0.03810897096991539,
-0.02629849873483181,
-0.022991135716438293,
-0.03813207149505615,
-0.05441882833838463,
0.03168211877346039,
0.008112259209156036,
0.03952126204967499,
-0.007441923022270203,
0.04408818110823631,
0.033312760293483734,
-0.0017348818946629763,
-0.017519695684313774,
0.06427928060293198,
0.030315805226564407,
-0.019848668947815895,
-0.015519693493843079,
0.011791217140853405,
0.007644448429346085,
0.05734068900346756,
-0.03421478345990181,
0.021801933646202087,
0.02203330770134926,
0.011798899620771408,
-0.006192049011588097,
0.0175571721047163,
-0.0008895626524463296,
-0.039068810641765594,
-0.01772298850119114,
-0.024845793843269348,
-0.053119730204343796,
0.033258773386478424,
-0.03041965328156948,
-0.026230819523334503,
0.013590778224170208,
-0.005416765809059143,
0.04119468107819557,
-0.004417511634528637,
-0.04697784036397934,
0.02052474580705166,
-0.047060590237379074,
0.07722428441047668,
-0.04021429270505905,
0.01777581311762333,
-0.021908052265644073,
0.009434454143047333,
-0.014354278333485126,
-0.004404892213642597,
-0.0541481152176857,
0.055876050144433975,
-0.005401161499321461,
-0.018459593877196312,
-0.04195632413029671,
0.02268056757748127,
-0.0041441963985562325,
0.042879924178123474,
-0.011627627536654472,
0.036499831825494766,
-0.017072191461920738,
0.06224198266863823,
-0.03778665140271187,
0.01238045934587717,
-0.03247511014342308,
0.05528692901134491,
-0.006182400975376368,
-0.007597694639116526,
-0.033423591405153275,
-0.037641435861587524,
0.024106333032250404,
0.02181387133896351,
0.01451262179762125,
0.02968159131705761,
-0.020607223734259605,
0.018351728096604347,
-0.005531020928174257,
-0.014411402866244316,
-0.046134136617183685,
-0.0008316282765008509,
0.02356535568833351,
0.052644867449998856,
0.0252345222979784,
0.034157149493694305,
-0.07419755309820175,
-0.04806359484791756,
0.05751208961009979,
0.03167448937892914,
0.029381850734353065,
-0.015574678778648376,
0.03484107553958893,
0.0716695487499237,
0.024811681360006332,
-0.05111926421523094,
0.019737210124731064,
-0.003925468772649765,
0.007993928156793118,
0.01666983962059021,
-0.01854490488767624,
0.039891567081213,
0.018626149743795395,
-0.03217914700508118,
-0.028981082141399384,
0.07815753668546677,
0.04851078242063522,
-0.006156518589705229,
-0.013651114888489246,
-0.03582437336444855,
0.02272007055580616,
-0.0090878214687109,
-0.044544365257024765,
0.012624966911971569,
0.007717367727309465,
-0.025399480015039444,
0.0730629563331604,
-0.037394773215055466,
0.012437584809958935,
0.03799913451075554,
0.03630765154957771,
-0.008580700494349003,
0.041488081216812134,
-0.012248698621988297,
0.032229140400886536,
0.03146766126155853,
-0.06365852057933807,
-0.006815709639340639,
-0.035652097314596176,
0.06737338751554489,
-0.06348185986280441,
0.07039318233728409,
0.0400671511888504,
-0.007608550135046244,
0.010873652063310146,
-0.026337014511227608,
-0.06678389012813568,
-0.007096142042428255,
-0.04984336718916893,
0.041112080216407776,
0.026906948536634445,
-0.04607876017689705,
0.05093473196029663,
0.031896624714136124,
-0.0675361379981041,
0.01742582954466343,
0.01109344232827425,
0.020409798249602318,
-0.00712896091863513,
0.008897337131202221,
-0.03441603109240532,
0.013860543258488178,
-0.0451640859246254,
0.07552805542945862,
-0.06565207242965698,
-0.039868663996458054,
0.050453126430511475,
-0.041106972843408585,
-0.003771479707211256,
0.043414413928985596,
-0.01642310805618763,
-0.012057321146130562,
0.023126253858208656,
-0.05406785383820534,
-0.06335365772247314,
0.007252292707562447,
0.008617964573204517,
0.026883555576205254,
0.02031841315329075,
-0.03894900158047676,
0.017538240179419518,
0.03231312334537506,
-0.03917042911052704,
-0.016400888562202454,
-0.023714391514658928,
0.01644148677587509,
-0.06065016984939575,
-0.036494310945272446,
0.05973513051867485,
0.009181145578622818,
-0.022869497537612915,
0.024598846212029457,
-0.012362795881927013,
0.004974779672920704,
0.002354774158447981,
0.030253255739808083,
0.007856075651943684,
-0.08148573338985443,
-0.016101298853754997,
-0.006394145078957081,
0.021773332729935646,
0.027077725157141685,
-0.025703314691781998,
0.027691340073943138,
0.04968446120619774,
0.024930786341428757,
0.013477159664034843,
-0.03351134806871414,
-0.010687693953514099,
0.03693346679210663,
-0.05926772952079773,
0.02045629173517227,
0.009098069742321968,
-0.0470711849629879,
-0.036354318261146545,
-0.031550418585538864,
-0.0160375963896513,
0.0184831153601408,
-0.03513641655445099,
0.022954322397708893,
0.05075148120522499,
0.009413882158696651,
-0.05047278851270676,
-0.10982703417539597,
-0.006056344602257013,
-0.03524767979979515,
0.03528779372572899,
0.04004902020096779,
-0.03368963301181793,
0.002420896664261818,
0.01290698628872633,
-0.024284349754452705,
0.03674757108092308,
0.011644430458545685,
-0.033049583435058594,
0.043905362486839294,
0.03899442404508591,
-0.028549611568450928,
0.020591765642166138,
0.03166356310248375,
-0.03276823088526726,
0.026939548552036285,
0.03294225409626961,
0.007937363348901272,
0.03414980694651604,
-0.0073379045352339745,
-0.02622840367257595,
-0.03093012422323227,
-0.04278361797332764,
-0.013085469603538513,
-0.02729039080440998,
0.047060005366802216,
0.059795401990413666
] |
ArBert/albert-base-v2-finetuned-ner | [
"pytorch",
"tensorboard",
"albert",
"token-classification",
"dataset:conll2003",
"transformers",
"generated_from_trainer",
"license:apache-2.0",
"model-index",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"AlbertForTokenClassification"
],
"model_type": "albert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 19 | null | ---
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: 258.43 +/- 22.06
name: mean_reward
verified: false
---
# **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
...
```
| [
-0.037622012197971344,
-0.0029695937409996986,
-0.0054476275108754635,
0.02550639398396015,
0.04560105875134468,
-0.02135443314909935,
-0.005552058108150959,
-0.027446426451206207,
-0.03260350972414017,
0.06651244312524796,
0.03207024559378624,
-0.023789210245013237,
0.02292010560631752,
0.0014409937430173159,
-0.0335547961294651,
-0.025749212130904198,
0.000972877605818212,
-0.013855953700840473,
-0.0197474155575037,
0.027117207646369934,
0.005253997631371021,
0.0362837128341198,
-0.02556532807648182,
0.03586038574576378,
-0.0038347928784787655,
0.03863805532455444,
-0.023076435551047325,
0.05696751922369003,
0.016701487824320793,
-0.0433141253888607,
-0.005422815680503845,
-0.041471321135759354,
-0.02108173444867134,
-0.020611584186553955,
-0.013598836027085781,
0.01386337261646986,
0.016886401921510696,
0.020305253565311432,
0.009345711208879948,
0.03402448073029518,
-0.012498815543949604,
0.022537752985954285,
0.029636520892381668,
-0.0019987435080111027,
0.0214336309581995,
-0.010844414122402668,
-0.04912250488996506,
0.010397244244813919,
0.05590241029858589,
0.0000882968888618052,
-0.0474165715277195,
-0.06249828264117241,
0.022864703088998795,
0.03102976828813553,
-0.001070634345524013,
-0.01286496315151453,
-0.04295463487505913,
-0.004644191358238459,
0.06225532665848732,
-0.04328017309308052,
-0.04719886928796768,
-0.007661635521799326,
-0.044596556574106216,
0.010353452526032925,
0.02623305842280388,
0.000004331089712650282,
0.01876125857234001,
-0.047021061182022095,
0.03572571277618408,
-0.025791743770241737,
0.07002933323383331,
-0.02120644971728325,
0.013589765876531601,
-0.057633720338344574,
-0.0009397082030773163,
0.009182126261293888,
0.03815990686416626,
0.03452037274837494,
-0.013964489102363586,
0.08787040412425995,
0.028405573219060898,
0.012612617574632168,
0.04451673850417137,
0.0132020004093647,
0.012542469426989555,
0.004484833683818579,
-0.039640143513679504,
0.006269460078328848,
0.021357666701078415,
0.029112832620739937,
-0.0118390042334795,
-0.04113014414906502,
-0.04026193171739578,
-0.022276941686868668,
0.00028233794728294015,
0.028987374156713486,
0.04681514948606491,
0.0018819313263520598,
0.06615018099546432,
0.015481149777770042,
0.0021879037376493216,
0.03109477087855339,
-0.03123346157371998,
0.06211855635046959,
-0.014769305475056171,
-0.019591467455029488,
-0.013265449553728104,
-0.022911030799150467,
-0.04122050106525421,
0.05410143360495567,
0.032157886773347855,
-0.04750550910830498,
-0.037115678191185,
0.04590364918112755,
0.028202569112181664,
-0.020873593166470528,
0.030383385717868805,
-0.032968685030937195,
-0.040550533682107925,
-0.06351452320814133,
0.07082037627696991,
-0.005327732767909765,
-0.008710777387022972,
-0.04032259061932564,
-0.02882409654557705,
-0.017708847299218178,
-0.05234438180923462,
-0.025989646092057228,
-0.025792080909013748,
0.01912950910627842,
0.00980908703058958,
0.03206171467900276,
0.01523107010871172,
-0.0854596272110939,
0.01306001003831625,
-0.011140898801386356,
-0.08800985664129257,
0.029521631076931953,
0.0035661442670971155,
0.14447066187858582,
-0.06100578233599663,
-0.056732479482889175,
0.02693655528128147,
-0.013149467296898365,
-0.056414563208818436,
0.010738939046859741,
-0.004980750381946564,
-0.041350357234478,
-0.009739752858877182,
-0.02746802195906639,
0.08071911334991455,
-0.05436974763870239,
-0.022725170478224754,
0.05946560204029083,
0.0029652025550603867,
0.0227031446993351,
-0.007432019338011742,
0.007144454400986433,
-0.003201982006430626,
-0.04649597033858299,
-0.004742798861116171,
0.07034503668546677,
-0.017722198739647865,
-0.032177604734897614,
-0.042221929877996445,
-0.007444392424076796,
0.013944707810878754,
0.07800847291946411,
-0.0070496005937457085,
-0.022763986140489578,
-0.023629477247595787,
0.03243742138147354,
0.017412491142749786,
0.018240921199321747,
-0.004650724586099386,
0.03873126208782196,
0.05506722629070282,
0.012029479257762432,
-0.02022048644721508,
0.03985929116606712,
0.025565963238477707,
-0.018626883625984192,
-0.004913306795060635,
0.002068521222099662,
0.0055010621435940266,
0.0011619945289567113,
-0.006642575841397047,
0.028834018856287003,
0.003741006599739194,
-0.03728674352169037,
-0.025059280917048454,
0.01904621720314026,
0.01201492827385664,
0.006898003630340099,
-0.0020954206120222807,
0.011564195156097412,
0.01499158889055252,
0.04197831451892853,
-0.005535443313419819,
-0.01440226100385189,
-0.03362324461340904,
-0.018720820546150208,
0.027967875823378563,
0.00824872124940157,
0.04158218950033188,
0.010534913279116154,
-0.01330039743334055,
0.09258466958999634,
-0.0432768352329731,
0.04207179695367813,
-0.07441718876361847,
-0.05052275210618973,
0.003354161512106657,
0.03294181823730469,
0.06529867649078369,
0.044741999357938766,
-0.021794360131025314,
-0.044334813952445984,
0.028877513483166695,
0.044595301151275635,
0.05953814089298248,
0.016838589683175087,
-0.041357334703207016,
-0.014438974671065807,
0.031034525483846664,
0.020541677251458168,
-0.024636123329401016,
-0.03908109664916992,
0.013759658671915531,
0.04766879230737686,
0.02365610934793949,
0.024981090798974037,
-0.03261258080601692,
0.024590352550148964,
-0.03777588903903961,
-0.06104675307869911,
0.03979947417974472,
0.025337839499115944,
0.014223943464457989,
0.01683644764125347,
-0.015188917517662048,
0.04125192388892174,
0.01834500953555107,
0.02060133032500744,
0.006176827475428581,
-0.04915776476264,
0.01335359737277031,
0.030963070690631866,
0.06328962743282318,
-0.03264724463224411,
0.05650995299220085,
-0.004951743874698877,
-0.000020227065760991536,
0.041948288679122925,
-0.04724157974123955,
0.016208559274673462,
0.08754497766494751,
0.030045824125409126,
-0.014565627090632915,
0.01917172782123089,
0.004747271537780762,
0.04616553336381912,
0.033211641013622284,
-0.01025156956166029,
0.06885318458080292,
-0.013727600686252117,
0.046632617712020874,
0.0694405734539032,
0.039763014763593674,
-0.004646524786949158,
0.027063293382525444,
0.07571408152580261,
0.003624663921073079,
0.010702230967581272,
0.048094846308231354,
-0.03453837335109711,
0.01921243406832218,
-0.03727146238088608,
0.010616629384458065,
-0.026032036170363426,
-0.0056327045895159245,
0.058123476803302765,
0.010642671957612038,
-0.04201322793960571,
-0.018733184784650803,
-0.00027622972265817225,
0.009758519940078259,
-0.0062392824329435825,
-0.010453308001160622,
0.0017058666562661529,
0.004867487587034702,
-0.005469478666782379,
-0.007895990274846554,
-0.0845448225736618,
-0.0837082713842392,
-0.026960136368870735,
-0.014717066660523415,
-0.019697822630405426,
-0.07015612721443176,
-0.043066684156656265,
-0.07141395658254623,
-0.012819749303162098,
0.019807379692792892,
-0.021623950451612473,
0.0025297850370407104,
-0.05746188387274742,
0.010570494458079338,
-0.05107152462005615,
-0.015298154205083847,
-0.05456098914146423,
-0.06504801660776138,
-0.03885432332754135,
-0.05738642066717148,
0.03201930969953537,
0.021181104704737663,
0.035145021975040436,
-0.003642536234110594,
-0.0036376151256263256,
-0.021693581715226173,
-0.037945933640003204,
0.05541076511144638,
0.046997442841529846,
-0.0175107903778553,
-0.04384550824761391,
0.012699251994490623,
-0.0041213249787688255,
0.026313912123441696,
0.010181494057178497,
-0.03360826522111893,
0.08294542878866196,
0.06173569709062576,
-0.008131868205964565,
-0.006879081949591637,
-0.0064787897281348705,
-0.04610169678926468,
-0.04247202351689339,
-0.049166448414325714,
-0.049062758684158325,
-0.016104433685541153,
-0.047186415642499924,
-0.029518095776438713,
-0.009518777020275593,
-0.01185327023267746,
-0.016121303662657738,
-0.03404881805181503,
-0.0017221333691850305,
0.03751325607299805,
0.08351323753595352,
0.006492406129837036,
0.03801949694752693,
-0.05753421410918236,
-0.02019905112683773,
0.04848535358905792,
0.021643390879034996,
0.011653381399810314,
-0.07010442018508911,
-0.024484077468514442,
0.008030971512198448,
0.009555138647556305,
0.0015543531626462936,
-0.00013776733248960227,
0.06147462874650955,
0.03422161191701889,
-0.005962739232927561,
0.030008241534233093,
-0.02868243120610714,
-0.019798969849944115,
-0.03785272687673569,
0.004447684157639742,
-0.01154309045523405,
-0.021904507651925087,
0.01739473268389702,
0.0007076332694850862,
0.010799923911690712,
-0.05500784143805504,
-0.05227584019303322,
-0.03596242889761925,
-0.004149876534938812,
0.05424930527806282,
0.001800944795832038,
-0.04975370317697525,
-0.03366050496697426,
-0.0686071440577507,
0.010822699405252934,
0.03944863751530647,
-0.013158044777810574,
0.008614122867584229,
0.028017178177833557,
0.03436550870537758,
-0.0017441639211028814,
0.038106221705675125,
0.03941114619374275,
0.06031127646565437,
0.01644991897046566,
-0.045811887830495834,
0.001487533445470035,
-0.02566440775990486,
0.040086597204208374,
0.008750541135668755,
-0.014571724459528923,
-0.03367030620574951,
-0.10053134709596634,
-0.028082098811864853,
0.023330911993980408,
-0.0184332262724638,
0.00509456405416131,
0.030287330970168114,
-0.01638607308268547,
-0.008120064623653889,
0.001403432572260499,
-0.003904531942680478,
0.050569504499435425,
-0.04065937548875809,
0.0575253926217556,
-0.0060577415861189365,
0.02415389008820057,
-0.0430990494787693,
0.027175670489668846,
-0.015573564916849136,
-0.012858066707849503,
-0.0038841506466269493,
0.030419254675507545,
0.04587400332093239,
0.06752938777208328,
0.053348343819379807,
0.01806635409593582,
-0.06306372582912445,
0.032586559653282166,
0.05969852954149246,
-0.038881685584783554,
-0.07299483567476273,
-0.028941452503204346,
0.02175641432404518,
-0.010353123769164085,
0.014244641177356243,
-0.007972914725542068,
0.019064469262957573,
0.058507006615400314,
-0.018246011808514595,
-0.01967640407383442,
0.0000378329714294523,
-0.00824864860624075,
-0.032608650624752045,
-0.022071292623877525,
-0.0032398970797657967,
0.014354558661580086,
-0.016188936308026314,
0.004755942150950432,
0.04377567023038864,
0.024669120088219643,
0.0458342470228672,
0.06426326185464859,
-0.007808932568877935,
-0.046204205602407455,
0.05452944338321686,
0.005226715002208948,
-0.02384094148874283,
-0.08799956738948822,
-0.028586173430085182,
0.023362385109066963,
0.03478807955980301,
0.010245832614600658,
-0.06364838778972626,
0.013436725363135338,
0.026344241574406624,
-0.06976783275604248,
0.0533134862780571,
-0.008055402897298336,
0.015220060013234615,
0.04047219082713127,
0.01604943349957466,
0.03543253615498543,
-0.036990124732255936,
-0.02909691259264946,
0.0063187554478645325,
0.038871485739946365,
-0.012418611906468868,
-0.026505714282393456,
-0.022043298929929733,
0.03435317799448967,
0.04220815375447273,
0.06073341518640518,
0.037123601883649826,
-0.048755086958408356,
-0.06982765346765518,
-0.0413547083735466,
0.022602785378694534,
-0.038331884890794754,
-0.0019174321787431836,
0.04927073046565056,
0.045948147773742676,
-0.058230817317962646,
-0.04874086752533913,
-0.03150713071227074,
-0.012279222719371319,
0.031453873962163925,
0.011460797861218452,
-0.020164305344223976,
-0.010644609108567238,
0.04359792172908783,
-0.006465703248977661,
-0.02947869710624218,
-0.06362184137105942,
0.011364087462425232,
0.016953403130173683,
0.0061838035471737385,
0.02781665325164795,
0.03211910277605057,
0.05805336683988571,
0.06446405500173569,
0.0384940542280674,
0.01084811333566904,
-0.043684691190719604,
0.030850229784846306,
-0.03917054459452629,
-0.027520187199115753,
0.003832836402580142,
-0.07161024212837219,
0.0030096613336354494,
-0.01922439970076084,
-0.022943682968616486,
-0.04035060107707977,
-0.023600339889526367,
0.02071458101272583,
0.006239917129278183,
0.0021673685405403376,
0.012908552773296833,
0.05288201943039894,
0.005623412784188986,
-0.049262531101703644,
-0.031700145453214645,
-0.02358403429389,
-0.06143376603722572,
-0.06252222508192062,
0.03640040010213852,
-0.007627096027135849,
0.010867810808122158,
0.018512604758143425,
0.05138480290770531,
0.0306022260338068,
0.025936037302017212,
-0.02782154083251953,
0.022375963628292084,
0.0037119395565241575,
-0.0423918180167675,
0.012234838679432869,
0.015419223345816135,
0.010556265711784363,
0.05912601575255394,
-0.014154954813420773,
0.02693655528128147,
-0.0017773739527910948,
-0.02669084258377552,
-0.021139124408364296,
0.010233855806291103,
0.030151015147566795,
-0.04419247806072235,
-0.024902982637286186,
0.009930837899446487,
-0.03245797008275986,
0.026385273784399033,
-0.01827290840446949,
-0.021049249917268753,
-0.017044639214873314,
0.005343213677406311,
0.03372376784682274,
-0.011751741170883179,
-0.05528989061713219,
0.028262685984373093,
-0.04843289405107498,
0.04408610984683037,
-0.07076146453619003,
0.024826450273394585,
-0.03931710496544838,
0.03586582839488983,
-0.018147798255085945,
-0.008043826557695866,
-0.0372517965734005,
0.04466792941093445,
0.015865135937929153,
-0.027331819757819176,
-0.03626760467886925,
0.03544119372963905,
-0.010783124715089798,
0.025981415063142776,
-0.021449338644742966,
0.01745372824370861,
-0.007806260138750076,
0.036515455693006516,
-0.012515847571194172,
0.03591587021946907,
-0.0122709134593606,
0.04674283787608147,
-0.03960981220006943,
-0.0003185872337780893,
-0.033294808119535446,
-0.03549231216311455,
0.020115645602345467,
0.041376933455467224,
0.026425886899232864,
0.02032964862883091,
-0.01444863248616457,
0.01785302348434925,
0.013232441619038582,
-0.04012513905763626,
-0.03375577926635742,
0.007772010285407305,
0.01490542758256197,
0.02089141309261322,
0.052288517355918884,
0.03229581192135811,
-0.0724140927195549,
-0.036065831780433655,
0.060812510550022125,
0.005048403982073069,
0.024133771657943726,
-0.0012848158366978168,
0.03583604469895363,
0.034185975790023804,
0.05059647560119629,
-0.046629078686237335,
0.01952940970659256,
0.002478209789842367,
-0.008337822742760181,
0.02589019201695919,
-0.0292108952999115,
0.024418246001005173,
0.021456262096762657,
-0.044775113463401794,
-0.016891201958060265,
0.07278676331043243,
0.03510057553648949,
-0.008365173824131489,
-0.02684490568935871,
-0.03911912068724632,
0.0375848188996315,
0.00039924634620547295,
-0.04445160925388336,
0.01853051595389843,
0.021512793377041817,
-0.016755040735006332,
0.06278292089700699,
-0.035992395132780075,
0.009060390293598175,
0.03925347328186035,
0.05630169436335564,
-0.023160740733146667,
0.06579763442277908,
-0.01379454880952835,
0.060408130288124084,
0.03655121847987175,
-0.07082419097423553,
-0.014899092726409435,
-0.0539015494287014,
0.08721292018890381,
-0.07098856568336487,
0.07880760729312897,
0.04164431616663933,
0.008685608394443989,
0.030058525502681732,
-0.017053086310625076,
-0.04671637713909149,
-0.013334782794117928,
-0.04880683124065399,
0.07407192140817642,
0.006433707196265459,
-0.04639774188399315,
0.06750116497278214,
0.022976743057370186,
-0.05785543844103813,
0.053445737808942795,
0.024690760299563408,
0.01893763616681099,
0.0007530601578764617,
0.04798569157719612,
-0.05105194076895714,
0.016468966379761696,
-0.06163816154003143,
0.0536193810403347,
-0.0509813092648983,
-0.0031169273424893618,
0.026486892253160477,
-0.05365433543920517,
-0.022413859143853188,
0.04852108657360077,
-0.01386531163007021,
-0.015090232715010643,
0.03615839406847954,
-0.05725653097033501,
-0.06733864545822144,
0.012308292090892792,
-0.0077491989359259605,
0.02356923744082451,
0.012030016630887985,
-0.03428012132644653,
0.03480207547545433,
0.038426924496889114,
0.013453896157443523,
-0.03462417796254158,
0.009652027860283852,
0.02320735529065132,
-0.037928905338048935,
-0.02632082626223564,
0.053086064755916595,
0.013643018901348114,
-0.035346869379282,
0.0027682625222951174,
0.003772932570427656,
0.0038931427989155054,
0.024805352091789246,
0.01449088379740715,
0.01669282093644142,
-0.05566598102450371,
-0.03437725082039833,
0.030241599306464195,
-0.01825883984565735,
0.027126755565404892,
-0.03264874219894409,
0.00842822901904583,
0.021324222907423973,
0.018077891319990158,
0.0028475793078541756,
-0.03726239502429962,
0.014167498797178268,
0.033986564725637436,
-0.0558825358748436,
0.001963180722668767,
0.004831845406442881,
-0.05290791764855385,
-0.027099179103970528,
-0.03222430869936943,
-0.01887957751750946,
0.007976628839969635,
-0.02944815717637539,
-0.01533269789069891,
0.05364736542105675,
0.015473220497369766,
-0.05475768446922302,
-0.1009068638086319,
-0.005728402175009251,
-0.040926214307546616,
0.03299763426184654,
0.026942254975438118,
-0.04897530749440193,
-0.011705989018082619,
-0.03147213160991669,
-0.05387727543711662,
0.06399466097354889,
0.040481094270944595,
-0.02349746599793434,
0.06174546480178833,
0.04933811351656914,
-0.018325200304389,
0.010408127680420876,
0.003848641412332654,
-0.056090347468853,
0.004146420396864414,
0.02522658184170723,
0.02221515029668808,
0.025501621887087822,
0.0071037509478628635,
-0.022430945187807083,
-0.021794481202960014,
-0.027481181547045708,
-0.04617365822196007,
-0.02519524097442627,
0.02782587893307209,
0.07098675519227982
] |
ArBert/bert-base-uncased-finetuned-ner-kmeans-twitter | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
metrics:
- accuracy
model-index:
- name: distillbert-base-uncased-finetuned-clinc
results: []
---
<!-- 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. -->
# distillbert-base-uncased-finetuned-clinc
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.7720
- Accuracy: 0.9181
## 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.2887 | 0.7419 |
| 3.7868 | 2.0 | 636 | 1.8753 | 0.8371 |
| 3.7868 | 3.0 | 954 | 1.1570 | 0.8961 |
| 1.6927 | 4.0 | 1272 | 0.8573 | 0.9129 |
| 0.9056 | 5.0 | 1590 | 0.7720 | 0.9181 |
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Tokenizers 0.13.3
| [
-0.02276688627898693,
-0.000853907607961446,
-0.029725197702646255,
0.046326398849487305,
0.0390293262898922,
0.011814677156507969,
-0.02106883004307747,
-0.011945835314691067,
-0.0352192148566246,
0.058428939431905746,
0.016497211530804634,
-0.0132320960983634,
0.011185450479388237,
0.05223321169614792,
-0.009239019826054573,
-0.041700683534145355,
-0.00510709872469306,
-0.01419624499976635,
-0.04961474984884262,
-0.002878823084756732,
0.011499551124870777,
-0.011362302117049694,
0.004391677211970091,
-0.00666319252923131,
-0.0011092619970440865,
0.020359065383672714,
0.018365658819675446,
0.020927149802446365,
0.0472344271838665,
-0.06475520879030228,
0.008991919457912445,
-0.048530951142311096,
-0.053578931838274,
-0.01488479319959879,
-0.01722516305744648,
0.000046724457206437364,
0.013313866220414639,
0.028799911960959435,
0.012049808166921139,
0.03640313446521759,
0.0030728077981621027,
0.014935395680367947,
0.014826265163719654,
-0.011141336522996426,
0.056963905692100525,
0.010959255509078503,
-0.02954542264342308,
-0.007808484137058258,
0.04164048284292221,
-0.018007395789027214,
-0.07409392297267914,
-0.055212464183568954,
-0.032461293041706085,
0.03637980297207832,
-0.008619418367743492,
0.0009471898665651679,
-0.07636231929063797,
0.008824119344353676,
0.04848627373576164,
-0.04489731043577194,
-0.03000483848154545,
0.026814458891749382,
-0.07641399651765823,
0.004777346737682819,
0.021710049360990524,
-0.023457041010260582,
0.006850254721939564,
-0.04978865012526512,
0.039446547627449036,
-0.022880887612700462,
0.056515004485845566,
-0.013792790472507477,
0.012593032792210579,
-0.06775606423616409,
-0.021244186908006668,
0.0010721473954617977,
0.03400569409132004,
0.04929220303893089,
-0.02986077219247818,
0.03165215626358986,
0.04380849748849869,
-0.006888700183480978,
0.052203428000211716,
-0.03479951247572899,
-0.00017229464720003307,
0.02705943025648594,
-0.034427572041749954,
0.0010872490238398314,
0.02960340864956379,
0.02231461927294731,
-0.042209893465042114,
-0.03588081896305084,
-0.049617160111665726,
-0.037776220589876175,
-0.0114181162789464,
0.01421311218291521,
0.02557685598731041,
0.026085929945111275,
0.03189079836010933,
0.02060711197555065,
0.03802876174449921,
0.038480035960674286,
-0.018260013312101364,
0.06792453676462173,
-0.005403244402259588,
-0.01135189551860094,
0.006618380080908537,
-0.03159511461853981,
-0.04289155825972557,
0.031184708699584007,
0.040635526180267334,
-0.021739162504673004,
-0.026442091912031174,
0.02973097376525402,
0.003913066815584898,
-0.009910414926707745,
0.06786461174488068,
-0.025182025507092476,
-0.01287503819912672,
-0.029530227184295654,
0.009009141474962234,
0.02973497472703457,
-0.007738417945802212,
0.004540623631328344,
-0.02903287298977375,
-0.013440038077533245,
-0.04245734587311745,
-0.019337058067321777,
-0.014709267765283585,
0.028866183012723923,
0.020970087498426437,
0.06444404274225235,
0.026367787271738052,
-0.08250489830970764,
0.0005091322236694396,
0.01673477329313755,
-0.051874756813049316,
0.047865111380815506,
0.02012866549193859,
0.11359894275665283,
-0.06406957656145096,
-0.04990442097187042,
0.00543534429743886,
0.005510971415787935,
-0.04361249506473541,
0.013837634585797787,
0.012567579746246338,
-0.0503259040415287,
-0.012428843416273594,
0.01818586140871048,
0.07028630375862122,
-0.04224136844277382,
-0.008313638158142567,
0.05142512917518616,
0.0007323615718632936,
0.03528081253170967,
-0.06605325639247894,
-0.03582208976149559,
0.009820625185966492,
-0.01889832876622677,
-0.05105869472026825,
0.05551948398351669,
-0.023842887952923775,
-0.02215900458395481,
-0.021913306787610054,
-0.04794248566031456,
-0.005371248349547386,
0.06941249221563339,
-0.013814041391015053,
-0.028949422761797905,
-0.02177167311310768,
0.02342904545366764,
0.037476927042007446,
0.047852084040641785,
-0.0318097323179245,
0.03401922807097435,
0.05744592472910881,
0.03994974121451378,
-0.011842763982713223,
0.023193994536995888,
0.019317330792546272,
-0.03073890320956707,
-0.024715814739465714,
0.013242901302874088,
0.0014412335585802794,
-0.0366985909640789,
0.0512220673263073,
0.007934043183922768,
0.00047167984303086996,
-0.07512436807155609,
-0.048600826412439346,
0.04461932182312012,
0.008411689661443233,
0.001500478247180581,
0.005438969936221838,
-0.004225987009704113,
-0.010334229096770287,
0.0363374724984169,
-0.01148222852498293,
0.017544157803058624,
-0.00805508904159069,
-0.0401545874774456,
0.009821033105254173,
-0.03140227496623993,
0.023863816633820534,
0.05826110020279884,
-0.004833364859223366,
0.095827117562294,
-0.031611811369657516,
0.018300795927643776,
-0.06086253002285957,
-0.032784417271614075,
0.030350977554917336,
0.0630277469754219,
0.048719219863414764,
0.04937390610575676,
-0.003973922226577997,
-0.028856907039880753,
0.032420091331005096,
0.06434302031993866,
0.03997078537940979,
0.003375474363565445,
-0.04250609502196312,
-0.02132743038237095,
0.04254017025232315,
0.045147642493247986,
-0.04197705537080765,
-0.010618356987833977,
-0.011519408784806728,
0.011775105260312557,
-0.012775908224284649,
0.016605626791715622,
-0.021215884014964104,
0.041137322783470154,
-0.049047138541936874,
-0.055739302188158035,
0.0618368424475193,
0.02201707474887371,
-0.0018079025903716683,
0.03008205071091652,
0.028487153351306915,
0.013476175256073475,
0.010610517114400864,
0.01981738954782486,
-0.0034585727844387293,
-0.04460736736655235,
0.014527574181556702,
0.0020810572896152735,
0.051074009388685226,
-0.05171056464314461,
0.037671592086553574,
-0.022692495957016945,
0.0281206164509058,
0.035496484488248825,
-0.04069280996918678,
0.015353609807789326,
0.04401692375540733,
0.02541857585310936,
-0.026455068960785866,
0.029886534437537193,
0.023820500820875168,
0.04649047553539276,
0.041210372000932693,
0.009043083526194096,
0.056881196796894073,
-0.008489794097840786,
0.04241059720516205,
0.06440921127796173,
0.011514210142195225,
0.03529547527432442,
0.012120974250137806,
0.0589819960296154,
0.015306380577385426,
-0.023172160610556602,
0.036540549248456955,
-0.05217470973730087,
0.026492778211832047,
-0.05408481881022453,
-0.002807163866236806,
-0.025037167593836784,
-0.021760545670986176,
0.04456149786710739,
0.04020170122385025,
-0.031753696501255035,
-0.009175507351756096,
0.017171377316117287,
-0.004715355113148689,
0.01793023757636547,
0.005360958632081747,
-0.002239108318462968,
0.00025210363673977554,
-0.019667277112603188,
-0.029966041445732117,
-0.05837869271636009,
-0.0492546483874321,
-0.02177196741104126,
-0.02060891129076481,
-0.016167588531970978,
-0.09113140404224396,
-0.009523607790470123,
-0.0928957611322403,
-0.020700041204690933,
0.028405524790287018,
0.024918317794799805,
-0.022321315482258797,
-0.0368419773876667,
0.018957598134875298,
-0.05632469058036804,
-0.04385808855295181,
-0.06271659582853317,
-0.05207846686244011,
-0.05189630389213562,
-0.07473966479301453,
0.04671931266784668,
0.02613745629787445,
0.012553446926176548,
-0.0014655467821285129,
0.02922018989920616,
-0.004163523204624653,
-0.03162134811282158,
0.04569515585899353,
0.06666249781847,
-0.03604435920715332,
-0.04732116311788559,
0.023206228390336037,
-0.01063829381018877,
0.016050653532147408,
0.019293954595923424,
-0.027605894953012466,
0.08644814789295197,
0.07993736118078232,
0.020465917885303497,
0.04135960713028908,
-0.003204974113032222,
-0.054659195244312286,
-0.06154628470540047,
-0.016204876825213432,
-0.057348210364580154,
0.0038384110666811466,
-0.037569206207990646,
-0.042488306760787964,
-0.023688679561018944,
-0.045071493834257126,
0.002463374752551317,
-0.011529291979968548,
0.012050379998981953,
0.011759323999285698,
0.04246086999773979,
0.020681926980614662,
0.030631987378001213,
-0.03856039047241211,
-0.049442093819379807,
0.059962961822748184,
0.008630231954157352,
0.010301061905920506,
-0.08057118207216263,
-0.01204746589064598,
0.032295167446136475,
0.027131684124469757,
0.005448615178465843,
-0.004824656527489424,
0.0713585838675499,
-0.00393031258136034,
0.007894998416304588,
0.014275656081736088,
-0.012760456651449203,
-0.004083800595253706,
0.00878373347222805,
-0.011736330576241016,
0.012056740932166576,
-0.010637897998094559,
-0.02797209471464157,
-0.0028630003798753023,
0.04328824579715729,
-0.04792659357190132,
-0.054809361696243286,
0.009517333470284939,
0.028812116011977196,
0.0478702150285244,
-0.0068048154935240746,
-0.04635252058506012,
-0.014984623529016972,
-0.09259618818759918,
-0.0012655019527301192,
0.02356170117855072,
0.013586278073489666,
0.002279256470501423,
0.036161649972200394,
0.008399014361202717,
-0.01583637110888958,
0.019536316394805908,
0.061201490461826324,
0.06024738773703575,
0.00312654091976583,
-0.07696906477212906,
-0.013842025771737099,
-0.03301684558391571,
0.012923606671392918,
-0.0008588865748606622,
-0.02086458168923855,
-0.017308315262198448,
-0.08938585221767426,
-0.05524291843175888,
-0.00816688034683466,
0.007403182797133923,
-0.013734810054302216,
0.01209292933344841,
0.0009023196762427688,
-0.03208880499005318,
0.020513679832220078,
0.015819933265447617,
0.040791407227516174,
-0.032302629202604294,
0.07105973362922668,
-0.02204456366598606,
0.009946032427251339,
-0.0523638054728508,
-0.0025435027200728655,
-0.05871034413576126,
-0.01856791414320469,
0.015187106095254421,
0.05236498638987541,
-0.01968134380877018,
0.0467354916036129,
0.06662732362747192,
0.035626694560050964,
-0.04847163334488869,
0.024222813546657562,
0.06815432012081146,
-0.04547381401062012,
-0.05218018963932991,
0.011896939016878605,
0.0008256753208115697,
-0.01613704115152359,
-0.0004774907720275223,
-0.007822390645742416,
0.04269822686910629,
0.030470745638012886,
0.005000696983188391,
0.022973204031586647,
-0.011962193064391613,
-0.008308165706694126,
-0.03765934333205223,
-0.05484352633357048,
-0.01568594016134739,
0.010482875630259514,
-0.021699976176023483,
0.028797956183552742,
0.030389267951250076,
0.024693965911865234,
0.0718379095196724,
0.03568412363529205,
-0.022764820605516434,
-0.01552727073431015,
0.028195369988679886,
0.007179656066000462,
-0.02360411360859871,
-0.06310366839170456,
-0.029949363321065903,
0.01379570085555315,
0.055220283567905426,
-0.020901011303067207,
-0.0553118959069252,
0.007784492801874876,
0.05362794175744057,
-0.02763957902789116,
0.07067959755659103,
-0.0010787739884108305,
0.05520801246166229,
0.05078645050525665,
0.0020048092119395733,
0.029072947800159454,
-0.029785772785544395,
-0.0005972927901893854,
-0.0015437211841344833,
0.05530441179871559,
-0.03291192650794983,
-0.030518395826220512,
-0.03439587727189064,
0.018468348309397697,
0.04843410104513168,
0.0438196174800396,
0.03875843808054924,
-0.04691988229751587,
-0.03833961859345436,
0.008726098574697971,
0.02945602498948574,
-0.037804845720529556,
0.0020329488907009363,
0.02791004814207554,
0.015862930566072464,
-0.04002876579761505,
-0.03753109276294708,
-0.04454004392027855,
-0.027745215222239494,
0.03473880514502525,
-0.0020164023153483868,
-0.05297651141881943,
-0.03805804252624512,
0.042251285165548325,
-0.01564161106944084,
-0.026227541267871857,
-0.07788844406604767,
0.05380391329526901,
-0.0014051481848582625,
-0.0041594370268285275,
0.07430414855480194,
0.023098986595869064,
0.030874544754624367,
0.06433302909135818,
0.045137617737054825,
0.0039054607041180134,
-0.03760138154029846,
0.035006579011678696,
-0.042614031583070755,
-0.025449085980653763,
0.014488723129034042,
-0.028225144371390343,
-0.03796300292015076,
-0.006570673082023859,
-0.06643512099981308,
-0.054437823593616486,
-0.017364729195833206,
0.007460345048457384,
0.005103308241814375,
-0.024335477501153946,
-0.003177807666361332,
0.025119410827755928,
-0.007012947462499142,
-0.037979643791913986,
-0.032662417739629745,
-0.03672550991177559,
-0.056044187396764755,
-0.049204397946596146,
-0.00834751594811678,
0.010512352921068668,
0.01994905434548855,
0.024238280951976776,
0.015834055840969086,
0.007433787919580936,
0.03209894523024559,
-0.06244342029094696,
0.014945832081139088,
0.019302422180771828,
-0.03753003105521202,
-0.01885927841067314,
0.04005376622080803,
0.027879027649760246,
0.027363041415810585,
-0.02066061832010746,
0.04514429718255997,
0.003983185160905123,
-0.013316367752850056,
-0.02000097930431366,
0.030248058959841728,
0.025260310620069504,
-0.0620172917842865,
-0.027918178588151932,
-0.014714514836668968,
-0.019190998747944832,
0.03276554495096207,
-0.036231111735105515,
-0.030041033402085304,
0.02860909327864647,
0.001740763895213604,
0.03903723508119583,
-0.03651393949985504,
-0.012600421905517578,
0.028028033673763275,
0.001174955046735704,
0.022044969722628593,
-0.043741438537836075,
0.06777837872505188,
-0.06865843385457993,
0.026065198704600334,
-0.023520324379205704,
0.013625092804431915,
-0.027986062690615654,
0.031131327152252197,
-0.0340886265039444,
-0.029068389907479286,
0.0006657983758486807,
0.05427307263016701,
-0.033123929053545,
0.02355000749230385,
-0.033286962658166885,
0.03912904113531113,
-0.028020106256008148,
0.07137056440114975,
-0.039287764579057693,
0.0135250398889184,
-0.051156315952539444,
0.019197208806872368,
-0.033551961183547974,
0.01976584829390049,
-0.005983822513371706,
-0.005013851914554834,
0.038145631551742554,
0.0640387237071991,
0.03557733818888664,
0.03113396465778351,
0.0009342870907858014,
-0.017652709037065506,
0.01354928407818079,
-0.0665917694568634,
-0.02451060153543949,
-0.021770566701889038,
0.00012131418770877644,
-0.01934121549129486,
0.05419282615184784,
0.030149562284350395,
-0.036614369601011276,
-0.07810235768556595,
0.047288913279771805,
0.026945579797029495,
-0.002877236343920231,
0.005568808410316706,
0.03836395591497421,
0.01020816434174776,
0.029336757957935333,
-0.02785303071141243,
-0.009990047663450241,
0.001556106493808329,
-0.046494193375110626,
0.01912745088338852,
-0.004189515486359596,
0.04395671561360359,
0.01862051524221897,
-0.032851409167051315,
-0.013050274923443794,
0.05416116118431091,
0.016020629554986954,
0.0227269995957613,
-0.007946166209876537,
-0.049916788935661316,
0.030107170343399048,
0.0019119414500892162,
-0.04555379971861839,
0.035109054297208786,
0.01645362749695778,
-0.04569767042994499,
0.06806422770023346,
0.010485400445759296,
0.01823626086115837,
0.044141773134469986,
0.03824087977409363,
-0.01429007202386856,
0.07282097637653351,
-0.044425953179597855,
0.01870381273329258,
0.03257545083761215,
-0.08179962635040283,
-0.014129704795777798,
-0.05567295104265213,
0.04987068846821785,
-0.058609843254089355,
0.02194380573928356,
0.06402968615293503,
0.0037807864136993885,
0.02852720394730568,
-0.05949975922703743,
-0.06347868591547012,
0.01856914535164833,
-0.028908537700772285,
0.054481882601976395,
0.007469305768609047,
-0.06920972466468811,
0.05706414207816124,
0.00931161642074585,
-0.06733594834804535,
0.032439351081848145,
0.026195818558335304,
0.05837734416127205,
0.025811318308115005,
0.04920966178178787,
-0.04223482310771942,
0.007083958014845848,
-0.03332020714879036,
0.016382267698645592,
-0.06009169667959213,
-0.004427142441272736,
0.03937612101435661,
-0.04609628766775131,
-0.019648797810077667,
0.0401943102478981,
-0.0038013013545423746,
-0.003762544132769108,
0.05752505734562874,
-0.038167208433151245,
-0.014983201399445534,
0.011899012140929699,
0.01820404827594757,
-0.04223717376589775,
-0.00783682893961668,
-0.026319051161408424,
0.0010030890116468072,
0.017439473420381546,
0.005154959391802549,
-0.0153304198756814,
-0.025109948590397835,
0.03706572204828262,
-0.04443710669875145,
-0.036250196397304535,
0.022687364369630814,
0.003269352950155735,
-0.02166854776442051,
0.040993355214595795,
0.024995850399136543,
0.01299578882753849,
0.013345210812985897,
-0.00870970357209444,
0.03405572101473808,
-0.035258952528238297,
-0.009576147422194481,
0.013531986624002457,
-0.020209098234772682,
0.028618739917874336,
-0.0017297466984018683,
0.044416870921850204,
0.06218818202614784,
0.028774507343769073,
0.0010267829056829214,
-0.03283004090189934,
-0.027726763859391212,
0.009915097616612911,
-0.0339762382209301,
0.007527420297265053,
-0.005118825472891331,
-0.03471122682094574,
-0.029078222811222076,
0.009062687866389751,
-0.014223569072782993,
0.03364607319235802,
-0.08216269314289093,
0.004905154928565025,
0.0392000637948513,
-0.0019781715236604214,
-0.0501708947122097,
-0.09134485572576523,
-0.0030570507515221834,
-0.052297331392765045,
-0.0021459839772433043,
0.04412255808711052,
-0.03313985466957092,
0.038845244795084,
-0.0403817780315876,
-0.031341634690761566,
0.03961849957704544,
0.029106508940458298,
-0.06406453251838684,
0.06280412524938583,
0.049811773002147675,
-0.047952622175216675,
0.016126040369272232,
0.012570779770612717,
-0.05406508967280388,
0.014073207974433899,
0.010486111044883728,
0.004239031579345465,
0.02251577377319336,
0.011196776293218136,
-0.059450145810842514,
-0.022239049896597862,
-0.06404103338718414,
-0.03819414600729942,
-0.045131243765354156,
0.003178494982421398,
0.053800638765096664
] |
ArBert/roberta-base-finetuned-ner-agglo-twitter | [
"pytorch",
"tensorboard",
"roberta",
"token-classification",
"transformers",
"generated_from_trainer",
"license:mit",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"RobertaForTokenClassification"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 12 | null | ---
tags:
- FrozenLake-v1-4x4-no_slippery
- q-learning
- reinforcement-learning
- custom-implementation
model-index:
- name: q-FrozenLake-v1-4x4-noSlippery
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: FrozenLake-v1-4x4-no_slippery
type: FrozenLake-v1-4x4-no_slippery
metrics:
- type: mean_reward
value: 1.00 +/- 0.00
name: mean_reward
verified: false
---
# **Q-Learning** Agent playing1 **FrozenLake-v1**
This is a trained model of a **Q-Learning** agent playing **FrozenLake-v1** .
## Usage
```python
model = load_from_hub(repo_id="Auruur/q-FrozenLake-v1-4x4-noSlippery", filename="q-learning.pkl")
# Don't forget to check if you need to add additional attributes (is_slippery=False etc)
env = gym.make(model["env_id"])
```
| [
-0.01708490028977394,
-0.01745593175292015,
-0.006480598356574774,
0.03032723069190979,
0.05238805711269379,
-0.017617344856262207,
-0.011361910030245781,
-0.010859576985239983,
-0.05878554657101631,
0.05422504246234894,
-0.001507918699644506,
-0.009179334156215191,
0.024056565016508102,
0.0365513451397419,
-0.0469977930188179,
-0.0430535227060318,
-0.01391563843935728,
-0.01660083420574665,
-0.03206401690840721,
-0.005793007090687752,
-0.02751380018889904,
0.00979646760970354,
-0.026721946895122528,
0.025820989161729813,
0.026310106739401817,
0.027173494920134544,
-0.0037766173481941223,
0.030608901754021645,
0.0284668430685997,
-0.05290260910987854,
-0.019338183104991913,
-0.03140653297305107,
-0.026757296174764633,
-0.024062512442469597,
-0.003656017128378153,
-0.029469115659594536,
-0.00262331310659647,
0.010673115029931068,
0.012132076546549797,
0.01186902541667223,
-0.02309112437069416,
0.022114166989922523,
0.0009194131125696003,
-0.028274450451135635,
0.01325303316116333,
-0.00940451119095087,
-0.025836829096078873,
0.00485620740801096,
0.01908602938055992,
-0.024305369704961777,
-0.07803740352392197,
-0.07649307698011398,
-0.005664513912051916,
0.008299476467072964,
-0.02379598841071129,
-0.03350028395652771,
-0.05634239688515663,
0.011458325199782848,
0.07581628859043121,
-0.059842709451913834,
-0.039656881242990494,
0.004769965074956417,
-0.05009502172470093,
0.005159244406968355,
0.011520969681441784,
-0.03225410729646683,
-0.003726222086697817,
-0.06451229006052017,
-0.0009894749382510781,
-0.022832604125142097,
0.07712452858686447,
-0.03338705375790596,
0.005477095488458872,
-0.07499309629201889,
0.012673928402364254,
-0.0045440359972417355,
-0.004486490972340107,
0.04093509912490845,
-0.03438350185751915,
0.06615924835205078,
0.027622157707810402,
0.006480622570961714,
0.03242761641740799,
-0.02001994661986828,
0.007470428012311459,
0.018566597253084183,
-0.05725977197289467,
-0.006291282828897238,
0.0059237671084702015,
0.041664008051157,
-0.024757971987128258,
-0.020969681441783905,
-0.03054940514266491,
-0.010244968347251415,
0.009498651139438152,
0.02591617777943611,
0.03018277883529663,
0.0020559881813824177,
0.04432198032736778,
0.00511020515114069,
0.03475518897175789,
0.00936772208660841,
-0.005786114372313023,
0.08317545801401138,
0.002464159857481718,
-0.017891867086291313,
-0.014952769502997398,
-0.010989722795784473,
-0.03389454632997513,
0.020873725414276123,
0.018573632463812828,
-0.045949023216962814,
-0.018880927935242653,
0.04839413985610008,
0.01740437000989914,
0.02077997289597988,
0.08254554122686386,
-0.03611093759536743,
-0.045892760157585144,
-0.07678204774856567,
0.06334496289491653,
0.009968191385269165,
0.02242423966526985,
-0.03166492283344269,
-0.03778386488556862,
0.0019974922761321068,
-0.050545599311590195,
-0.02796759270131588,
-0.02575015090405941,
0.047376133501529694,
0.002237508073449135,
0.042726658284664154,
0.007004873361438513,
-0.05310496315360069,
0.022398406639695168,
0.011932557448744774,
-0.08722633868455887,
0.03841192275285721,
-0.013564866036176682,
0.12497222423553467,
-0.05899462476372719,
-0.06103695556521416,
0.011349106207489967,
0.013571841642260551,
-0.04170338809490204,
0.00017764457152225077,
-0.02514144964516163,
-0.04639844596385956,
-0.036342982202768326,
-0.017595462501049042,
0.05546857416629791,
-0.059581439942121506,
-0.011997206136584282,
0.050230786204338074,
0.007552907336503267,
0.05735163390636444,
-0.016277888789772987,
0.02000005543231964,
0.0075789508409798145,
-0.01687016151845455,
-0.013624725863337517,
0.043943848460912704,
-0.016896361485123634,
-0.004840752575546503,
-0.02970830537378788,
-0.041718993335962296,
0.018287580460309982,
0.09012576192617416,
-0.016166232526302338,
-0.002177343238145113,
-0.028088748455047607,
0.01687377132475376,
0.03552277013659477,
-0.0018121167086064816,
-0.01111878827214241,
0.03500165790319443,
0.07004275918006897,
0.03609376400709152,
-0.03865022584795952,
0.022449174895882607,
0.037292081862688065,
-0.022881992161273956,
-0.02287159115076065,
0.032032087445259094,
0.0053164297714829445,
-0.0074297282844781876,
0.03101699985563755,
0.018766380846500397,
0.0005673485575243831,
-0.04592626914381981,
-0.018151525408029556,
0.03484582155942917,
0.001828894135542214,
-0.0007414831779897213,
-0.014052528887987137,
0.008579973131418228,
-0.015816286206245422,
0.04643657058477402,
-0.016179433092474937,
-0.028242897242307663,
-0.04980244114995003,
-0.03627792373299599,
0.04313019663095474,
0.0050154151394963264,
-0.00784745067358017,
0.02164926752448082,
-0.010101274587213993,
0.09682203084230423,
-0.030148284509778023,
0.008629084564745426,
-0.05327358469367027,
-0.028935901820659637,
0.01217556744813919,
0.045073993504047394,
0.02270417846739292,
0.04167802259325981,
-0.011504956521093845,
-0.04926029220223427,
0.038605112582445145,
0.05296969413757324,
0.055345065891742706,
0.0014378970954567194,
-0.018036743625998497,
-0.02148471027612686,
0.012826983816921711,
0.04129026085138321,
-0.045379310846328735,
-0.01522531732916832,
0.028311552479863167,
0.05949940159916878,
-0.009277164936065674,
0.0003072399995289743,
-0.03736397251486778,
0.009757979772984982,
-0.06464596092700958,
-0.0688629075884819,
0.039330076426267624,
0.04968104884028435,
0.018831908702850342,
0.03344321623444557,
0.019754614681005478,
0.015366843901574612,
0.014308949001133442,
0.024531004950404167,
0.010941057465970516,
-0.044062208384275436,
0.00831335224211216,
0.01735801063477993,
0.05390085279941559,
-0.03899780660867691,
0.03450007736682892,
-0.002485052915289998,
0.014146232977509499,
0.0425487719476223,
-0.057947803288698196,
0.03340744227170944,
0.0684662014245987,
0.027326466515660286,
-0.011838296428322792,
0.017275111749768257,
0.007584976032376289,
0.02732257731258869,
0.035332102328538895,
-0.02954116091132164,
0.05353042855858803,
-0.00530850887298584,
0.02586396224796772,
0.07790626585483551,
0.012839141301810741,
-0.006636985577642918,
0.02586456574499607,
0.07095715403556824,
0.016999350860714912,
0.005391301587224007,
0.02834904007613659,
-0.04343133792281151,
0.04856855049729347,
-0.048708751797676086,
-0.014973676763474941,
-0.022046547383069992,
-0.0028601149097085,
0.05267729610204697,
0.05167617276310921,
-0.04415678605437279,
0.004675034433603287,
0.009563913568854332,
-0.019672559574246407,
0.023510420694947243,
-0.03098256327211857,
0.004075102973729372,
0.008552971296012402,
0.016524452716112137,
-0.0005466750590130687,
-0.08005103468894958,
-0.07952213287353516,
-0.033803313970565796,
-0.00470711337402463,
-0.006155925802886486,
-0.06928656995296478,
-0.02773286961019039,
-0.06227189674973488,
-0.01605795882642269,
0.01586787961423397,
0.018900591880083084,
-0.0002654979471117258,
-0.044108614325523376,
0.023364389315247536,
-0.04522247239947319,
-0.01395884808152914,
-0.06457352638244629,
-0.04188194125890732,
-0.05492476746439934,
-0.06874161958694458,
0.03536903113126755,
0.021615570411086082,
0.032301560044288635,
0.026596488431096077,
-0.002728274092078209,
-0.050165750086307526,
-0.01986602693796158,
0.048803333193063736,
0.03110744059085846,
-0.028684653341770172,
-0.057257503271102905,
0.036128461360931396,
-0.004470294341444969,
-0.0008570356876589358,
-0.024135347455739975,
-0.02558104135096073,
0.08098234236240387,
0.055617135018110275,
0.012667260132730007,
-0.011887072585523129,
-0.01971735619008541,
-0.042137376964092255,
-0.034771878272295,
-0.017898252233862877,
-0.03527446091175079,
-0.002931025344878435,
-0.041312720626592636,
-0.0229804664850235,
0.002601800486445427,
-0.02452058531343937,
-0.01716475933790207,
-0.008672243915498257,
-0.016418680548667908,
0.0422094389796257,
0.06866682320833206,
0.028671709820628166,
0.05285593122243881,
-0.054009810090065,
-0.02452395111322403,
0.05710885673761368,
-0.00010531613224884495,
0.006174788344651461,
-0.07775741070508957,
-0.031983617693185806,
0.051499076187610626,
-0.011699759401381016,
0.017678454518318176,
-0.02203257381916046,
0.09123706817626953,
-0.0031582810916006565,
-0.036208510398864746,
0.03121352754533291,
-0.023659739643335342,
-0.007427304517477751,
-0.03879285231232643,
-0.010717863216996193,
-0.032064974308013916,
-0.034860458225011826,
-0.012047750875353813,
0.013027036562561989,
0.01573360338807106,
-0.057486873120069504,
-0.042963188141584396,
-0.011936957947909832,
0.030883247032761574,
0.05081191658973694,
-0.0013742524897679687,
-0.04248170927166939,
0.0017477941000834107,
-0.06599530577659607,
-0.0060175079852342606,
0.019859684631228447,
0.01956498995423317,
0.020658591762185097,
0.025268590077757835,
0.03583483770489693,
-0.025930464267730713,
0.04763583093881607,
0.02306116558611393,
0.03711116686463356,
0.006456818897277117,
-0.06423436850309372,
0.007551348768174648,
0.004429374355822802,
0.057917773723602295,
-0.0055137877352535725,
-0.010902175679802895,
-0.03532944992184639,
-0.09316613525152206,
-0.012325000017881393,
0.006770689971745014,
-0.05496233329176903,
-0.0007293187081813812,
0.033202268183231354,
-0.017087718471884727,
-0.00008589680510340258,
-0.01485401950776577,
0.011629951186478138,
0.04792705550789833,
-0.05689171329140663,
0.030804280191659927,
-0.008949680253863335,
0.04532459378242493,
-0.026928286999464035,
0.04204371199011803,
-0.021172231063246727,
-0.0009764476562850177,
0.014204800128936768,
0.033974792808294296,
0.03581710532307625,
0.08784118294715881,
0.04898129031062126,
0.016656244173645973,
-0.04490871727466583,
0.062379516661167145,
0.06046095862984657,
-0.05354781821370125,
-0.05361056700348854,
-0.0037145749665796757,
0.028176000341773033,
-0.003958995919674635,
-0.018329394981265068,
0.00940366555005312,
0.01636812835931778,
0.04705610126256943,
-0.009547160007059574,
-0.0008763804798945785,
-0.005842504091560841,
-0.024261513724923134,
-0.033030569553375244,
-0.043195657432079315,
0.017584217712283134,
0.037779223173856735,
0.0047130766324698925,
0.030256671831011772,
0.05065390467643738,
0.04901990666985512,
0.044073350727558136,
0.0569625124335289,
-0.045606303960084915,
-0.05092310532927513,
0.03347121179103851,
0.012224211357533932,
-0.01888994313776493,
-0.062298763543367386,
-0.018279163166880608,
0.03658555820584297,
0.0335775762796402,
-0.017267636954784393,
-0.04931781440973282,
0.014284029603004456,
0.06959085911512375,
-0.0556085929274559,
0.07316812127828598,
-0.021316152065992355,
0.02635159157216549,
0.056210845708847046,
-0.0028454242274165154,
0.017856232821941376,
-0.006868346128612757,
-0.0019079800695180893,
-0.004293977748602629,
0.03396594896912575,
0.0017052087932825089,
-0.022185761481523514,
-0.030515242367982864,
0.02493050880730152,
0.019042011350393295,
0.03404086083173752,
0.03863418102264404,
-0.03492007032036781,
-0.06590507924556732,
-0.016255922615528107,
0.044180624186992645,
-0.014563286677002907,
0.015471700578927994,
0.029328081756830215,
0.014623277820646763,
-0.08069780468940735,
-0.034530095756053925,
-0.02376137487590313,
-0.006382575258612633,
0.003515803487971425,
0.015767579898238182,
-0.039335139095783234,
-0.030403925105929375,
0.03943338617682457,
-0.015969160944223404,
-0.025071943178772926,
-0.0703464224934578,
0.04120945557951927,
-0.019775625318288803,
0.02215922437608242,
0.061874501407146454,
0.01854228600859642,
0.04437541216611862,
0.04692551866173744,
0.011560054495930672,
0.005826772190630436,
-0.03168740123510361,
0.041391026228666306,
-0.005595390219241381,
-0.018780268728733063,
-0.005635583773255348,
-0.058659251779317856,
0.002625252353027463,
-0.03403748571872711,
-0.03729882836341858,
-0.042705047875642776,
-0.024882666766643524,
0.03885749727487564,
0.02229410596191883,
-0.0023242563474923372,
-0.006143990904092789,
0.042222149670124054,
-0.003942789975553751,
-0.035192668437957764,
-0.044780369848012924,
-0.017290035262703896,
-0.045926954597234726,
-0.05458841845393181,
0.001198235317133367,
0.020170433446764946,
0.012771405279636383,
0.03298559784889221,
0.04489298164844513,
0.029163409024477005,
0.017867300659418106,
-0.020434081554412842,
0.00432269461452961,
-0.00359710562042892,
-0.025817831978201866,
-0.014816365204751492,
0.004704623483121395,
0.02535744197666645,
0.04079284146428108,
-0.007120715919882059,
-0.004558708053082228,
0.016464877873659134,
-0.02025889977812767,
-0.0175692867487669,
0.023916000500321388,
0.009981553070247173,
-0.04716985300183296,
0.0029220834840089083,
-0.015609340742230415,
-0.055433474481105804,
-0.0020324308425188065,
-0.033599261194467545,
-0.03455273434519768,
-0.022516325116157532,
-0.012647961266338825,
0.026091070845723152,
-0.02931048534810543,
-0.040390029549598694,
0.011603377759456635,
-0.04447079449892044,
0.03587885946035385,
-0.050521381199359894,
0.041708946228027344,
-0.008840961381793022,
0.0018173374701291323,
-0.020452825352549553,
-0.020373376086354256,
-0.06872664391994476,
0.062098778784275055,
-0.025458581745624542,
-0.030893413349986076,
-0.03212623670697212,
0.03026975505053997,
-0.000060662183386739343,
0.03157425671815872,
-0.0015234582824632525,
0.040369126945734024,
-0.028126776218414307,
0.057908058166503906,
-0.03948604315519333,
0.0138557692989707,
-0.019584067165851593,
0.014887871220707893,
-0.037680305540561676,
-0.004542134236544371,
-0.0245851781219244,
-0.04010932147502899,
0.019330177456140518,
0.04503518342971802,
0.032399874180555344,
0.02587415650486946,
0.00867450051009655,
0.022710084915161133,
0.025125950574874878,
-0.021175222471356392,
-0.05470768362283707,
-0.009475422091782093,
0.009785475209355354,
0.013712706975638866,
0.0688977986574173,
0.034818459302186966,
-0.06725183874368668,
-0.04446624219417572,
0.06854251027107239,
0.04284054413437843,
0.028176426887512207,
-0.00674237497150898,
0.013245857320725918,
0.03948662430047989,
0.015705199912190437,
-0.06296209245920181,
0.013750274665653706,
0.009500773623585701,
-0.0041328174993395805,
0.02726729027926922,
0.005547250621020794,
0.031123466789722443,
0.01540351565927267,
-0.042146939784288406,
-0.011912424117326736,
0.050726719200611115,
0.07438839226961136,
0.007309161592274904,
-0.019362296909093857,
-0.04265482723712921,
0.027419259771704674,
0.005490262992680073,
-0.025106389075517654,
-0.003802887164056301,
0.005406583659350872,
-0.02889223024249077,
0.0696885958313942,
-0.02520069107413292,
0.011250020936131477,
0.04944763705134392,
0.06785308569669724,
-0.0034752902574837208,
0.08320724964141846,
-0.011174806393682957,
0.026403743773698807,
0.052406709641218185,
-0.0872451439499855,
-0.006134808994829655,
-0.03867189958691597,
0.07370588928461075,
-0.0989266037940979,
0.06567014008760452,
0.040965721011161804,
-0.00883297249674797,
0.021972952410578728,
-0.022321287542581558,
-0.061569273471832275,
-0.00004046239337185398,
-0.04701518639922142,
0.06308530271053314,
0.011832966469228268,
-0.05784210190176964,
0.06889541447162628,
0.03194861486554146,
-0.06834282726049423,
0.04107638821005821,
0.03235400468111038,
0.0299261212348938,
-0.0027067409828305244,
0.03581390157341957,
-0.06094304844737053,
0.008032652549445629,
-0.046744368970394135,
0.06493926048278809,
-0.06465373188257217,
-0.009131701663136482,
-0.013524327427148819,
-0.040052205324172974,
-0.019787251949310303,
0.033665772527456284,
0.005100042559206486,
-0.0027957619167864323,
0.04482436180114746,
-0.0713624358177185,
-0.07113992422819138,
0.006879214663058519,
0.017309565097093582,
-0.009807651862502098,
0.011753170751035213,
-0.0248222928494215,
0.02203616127371788,
0.02839943952858448,
0.009579336270689964,
-0.019109785556793213,
-0.015790905803442,
0.02113836444914341,
-0.06851571053266525,
-0.029499579221010208,
0.025842245668172836,
-0.014884215779602528,
-0.04767296090722084,
0.01669210195541382,
0.006816104520112276,
0.020780611783266068,
0.00205202866345644,
-0.005998335313051939,
0.0179451871663332,
-0.08437574654817581,
-0.017095115035772324,
0.01594698429107666,
0.007259754464030266,
0.018196268007159233,
-0.027784783393144608,
0.025128474459052086,
0.0523047149181366,
0.027670547366142273,
-0.003116089617833495,
-0.012844379059970379,
0.00816484447568655,
0.025276977568864822,
-0.02410062775015831,
0.03353951498866081,
0.00601643230766058,
-0.03595169633626938,
-0.0326305627822876,
-0.022885728627443314,
-0.0316074937582016,
0.024287432432174683,
-0.03015030547976494,
-0.006890724878758192,
-0.0040031676180660725,
-0.010818957351148129,
-0.05839063227176666,
-0.09566792100667953,
-0.03076276369392872,
-0.047090258449316025,
0.02209262177348137,
0.036903370171785355,
-0.05086742341518402,
0.003897995688021183,
-0.021996133029460907,
-0.03687705099582672,
0.05482892319560051,
0.006986232474446297,
-0.018893886357545853,
0.06913913786411285,
0.04920552298426628,
-0.00257404544390738,
0.011950027197599411,
0.025755301117897034,
-0.05664875730872154,
0.004956385586410761,
0.002789478050544858,
0.027363082394003868,
0.05977759137749672,
0.0028216843493282795,
-0.01996598020195961,
-0.028997601941227913,
-0.04625951871275902,
-0.029392419382929802,
-0.03356045112013817,
0.004504966549575329,
0.06566715985536575
] |
ArBert/roberta-base-finetuned-ner-gmm | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
tags:
- Taxi-v3
- q-learning
- reinforcement-learning
- custom-implementation
model-index:
- name: Taxi-v3
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: Taxi-v3
type: Taxi-v3
metrics:
- type: mean_reward
value: 7.48 +/- 2.74
name: mean_reward
verified: false
---
# **Q-Learning** Agent playing1 **Taxi-v3**
This is a trained model of a **Q-Learning** agent playing **Taxi-v3** .
## Usage
```python
model = load_from_hub(repo_id="aliakyurek/Taxi-v3", filename="q-learning.pkl")
# Don't forget to check if you need to add additional attributes (is_slippery=False etc)
env = gym.make(model["env_id"])
```
| [
-0.019226204603910446,
-0.01578659377992153,
-0.007142023183405399,
0.025190001353621483,
0.04620936140418053,
-0.002224592724815011,
-0.018786543980240822,
0.0068841129541397095,
-0.03907844424247742,
0.05570538341999054,
0.01868187077343464,
-0.007418252527713776,
0.01223562192171812,
0.023883068934082985,
-0.05405138432979584,
-0.04119198024272919,
-0.0020810957066714764,
-0.013012222945690155,
-0.02039385586977005,
-0.0021710090804845095,
-0.019147291779518127,
0.007190496660768986,
-0.020766006782650948,
0.02481582574546337,
-0.0021644257940351963,
0.022394003346562386,
-0.017602168023586273,
0.04890346899628639,
0.023773252964019775,
-0.06723388284444809,
-0.003878793679177761,
-0.030483786016702652,
-0.053992558270692825,
-0.013474710285663605,
-0.011618951335549355,
-0.032198648899793625,
0.010928540490567684,
0.025317294523119926,
-0.008539567701518536,
0.026933830231428146,
-0.016293738037347794,
0.025718865916132927,
0.03732363507151604,
-0.042983897030353546,
0.023904554545879364,
-0.02140997163951397,
-0.00037873582914471626,
-0.002334766322746873,
0.02419748343527317,
-0.012399607338011265,
-0.09687040001153946,
-0.06784886866807938,
-0.016830693930387497,
0.017981385812163353,
-0.025106750428676605,
-0.035379476845264435,
-0.021979114040732384,
-0.014969504438340664,
0.06535783410072327,
-0.07291249185800552,
-0.03615891560912132,
0.015719546005129814,
-0.06785064935684204,
-0.005107198376208544,
-0.0009176188614219427,
-0.024648938328027725,
0.004431440029293299,
-0.06212609261274338,
0.005993422120809555,
-0.01607859693467617,
0.08093558251857758,
-0.04362080618739128,
0.007779757026582956,
-0.06925802677869797,
0.02081361599266529,
-0.013963405042886734,
-0.004659583326429129,
0.052752092480659485,
-0.04378636181354523,
0.04691276326775551,
0.01846199855208397,
0.03229136019945145,
0.03424052521586418,
-0.01970817707479,
0.006408527959138155,
0.02967393584549427,
-0.034872595220804214,
-0.002737369854003191,
-0.011909041553735733,
0.03364116698503494,
-0.009690806269645691,
-0.019320987164974213,
-0.018093489110469818,
-0.01396134402602911,
-0.0012811495689675212,
0.019875431433320045,
0.03855764865875244,
0.0005970987840555608,
0.05750301852822304,
0.013342470861971378,
0.06357793509960175,
0.008340232074260712,
-0.0010037956526502967,
0.04423649236559868,
0.0015607402892783284,
0.005384882912039757,
0.006350262556225061,
-0.01947346329689026,
-0.021664263680577278,
0.031065793707966805,
0.026149215176701546,
-0.04626168683171272,
-0.04270067811012268,
0.0334642194211483,
0.004418311640620232,
0.019724909216165543,
0.07167963683605194,
-0.034680671989917755,
-0.013249082490801811,
-0.0772494375705719,
0.06917758285999298,
0.00931784138083458,
0.01862003281712532,
-0.022712502628564835,
-0.015938887372612953,
-0.009724446572363377,
-0.06536126881837845,
-0.035852979868650436,
-0.019246751442551613,
0.03901921585202217,
0.0007171273464336991,
0.0495915450155735,
0.0076080868020653725,
-0.0587427131831646,
0.0004361285245977342,
0.009315523318946362,
-0.07875636219978333,
0.028256243094801903,
-0.009977147914469242,
0.1129181981086731,
-0.04271196573972702,
-0.06417063623666763,
-0.004581419285386801,
0.015316429547965527,
-0.009942181408405304,
0.001406702445819974,
-0.013957986608147621,
-0.033826813101768494,
-0.027449611574411392,
-0.013056628406047821,
0.05552103370428085,
-0.06598318368196487,
-0.0501832440495491,
0.05186206474900246,
0.01551042776554823,
0.04374471679329872,
-0.029210465028882027,
0.0279479268938303,
0.0014805106911808252,
-0.01772760972380638,
-0.04832764342427254,
0.0616755448281765,
-0.0297122523188591,
-0.027795784175395966,
-0.03301142528653145,
-0.04386855289340019,
0.008243096061050892,
0.09108058363199234,
0.009707736782729626,
-0.00008061899279709905,
-0.020377758890390396,
0.013293548487126827,
0.01852189376950264,
-0.005873240064829588,
-0.0045803384855389595,
0.026056412607431412,
0.05334824323654175,
0.034474022686481476,
-0.043317537754774094,
0.03333508223295212,
0.03032207116484642,
-0.04674845188856125,
-0.009511752054095268,
0.012036471627652645,
0.005231177434325218,
-0.014942813664674759,
0.026843281462788582,
0.009412013925611973,
-0.010368254967033863,
-0.05404629558324814,
0.012540379539132118,
0.056379660964012146,
0.008566567674279213,
0.021499071270227432,
-0.024723660200834274,
-0.011092036962509155,
-0.036653440445661545,
0.050408121198415756,
-0.003744825953617692,
-0.03790714964270592,
-0.03974619880318642,
-0.02186628058552742,
0.03224192559719086,
0.02157655358314514,
0.002586471615359187,
0.02031807042658329,
-0.022085312753915787,
0.08280012011528015,
-0.03871193155646324,
0.008892701007425785,
-0.05144141986966133,
-0.02575298212468624,
0.018434075638651848,
0.05605087801814079,
0.021673312410712242,
0.03281750902533531,
-0.007034053560346365,
-0.0670396238565445,
0.014469529502093792,
0.04892241209745407,
0.04458946734666824,
-0.008642271161079407,
-0.010865884833037853,
-0.004432120826095343,
0.021256061270833015,
0.043726373463869095,
-0.04568680748343468,
-0.03376811742782593,
0.016679026186466217,
0.06121521815657616,
-0.00903785414993763,
0.003242423525080085,
-0.043476030230522156,
0.013621269725263119,
-0.05547160282731056,
-0.06755488365888596,
0.03780894726514816,
0.04233064875006676,
0.022637397050857544,
0.032137926667928696,
0.005491060204803944,
0.0068436358124017715,
0.015755124390125275,
0.03949945792555809,
0.004420645534992218,
-0.03878328949213028,
0.003875907277688384,
0.041394706815481186,
0.07178947329521179,
-0.041346531361341476,
0.035532090812921524,
0.005427594296634197,
0.00720113655552268,
0.046252526342868805,
-0.06600803136825562,
0.03412267565727234,
0.05913012474775314,
0.015653962269425392,
-0.010170998983085155,
0.013283614069223404,
-0.015161136165261269,
0.017198722809553146,
0.044691286981105804,
-0.028048211708664894,
0.06673793494701385,
-0.008289710618555546,
0.028649967163801193,
0.07125932723283768,
0.027144024148583412,
-0.002689631888642907,
0.023122671991586685,
0.083494633436203,
0.017408475279808044,
-0.0043158335611224174,
0.0339956097304821,
-0.05433857813477516,
0.05694318562746048,
-0.0420122891664505,
0.004037369508296251,
-0.008317884057760239,
-0.022062843665480614,
0.06319443881511688,
0.043470729142427444,
-0.02559637278318405,
0.021615996956825256,
0.001958836568519473,
-0.007542126812040806,
0.02692064829170704,
-0.04108363389968872,
-0.0036529924254864454,
0.027478767558932304,
0.002587648807093501,
-0.0019418885931372643,
-0.07851111888885498,
-0.08479779958724976,
-0.043212682008743286,
-0.015995733439922333,
0.010929361917078495,
-0.05545705184340477,
-0.03967856615781784,
-0.08143562823534012,
-0.019644303247332573,
0.03532910719513893,
0.011048635467886925,
-0.007277484983205795,
-0.08154638111591339,
0.00463554821908474,
-0.0398457795381546,
-0.007548391353338957,
-0.044238727539777756,
-0.04232718423008919,
-0.05854400619864464,
-0.06218172237277031,
0.039799515157938004,
0.02242501638829708,
0.028165971860289574,
0.007751372642815113,
-0.006268101278692484,
-0.041075706481933594,
-0.034729473292827606,
0.037666164338588715,
0.03446907177567482,
-0.011701579205691814,
-0.06635129451751709,
0.020709877833724022,
-0.011283020488917828,
0.007738002575933933,
-0.004959533456712961,
-0.04192066192626953,
0.08550998568534851,
0.05036010593175888,
0.01754748262465,
-0.010406137444078922,
-0.010143021121621132,
-0.05693858861923218,
-0.037097860127687454,
-0.016879655420780182,
-0.03038976527750492,
-0.003363599069416523,
-0.02227272279560566,
-0.03996623307466507,
0.0022247997112572193,
-0.03414557874202728,
-0.009079882875084877,
-0.0077204275876283646,
0.012963613495230675,
0.04020702838897705,
0.06985186040401459,
0.03197291120886803,
0.048646993935108185,
-0.04727356135845184,
-0.02219826728105545,
0.032194849103689194,
0.00434137275442481,
0.0033489579800516367,
-0.0735786184668541,
-0.052136827260255814,
0.04956771060824394,
-0.0037657851353287697,
0.01910269632935524,
-0.01063453033566475,
0.08366616815328598,
-0.0022398291621357203,
-0.018261218443512917,
0.03941987454891205,
-0.014091819524765015,
-0.013083395548164845,
-0.04098404943943024,
0.0064505934715271,
-0.03091454692184925,
-0.032592471688985825,
-0.01753428764641285,
0.021094415336847305,
0.02581329643726349,
-0.05753355473279953,
-0.04585247486829758,
0.014437595382332802,
0.01834745518863201,
0.05814897641539574,
0.00036092885420657694,
-0.061253082007169724,
-0.002288966905325651,
-0.04326373711228371,
-0.0020050336606800556,
0.0077995723113417625,
0.003730481956154108,
0.0070321992971003056,
0.022480836138129234,
0.025855127722024918,
-0.028330698609352112,
0.04051237180829048,
0.013381785713136196,
0.03723077103495598,
0.006756864953786135,
-0.04198913648724556,
-0.006265484262257814,
-0.0030719051137566566,
0.054600924253463745,
0.0021857074461877346,
0.002425580285489559,
-0.028726082295179367,
-0.10915782302618027,
-0.024315711110830307,
0.00408310629427433,
-0.041999831795692444,
0.004557325970381498,
0.051300048828125,
-0.01977933943271637,
-0.00856261420994997,
-0.016182422637939453,
0.013348976150155067,
0.03026965633034706,
-0.052088987082242966,
0.05350109934806824,
-0.01077616959810257,
0.04129591956734657,
-0.03726339712738991,
0.0140259163454175,
-0.02371254377067089,
-0.0003242880920879543,
-0.006052300333976746,
0.025527309626340866,
0.04254266247153282,
0.09403550624847412,
0.06493071466684341,
0.012356792576611042,
-0.035866476595401764,
0.05197750777006149,
0.06781411916017532,
-0.05001804232597351,
-0.04057968407869339,
0.0035081699024885893,
0.016600193455815315,
0.016628896817564964,
-0.010238688439130783,
-0.01638070121407509,
-0.014087305404245853,
0.054919809103012085,
-0.002988188061863184,
-0.0012242249213159084,
-0.00945329386740923,
-0.030581507831811905,
-0.03966398909687996,
-0.05733610689640045,
-0.009477906860411167,
0.044868532568216324,
0.018636129796504974,
0.030893096700310707,
0.05084850639104843,
0.036257967352867126,
0.04513496160507202,
0.04582080617547035,
-0.028978297486901283,
-0.045212388038635254,
0.03902105614542961,
0.013240438885986805,
-0.028343437239527702,
-0.07298067212104797,
-0.05775507166981697,
0.020566077902913094,
0.02106218785047531,
-0.035838350653648376,
-0.05799061432480812,
0.018979253247380257,
0.05135508254170418,
-0.044213030487298965,
0.07230816781520844,
-0.005199819803237915,
0.0158077459782362,
0.06262888014316559,
-0.01764378510415554,
0.029065288603305817,
-0.024135829880833626,
-0.01377501804381609,
0.004681205842643976,
0.021364256739616394,
0.0029534546192735434,
-0.02403298020362854,
-0.03548950329422951,
0.04591546580195427,
0.018794773146510124,
0.051391374319791794,
0.039254769682884216,
-0.02731788158416748,
-0.057790398597717285,
0.00009510794188827276,
0.049574125558137894,
-0.02045672945678234,
-0.007962360978126526,
0.055385202169418335,
0.032055024057626724,
-0.05368344485759735,
-0.03494583070278168,
-0.007343676872551441,
-0.012851054780185223,
0.01546800322830677,
0.010852710343897343,
-0.04347557947039604,
-0.039937958121299744,
0.02292047254741192,
-0.013518872670829296,
-0.023569399490952492,
-0.08386574685573578,
0.040490977466106415,
0.00343593442812562,
0.0235475841909647,
0.0496804341673851,
0.02203265018761158,
0.04871741682291031,
0.03392869606614113,
0.016037147492170334,
-0.00427430123090744,
-0.028527678921818733,
0.049338020384311676,
-0.02953297086060047,
-0.0313984751701355,
0.006834689527750015,
-0.06307353079319,
0.010263396427035332,
-0.01947619952261448,
-0.025918330997228622,
-0.02354176715016365,
-0.017543386667966843,
0.027955330908298492,
0.028277438133955002,
-0.0040644328109920025,
-0.0047521693632006645,
0.03617088124155998,
-0.015336400829255581,
-0.021930161863565445,
-0.02372135780751705,
-0.013353966176509857,
-0.0691845566034317,
-0.06532635539770126,
0.0194773618131876,
0.009570010006427765,
0.015109928324818611,
0.01809467375278473,
0.05704552307724953,
0.04136474430561066,
0.0216849222779274,
-0.03493445739150047,
0.016114741563796997,
-0.003709497395902872,
-0.014564166776835918,
-0.015103647485375404,
0.00849268026649952,
0.02032100223004818,
0.020469898357987404,
-0.012158026918768883,
0.004120807163417339,
0.047294069081544876,
-0.02008359134197235,
-0.017903009429574013,
-0.01555478572845459,
0.0005239036399871111,
-0.04387424513697624,
-0.0035256354603916407,
-0.0104745514690876,
-0.03694045916199684,
0.009983440861105919,
-0.02351454645395279,
-0.04087847098708153,
-0.017708905041217804,
0.006826832424849272,
0.040956903249025345,
-0.02559303492307663,
-0.04465137794613838,
-0.0008799596689641476,
-0.027324948459863663,
0.03640788421034813,
-0.05240129306912422,
0.048741474747657776,
-0.0005886960425414145,
0.005794252268970013,
-0.010604672133922577,
-0.02784358523786068,
-0.06520657986402512,
0.07341370731592178,
-0.005073372274637222,
-0.03457717224955559,
-0.02007295750081539,
0.04042106494307518,
0.0016823632176965475,
0.04096122086048126,
0.00018992483092006296,
0.05211755260825157,
-0.015969811007380486,
0.056875262409448624,
-0.040789082646369934,
0.015907004475593567,
-0.018163133412599564,
0.016870371997356415,
-0.020147031173110008,
0.003006713930517435,
-0.0216170996427536,
-0.033623673021793365,
0.021075526252388954,
0.03843788057565689,
0.05581130087375641,
0.042771853506565094,
-0.01173044741153717,
0.022352827712893486,
0.029111051931977272,
-0.02126191183924675,
-0.03384476900100708,
-0.011773589998483658,
0.03260296955704689,
0.028139378875494003,
0.05885028466582298,
0.0364990271627903,
-0.05539829656481743,
-0.03366371989250183,
0.07201293110847473,
0.034148361533880234,
0.014464207924902439,
0.011602452024817467,
0.021480727940797806,
0.041376762092113495,
0.015236753970384598,
-0.04569251090288162,
0.01201439369469881,
-0.00014816687325946987,
0.0060747344978153706,
0.03003297559916973,
-0.013172456994652748,
0.008420261554419994,
-0.01313707884401083,
-0.046844419091939926,
-0.021977407857775688,
0.05251891911029816,
0.04842400178313255,
0.015127263963222504,
-0.021812595427036285,
-0.03402363508939743,
0.04541594162583351,
-0.015101153403520584,
-0.03928650543093681,
0.010810688138008118,
-0.001310704741626978,
-0.052059099078178406,
0.060926031321287155,
-0.02164921909570694,
0.0040090810507535934,
0.03722807765007019,
0.059309691190719604,
-0.017419997602701187,
0.05928429961204529,
-0.006474649533629417,
0.041384194046258926,
0.05777979642152786,
-0.06965497881174088,
-0.01579652540385723,
-0.022213224321603775,
0.07137438654899597,
-0.07424502819776535,
0.052222833037376404,
0.023798812180757523,
0.011870094574987888,
0.032398395240306854,
-0.026206612586975098,
-0.060073669999837875,
0.0030693658627569675,
-0.061505500227212906,
0.05524340644478798,
0.013523186556994915,
-0.06171516701579094,
0.06878569722175598,
0.02373402565717697,
-0.0571247823536396,
0.04104384034872055,
0.03092215396463871,
0.02599329687654972,
0.012492666020989418,
0.02993885427713394,
-0.04032384976744652,
0.017020519822835922,
-0.044144921004772186,
0.05389968678355217,
-0.04694656282663345,
-0.007794820703566074,
-0.010470070876181126,
-0.043047260493040085,
-0.0106730405241251,
0.03888682648539543,
0.008503319695591927,
-0.016022806987166405,
0.04333111271262169,
-0.05496356263756752,
-0.06511615216732025,
-0.0013403528137132525,
0.013206525705754757,
-0.010081936605274677,
0.019649473950266838,
-0.031937774270772934,
0.021092193201184273,
0.03703899681568146,
0.015234392136335373,
-0.022510575130581856,
-0.011146300472319126,
0.02324427291750908,
-0.07853104174137115,
-0.057442646473646164,
0.04849425330758095,
0.005396831780672073,
-0.0391039103269577,
0.009594455361366272,
-0.0006092559196986258,
0.040889810770750046,
0.026579800993204117,
-0.009795649908483028,
0.013097704388201237,
-0.08188115805387497,
0.003004500176757574,
-0.0018664482049643993,
-0.002194396685808897,
0.019615983590483665,
-0.02814735285937786,
0.033570751547813416,
0.04845346137881279,
0.031657878309488297,
-0.0024847069289535284,
-0.020549660548567772,
-0.00452803960070014,
0.019390229135751724,
-0.050724197179079056,
0.0318397656083107,
0.009551530703902245,
-0.03842012956738472,
-0.04250606149435043,
-0.018917012959718704,
-0.032195717096328735,
0.03383607044816017,
-0.026840124279260635,
0.0004680299898609519,
-0.005631947889924049,
-0.013197483494877815,
-0.06136985868215561,
-0.0912056490778923,
-0.010340848937630653,
-0.04954693838953972,
0.031783103942871094,
0.03773647919297218,
-0.05848956108093262,
0.013001181185245514,
-0.019875353202223778,
-0.059019848704338074,
0.055137235671281815,
0.013045074418187141,
-0.03364342451095581,
0.0522739551961422,
0.07595191150903702,
-0.036594197154045105,
0.025917522609233856,
0.01641237363219261,
-0.02665981464087963,
0.03337343409657478,
0.0034903697669506073,
0.03325917571783066,
0.06872361898422241,
0.013666482642292976,
-0.005069108214229345,
-0.012497592717409134,
-0.04248969256877899,
-0.04478077217936516,
-0.049265775829553604,
-0.012059345841407776,
0.07749839127063751
] |
ArBert/roberta-base-finetuned-ner-kmeans-twitter | [
"pytorch",
"tensorboard",
"roberta",
"token-classification",
"transformers",
"generated_from_trainer",
"license:mit",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"RobertaForTokenClassification"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 10 | null | ---
language:
- en
- es
---
# Model Card for Carpincho-13b
<!-- Provide a quick summary of what the model is/does. -->
This is Carpincho-13B an Instruction-tuned LLM based on LLama-13B. It is trained to answer in colloquial spanish Argentine language.
It's based on LLama-13b (https://huggingface.co/decapoda-research/llama-13b-hf).
## Model Details
The model is provided in ggml format, for use with the llama.cpp CPU-only LLM inference (https://github.com/ggerganov/llama.cpp)
## Usage
Clone the llama.cpp repository:
git clone https://github.com/ggerganov/llama.cpp
Compile the tool:
make
Download the file carpincho-13b-ggml-model-q4_0.bin into the llama.cpp directory and run this command:
./main -m ./carpincho-13b-ggml-model-q4_0.bin -i -ins -t 4
Change -t 4 to the number of physical CPU cores you have.
This model requires at least 8GB of free RAM. No GPU is needed to run llama.cpp.
### Model Description
<!-- Provide a longer summary of what this model is. -->
- **Developed by:** Alfredo Ortega (@ortegaalfredo)
- **Model type:** 13B LLM
- **Language(s):** (NLP): English and colloquial Argentine Spanish
- **License:** Free for non-commercial use, but I'm not the police.
- **Finetuned from model:** https://huggingface.co/decapoda-research/llama-13b-hf
### Model Sources [optional]
<!-- Provide the basic links for the model. -->
- **Repository:** https://huggingface.co/decapoda-research/llama-13b-hf
- **Paper [optional]:** https://arxiv.org/abs/2302.13971
## 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. -->
This is a generic LLM chatbot that can be used to interact directly with humans.
## Bias, Risks, and Limitations
<!-- This section is meant to convey both technical and sociotechnical limitations. -->
This bot is uncensored and may provide shocking answers. Also it contains bias present in the training material.
### 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.
## Model Card Contact
Contact the creator at @ortegaalfredo on twitter/github | [
-0.03156845644116402,
0.009195763617753983,
-0.020723214372992516,
0.02221754938364029,
0.034798864275217056,
0.0017254219856113195,
-0.0033886581659317017,
-0.011147582903504372,
-0.02332303859293461,
0.05265882611274719,
0.03666128218173981,
-0.029616929590702057,
-0.0016016814624890685,
0.02096417546272278,
-0.05648163706064224,
-0.038324180990457535,
0.00013768128701485693,
0.012432634830474854,
-0.045369163155555725,
0.010583941824734211,
-0.003594160545617342,
-0.0008625266491435468,
0.0034166162367910147,
0.011245314963161945,
-0.007765558548271656,
0.009337804280221462,
0.011295046657323837,
0.01807781495153904,
0.006188414990901947,
-0.07715573161840439,
-0.015418076887726784,
-0.037001051008701324,
-0.03139322251081467,
-0.04282079637050629,
-0.018672611564397812,
-0.0009318026714026928,
0.018223879858851433,
0.011995012871921062,
-0.0005233059637248516,
0.042990393936634064,
-0.002880776533856988,
0.02028021775186062,
-0.02706126682460308,
-0.004824608098715544,
0.0362679660320282,
0.019536128267645836,
-0.0326540432870388,
0.004477749578654766,
0.027103638276457787,
-0.00967623945325613,
-0.05757918953895569,
-0.07214033603668213,
0.005282955709844828,
0.023286988958716393,
-0.0043617477640509605,
-0.01490731816738844,
-0.0619998462498188,
-0.021804261952638626,
0.07687453925609589,
-0.045002326369285583,
-0.04567441716790199,
-0.005155995488166809,
-0.11907248198986053,
0.0009358790121041238,
0.03790123388171196,
-0.04337899759411812,
0.027418317273259163,
-0.029659250751137733,
0.02264413796365261,
-0.019342606887221336,
0.06276865303516388,
-0.045242566615343094,
-0.0029109742026776075,
-0.07440681755542755,
-0.002062487183138728,
-0.013902449049055576,
0.0357358455657959,
0.033920932561159134,
-0.04856795817613602,
0.045997072011232376,
0.045770734548568726,
0.01703956164419651,
0.025060096755623817,
-0.04075485095381737,
-0.011799721978604794,
0.05235055461525917,
-0.03702116385102272,
-0.01990673691034317,
0.008517787791788578,
0.01891530677676201,
-0.010153451934456825,
-0.028572864830493927,
-0.03588864207267761,
-0.029281992465257645,
0.009497816674411297,
0.027656912803649902,
0.04143190011382103,
-0.016268691048026085,
0.04025498777627945,
-0.000775595661252737,
0.04306470975279808,
0.0607953779399395,
-0.02154129184782505,
0.06484639644622803,
-0.020643170922994614,
0.011242986656725407,
0.002077709883451462,
-0.048346903175115585,
-0.007294082548469305,
0.03235679864883423,
0.03841305151581764,
-0.030301062390208244,
-0.02799595519900322,
0.05343305319547653,
-0.007147599942982197,
-0.02442670799791813,
0.07526471465826035,
-0.020765993744134903,
-0.060718171298503876,
-0.05512057989835739,
0.04995279759168625,
0.02503838762640953,
-0.03003794699907303,
0.014017770066857338,
-0.07733576744794846,
-0.010009437799453735,
-0.02571231871843338,
-0.029781978577375412,
0.009025538340210915,
-0.011334181763231754,
-0.026178259402513504,
0.044423263520002365,
0.01804330386221409,
-0.06229883059859276,
-0.012130051851272583,
-0.014929676428437233,
-0.02894832007586956,
-0.00860522873699665,
0.00638568727299571,
0.08994642645120621,
-0.052384667098522186,
-0.05978540703654289,
0.0363747663795948,
0.004648155067116022,
-0.01880730874836445,
-0.0025094221346080303,
0.01644059270620346,
-0.0386432409286499,
-0.027945155277848244,
0.008238992653787136,
0.07202804088592529,
-0.062387436628341675,
0.005765825975686312,
0.04381350055336952,
0.03535814210772514,
0.028176525607705116,
-0.0452045276761055,
-0.033049046993255615,
0.021574199199676514,
0.00940210372209549,
-0.008316232822835445,
0.03364861384034157,
-0.015405372716486454,
-0.04188966378569603,
-0.06113903969526291,
-0.03608422353863716,
0.017383957281708717,
0.06792069971561432,
0.000014304582691693213,
-0.018186498433351517,
-0.01789667271077633,
0.032332271337509155,
0.03545989841222763,
0.021661268547177315,
-0.03220146521925926,
0.08424529433250427,
0.0657057836651802,
0.04229510575532913,
-0.017681384459137917,
0.037914078682661057,
0.018863433972001076,
-0.003938577603548765,
-0.042578618973493576,
-0.004224709235131741,
0.005051849409937859,
-0.02834710292518139,
0.012938699685037136,
0.008067249320447445,
-0.013920263387262821,
-0.04016861319541931,
-0.032813940197229385,
0.07749765366315842,
-0.005962916184216738,
0.012423035688698292,
0.006268510594964027,
-0.01474668551236391,
-0.04444993659853935,
0.02885483205318451,
-0.023488808423280716,
-0.010285921394824982,
-0.01594189554452896,
-0.010076113045215607,
0.0028464870993047953,
0.018906300887465477,
0.024880224838852882,
0.08128976076841354,
0.01808982715010643,
0.07503343373537064,
-0.037972480058670044,
0.03174440935254097,
-0.03912923112511635,
-0.035153232514858246,
0.019354045391082764,
0.06383924186229706,
0.040606770664453506,
0.03449198603630066,
0.011134348809719086,
-0.06050955131649971,
0.035900503396987915,
0.08694838732481003,
0.018646515905857086,
-0.015542052686214447,
-0.062272775918245316,
-0.035052914172410965,
0.045830611139535904,
0.0671011358499527,
-0.06542294472455978,
-0.0309476088732481,
0.02489304728806019,
0.019229156896471977,
-0.03769779950380325,
0.034316372126340866,
-0.004921735730022192,
0.05383123457431793,
-0.051809944212436676,
-0.0873890221118927,
0.04159627854824066,
0.029393261298537254,
0.03244901821017265,
0.032762810587882996,
0.02289811708033085,
0.00998266227543354,
0.014881004579365253,
-0.004581694956868887,
-0.01031581498682499,
-0.046605803072452545,
0.020728731527924538,
0.00921357050538063,
0.042933471500873566,
-0.029632549732923508,
0.05104262754321098,
-0.01504233106970787,
0.004876488819718361,
0.052355799823999405,
-0.06003236025571823,
0.0426962710916996,
0.035740409046411514,
0.010156611911952496,
-0.03348923102021217,
0.011042691767215729,
0.016788776963949203,
0.04032199829816818,
0.02657037228345871,
0.00245734304189682,
0.055596377700567245,
0.005122858099639416,
0.023691914975643158,
0.06526456773281097,
0.018011944368481636,
-0.007560950703918934,
0.02965504117310047,
0.06456274539232254,
0.014685344882309437,
-0.027994031086564064,
0.05035654455423355,
-0.057824235409498215,
0.014066479168832302,
-0.05189211666584015,
0.012717733159661293,
-0.01787182316184044,
-0.0013683270663022995,
0.03720741719007492,
0.01639741100370884,
-0.012960434891283512,
0.0005119845736771822,
-0.008619587868452072,
-0.020583659410476685,
0.016287848353385925,
-0.036039792001247406,
-0.03271143510937691,
-0.024627018719911575,
-0.01462174765765667,
0.03856014087796211,
-0.07354225963354111,
-0.029524734243750572,
-0.005536716431379318,
-0.023998025804758072,
0.0009307337459176779,
-0.05729958042502403,
0.004150695167481899,
-0.06226881965994835,
-0.024729115888476372,
0.022180667147040367,
0.009824216365814209,
-0.018488164991140366,
-0.03467051684856415,
0.012698566541075706,
-0.043312396854162216,
-0.028040358796715736,
-0.03280165418982506,
-0.0517277717590332,
-0.02768668532371521,
-0.0744718685746193,
0.0075079938396811485,
0.04457007348537445,
0.02272469364106655,
0.004146002698689699,
0.009624208323657513,
0.01866777241230011,
-0.04068978130817413,
0.046103332191705704,
0.06923076510429382,
-0.02396540902554989,
-0.06725018471479416,
0.01704223081469536,
0.007278874516487122,
0.047195445746183395,
-0.01998085342347622,
-0.018755657598376274,
0.06957444548606873,
0.046129968017339706,
-0.007916916161775589,
0.003621714422479272,
-0.028015898540616035,
-0.043150395154953,
-0.03359002247452736,
-0.027192607522010803,
-0.033773209899663925,
-0.016054967418313026,
-0.01856720633804798,
-0.015701310709118843,
-0.008394751697778702,
-0.04226626083254814,
-0.0094513650983572,
-0.0027084648609161377,
0.019268188625574112,
0.03184167668223381,
0.048533856868743896,
0.0007102361996658146,
0.029211845248937607,
-0.03960387781262398,
-0.031944867223501205,
0.07291664183139801,
0.02625509351491928,
-0.0005691535770893097,
-0.05248699337244034,
-0.028103496879339218,
0.05090997368097305,
0.018977699801325798,
-0.015698324888944626,
-0.020413285121321678,
0.0870576873421669,
0.0036557840649038553,
-0.010543796233832836,
0.03266666829586029,
-0.023393312469124794,
-0.0224217027425766,
0.0007855716394260526,
0.002182543044909835,
-0.03143444284796715,
-0.03219150751829147,
-0.019825652241706848,
0.012065027840435505,
0.04954664409160614,
-0.05336109921336174,
-0.054182957857847214,
0.003737101098522544,
0.023356737568974495,
0.007222840562462807,
0.002384185092523694,
-0.05896393209695816,
0.005904999561607838,
-0.035228487104177475,
-0.006887124385684729,
0.0336182564496994,
-0.015781274065375328,
-0.005012506153434515,
0.06347906589508057,
0.0060256472788751125,
-0.03415516018867493,
0.029518594965338707,
0.040631040930747986,
0.036040544509887695,
0.0005253767594695091,
-0.04758671298623085,
-0.004497211892157793,
-0.007045137230306864,
0.021295364946126938,
0.010763544589281082,
-0.025102728977799416,
-0.01770196482539177,
-0.07935886085033417,
0.003234763629734516,
0.011498752981424332,
-0.03758198022842407,
0.001359002199023962,
0.06118008866906166,
-0.011532197706401348,
0.007958473637700081,
0.010282489471137524,
0.01668240688741207,
0.03672288730740547,
-0.04583466053009033,
0.07447800040245056,
0.004994306247681379,
0.0034092955756932497,
-0.043442994356155396,
-0.003528928617015481,
-0.046278998255729675,
-0.033972617238759995,
0.008601066656410694,
0.05846548452973366,
0.025629419833421707,
0.08737234026193619,
0.07998445630073547,
0.01812223717570305,
-0.06537482887506485,
0.04736321419477463,
0.04898306354880333,
-0.04892171546816826,
-0.035538945347070694,
-0.004264988005161285,
-0.007541940081864595,
-0.010511081665754318,
0.0021765788551419973,
0.009655320085585117,
0.043076250702142715,
0.025532683357596397,
-0.012397284619510174,
0.024862900376319885,
-0.025022923946380615,
-0.01760360412299633,
-0.040271975100040436,
-0.022167347371578217,
-0.021173033863306046,
-0.019982267171144485,
-0.035565245896577835,
0.025875894352793694,
0.016837632283568382,
-0.007054656278342009,
0.03679536283016205,
0.06325595825910568,
-0.011877749115228653,
-0.00919782742857933,
0.021781103685498238,
0.01602334901690483,
-0.02255941368639469,
-0.07553121447563171,
-0.019914695993065834,
0.047817446291446686,
0.04920642077922821,
0.016993002966046333,
-0.07640422135591507,
-0.02167161926627159,
0.05016379430890083,
-0.054338905960321426,
0.02417505532503128,
-0.014830170199275017,
0.019537201151251793,
0.05471218749880791,
-0.011331724002957344,
0.05365033820271492,
-0.0254489965736866,
0.030369805172085762,
-0.007209219504147768,
0.04590899497270584,
0.002890633186325431,
-0.046994276344776154,
-0.07520470768213272,
0.028041517361998558,
0.029794935137033463,
0.06767746806144714,
0.05012325197458267,
-0.01772879809141159,
-0.07733362913131714,
-0.030638618394732475,
0.03982996195554733,
-0.04338909313082695,
0.003631358966231346,
0.03418109938502312,
0.04247569665312767,
-0.06052424758672714,
-0.028526663780212402,
-0.026012998074293137,
0.004377598408609629,
0.022820603102445602,
0.0016916962340474129,
-0.033406276255846024,
-0.018566377460956573,
0.01914297603070736,
-0.023626288399100304,
-0.02952319197356701,
-0.09355544298887253,
0.061307765543460846,
-0.021494999527931213,
-0.023279987275600433,
0.023801295086741447,
0.04507206752896309,
0.02668081969022751,
0.0735221654176712,
0.043797753751277924,
0.000031719013350084424,
-0.05225023627281189,
0.05982278287410736,
-0.050663892179727554,
-0.016559908166527748,
-0.020867398008704185,
-0.062232304364442825,
-0.019029129296541214,
-0.040019940584897995,
-0.03872011974453926,
-0.024951837956905365,
-0.032612476497888565,
0.0321449376642704,
0.02024397812783718,
0.006825956981629133,
-0.002590544754639268,
0.0352940633893013,
-0.02478790655732155,
-0.014946730807423592,
-0.03910407796502113,
-0.019470276311039925,
-0.029229510575532913,
-0.04676200449466705,
0.014005854725837708,
0.009648960083723068,
0.04961348697543144,
-0.0009715122869238257,
0.024948110803961754,
0.014419213868677616,
0.00852631963789463,
-0.03439139574766159,
0.03273535147309303,
-0.009148267097771168,
-0.014468026347458363,
-0.03084079548716545,
0.021320544183254242,
0.005212549120187759,
0.040247105062007904,
-0.04267187789082527,
0.020115695893764496,
0.022582149133086205,
-0.017728928476572037,
0.01899212785065174,
0.022915584966540337,
0.05277302861213684,
-0.05355418846011162,
-0.03342431038618088,
-0.018479907885193825,
-0.06906023621559143,
0.014044133946299553,
-0.003505630185827613,
-0.03668592870235443,
-0.039049550890922546,
-0.0347144640982151,
0.035054370760917664,
0.00422738678753376,
-0.03623657301068306,
0.006866644136607647,
-0.025854649022221565,
0.022183986380696297,
-0.03365752473473549,
0.06358092278242111,
-0.06024855747818947,
0.022458244115114212,
-0.019245674833655357,
-0.01127714291214943,
-0.038898419588804245,
0.03518801927566528,
-0.018639959394931793,
-0.03001457080245018,
-0.01009728666394949,
0.016245685517787933,
-0.02823491021990776,
0.029807845130562782,
-0.027155723422765732,
-0.0006490078521892428,
-0.042464323341846466,
0.055512625724077225,
-0.04233410954475403,
0.025355296209454536,
-0.0397784449160099,
0.026629142463207245,
-0.033593934029340744,
0.008933806791901588,
-0.01813044771552086,
-0.02554303966462612,
0.02996186353266239,
0.06339464336633682,
0.05102954059839249,
0.04198960214853287,
-0.007661857176572084,
-0.01481169555336237,
-0.007984485477209091,
-0.06779705733060837,
-0.023811854422092438,
0.005554130766540766,
0.012644627131521702,
0.049909807741642,
0.036101680248975754,
0.07160105556249619,
-0.06324591487646103,
-0.06091298162937164,
0.04810294508934021,
0.024148494005203247,
0.017247399315238,
0.011688959784805775,
0.04166371375322342,
0.003444876754656434,
0.03614509105682373,
-0.03358621150255203,
0.0005985278403386474,
-0.002124585211277008,
-0.023738399147987366,
0.023313304409384727,
-0.0076597766019403934,
0.024700358510017395,
0.0023075644858181477,
-0.024928444996476173,
-0.013146418146789074,
0.062254492193460464,
0.024646930396556854,
-0.0050160931423306465,
0.0038711773231625557,
-0.046826355159282684,
0.019355885684490204,
-0.015125671401619911,
-0.04657641425728798,
0.045402295887470245,
0.0059088305570185184,
-0.02699669823050499,
0.06907544285058975,
-0.01571560837328434,
-0.014416567049920559,
0.03986125439405441,
0.036139197647571564,
-0.022726818919181824,
0.038203805685043335,
-0.030637826770544052,
-0.013053162023425102,
0.030660780146718025,
-0.060682665556669235,
-0.009877070784568787,
-0.03953750431537628,
0.06255435198545456,
-0.051040057092905045,
0.05722798779606819,
0.03546992316842079,
-0.009567375294864178,
0.013256133534014225,
-0.01578129641711712,
-0.06002059206366539,
0.007528326008468866,
-0.04342833533883095,
0.07316955178976059,
0.01108961645513773,
-0.060433436185121536,
0.07359019666910172,
0.028420891612768173,
-0.060915712267160416,
0.023228587582707405,
0.03218035399913788,
0.04535407945513725,
0.04008197411894798,
0.04431040212512016,
-0.040108829736709595,
0.0397312268614769,
-0.03313090279698372,
0.0645122304558754,
-0.042782414704561234,
-0.029348352923989296,
0.01849733479321003,
-0.016263017430901527,
-0.012644168920814991,
0.027207043021917343,
-0.013177362270653248,
-0.02554658241569996,
0.0568106435239315,
-0.08692315220832825,
-0.06347738206386566,
0.006713883485645056,
0.016662895679473877,
-0.023318471387028694,
-0.005080891773104668,
-0.02166927233338356,
0.04064970463514328,
0.0044806781224906445,
0.0016102909576147795,
-0.04143569990992546,
0.0031194002367556095,
0.023548150435090065,
-0.04786451533436775,
-0.04503019526600838,
0.02569752186536789,
-0.003346121869981289,
-0.02821420319378376,
0.011892695911228657,
-0.00041016345494426787,
0.04345199465751648,
0.010966495610773563,
0.006547589786350727,
0.016186047345399857,
-0.0720469281077385,
-0.007177819963544607,
0.03149206191301346,
0.0024791089817881584,
0.010400313884019852,
-0.010316286236047745,
0.004416977055370808,
0.02172791212797165,
0.046559080481529236,
-0.004192287102341652,
-0.0338122621178627,
0.0031008406076580286,
0.05168618634343147,
-0.030095869675278664,
0.0267261303961277,
-0.016719844192266464,
-0.05100560560822487,
-0.022452104836702347,
0.006876417901366949,
-0.006582171656191349,
0.023963645100593567,
-0.04790500923991203,
-0.0021062802989035845,
0.030362797901034355,
-0.012779324315488338,
-0.014100459404289722,
-0.09953644126653671,
-0.030321598052978516,
-0.042824018746614456,
0.00048343266826123,
0.03216272592544556,
-0.05040683597326279,
0.03446951508522034,
-0.04791782796382904,
-0.043618954718112946,
0.04504053294658661,
0.01390391867607832,
-0.05975145101547241,
0.02305332012474537,
0.05559995025396347,
-0.048132918775081635,
0.001261708908714354,
0.03564674034714699,
-0.04069080576300621,
0.0008296447340399027,
0.012476976029574871,
0.011629287153482437,
0.058500535786151886,
-0.0147149208933115,
-0.0239137951284647,
-0.003276063362136483,
-0.05181806907057762,
-0.017740469425916672,
-0.04623502492904663,
0.00369834853336215,
0.0705241784453392
] |
ArJakusz/DialoGPT-small-starky | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | 2023-05-18T09:43:02Z | ---
language:
- sw
license: apache-2.0
tags:
- whisper-event
- generated_from_trainer
datasets:
- mozilla-foundation/common_voice_11_0
metrics:
- wer
model-index:
- name: Whisper Small Swahili
results:
- task:
name: Automatic Speech Recognition
type: automatic-speech-recognition
dataset:
name: mozilla-foundation/common_voice_11_0 sw
type: mozilla-foundation/common_voice_11_0
config: sw
split: test
args: sw
metrics:
- name: Wer
type: wer
value: 23.724554196406032
---
<!-- 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. -->
# Whisper Small Swahili
This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the mozilla-foundation/common_voice_11_0 sw dataset.
It achieves the following results on the evaluation set:
- Loss: 0.6442
- Wer: 23.7246
## 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: 32
- eval_batch_size: 16
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_steps: 500
- training_steps: 5000
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss | Wer |
|:-------------:|:-----:|:----:|:---------------:|:-------:|
| 0.2694 | 1.07 | 1000 | 0.5438 | 26.8354 |
| 0.2306 | 3.02 | 2000 | 0.5081 | 23.9231 |
| 0.0467 | 4.09 | 3000 | 0.5648 | 24.4085 |
| 0.0239 | 6.03 | 4000 | 0.5994 | 23.8634 |
| 0.0123 | 7.1 | 5000 | 0.6442 | 23.7246 |
### Framework versions
- Transformers 4.30.0.dev0
- Pytorch 2.0.1+cu117
- Datasets 2.12.1.dev0
- Tokenizers 0.13.3
| [
-0.03711697459220886,
-0.015733128413558006,
-0.021587958559393883,
0.039717260748147964,
0.0515705831348896,
0.03143751993775368,
-0.0032665953040122986,
-0.00980380643159151,
-0.019197579473257065,
0.0817754864692688,
0.03735128045082092,
-0.05205522105097771,
0.0043227290734648705,
0.027406927198171616,
-0.036291204392910004,
-0.046714793890714645,
-0.027374137192964554,
-0.03425596281886101,
-0.04320758953690529,
0.002003447152674198,
0.005557458847761154,
0.009755647741258144,
-0.001636550179682672,
0.025210065767169,
-0.013210056349635124,
0.029741859063506126,
-0.011655752547085285,
0.005137822590768337,
0.023949865251779556,
-0.05625878646969795,
-0.02284584939479828,
-0.03789394721388817,
-0.04677046462893486,
-0.040660228580236435,
-0.016146425157785416,
0.007918143644928932,
-0.0018754092743620276,
0.017428988590836525,
0.04220668599009514,
0.039801012724637985,
-0.014623397961258888,
0.010181581601500511,
0.006036994978785515,
0.00022453407291322947,
0.061417728662490845,
-0.008135897107422352,
-0.022563643753528595,
-0.030177872627973557,
0.024919142946600914,
-0.035601694136857986,
-0.04869861900806427,
-0.04313994571566582,
-0.019946293905377388,
0.02925040014088154,
-0.03406912088394165,
-0.038611121475696564,
-0.050368454307317734,
-0.02106177806854248,
0.06565215438604355,
-0.06436681747436523,
-0.036788176745176315,
0.013857428915798664,
-0.05530234053730965,
0.008545302785933018,
0.031970106065273285,
-0.04131801053881645,
0.02610904723405838,
-0.031039854511618614,
0.034535687416791916,
-0.037783678621053696,
0.042036544531583786,
-0.030697287991642952,
0.001549880369566381,
-0.09375067055225372,
-0.023780174553394318,
-0.020916860550642014,
0.04454590380191803,
0.06653537601232529,
-0.04843712970614433,
0.06585560739040375,
0.02517019957304001,
0.013470353558659554,
0.042201656848192215,
-0.003750124480575323,
0.040439411997795105,
0.048124853521585464,
-0.04359752684831619,
0.02373308502137661,
-0.012784779071807861,
0.03862830251455307,
-0.03276832029223442,
-0.04099831357598305,
-0.014056862331926823,
-0.051403164863586426,
0.005288129206746817,
0.040816836059093475,
0.03730446472764015,
-0.015794653445482254,
0.05511175096035004,
0.019868334755301476,
0.01041365321725607,
0.019948361441493034,
-0.030985016375780106,
0.07216187566518784,
-0.017170827835798264,
-0.004116262309253216,
-0.020778069272637367,
-0.02345466986298561,
-0.03097759746015072,
0.0006917529972270131,
0.01689549721777439,
-0.054060403257608414,
-0.03628624230623245,
0.02371596172451973,
0.020526869222521782,
-0.03964614123106003,
0.03270398825407028,
-0.04533093795180321,
-0.04626382514834404,
-0.055248089134693146,
0.02533886954188347,
0.025220055133104324,
0.01054458599537611,
0.029508864507079124,
-0.044712089002132416,
0.02470880188047886,
-0.03541158512234688,
-0.03341328352689743,
0.0017214487306773663,
0.009897281415760517,
0.013087334111332893,
0.06262694299221039,
0.00865881983190775,
-0.05339786410331726,
-0.010908341035246849,
-0.006674216594547033,
-0.05681444704532623,
0.011659839190542698,
0.01177099160850048,
0.09497074782848358,
-0.0532454177737236,
-0.07783585786819458,
-0.00689475703984499,
0.002445005113258958,
-0.02079037018120289,
0.031731076538562775,
0.016880063340067863,
-0.018551236018538475,
-0.047211285680532455,
0.013149959035217762,
0.05872141569852829,
-0.052778229117393494,
-0.014400126412510872,
0.05625232681632042,
-0.004481968004256487,
0.03557409718632698,
-0.037393320351839066,
-0.02535562589764595,
0.0044870986603200436,
-0.005086356773972511,
-0.0003806860186159611,
0.019873127341270447,
-0.02223895490169525,
-0.024671146646142006,
-0.047041453421115875,
-0.04597543552517891,
-0.011181449517607689,
0.05894642695784569,
-0.009261434897780418,
-0.027861082926392555,
-0.008548278361558914,
0.037601254880428314,
0.040838029235601425,
0.005466099828481674,
-0.054188646376132965,
0.031410593539476395,
0.047595907002687454,
0.03478449955582619,
-0.02627941034734249,
0.07387982308864594,
0.008901111781597137,
-0.015213246457278728,
-0.0385599285364151,
0.002266989089548588,
0.013298332691192627,
-0.04609643295407295,
-0.011812959797680378,
0.04243205487728119,
0.0071699898689985275,
-0.040560219436883926,
-0.03743935376405716,
0.06820808351039886,
-0.02002609893679619,
-0.02211855724453926,
-0.0004552705504465848,
-0.0017581157153472304,
-0.026009706780314445,
0.047154445201158524,
-0.018427468836307526,
0.0096328379586339,
-0.03147157281637192,
-0.038735583424568176,
-0.0040375543758273125,
0.03149014711380005,
0.018674571067094803,
0.05485522747039795,
-0.00563761917874217,
0.08247541636228561,
-0.010025320574641228,
0.0034800791181623936,
-0.035034991800785065,
-0.058822568506002426,
0.003114144317805767,
0.06310462951660156,
0.024007609114050865,
0.08034671097993851,
-0.012384285219013691,
-0.06499450653791428,
0.02096537873148918,
0.07198256999254227,
0.06593794375658035,
0.029628930613398552,
-0.028419727459549904,
0.008091908879578114,
0.030269907787442207,
0.05922118201851845,
-0.04746486619114876,
-0.03360335901379585,
0.021056246012449265,
0.02935592085123062,
-0.01789483055472374,
0.016248881816864014,
-0.018430622294545174,
0.04213044419884682,
-0.03865566849708557,
-0.08210630714893341,
0.055706240236759186,
0.020781129598617554,
0.007668054196983576,
0.040952395647764206,
-0.008264971897006035,
-0.000712807581294328,
0.03221879526972771,
0.008505430072546005,
-0.0036538259591907263,
-0.057566769421100616,
0.020482365041971207,
0.005036144983023405,
0.0407593809068203,
-0.04994430020451546,
0.03592750430107117,
-0.019297083839774132,
-0.006255074869841337,
0.02133754827082157,
-0.04923950880765915,
0.024821896106004715,
0.04413933679461479,
0.030557814985513687,
-0.05251266807317734,
0.010672381147742271,
0.007411697413772345,
0.06032118946313858,
0.05323265120387077,
0.016587156802415848,
0.0887359082698822,
0.018016891553997993,
0.043230511248111725,
0.0824369266629219,
0.03982093930244446,
0.010771669447422028,
0.01949078030884266,
0.07640711218118668,
0.0017565549351274967,
-0.019691742956638336,
0.07649694383144379,
-0.03059721738100052,
0.012608957476913929,
-0.04225664213299751,
-0.009662508033216,
-0.014131623320281506,
-0.005252124276012182,
0.019162161275744438,
-0.0069501702673733234,
-0.023309307172894478,
-0.006959446705877781,
-0.04129114747047424,
-0.02964792214334011,
0.04213833063840866,
-0.027894217520952225,
-0.014891736209392548,
-0.014487240463495255,
-0.006527632009238005,
0.0030054086819291115,
-0.08959517627954483,
-0.022234048694372177,
-0.012390083633363247,
-0.035087186843156815,
0.0005420636152848601,
-0.05580878257751465,
-0.010045836679637432,
-0.04763271287083626,
0.006568044424057007,
0.030102116987109184,
0.02010772004723549,
0.0250233244150877,
-0.02145487628877163,
0.00721022579818964,
-0.06224789842963219,
-0.03519582375884056,
-0.052230436354875565,
-0.04789678007364273,
-0.02607952058315277,
-0.05364863947033882,
0.04151036962866783,
0.045773040503263474,
0.054684605449438095,
0.003568116342648864,
0.004273245111107826,
-0.013241173699498177,
-0.023141078650951385,
0.04230307415127754,
0.036170873790979385,
-0.042453084141016006,
-0.06770892441272736,
0.025273200124502182,
-0.03189961612224579,
0.0011798496125265956,
-0.0016968316631391644,
-0.015816986560821533,
0.08507506549358368,
0.04850384593009949,
0.02112998068332672,
0.011139684356749058,
-0.03924296423792839,
-0.055564478039741516,
-0.06412328779697418,
-0.023477623239159584,
-0.03443347290158272,
-0.0298459529876709,
-0.015423574484884739,
-0.040080826729536057,
-0.02052854187786579,
-0.024834996089339256,
-0.004219996742904186,
-0.012343714013695717,
-0.005527879577130079,
0.01956133171916008,
0.032457102090120316,
0.042418476194143295,
0.031536512076854706,
-0.0648077055811882,
-0.02291717566549778,
0.06642157584428787,
0.01558968797326088,
-0.00043159714550711215,
-0.08043469488620758,
-0.0287095308303833,
0.024745333939790726,
0.01990532875061035,
0.006352226249873638,
-0.008923507295548916,
0.08696246892213821,
0.016439370810985565,
-0.017490610480308533,
0.016608329489827156,
-0.01949341408908367,
-0.02913423627614975,
-0.019294196739792824,
-0.010457991622388363,
-0.021034415811300278,
-0.04632361978292465,
0.0027222461067140102,
0.007645781617611647,
0.03903180733323097,
-0.049834419041872025,
-0.04054155945777893,
-0.014600373804569244,
0.039077166467905045,
0.021389814093708992,
-0.011526546441018581,
-0.02880077250301838,
-0.009380912408232689,
-0.06325594335794449,
-0.014730829745531082,
0.02853277511894703,
0.026252448558807373,
0.026199935004115105,
0.02943970076739788,
0.016924265772104263,
-0.02069392241537571,
0.029216907918453217,
0.018869871273636818,
0.05054759979248047,
0.01906881481409073,
-0.0446280874311924,
0.009464694187045097,
-0.02956520766019821,
0.030660314485430717,
-0.013579794205725193,
-0.01582922786474228,
-0.05052514374256134,
-0.08131137490272522,
-0.03335513547062874,
0.023663371801376343,
-0.007106696721166372,
-0.013709014281630516,
0.028500428423285484,
-0.04213256388902664,
-0.00998157262802124,
0.0069293733686208725,
0.023249123245477676,
0.04247645288705826,
-0.06165120005607605,
0.04253062233328819,
-0.004606632515788078,
0.02630467899143696,
-0.08354717493057251,
0.03213052451610565,
-0.021183090284466743,
-0.03151913732290268,
0.013819943182170391,
0.07888001948595047,
-0.013091151602566242,
0.025917906314134598,
0.07513990253210068,
0.03552369400858879,
-0.04814034700393677,
0.028585603460669518,
0.05001646280288696,
-0.03378503769636154,
-0.03166389837861061,
0.006387651897966862,
-0.016471466049551964,
-0.04442397132515907,
-0.025265779346227646,
-0.019648505374789238,
0.046507079154253006,
0.02639560028910637,
-0.013291801325976849,
-0.007709915284067392,
0.013373496010899544,
-0.014386788941919804,
-0.02434920147061348,
-0.05591940879821777,
-0.020943615585565567,
0.014667185954749584,
-0.03809867799282074,
0.0471823550760746,
0.02658539079129696,
0.016405031085014343,
0.04821247234940529,
0.048128340393304825,
-0.050737496465444565,
-0.04685300588607788,
0.037396643310785294,
0.02825717069208622,
-0.04452027007937431,
-0.05982890725135803,
-0.02233581617474556,
0.035525012761354446,
0.03144175931811333,
-0.0020537509117275476,
-0.07378130406141281,
-0.02713077887892723,
0.042318738996982574,
-0.04901840537786484,
0.039534587413072586,
-0.025335989892482758,
0.021631982177495956,
0.03699458763003349,
-0.00375292357057333,
0.025755925104022026,
-0.02421215921640396,
0.016437280923128128,
-0.009999220259487629,
0.011564874090254307,
-0.018925897777080536,
-0.022377097979187965,
-0.0597405880689621,
0.02163839526474476,
0.0314270481467247,
0.023765094578266144,
0.038096215575933456,
-0.038387030363082886,
-0.04263552278280258,
-0.0014329749392345548,
0.015592806041240692,
-0.018036862835288048,
0.009277972392737865,
0.014301283285021782,
0.03186068311333656,
-0.023008083924651146,
-0.016586555168032646,
-0.020635822787880898,
0.0009032320231199265,
0.025541575625538826,
-0.008414270356297493,
-0.05127880722284317,
-0.03524366766214371,
0.03886749595403671,
-0.009034744463860989,
-0.02534957230091095,
-0.08584202080965042,
0.01679084822535515,
-0.015718974173069,
-0.005244744010269642,
0.055872272700071335,
0.02434178628027439,
0.028450028970837593,
0.05076102539896965,
0.037379100918769836,
0.03433798626065254,
-0.028736647218465805,
0.06015675887465477,
-0.03656366467475891,
-0.013047553598880768,
0.00016526419494766742,
-0.023717308416962624,
-0.024037087336182594,
-0.019478149712085724,
-0.045079074800014496,
-0.03513345494866371,
-0.03331441432237625,
0.04732832312583923,
-0.015743110328912735,
-0.013448073528707027,
-0.013692493550479412,
0.041353531181812286,
-0.03538038209080696,
-0.018626850098371506,
-0.008176119066774845,
-0.03147852048277855,
-0.07431559264659882,
-0.04612774774432182,
0.04154140129685402,
0.006902468856424093,
0.02793692983686924,
0.008463684469461441,
0.017059169709682465,
0.03409186378121376,
0.002893926575779915,
-0.007889830507338047,
0.033911705017089844,
0.002850479679182172,
-0.06814833730459213,
-0.029722221195697784,
0.016375938430428505,
0.009361849166452885,
0.05573134496808052,
-0.027749421074986458,
0.023235084488987923,
0.02438678964972496,
-0.035637594759464264,
-0.01670459471642971,
0.010094689205288887,
0.025402816012501717,
-0.06463349610567093,
-0.043188001960515976,
-0.009158898144960403,
-0.07206343859434128,
0.030029384419322014,
-0.03601602464914322,
-0.008334687910974026,
0.005617360584437847,
0.008946333080530167,
0.030861809849739075,
-0.030757829546928406,
-0.04426620900630951,
0.04898581653833389,
-0.02480924315750599,
0.00934667605906725,
-0.019621463492512703,
0.06810583919286728,
-0.051343679428100586,
0.006034833379089832,
-0.010874561965465546,
0.026275446638464928,
-0.05520326644182205,
0.03865669295191765,
-0.03118174895644188,
-0.010410861112177372,
0.019779931753873825,
0.014918423257768154,
-0.014323263429105282,
0.02266715280711651,
-0.026585465297102928,
0.009359179995954037,
-0.0514313206076622,
0.0575401708483696,
-0.025511518120765686,
0.009214164689183235,
-0.012282285839319229,
-0.005649956408888102,
-0.019638868048787117,
0.004401734564453363,
-0.013229497708380222,
-0.03381171450018883,
0.03206217661499977,
0.059577032923698425,
0.03772871196269989,
0.02882489748299122,
-0.016022127121686935,
-0.018014628440141678,
0.005708199460059404,
-0.04027491807937622,
-0.006289082113653421,
0.009133054874837399,
0.03513849154114723,
0.003923064097762108,
0.05950446426868439,
0.04928481578826904,
-0.05680866912007332,
-0.08634371310472488,
0.014096270315349102,
0.033813804388046265,
0.0035317461006343365,
0.011554466560482979,
0.03244692087173462,
0.02536046877503395,
0.046282991766929626,
-0.03042205050587654,
0.002902302425354719,
-0.02724919654428959,
-0.03325686976313591,
0.022564901039004326,
-0.009472060948610306,
-0.007246796973049641,
-0.0011399792274460196,
-0.0218648798763752,
-0.02131868712604046,
0.0414029099047184,
0.007480173837393522,
0.019888801500201225,
-0.024567266926169395,
-0.04020605608820915,
0.018289243802428246,
-0.03937545791268349,
-0.049807969480752945,
0.02358904853463173,
-0.009182474575936794,
0.0010457491734996438,
0.05836803466081619,
-0.01489806268364191,
0.0038501224480569363,
0.059419140219688416,
0.023411467671394348,
-0.019136909395456314,
0.05230160057544708,
-0.026734190061688423,
-0.0008081504493020475,
0.05697188153862953,
-0.06388361006975174,
-0.005483806133270264,
-0.03836694359779358,
0.06813719868659973,
-0.063526950776577,
0.022382058203220367,
0.04880739375948906,
0.005249273497611284,
0.04343973100185394,
-0.025876332074403763,
-0.054561614990234375,
0.020208396017551422,
-0.022467168048024178,
0.09609736502170563,
0.03540096431970596,
-0.05337122827768326,
0.056797269731760025,
0.029049361124634743,
-0.09691803902387619,
0.04048622399568558,
0.038659512996673584,
0.035648804157972336,
0.034449975937604904,
0.04614543542265892,
-0.04573094844818115,
-0.008582315407693386,
-0.035844217985868454,
0.024900352582335472,
-0.06158410385251045,
0.002840981585904956,
0.02822544053196907,
-0.061679866164922714,
-0.021317793056368828,
0.015953410416841507,
-0.023353934288024902,
-0.03051256760954857,
0.035918232053518295,
-0.06993301212787628,
-0.031235383823513985,
0.009681730531156063,
0.02857537940144539,
-0.05985541269183159,
-0.0017464358825236559,
-0.02948104403913021,
0.0183344017714262,
0.024566570296883583,
0.013827472925186157,
-0.028478985652327538,
-0.0007663390133529902,
0.006221383344382048,
-0.04263035207986832,
-0.029388977214694023,
0.06121491640806198,
0.010567231103777885,
-0.013861224055290222,
0.042213842272758484,
0.009474934078752995,
0.006418818142265081,
0.025015735998749733,
0.013267261907458305,
0.03087710775434971,
-0.05803864449262619,
-0.04284210130572319,
0.016792530193924904,
0.010107316076755524,
0.0067147621884942055,
-0.0006167960236780345,
0.055351246148347855,
0.06456110626459122,
0.006803517229855061,
0.02789471298456192,
-0.03656381368637085,
-0.024281684309244156,
0.019895019009709358,
-0.034046709537506104,
0.021241575479507446,
0.011250643990933895,
-0.057486265897750854,
-0.03813265264034271,
-0.020085465162992477,
-0.016033092513680458,
0.01705671288073063,
-0.055701106786727905,
-0.0247229915112257,
0.034089818596839905,
-0.029010601341724396,
-0.055742766708135605,
-0.0844900906085968,
-0.03060726635158062,
-0.03965060040354729,
0.05304249748587608,
0.02689596265554428,
-0.05622182413935661,
0.027424108237028122,
-0.05783471092581749,
-0.05074381083250046,
0.019966285675764084,
0.02071327716112137,
-0.018235359340906143,
0.034511301666498184,
0.04782267287373543,
-0.05334516987204552,
0.010773707181215286,
0.0465279296040535,
-0.025469990447163582,
0.02936585061252117,
0.015590036287903786,
0.00038720437441952527,
0.02221830189228058,
0.015998193994164467,
-0.02813447266817093,
-0.006196200381964445,
-0.06591499596834183,
-0.03865513205528259,
-0.01894695870578289,
0.0018486506305634975,
0.07195482403039932
] |
Araby/Arabic-TTS | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | 2023-05-18T09:43:42Z | ---
tags:
- LunarLander-v2
- ppo
- deep-reinforcement-learning
- reinforcement-learning
- custom-implementation
- deep-rl-course
model-index:
- name: PPO
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: LunarLander-v2
type: LunarLander-v2
metrics:
- type: mean_reward
value: 96.20 +/- 42.21
name: mean_reward
verified: false
---
# PPO Agent Playing LunarLander-v2
This is a trained model of a PPO agent playing LunarLander-v2.
# Hyperparameters
```python
{'exp_name': 'ppo'
'seed': 1
'torch_deterministic': True
'cuda': True
'track': True
'wandb_project_name': 'cleanRL'
'wandb_entity': None
'capture_video': False
'env_id': 'LunarLander-v2'
'total_timesteps': 2000000
'learning_rate': 0.0003
'num_envs': 16
'num_steps': 1024
'anneal_lr': True
'gae': True
'gamma': 0.999
'gae_lambda': 0.98
'num_minibatches': 32
'update_epochs': 4
'norm_adv': True
'clip_coef': 0.2
'clip_vloss': True
'ent_coef': 0.01
'vf_coef': 0.5
'max_grad_norm': 0.5
'target_kl': None
'repo_id': 'andyleow/cleanRL-PPO-LunarLander-v2'
'batch_size': 16384
'minibatch_size': 512}
```
| [
-0.006269536446779966,
0.005051817279309034,
-0.01704200729727745,
0.016361286863684654,
0.05745120346546173,
-0.028699930757284164,
0.007495759986341,
-0.03501278907060623,
-0.026858080178499222,
0.06686902046203613,
0.026600409299135208,
-0.027137141674757004,
-0.0006018115091137588,
0.02782202512025833,
-0.03570837900042534,
-0.052389003336429596,
-0.020102975890040398,
-0.006597771774977446,
-0.038420360535383224,
0.01026584766805172,
-0.01672426238656044,
0.037180591374635696,
-0.02542184479534626,
0.017100872471928596,
0.012603400275111198,
0.022820528596639633,
0.014907779172062874,
0.028755592182278633,
-0.0007624454447068274,
-0.07847757637500763,
-0.023671811446547508,
-0.02077367715537548,
-0.04327532276511192,
-0.00992143340408802,
-0.016760092228651047,
-0.007428663782775402,
-0.0001302725140703842,
0.00598329259082675,
0.023228051140904427,
0.028541887179017067,
-0.0009755027131177485,
0.011436022818088531,
0.0011440427042543888,
-0.0239042229950428,
0.020394567400217056,
0.0011883295373991132,
-0.039056479930877686,
0.019050711765885353,
0.02588842436671257,
-0.007402718532830477,
-0.05227334052324295,
-0.05640995875000954,
-0.003321124706417322,
0.012855595909059048,
-0.00978135410696268,
-0.002202860312536359,
-0.06867050379514694,
-0.012235453352332115,
0.06509095430374146,
-0.04599754512310028,
-0.041354283690452576,
-0.005539886187762022,
-0.04716372489929199,
0.013135221786797047,
0.007430603262037039,
-0.005070607643574476,
0.009091165848076344,
-0.05726436525583267,
0.042560163885354996,
-0.015567906200885773,
0.06704948842525482,
-0.04309720918536186,
0.008175114169716835,
-0.08267898857593536,
0.014003865420818329,
0.0062595028430223465,
0.03742052614688873,
0.016277626156806946,
-0.035146936774253845,
0.07823309302330017,
0.05007581412792206,
0.0071532535366714,
0.018117515370249748,
-0.0070963166654109955,
-0.0006999276811257005,
0.006052119191735983,
-0.019379379227757454,
0.006906256545335054,
0.025673214346170425,
0.05462927743792534,
-0.005022106226533651,
-0.032592397183179855,
-0.04221425577998161,
-0.012817292474210262,
-0.01220041885972023,
0.01644265651702881,
0.03800419345498085,
-0.02486533671617508,
0.05365779623389244,
0.01280253380537033,
0.026621542870998383,
0.05002649128437042,
-0.02714923582971096,
0.08005186915397644,
0.0012482512975111604,
-0.02074711211025715,
-0.01721910759806633,
-0.01409891527146101,
-0.0376594252884388,
0.03342967852950096,
0.021968280896544456,
-0.02977527119219303,
-0.033772438764572144,
0.05419589951634407,
0.020044956356287003,
0.008626813068985939,
0.05189242213964462,
-0.02630908414721489,
-0.0579516775906086,
-0.07739169150590897,
0.06874722987413406,
0.022062595933675766,
-0.0062073152512311935,
-0.009305010549724102,
-0.009894139133393764,
-0.009327123872935772,
-0.06306233257055283,
-0.020523078739643097,
-0.006583845242857933,
0.03617389127612114,
-0.008487544022500515,
0.02601807378232479,
0.018197832629084587,
-0.06922495365142822,
0.02725924551486969,
-0.014486958272755146,
-0.08974166959524155,
0.017102988436818123,
-0.00045115334796719253,
0.1008959412574768,
-0.04381208494305611,
-0.07832038402557373,
0.027459463104605675,
-0.03182755410671234,
-0.037673015147447586,
-0.006940195336937904,
-0.02455293945968151,
-0.038595158606767654,
-0.01869322918355465,
-0.015696879476308823,
0.07506097853183746,
-0.05169709399342537,
-0.013963611796498299,
0.06874041259288788,
0.02122405357658863,
0.02591223642230034,
-0.007022762205451727,
-0.005280730314552784,
0.007589428685605526,
-0.03216826543211937,
-0.006929377093911171,
0.04782894253730774,
-0.02490944042801857,
0.0088303592056036,
-0.03694060072302818,
-0.04584215208888054,
-0.012503494508564472,
0.07619712501764297,
-0.003185919253155589,
-0.03224038705229759,
-0.041329968720674515,
0.031997550278902054,
0.03513287007808685,
0.010030610486865044,
-0.00402594730257988,
0.03654840588569641,
0.06636638194322586,
0.017099499702453613,
-0.04162794351577759,
0.031475719064474106,
0.04750123620033264,
-0.02129085175693035,
-0.019806278869509697,
0.01341222319751978,
0.003815980162471533,
0.005124624818563461,
0.006034270394593477,
0.024357331916689873,
-0.000696927250828594,
-0.035614848136901855,
-0.009342626668512821,
0.04013502597808838,
0.010634828358888626,
-0.01278226263821125,
-0.015349190682172775,
0.013910581357777119,
0.00006820539420004934,
0.05461256578564644,
-0.009454745799303055,
0.0018515716074034572,
-0.0036441294942051172,
-0.021368959918618202,
0.018530352041125298,
0.010711073875427246,
0.022830063477158546,
0.018587175756692886,
-0.003546298248693347,
0.1107577458024025,
-0.045143455266952515,
0.03689086064696312,
-0.0713236853480339,
-0.05068746581673622,
0.015186366625130177,
0.05500292032957077,
0.04575542360544205,
0.015417811460793018,
0.0032829430419951677,
-0.025482768192887306,
0.04770911484956741,
0.04783489555120468,
0.06457564234733582,
0.012425553053617477,
-0.05620855838060379,
-0.032319411635398865,
0.016493601724505424,
0.04488423839211464,
-0.03406627103686333,
-0.03993258252739906,
0.020026812329888344,
0.04534023627638817,
0.00822495762258768,
0.01945061795413494,
-0.029176486656069756,
0.019499225541949272,
-0.035207830369472504,
-0.05960356071591377,
0.04373354837298393,
0.023637928068637848,
0.013071263208985329,
0.01875154860317707,
0.016727393493056297,
0.014994644559919834,
0.025925790891051292,
0.027078764513134956,
0.007210281677544117,
-0.025838909670710564,
0.0014023750554770231,
0.02239185757935047,
0.07070757448673248,
-0.045645687729120255,
0.046702977269887924,
-0.023690761998295784,
-0.011646803468465805,
0.05115003511309624,
-0.05985299497842789,
0.014074720442295074,
0.06034135818481445,
0.024222971871495247,
-0.0063395113684237,
0.011667858809232712,
0.001329367165453732,
0.036206960678100586,
0.04193620756268501,
-0.027469567954540253,
0.055195678025484085,
0.006878845859318972,
0.0557575523853302,
0.051411308348178864,
0.009341276250779629,
0.0045116436667740345,
-0.002794144442304969,
0.0692211389541626,
0.007029229775071144,
-0.021589048206806183,
0.029660964384675026,
-0.032431330531835556,
0.01486265193670988,
-0.030702369287610054,
0.0005359789356589317,
-0.019682101905345917,
0.006192946806550026,
0.05035940557718277,
0.02004084177315235,
-0.04399041458964348,
0.0013838093727827072,
-0.0023807156831026077,
-0.02817392535507679,
0.0005385702825151384,
-0.0291355699300766,
0.009451473131775856,
-0.008035337552428246,
0.008452998474240303,
0.004254065919667482,
-0.08078726381063461,
-0.09341703355312347,
-0.023028776049613953,
-0.004113310016691685,
-0.018616681918501854,
-0.0850105956196785,
-0.03323400393128395,
-0.05185835808515549,
0.007534737698733807,
0.023882020264863968,
-0.008151563815772533,
-0.01168745756149292,
-0.04381241649389267,
0.010072517208755016,
-0.07497206330299377,
-0.024361249059438705,
-0.04651162400841713,
-0.05080217123031616,
-0.060266319662332535,
-0.08713124692440033,
0.010119971819221973,
0.03449157252907753,
0.028598619624972343,
0.013948364183306694,
-0.0008739602635614574,
-0.04782021418213844,
-0.018438564613461494,
0.05582530051469803,
0.052603159099817276,
-0.015605313703417778,
-0.04714346304535866,
0.020883625373244286,
-0.010485944338142872,
0.0014002942480146885,
-0.012412700802087784,
-0.026081610471010208,
0.07954955101013184,
0.07023224979639053,
-0.0035801001358777285,
0.0077993664890527725,
-0.022693214938044548,
-0.050713155418634415,
-0.04105880483984947,
-0.05062663182616234,
-0.05591731518507004,
-0.008905905298888683,
-0.05252842605113983,
-0.025620058178901672,
-0.01811441406607628,
-0.01855248399078846,
-0.0009163359645754099,
-0.020941462367773056,
0.01308497879654169,
0.06333236396312714,
0.06365446746349335,
0.025912176817655563,
0.03479577228426933,
-0.08222143352031708,
-0.03944592922925949,
0.06033029779791832,
-0.015587653033435345,
0.02061186172068119,
-0.05394298583269119,
-0.010580663569271564,
-0.002574050799012184,
0.012896076776087284,
-0.009623805992305279,
0.033038657158613205,
0.05972674489021301,
0.02941928803920746,
-0.019696135073900223,
0.019870618358254433,
-0.03445868939161301,
-0.033028800040483475,
-0.03694520890712738,
-0.011419110000133514,
-0.02851405180990696,
-0.001903293770737946,
0.019422780722379684,
-0.016949975863099098,
0.015295027755200863,
-0.04196453467011452,
-0.058975160121917725,
-0.03524733707308769,
0.024778321385383606,
0.03735467046499252,
0.024454789236187935,
-0.05073627829551697,
-0.027350250631570816,
-0.06064577028155327,
0.026005731895565987,
0.03225531801581383,
0.011767854914069176,
-0.007346224505454302,
0.03929213061928749,
0.04461739957332611,
-0.01765328273177147,
0.033111847937107086,
0.042243748903274536,
0.056859053671360016,
0.006558261811733246,
-0.05302061140537262,
0.0024188589304685593,
-0.018487239256501198,
0.03611636161804199,
-0.004042692948132753,
-0.012121330946683884,
-0.02862570248544216,
-0.10310553759336472,
-0.02181418612599373,
0.02410145290195942,
-0.02139267884194851,
-0.022358015179634094,
0.03375685214996338,
-0.0005108766490593553,
0.009371340274810791,
-0.013960396870970726,
-0.007507983595132828,
0.05769454687833786,
-0.0631948933005333,
0.04155296832323074,
-0.010033270344138145,
0.026214566081762314,
-0.05630122870206833,
0.01779330149292946,
-0.005929147358983755,
-0.010730630718171597,
0.023445863276720047,
0.04165620729327202,
0.04236667975783348,
0.054864585399627686,
0.05789710953831673,
0.026022348552942276,
-0.052581656724214554,
0.02708357945084572,
0.06688769161701202,
-0.03837567940354347,
-0.0683279037475586,
-0.028271015733480453,
0.013915023766458035,
-0.014959358610212803,
0.0076471539214253426,
0.0024790416937321424,
0.04672812670469284,
0.04133922606706619,
-0.00683515053242445,
-0.02486962452530861,
0.030142543837428093,
-0.01573227345943451,
-0.032002042979002,
-0.011986465193331242,
-0.01895298808813095,
0.02282925508916378,
-0.01065325178205967,
0.008946479298174381,
0.03854885324835777,
0.0371522381901741,
0.03461867943406105,
0.054979462176561356,
-0.03326756879687309,
-0.04109300300478935,
0.04286880046129227,
0.000500502239447087,
-0.024647176265716553,
-0.05971420928835869,
-0.013098890893161297,
0.05687582865357399,
0.038564182817935944,
-0.027507023885846138,
-0.08202805370092392,
0.0022317245602607727,
0.06397067755460739,
-0.05252910405397415,
0.05758914723992348,
-0.006028478033840656,
0.02664588950574398,
0.051009174436330795,
0.011601692996919155,
0.03701501339673996,
-0.032408226281404495,
-0.004731632303446531,
0.004858334548771381,
0.03627409413456917,
0.008740062825381756,
-0.025123924016952515,
-0.04253721237182617,
0.02994648925960064,
0.0293362345546484,
0.09081599116325378,
0.025220341980457306,
-0.05606565251946449,
-0.047264207154512405,
-0.014959086664021015,
0.02748543582856655,
-0.05173211544752121,
0.01022758986800909,
0.03627040609717369,
0.030852066352963448,
-0.06145535409450531,
-0.04424111545085907,
-0.028891537338495255,
-0.0012267011916264892,
0.03200310096144676,
0.0019221525872126222,
-0.010144738480448723,
-0.024021537974476814,
0.06033838540315628,
0.003210883354768157,
-0.02220183238387108,
-0.07026070356369019,
0.021137747913599014,
-0.0071557569317519665,
0.014030755497515202,
0.019743626937270164,
0.012681574560701847,
0.047945283353328705,
0.07256360352039337,
0.03876319155097008,
0.01729174703359604,
-0.026926666498184204,
0.034570761024951935,
-0.03353232145309448,
-0.008142884820699692,
0.004226768855005503,
-0.05950072780251503,
-0.0017553690122440457,
-0.010784853249788284,
-0.050959017127752304,
-0.04012218862771988,
-0.049670033156871796,
0.034896958619356155,
-0.003929885104298592,
-0.017161844298243523,
-0.008713660761713982,
0.06451611965894699,
0.006000574678182602,
-0.05439674109220505,
-0.031074723228812218,
-0.027105014771223068,
-0.04466628283262253,
-0.05856194347143173,
0.016873588785529137,
-0.005764277186244726,
0.00824237335473299,
0.03351430594921112,
0.04830818250775337,
0.02450403943657875,
0.026768220588564873,
-0.016775818541646004,
0.06030118465423584,
0.01001051627099514,
-0.03549798205494881,
0.021822987124323845,
0.04981803148984909,
-0.0014086808077991009,
0.049308229237794876,
-0.010907324030995369,
0.03435039520263672,
0.018375487998127937,
-0.028221020475029945,
-0.005795871373265982,
0.018075808882713318,
0.017940739169716835,
-0.04549828916788101,
-0.024388382211327553,
0.013176520355045795,
-0.04610257223248482,
0.022212520241737366,
-0.021973395720124245,
-0.008954664692282677,
-0.03669176995754242,
0.002683532191440463,
0.024120718240737915,
-0.013499721884727478,
-0.04189983382821083,
0.029509516432881355,
-0.036958228796720505,
0.02974436990916729,
-0.05580510199069977,
0.025799887254834175,
-0.021350331604480743,
0.03253526613116264,
-0.012415838427841663,
-0.04488223046064377,
-0.043355248868465424,
0.03652239218354225,
-0.005124740302562714,
-0.021679973229765892,
-0.010141112841665745,
0.03186715766787529,
-0.01636524498462677,
0.03336966037750244,
-0.028367267921566963,
0.03619374707341194,
-0.029211610555648804,
0.04028421640396118,
-0.02104000747203827,
0.011827466078102589,
-0.005738030653446913,
0.05082358792424202,
-0.03788495436310768,
0.03173065558075905,
-0.02597418799996376,
-0.03687497600913048,
0.026815226301550865,
0.08986302465200424,
-0.0043520331382751465,
0.034116052091121674,
-0.012296762317419052,
0.015175416134297848,
-0.007368238177150488,
-0.030481135472655296,
-0.039005644619464874,
-0.018302196636795998,
-0.01075152587145567,
-0.007433613296598196,
0.03844274580478668,
0.04592081904411316,
-0.07198593765497208,
-0.039812732487916946,
0.042654722929000854,
0.014589562080800533,
0.02750423178076744,
0.006106436252593994,
0.019981279969215393,
0.04333614185452461,
0.04736637324094772,
-0.04564181715250015,
0.017638279125094414,
-0.00405760295689106,
-0.010651134885847569,
0.03285069763660431,
-0.009765314869582653,
0.03377710282802582,
0.010230490006506443,
-0.040552493184804916,
-0.00824278686195612,
0.07968386262655258,
0.043147530406713486,
0.0035282985772937536,
-0.03355720639228821,
-0.009060801938176155,
0.03547385707497597,
-0.0069006276316940784,
-0.03386518731713295,
0.00952065084129572,
0.026518551632761955,
-0.020308418199419975,
0.06862256675958633,
-0.026460880413651466,
0.014287237077951431,
0.06137380748987198,
0.04179142415523529,
0.007348021026700735,
0.08368261903524399,
-0.011500976979732513,
0.034471217542886734,
0.04534805566072464,
-0.08686649054288864,
-0.0002880141546484083,
-0.038484226912260056,
0.0800977349281311,
-0.09437095373868942,
0.08944230526685715,
0.03601386770606041,
0.01878918521106243,
0.0025194399058818817,
-0.027170401066541672,
-0.05340177193284035,
0.014882206916809082,
-0.04319937154650688,
0.08871500939130783,
0.01911831833422184,
-0.044441960752010345,
0.07540081441402435,
0.024544717743992805,
-0.06209271028637886,
0.05590182542800903,
0.021562140434980392,
0.020049361512064934,
0.023865604773163795,
0.03488130494952202,
-0.040282148867845535,
0.02169356867671013,
-0.06266798079013824,
0.05937524512410164,
-0.04617537930607796,
-0.010814673267304897,
0.015297996811568737,
-0.0359906405210495,
-0.008336341939866543,
0.04074808210134506,
-0.002934153424575925,
-0.024799425154924393,
0.00729654124006629,
-0.06894802302122116,
-0.06254418194293976,
0.0052052694372832775,
0.0191781185567379,
-0.001066107302904129,
0.01727817952632904,
-0.022776242345571518,
0.03133202716708183,
0.028919322416186333,
0.007846765220165253,
-0.03357264772057533,
-0.0210014246404171,
0.033243969082832336,
-0.06486154347658157,
-0.005810094065964222,
0.044606391340494156,
0.007150773424655199,
-0.03766995295882225,
0.02314213663339615,
0.0036336674820631742,
-0.01136714406311512,
-0.00018615243607200682,
0.00822689663618803,
-0.004592775832861662,
-0.05937223136425018,
-0.029519395902752876,
0.022362297400832176,
0.005743515212088823,
0.004141739569604397,
-0.009822743944823742,
0.028442300856113434,
0.0349639467895031,
0.03937200829386711,
0.01458121370524168,
-0.033256400376558304,
-0.006885814014822245,
0.03369557857513428,
-0.06118473410606384,
0.02965269237756729,
-0.0034534395672380924,
-0.050294872373342514,
-0.0215910691767931,
-0.027498217299580574,
-0.017377151176333427,
-0.002956596203148365,
-0.02935856580734253,
-0.028829634189605713,
0.02334735542535782,
0.013080773875117302,
-0.048445817083120346,
-0.07995391637086868,
-0.013545310124754906,
-0.03774327039718628,
0.04128819704055786,
0.03795456141233444,
-0.0327647365629673,
-0.006721951998770237,
-0.036966148763895035,
-0.037169236689805984,
0.05664994940161705,
0.02641362138092518,
-0.02349218726158142,
0.041497208178043365,
0.03415120765566826,
-0.018438173457980156,
0.014783642254769802,
0.015324634499847889,
-0.056819792836904526,
0.026736445724964142,
0.009003447368741035,
0.014637529850006104,
0.014071307145059109,
0.0069603207521140575,
-0.022152232006192207,
-0.008571467362344265,
-0.037830762565135956,
-0.025743814185261726,
-0.01651632785797119,
0.02231489308178425,
0.05019622668623924
] |
ArcQ/gpt-experiments | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | 2023-05-18T09:52:30Z | ---
language: en
license: apache-2.0
library_name: pytorch
tags:
- deep-reinforcement-learning
- reinforcement-learning
- DI-engine
- PongNoFrameskip-v4
benchmark_name: OpenAI/Gym/Atari
task_name: PongNoFrameskip-v4
pipeline_tag: reinforcement-learning
model-index:
- name: C51
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: OpenAI/Gym/Atari-PongNoFrameskip-v4
type: OpenAI/Gym/Atari-PongNoFrameskip-v4
metrics:
- type: mean_reward
value: 20.25 +/- 0.83
name: mean_reward
---
# Play **PongNoFrameskip-v4** with **C51** Policy
## Model Description
<!-- Provide a longer summary of what this model is. -->
This is a simple **C51** implementation to OpenAI/Gym/Atari **PongNoFrameskip-v4** using the [DI-engine library](https://github.com/opendilab/di-engine) and the [DI-zoo](https://github.com/opendilab/DI-engine/tree/main/dizoo).
**DI-engine** is a python library for solving general decision intelligence problems, which is based on implementations of reinforcement learning framework using PyTorch or JAX. This library aims to standardize the reinforcement learning framework across different algorithms, benchmarks, environments, and to support both academic researches and prototype applications. Besides, self-customized training pipelines and applications are supported by reusing different abstraction levels of DI-engine reinforcement learning framework.
## Model Usage
### Install the Dependencies
<details close>
<summary>(Click for Details)</summary>
```shell
# install huggingface_ding
git clone https://github.com/opendilab/huggingface_ding.git
pip3 install -e ./huggingface_ding/
# install environment dependencies if needed
pip3 install DI-engine[common_env]
```
</details>
### Git Clone from Huggingface and Run the Model
<details close>
<summary>(Click for Details)</summary>
```shell
# running with trained model
python3 -u run.py
```
**run.py**
```python
from ding.bonus import C51Agent
from ding.config import Config
from easydict import EasyDict
import torch
# Pull model from files which are git cloned from huggingface
policy_state_dict = torch.load("pytorch_model.bin", map_location=torch.device("cpu"))
cfg = EasyDict(Config.file_to_dict("policy_config.py"))
# Instantiate the agent
agent = C51Agent(
env="PongNoFrameskip", exp_name="PongNoFrameskip-v4-C51", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
)
# Continue training
agent.train(step=5000)
# Render the new agent performance
agent.deploy(enable_save_replay=True)
```
</details>
### Run Model by Using Huggingface_ding
<details close>
<summary>(Click for Details)</summary>
```shell
# running with trained model
python3 -u run.py
```
**run.py**
```python
from ding.bonus import C51Agent
from huggingface_ding import pull_model_from_hub
# Pull model from Hugggingface hub
policy_state_dict, cfg = pull_model_from_hub(repo_id="OpenDILabCommunity/PongNoFrameskip-v4-C51")
# Instantiate the agent
agent = C51Agent(
env="PongNoFrameskip", exp_name="PongNoFrameskip-v4-C51", cfg=cfg.exp_config, policy_state_dict=policy_state_dict
)
# Continue training
agent.train(step=5000)
# Render the new agent performance
agent.deploy(enable_save_replay=True)
```
</details>
## Model Training
### Train the Model and Push to Huggingface_hub
<details close>
<summary>(Click for Details)</summary>
```shell
#Training Your Own Agent
python3 -u train.py
```
**train.py**
```python
from ding.bonus import C51Agent
from huggingface_ding import push_model_to_hub
# Instantiate the agent
agent = C51Agent(env="PongNoFrameskip", exp_name="PongNoFrameskip-v4-C51")
# Train the agent
return_ = agent.train(step=int(20000000))
# Push model to huggingface hub
push_model_to_hub(
agent=agent.best,
env_name="OpenAI/Gym/Atari",
task_name="PongNoFrameskip-v4",
algo_name="C51",
wandb_url=return_.wandb_url,
github_repo_url="https://github.com/opendilab/DI-engine",
github_doc_model_url="https://di-engine-docs.readthedocs.io/en/latest/12_policies/c51.html",
github_doc_env_url="https://di-engine-docs.readthedocs.io/en/latest/13_envs/atari.html",
installation_guide="pip3 install DI-engine[common_env]",
usage_file_by_git_clone="./c51/pong_c51_deploy.py",
usage_file_by_huggingface_ding="./c51/pong_c51_download.py",
train_file="./c51/pong_c51.py",
repo_id="OpenDILabCommunity/PongNoFrameskip-v4-C51"
)
```
</details>
**Configuration**
<details close>
<summary>(Click for Details)</summary>
```python
exp_config = {
'env': {
'manager': {
'episode_num': float("inf"),
'max_retry': 1,
'retry_type': 'reset',
'auto_reset': True,
'step_timeout': None,
'reset_timeout': None,
'retry_waiting_time': 0.1,
'cfg_type': 'BaseEnvManagerDict'
},
'stop_value': 20,
'n_evaluator_episode': 8,
'collector_env_num': 8,
'evaluator_env_num': 8,
'env_id': 'PongNoFrameskip-v4',
'frame_stack': 4
},
'policy': {
'model': {
'encoder_hidden_size_list': [128, 128, 512],
'v_min': -10,
'v_max': 10,
'n_atom': 51,
'obs_shape': [4, 84, 84],
'action_shape': 6
},
'learn': {
'learner': {
'train_iterations': 1000000000,
'dataloader': {
'num_workers': 0
},
'log_policy': True,
'hook': {
'load_ckpt_before_run': '',
'log_show_after_iter': 100,
'save_ckpt_after_iter': 10000,
'save_ckpt_after_run': True
},
'cfg_type': 'BaseLearnerDict'
},
'update_per_collect': 10,
'batch_size': 32,
'learning_rate': 0.0001,
'target_update_freq': 500,
'target_theta': 0.005,
'ignore_done': False
},
'collect': {
'collector': {},
'n_sample': 100,
'unroll_len': 1
},
'eval': {
'evaluator': {
'eval_freq': 4000,
'render': {
'render_freq': -1,
'mode': 'train_iter'
},
'cfg_type': 'InteractionSerialEvaluatorDict',
'stop_value': 20,
'n_episode': 8
}
},
'other': {
'replay_buffer': {
'replay_buffer_size': 100000
},
'eps': {
'type': 'exp',
'start': 1.0,
'end': 0.05,
'decay': 250000
}
},
'on_policy': False,
'cuda': True,
'multi_gpu': False,
'bp_update_sync': True,
'traj_len_inf': False,
'type': 'c51',
'priority': False,
'priority_IS_weight': False,
'discount_factor': 0.99,
'nstep': 3,
'cfg_type': 'C51PolicyDict'
},
'exp_name': 'PongNoFrameskip-v4-C51',
'seed': 0,
'wandb_logger': {
'gradient_logger': True,
'video_logger': True,
'plot_logger': True,
'action_logger': True,
'return_logger': False
}
}
```
</details>
**Training Procedure**
<!-- This relates heavily to the Technical Specifications. Content here should link to that section when it is relevant to the training procedure. -->
- **Weights & Biases (wandb):** [monitor link](https://wandb.ai/zjowowen/PongNoFrameskip-v4-C51)
## Model Information
<!-- Provide the basic links for the model. -->
- **Github Repository:** [repo link](https://github.com/opendilab/DI-engine)
- **Doc**: [DI-engine-docs Algorithm link](https://di-engine-docs.readthedocs.io/en/latest/12_policies/c51.html)
- **Configuration:** [config link](https://huggingface.co/OpenDILabCommunity/PongNoFrameskip-v4-C51/blob/main/policy_config.py)
- **Demo:** [video](https://huggingface.co/OpenDILabCommunity/PongNoFrameskip-v4-C51/blob/main/replay.mp4)
<!-- Provide the size information for the model. -->
- **Parameters total size:** 55276.2 KB
- **Last Update Date:** 2023-05-18
## Environments
<!-- Address questions around what environment the model is intended to be trained and deployed at, including the necessary information needed to be provided for future users. -->
- **Benchmark:** OpenAI/Gym/Atari
- **Task:** PongNoFrameskip-v4
- **Gym version:** 0.25.1
- **DI-engine version:** v0.4.7
- **PyTorch version:** 1.7.1
- **Doc**: [DI-engine-docs Environments link](https://di-engine-docs.readthedocs.io/en/latest/13_envs/atari.html)
| [
-0.04069335386157036,
0.006495434790849686,
0.012968587689101696,
0.0032421390060335398,
0.03742823377251625,
-0.015082217752933502,
-0.0111897774040699,
-0.024998864158988,
-0.028418781235814095,
0.05826108530163765,
0.01727255806326866,
-0.0005013574846088886,
0.004220477771013975,
0.015222390182316303,
-0.042311787605285645,
-0.055991221219301224,
-0.015978025272488594,
-0.012842596508562565,
-0.026593171060085297,
0.025852693244814873,
-0.0011856704950332642,
-0.020779473707079887,
-0.020569859072566032,
0.018694408237934113,
-0.014760002493858337,
0.02113255113363266,
-0.0023361044004559517,
0.035827651619911194,
0.03440004587173462,
-0.07372716069221497,
-0.011348641477525234,
-0.04405027627944946,
-0.018192032352089882,
-0.016241421923041344,
-0.014112832024693489,
-0.007550281938165426,
0.01018740888684988,
0.03119290992617607,
0.0016624320996925235,
0.03146548569202423,
-0.0008706600638106465,
0.02821851707994938,
-0.009313366375863552,
-0.0013657464878633618,
0.020830191671848297,
-0.00683968560770154,
-0.040824685245752335,
-0.015752725303173065,
0.0345405712723732,
-0.012738429009914398,
-0.06201214715838432,
-0.08041919022798538,
-0.023840978741645813,
0.039701271802186966,
-0.018964894115924835,
-0.0396951362490654,
-0.07467667758464813,
-0.017883531749248505,
0.06727916747331619,
-0.06873411685228348,
-0.03604060411453247,
0.014607652090489864,
-0.05938791111111641,
0.002712308894842863,
0.0363299697637558,
-0.019442902877926826,
0.01694602519273758,
-0.03692738339304924,
0.013359342701733112,
-0.04080371558666229,
0.04541700333356857,
-0.03889774903655052,
0.008770002983510494,
-0.08755142986774445,
0.009929622523486614,
-0.03215940296649933,
0.022293571382761,
0.036305006593465805,
-0.032708361744880676,
0.069923035800457,
0.015114844776690006,
0.030051397159695625,
0.03861125186085701,
0.016097456216812134,
0.005069139413535595,
0.034301500767469406,
-0.024924317374825478,
0.018211135640740395,
0.006535935681313276,
0.034358322620391846,
-0.009290078654885292,
-0.04077840596437454,
-0.019257258623838425,
-0.029432961717247963,
-0.01544092781841755,
0.029866589233279228,
0.04117729887366295,
0.021477384492754936,
0.060354672372341156,
0.005140453111380339,
0.04355543479323387,
0.043829143047332764,
0.005391214042901993,
0.06660323590040207,
0.017966706305742264,
-0.017009707167744637,
-0.025990700349211693,
-0.022072194144129753,
-0.057787034660577774,
0.03391461819410324,
0.030793361365795135,
-0.03918321803212166,
-0.039341144263744354,
0.041193991899490356,
-0.00952809676527977,
0.010957896709442139,
0.0720648467540741,
-0.05411430448293686,
-0.025494489818811417,
-0.06812678277492523,
0.04637248069047928,
0.010191688314080238,
0.015354597009718418,
-0.013350124470889568,
-0.05991830676794052,
0.010041018016636372,
-0.03166621923446655,
-0.0212243739515543,
-0.017409387975931168,
0.02676462009549141,
0.008468284271657467,
0.02857884392142296,
0.03213854134082794,
-0.05488124489784241,
-0.005851409398019314,
-0.0003988099342677742,
-0.0841357484459877,
0.05846741050481796,
-0.0002231137768831104,
0.10068655014038086,
-0.06875722110271454,
-0.051778968423604965,
-0.004082107916474342,
0.0038944880943745375,
-0.04756946116685867,
-0.010588559322059155,
0.005517574958503246,
-0.054518040269613266,
-0.017527632415294647,
-0.01274024322628975,
0.05943155661225319,
-0.06455271691083908,
-0.009656663984060287,
0.06435798853635788,
-0.008342995308339596,
0.051423218101263046,
-0.04843400418758392,
-0.028038768097758293,
-0.024501146748661995,
0.021817484870553017,
-0.0023323814384639263,
0.04262128844857216,
-0.026021303609013557,
-0.0186470877379179,
-0.04208347573876381,
-0.03245316073298454,
0.013995477929711342,
0.07719659805297852,
-0.007393388543277979,
-0.021692834794521332,
-0.03513016179203987,
0.0065852380357682705,
0.03862997144460678,
0.02891530841588974,
-0.015014632605016232,
0.049840737134218216,
0.05134045332670212,
0.02130739763379097,
-0.030173592269420624,
0.05813821777701378,
0.03534964844584465,
-0.02541409432888031,
-0.003793821670114994,
-0.008496546186506748,
0.014728972688317299,
-0.01680723950266838,
0.019523702561855316,
0.021884199231863022,
-0.013501028530299664,
-0.05909188091754913,
-0.032094649970531464,
0.03019104152917862,
-0.022379079833626747,
-0.010826896876096725,
-0.022079121321439743,
-0.014374377205967903,
-0.012434383854269981,
0.035624608397483826,
-0.028482800349593163,
-0.02150353603065014,
-0.026293642818927765,
-0.018909772858023643,
0.025916168466210365,
0.02258909121155739,
0.0018087582429870963,
0.025935670360922813,
-0.003745807334780693,
0.09410698711872101,
-0.03085809387266636,
0.003513768780976534,
-0.05446048825979233,
-0.02563602663576603,
-0.02400464378297329,
0.06808988004922867,
0.08457231521606445,
0.05078888684511185,
-0.004527800250798464,
-0.03554551675915718,
0.0374562107026577,
0.04548071324825287,
0.04758007079362869,
0.011785019189119339,
-0.06831710040569305,
-0.005212890449911356,
0.041210006922483444,
0.05008849874138832,
-0.037609342485666275,
-0.021089714020490646,
0.007014115806668997,
0.016774145886301994,
-0.023761941120028496,
0.008118869736790657,
-0.016453223302960396,
0.04065221920609474,
-0.06334041059017181,
-0.08984261006116867,
0.03139754757285118,
0.04433022812008858,
0.047998059540987015,
0.029658334329724312,
-0.03139675036072731,
-0.014353220351040363,
0.02806246280670166,
-0.008929840289056301,
-0.007897104136645794,
-0.04805675148963928,
0.011318198405206203,
0.03031560592353344,
0.05548418313264847,
-0.03710274025797844,
0.04825731739401817,
-0.002127924934029579,
-0.009375562891364098,
0.02026900090277195,
-0.03575238958001137,
0.04428635537624359,
0.051325224339962006,
0.017933327704668045,
-0.01965687982738018,
0.027509910985827446,
0.0032251051161438227,
0.044632744044065475,
0.04176304489374161,
-0.011192753911018372,
0.04480504244565964,
0.010475152172148228,
0.02119581773877144,
0.05883973091840744,
0.009616865776479244,
0.0021048272028565407,
0.03995126858353615,
0.0760880783200264,
-0.006366713438183069,
-0.0057890526950359344,
0.056117862462997437,
-0.04516657069325447,
0.03410696983337402,
-0.04355825483798981,
-0.019255422055721283,
-0.039771705865859985,
-0.031850192695856094,
0.06379421800374985,
0.039357900619506836,
-0.02835840731859207,
0.019510844722390175,
-0.012387001886963844,
-0.014240456745028496,
0.025489112362265587,
-0.04274111986160278,
-0.005306258797645569,
0.020165234804153442,
-0.006986930500715971,
0.0037502360064536333,
-0.10129542648792267,
-0.07992959767580032,
-0.028296727687120438,
-0.017144713550806046,
-0.01196212600916624,
-0.0746426060795784,
-0.022212062031030655,
-0.05428815260529518,
-0.011542041786015034,
0.015803052112460136,
0.021376099437475204,
0.012103581801056862,
-0.06781210005283356,
0.020245376974344254,
-0.04764721170067787,
-0.026551401242613792,
-0.07043427228927612,
-0.051157109439373016,
-0.05759598687291145,
-0.10168439149856567,
0.023741696029901505,
0.018988022580742836,
0.04703644663095474,
0.0078160734847188,
-0.014000050723552704,
-0.019828123971819878,
-0.03186793252825737,
0.029404617846012115,
0.05772135779261589,
-0.0069823130033910275,
-0.055167440325021744,
0.035998210310935974,
-0.010999671183526516,
0.01826598308980465,
-0.023292265832424164,
-0.04368230327963829,
0.08793223649263382,
0.08422337472438812,
0.007202837150543928,
0.004664971958845854,
0.0062261116690933704,
-0.05749417468905449,
-0.05213841050863266,
-0.03808657079935074,
-0.03445393219590187,
-0.009171813726425171,
-0.038140542805194855,
-0.01987975835800171,
-0.0021953091491013765,
-0.013440991751849651,
-0.019369395449757576,
-0.023076968267560005,
0.018214872106909752,
0.035813745111227036,
0.06868086755275726,
-0.007041337434202433,
0.0360586903989315,
-0.028282681480050087,
-0.022640066221356392,
0.039981380105018616,
0.013725328259170055,
0.034996189177036285,
-0.06851048767566681,
-0.044517941772937775,
0.038167450577020645,
0.015810927376151085,
0.005782089661806822,
-0.001512642134912312,
0.07518025487661362,
0.037707068026065826,
-0.03119189292192459,
0.016636768355965614,
-0.055488962680101395,
-0.021438123658299446,
-0.012771684676408768,
-0.00009311908797826618,
-0.017651081085205078,
-0.028956927359104156,
-0.01809418760240078,
-0.01867908053100109,
0.0411539301276207,
-0.03937801346182823,
-0.061775267124176025,
0.00944752711802721,
0.03129570186138153,
0.04753337427973747,
-0.001922022900544107,
-0.03094305843114853,
-0.016421394422650337,
-0.07185709476470947,
-0.01280214823782444,
0.027737746015191078,
-0.009327695704996586,
0.01585266925394535,
0.028945881873369217,
0.007531408686190844,
0.003712433623149991,
0.03356149047613144,
0.03838477283716202,
0.06196431443095207,
0.017969606444239616,
-0.05821438133716583,
-0.006405999884009361,
-0.013867363333702087,
0.02593638189136982,
0.003985323011875153,
-0.013883216306567192,
-0.04274222254753113,
-0.09683692455291748,
-0.002579407999292016,
0.0026639301795512438,
-0.010921616107225418,
0.001490784459747374,
0.03118792548775673,
0.005315192975103855,
0.0061214216984808445,
0.012824248522520065,
0.009567156434059143,
0.04496103525161743,
-0.04950210824608803,
0.05007695034146309,
-0.02332930453121662,
0.019967496395111084,
-0.03854275867342949,
0.011388671584427357,
-0.016577452421188354,
-0.015431149862706661,
-0.01494264043867588,
0.06692802906036377,
0.03949486091732979,
0.056657690554857254,
0.06702722609043121,
0.038494620472192764,
-0.02943851426243782,
0.02439871057868004,
0.0590633824467659,
-0.04494161531329155,
-0.056786827743053436,
-0.02679404616355896,
0.007590482477098703,
0.002663817722350359,
-0.0023970813490450382,
-0.019591135904192924,
0.02378576248884201,
0.036775097250938416,
-0.0002650224487297237,
-0.028187310323119164,
-0.019704600796103477,
-0.023942308500409126,
-0.029920844361186028,
-0.041815657168626785,
0.008795883506536484,
0.012723363935947418,
-0.014271515421569347,
0.01763201877474785,
0.03348485007882118,
0.04030708968639374,
0.04446696862578392,
0.040723759680986404,
-0.016790853813290596,
-0.05269584059715271,
0.03996087238192558,
0.022838328033685684,
-0.021023038774728775,
-0.07158174365758896,
-0.018366070464253426,
0.035657137632369995,
0.04454011097550392,
-0.006850750185549259,
-0.07442103326320648,
0.029520057141780853,
0.05921769514679909,
-0.049689702689647675,
0.07444556802511215,
-0.00714657548815012,
0.02686791867017746,
0.04885220155119896,
-0.015135305002331734,
0.02572856843471527,
-0.0032677995041012764,
-0.005348850507289171,
0.0046883863396942616,
0.022209981456398964,
-0.024250086396932602,
-0.018507862463593483,
-0.04592923820018768,
0.026890816166996956,
0.007806716952472925,
0.054708436131477356,
0.032199662178754807,
-0.040952909737825394,
-0.06618662178516388,
0.0058206673711538315,
0.043852098286151886,
-0.01620185375213623,
0.016312362626194954,
0.052456047385931015,
0.030597412958741188,
-0.05328959971666336,
-0.06901728361845016,
-0.02947087027132511,
-0.010036974214017391,
0.029906760901212692,
-0.016890771687030792,
-0.02300465852022171,
-0.030333446338772774,
0.03892562910914421,
-0.04176035523414612,
-0.010143023915588856,
-0.07895775884389877,
0.03480435535311699,
-0.019174590706825256,
0.007570221554487944,
0.03957615792751312,
0.0246738251298666,
0.015069293789565563,
0.06530211865901947,
0.007611147593706846,
-0.0034175601322203875,
-0.031912028789520264,
0.024223443120718002,
-0.030917417258024216,
-0.02306879311800003,
-0.016652122139930725,
-0.06798679381608963,
-0.003060345770791173,
-0.004644420929253101,
-0.04274476692080498,
-0.025797830894589424,
-0.05213196575641632,
0.022981345653533936,
0.0008052511839196086,
-0.004685304127633572,
-0.015018375590443611,
0.031511761248111725,
-0.029380876570940018,
-0.04637087509036064,
-0.03215143084526062,
-0.04543861374258995,
-0.03079914301633835,
-0.038843248039484024,
0.0015543281333521008,
0.015376213937997818,
0.052012331783771515,
0.014010797254741192,
0.03236287087202072,
0.007796981371939182,
0.03472051024436951,
-0.016881316900253296,
0.01471882127225399,
-0.005479350220412016,
-0.03157501667737961,
-0.03335980698466301,
0.02726827934384346,
-0.013318927958607674,
0.04656776413321495,
-0.021941272541880608,
0.005171627271920443,
0.01805240474641323,
0.0030575820710510015,
-0.03465621918439865,
0.008539889939129353,
0.04953134059906006,
-0.033238161355257034,
-0.015707703307271004,
-0.018850361928343773,
-0.044562872499227524,
0.008446166291832924,
-0.02272854372859001,
-0.024813227355480194,
0.010142315179109573,
-0.004426497966051102,
0.031193807721138,
-0.030251305550336838,
-0.052704934030771255,
0.01457119919359684,
-0.018191980198025703,
0.055639900267124176,
-0.05504153296351433,
0.03767085820436478,
-0.022451091557741165,
0.007988054305315018,
-0.030813300982117653,
-0.01264492142945528,
-0.05081310495734215,
0.07022897154092789,
0.028050441294908524,
-0.038844995200634,
-0.005139444954693317,
-0.0023686373606324196,
-0.01277807354927063,
0.057014692574739456,
-0.009739481844007969,
0.036990001797676086,
-0.035286568105220795,
0.04504687711596489,
-0.018225986510515213,
0.010788816027343273,
-0.04001833498477936,
0.03802719712257385,
-0.026492252945899963,
0.01917913742363453,
-0.029991764575242996,
-0.011136775836348534,
0.016575021669268608,
0.05914037674665451,
0.03762301802635193,
0.02667379193007946,
-0.022503672167658806,
0.02063404582440853,
-0.005938132759183645,
-0.04759290814399719,
-0.03691645339131355,
-0.01214177068322897,
0.00947193056344986,
0.002548552816733718,
0.0380493625998497,
0.03914323449134827,
-0.034433797001838684,
-0.04807906225323677,
0.04960847273468971,
0.04206916317343712,
0.015289782546460629,
-0.0035353621933609247,
0.03739801421761513,
0.026152336969971657,
0.0489141084253788,
-0.03361068665981293,
0.02177126705646515,
0.013898937031626701,
-0.011448857374489307,
0.03806949034333229,
0.0013434920692816377,
0.029944567009806633,
0.024957410991191864,
-0.031183354556560516,
-0.025459904223680496,
0.0292808935046196,
0.06542084366083145,
0.01790578104555607,
-0.017233695834875107,
-0.0339188277721405,
0.024543210864067078,
0.013351480476558208,
-0.06724552065134048,
0.0021737394854426384,
0.026908136904239655,
-0.014846899546682835,
0.0582822784781456,
-0.024493727833032608,
0.004732406232506037,
0.023906005546450615,
0.043731704354286194,
-0.004206211771816015,
0.05286406725645065,
-0.021479114890098572,
0.02187054045498371,
0.055859070271253586,
-0.050747428089380264,
-0.024898534640669823,
-0.0235674399882555,
0.06610876321792603,
-0.053225770592689514,
0.06375092267990112,
0.031843047589063644,
0.0002861965331248939,
0.03413264825940132,
-0.02934160642325878,
-0.05974825099110603,
0.003511452814564109,
-0.03898999094963074,
0.043066393584012985,
0.00939448643475771,
-0.04805298149585724,
0.07189811766147614,
0.03000057302415371,
-0.04764857143163681,
0.045433301478624344,
0.02482965961098671,
0.017186889424920082,
0.020362751558423042,
0.04927888885140419,
-0.05232668295502663,
-0.018365511670708656,
-0.04217516630887985,
0.07093595713376999,
-0.06569929420948029,
-0.037491314113140106,
0.02168344520032406,
-0.05824887007474899,
-0.04632500559091568,
0.02685525454580784,
0.010661974549293518,
-0.025409357622265816,
0.028759228065609932,
-0.08335426449775696,
-0.06945950537919998,
-0.008207938633859158,
0.007172014564275742,
-0.011472944170236588,
0.011021239683032036,
-0.036763746291399,
0.01264739129692316,
0.014056541956961155,
-0.0027267455589026213,
0.028334833681583405,
-0.016570517793297768,
0.04289401322603226,
-0.0436701625585556,
-0.012526766397058964,
0.06896679848432541,
-0.006987137719988823,
-0.03440513089299202,
0.043458085507154465,
-0.0032643761951476336,
0.02695571444928646,
0.01603003218770027,
-0.021402476355433464,
0.0036576162092387676,
-0.03976835682988167,
-0.022670341655611992,
0.013144117780029774,
-0.009426353499293327,
0.03846394270658493,
-0.027146071195602417,
0.03513255715370178,
0.012574262917041779,
0.017209492623806,
0.013581473380327225,
-0.03724793717265129,
-0.015567882917821407,
0.01496337540447712,
-0.03606454282999039,
0.02830035798251629,
0.020307771861553192,
-0.05048326775431633,
-0.04666172340512276,
-0.031038923189044,
-0.03866598755121231,
0.04078531265258789,
-0.035412661731243134,
0.006883142050355673,
0.0130508067086339,
0.002621876774355769,
-0.03467118740081787,
-0.11013845354318619,
-0.0031501201447099447,
-0.05480334907770157,
0.008865803480148315,
0.01630091667175293,
-0.032842837274074554,
0.036337707191705704,
-0.017278533428907394,
-0.03697262331843376,
0.029508521780371666,
0.015212083235383034,
-0.029609914869070053,
0.038050275295972824,
0.05397893488407135,
-0.039587732404470444,
0.03147454187273979,
0.03316716477274895,
-0.029825644567608833,
0.012388283386826515,
0.013171788305044174,
0.0005039401003159583,
0.055154044181108475,
-0.007275925949215889,
-0.050952378660440445,
-0.026901789009571075,
-0.06858666986227036,
-0.0017928987508639693,
-0.0571998655796051,
0.01878487505018711,
0.056195132434368134
] |
Arcanos/1 | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | 2023-05-18T09:52:38Z | ---
license: creativeml-openrail-m
tags:
- stablediffusionapi.com
- stable-diffusion-api
- text-to-image
- ultra-realistic
pinned: true
---
# API Inference

## Get API Key
Get API key from [Stable Diffusion API](http://stablediffusionapi.com/), No Payment needed.
Replace Key in below code, change **model_id** to "3AmvPjC7O5hWtaFsl8bf6dkGx"
Coding in PHP/Node/Java etc? Have a look at docs for more code examples: [View docs](https://stablediffusionapi.com/docs)
Model link: [View model](https://stablediffusionapi.com/models/3AmvPjC7O5hWtaFsl8bf6dkGx)
Credits: [View credits](https://civitai.com/?query=model_search)
View all models: [View Models](https://stablediffusionapi.com/models)
import requests
import json
url = "https://stablediffusionapi.com/api/v3/dreambooth"
payload = json.dumps({
"key": "",
"model_id": "3AmvPjC7O5hWtaFsl8bf6dkGx",
"prompt": "actual 8K portrait photo of gareth person, portrait, happy colors, bright eyes, clear eyes, warm smile, smooth soft skin, big dreamy eyes, beautiful intricate colored hair, symmetrical, anime wide eyes, soft lighting, detailed face, by makoto shinkai, stanley artgerm lau, wlop, rossdraws, concept art, digital painting, looking into camera",
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
"width": "512",
"height": "512",
"samples": "1",
"num_inference_steps": "30",
"safety_checker": "no",
"enhance_prompt": "yes",
"seed": None,
"guidance_scale": 7.5,
"multi_lingual": "no",
"panorama": "no",
"self_attention": "no",
"upscale": "no",
"embeddings": "embeddings_model_id",
"lora": "lora_model_id",
"webhook": None,
"track_id": None
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
> Use this coupon code to get 25% off **DMGG0RBN** | [
-0.03460821136832237,
-0.036784879863262177,
-0.013194259256124496,
0.02061319537460804,
0.04192180559039116,
0.021998878568410873,
-0.014239039272069931,
0.0002107050531776622,
-0.013217367231845856,
0.05111350119113922,
0.04049736261367798,
-0.004081598948687315,
0.019242124632000923,
0.032455991953611374,
-0.025671962648630142,
-0.03449706360697746,
-0.044865887612104416,
0.01557181216776371,
-0.022761927917599678,
0.015698401257395744,
0.06175577640533447,
0.01971597783267498,
-0.001634234911762178,
0.0030025916639715433,
-0.016913702711462975,
0.017878133803606033,
-0.016613170504570007,
0.008748270571231842,
0.0241673793643713,
-0.04916300252079964,
-0.020539086312055588,
-0.04481397196650505,
-0.036621883511543274,
-0.03980163484811783,
-0.05903749167919159,
0.0004316318954806775,
0.021214380860328674,
0.0331721156835556,
0.02506190352141857,
0.05112568661570549,
-0.0047730691730976105,
0.003908589016646147,
0.012198504991829395,
-0.01510116271674633,
0.06154094263911247,
0.004103782121092081,
-0.040403276681900024,
-0.0356159508228302,
0.047970231622457504,
-0.0065307836048305035,
-0.07881753146648407,
-0.07219137996435165,
-0.02381727658212185,
0.020755786448717117,
-0.003025512211024761,
-0.02260504476726055,
-0.0626470148563385,
-0.007618710398674011,
0.0424807071685791,
-0.07654152065515518,
-0.013569490984082222,
0.0015672527952119708,
-0.07067383080720901,
0.004173646215349436,
0.018871815875172615,
-0.038543716073036194,
-0.003474461380392313,
-0.048153407871723175,
0.028343230485916138,
-0.015934832394123077,
0.0619664341211319,
-0.051745690405368805,
0.026622168719768524,
-0.05905729532241821,
-0.004307842347770929,
-0.024151647463440895,
0.06291604787111282,
0.03586976230144501,
-0.033559802919626236,
0.04783078655600548,
0.02116437815129757,
0.0291411392390728,
0.024015476927161217,
0.0007740695145912468,
-0.026117680594325066,
0.04236868396401405,
-0.03665104880928993,
0.027565129101276398,
0.0046183583326637745,
0.03794877976179123,
-0.05496250465512276,
-0.055686105042696,
-0.006460786331444979,
-0.040267616510391235,
-0.0010084460955113173,
0.023768654093146324,
0.05604198947548866,
-0.014872632920742035,
0.030301861464977264,
0.024901624768972397,
0.022588541731238365,
0.05221470072865486,
-0.019322576001286507,
0.0900108590722084,
-0.018350234255194664,
-0.02939833328127861,
-0.020596781745553017,
-0.03018123097717762,
-0.04227476194500923,
0.006792192813009024,
0.04352192208170891,
-0.02195238694548607,
-0.011824579909443855,
0.018792418763041496,
0.0449027493596077,
0.008131368085741997,
0.03382023423910141,
-0.008848005905747414,
-0.034143682569265366,
-0.07397150248289108,
0.041550278663635254,
0.030316146090626717,
-0.014577485620975494,
-0.009730297140777111,
-0.047292884439229965,
0.029815996065735817,
-0.04271889850497246,
-0.022661609575152397,
-0.0004903796943835914,
0.02999730408191681,
-0.013704121112823486,
0.02103538066148758,
0.017939548939466476,
-0.06867346912622452,
-0.002634842414408922,
0.03578078746795654,
-0.03923427686095238,
0.037235721945762634,
-0.003410778008401394,
0.12060307711362839,
-0.06969186663627625,
-0.041659221053123474,
0.02635645866394043,
0.023617170751094818,
-0.04398154467344284,
0.022233430296182632,
0.010537358932197094,
-0.056139033287763596,
-0.005128893069922924,
-0.019869022071361542,
0.04068269953131676,
-0.059116289019584656,
-0.030436769127845764,
0.020567871630191803,
0.014803851954638958,
0.044819947332143784,
-0.026929985731840134,
-0.016622062772512436,
-0.012940061278641224,
-0.005510724149644375,
-0.015650048851966858,
0.03417558968067169,
-0.013436156325042248,
-0.03609168529510498,
-0.02441500499844551,
-0.029062362387776375,
0.02448502741754055,
0.09195742756128311,
-0.025476796552538872,
-0.02088376320898533,
-0.04765644297003746,
0.010930169373750687,
0.04089001938700676,
0.031049026176333427,
-0.021720265969634056,
0.057509712874889374,
0.05978477746248245,
0.021046871319413185,
-0.042244650423526764,
0.05571936070919037,
0.016844190657138824,
-0.011897720396518707,
-0.007422295864671469,
-0.002798828762024641,
0.006960504222661257,
-0.02705860137939453,
-0.012122287414968014,
0.026636693626642227,
-0.02031780406832695,
-0.029903607442975044,
-0.0021540734451264143,
0.06870679557323456,
-0.00352857424877584,
-0.027686340734362602,
-0.007105930242687464,
-0.0018601315096020699,
-0.024056462571024895,
0.04920164868235588,
-0.008633510209619999,
-0.0008553547668270767,
-0.03023962303996086,
-0.024371353909373283,
-0.0015091723762452602,
0.013564868830144405,
0.031175831332802773,
0.040381040424108505,
-0.003551528789103031,
0.08615853637456894,
-0.029832767322659492,
0.029386088252067566,
-0.07226455211639404,
-0.06780371069908142,
0.03160418942570686,
0.05894472450017929,
0.026405464857816696,
0.025922929868102074,
-0.01383954007178545,
-0.022539503872394562,
0.02162967436015606,
0.04508450627326965,
0.04353269934654236,
0.02458549663424492,
-0.021895192563533783,
-0.01633242517709732,
0.0313413143157959,
0.038879647850990295,
-0.06707141548395157,
-0.03898140415549278,
0.02565334364771843,
0.03416196629405022,
-0.046796150505542755,
0.017658881843090057,
-0.0034355544485151768,
0.024963660165667534,
-0.05341055616736412,
-0.06102267652750015,
0.035848621279001236,
0.03930886834859848,
0.008671852760016918,
0.03803922235965729,
0.007322309538722038,
-0.005121021531522274,
0.03498256579041481,
-0.0037898567970842123,
0.027028897777199745,
-0.05978032946586609,
-0.00433820066973567,
0.007722779177129269,
0.06702978163957596,
-0.04703749716281891,
0.048618096858263016,
-0.003759086597710848,
0.04845936968922615,
0.04707827791571617,
-0.05941787362098694,
0.032573625445365906,
0.09614133089780807,
0.015898240730166435,
-0.037806715816259384,
0.046857815235853195,
0.024406973272562027,
0.006566131953150034,
0.04965483769774437,
-0.011220593005418777,
0.046504873782396317,
-0.018720533698797226,
0.05572236701846123,
0.09091278910636902,
0.02834434062242508,
0.013540673069655895,
0.027614643797278404,
0.09058041125535965,
-0.027262486517429352,
-0.0226234570145607,
0.05802084505558014,
-0.042977605015039444,
0.02953146956861019,
-0.02488374151289463,
0.0008151794318109751,
-0.01828911155462265,
0.0024030094500631094,
0.058013271540403366,
0.028386862948536873,
-0.05026286467909813,
-0.0032203663140535355,
0.01738572306931019,
0.0011046071304008365,
0.030751416459679604,
-0.01007099635899067,
0.0027799601666629314,
-0.014435796067118645,
-0.012705001048743725,
0.024283865466713905,
-0.07111702114343643,
-0.04909706488251686,
-0.029544886201620102,
-0.022529644891619682,
0.02104620449244976,
-0.07285255938768387,
-0.019744016230106354,
-0.06532745063304901,
0.011722562834620476,
0.04063790664076805,
0.004603201523423195,
-0.010217605158686638,
-0.04425623267889023,
0.02428293228149414,
-0.05343306064605713,
-0.05849400907754898,
-0.07863336056470871,
-0.042123943567276,
-0.021762646734714508,
-0.07679538428783417,
0.04964140057563782,
0.009607524611055851,
0.029914936050772667,
-0.010637618601322174,
-0.0003288200532551855,
-0.010796471498906612,
-0.01829085871577263,
0.029389716684818268,
0.025756902992725372,
-0.03176851198077202,
-0.0285419262945652,
-0.0026378624606877565,
-0.0200860183686018,
0.012601952068507671,
-0.013041604310274124,
-0.01821126416325569,
0.09856130182743073,
0.033181075006723404,
0.006066987756639719,
-0.003511231392621994,
-0.005590865854173899,
-0.02340354397892952,
-0.024722067639231682,
-0.033278025686740875,
-0.04942324385046959,
-0.03501436486840248,
-0.015007028356194496,
-0.05319983884692192,
-0.006200195290148258,
-0.04248298332095146,
-0.0399436354637146,
-0.005953403655439615,
-0.01706419512629509,
0.03091679885983467,
0.048508111387491226,
0.03524540364742279,
0.04703991487622261,
-0.0464424304664135,
-0.03994646295905113,
0.05095688998699188,
0.023925481364130974,
-0.014839695766568184,
-0.058676693588495255,
-0.022016417235136032,
0.01291175838559866,
0.010371115058660507,
-0.028682013973593712,
-0.0152787109836936,
0.06843334436416626,
0.029867298901081085,
-0.048328742384910583,
0.005894898436963558,
-0.023599615320563316,
-0.016961432993412018,
0.009037384763360023,
-0.003971204627305269,
-0.009096535854041576,
-0.02000494860112667,
0.006477089133113623,
0.005398775916546583,
0.039617616683244705,
-0.056984689086675644,
-0.08678601682186127,
-0.005874606315046549,
0.022003456950187683,
0.045350801199674606,
0.021309534087777138,
-0.046152133494615555,
-0.005060593131929636,
-0.0662422627210617,
-0.014688372611999512,
0.02967446856200695,
-0.012218168005347252,
0.018445774912834167,
0.025702301412820816,
0.007084003183990717,
-0.016979623585939407,
0.02886706404387951,
0.024388106539845467,
-0.0025607876013964415,
0.0077177719213068485,
-0.021549301221966743,
-0.016818540170788765,
-0.028398998081684113,
0.019530730322003365,
0.009314293973147869,
-0.024934912100434303,
-0.07320185005664825,
-0.08584949374198914,
-0.0017907420406118035,
0.027211733162403107,
-0.00573453214019537,
0.01494478341192007,
0.05864185467362404,
0.009948748163878918,
0.011208155192434788,
0.01501524168998003,
0.025501245632767677,
0.05306028947234154,
-0.05569695681333542,
0.07199560105800629,
-0.01685941219329834,
-0.00615726551041007,
-0.04093754291534424,
0.014464638195931911,
-0.023412054404616356,
-0.03784150257706642,
0.012696236371994019,
0.04578792676329613,
0.02584839053452015,
0.0783771201968193,
0.025841278955340385,
0.020154863595962524,
-0.04349713400006294,
0.030740775167942047,
0.03453436866402626,
-0.02512921206653118,
-0.061971843242645264,
0.0012577607994899154,
-0.013570114970207214,
-0.0023335854057222605,
0.005284548737108707,
0.00026851941947825253,
0.03991394862532616,
0.02986985072493553,
-0.038057807832956314,
0.002348911017179489,
0.013575289398431778,
-0.017248855903744698,
-0.005947538185864687,
-0.05589603632688522,
-0.0002095458476105705,
-0.002240340691059828,
-0.012605777941644192,
0.0032643035519868135,
0.0410001315176487,
0.048071954399347305,
0.057081520557403564,
0.03213159367442131,
-0.02403257228434086,
-0.04525672644376755,
0.039579540491104126,
0.020523475483059883,
-0.02415292337536812,
-0.09934581816196442,
-0.044914305210113525,
0.010735821910202503,
0.04881251975893974,
-0.01944022998213768,
-0.08388606458902359,
0.05793076008558273,
0.03994562104344368,
-0.05343862995505333,
0.04739125818014145,
-0.003180042142048478,
0.015186126343905926,
0.05720376968383789,
0.009927487000823021,
0.03753460943698883,
-0.03235877677798271,
0.008732499554753304,
0.00890508946031332,
0.0331757515668869,
-0.021760568022727966,
-0.03756459429860115,
-0.04755673557519913,
0.040446531027555466,
0.021818997338414192,
0.02651725709438324,
0.04499589279294014,
-0.05155008286237717,
-0.05505221337080002,
-0.04045697674155235,
0.06471265107393265,
-0.023442361503839493,
0.035375725477933884,
0.040050290524959564,
0.03327544033527374,
-0.030977098271250725,
-0.04108213633298874,
0.009499224834144115,
-0.017267432063817978,
0.022166181355714798,
-0.0006129411049187183,
-0.03946644812822342,
-0.014420092105865479,
0.02887972630560398,
0.009827601723372936,
-0.012328075245022774,
-0.08244363963603973,
0.03001866489648819,
-0.03672271966934204,
-0.034019824117422104,
0.04309196025133133,
0.01422752533107996,
0.05664219334721565,
0.058168675750494,
-0.0036371275782585144,
0.016918977722525597,
-0.023798899725079536,
0.018164413049817085,
-0.044969625771045685,
-0.004012923687696457,
-0.027976835146546364,
-0.06347500532865524,
-0.02753031998872757,
-0.013914691284298897,
-0.06485997885465622,
-0.044410429894924164,
-0.011934153735637665,
0.037363890558481216,
-0.013346965424716473,
0.007400511763989925,
0.001537185744382441,
0.01115910429507494,
-0.008975457400083542,
-0.028954900801181793,
-0.05081046372652054,
-0.029769055545330048,
-0.060115180909633636,
-0.0308998990803957,
0.04169655218720436,
0.013866293244063854,
0.03134670853614807,
-0.007461908273398876,
0.029517309740185738,
0.026720425114035606,
0.020930040627717972,
-0.054736651480197906,
0.025006139650940895,
0.01488511823117733,
-0.033597804605960846,
-0.021080655977129936,
0.010960742831230164,
0.014964956790208817,
0.01872282661497593,
-0.06293462961912155,
0.02157656103372574,
0.027096467092633247,
-0.031706277281045914,
-0.0348009392619133,
0.029218174517154694,
0.01969999261200428,
-0.043283313512802124,
0.005092289764434099,
0.0050714220851659775,
-0.03202733024954796,
0.03107163868844509,
-0.03073607012629509,
-0.02488642930984497,
0.0011088392930105329,
0.00901372916996479,
0.04267629608511925,
0.0030744029209017754,
-0.06017567589879036,
0.03197428584098816,
-0.010182092897593975,
0.03435156121850014,
-0.06335775554180145,
0.052660614252090454,
-0.015338095836341381,
0.012832963839173317,
-0.00599194411188364,
-0.0015300405211746693,
-0.028632551431655884,
0.05300537869334221,
-0.009086485020816326,
0.004032439086586237,
-0.0164980236440897,
0.02858678437769413,
-0.03669189661741257,
0.05842060595750809,
-0.02551175095140934,
0.011455128900706768,
-0.015948232263326645,
0.05995997041463852,
-0.04825086519122124,
0.009249228984117508,
-0.01796005666255951,
0.0019781533628702164,
-0.04299725592136383,
0.015355106443166733,
-0.009613702073693275,
-0.014319175854325294,
0.03317812457680702,
0.03848641365766525,
0.012892034836113453,
0.004294995684176683,
-0.047349873930215836,
0.003248332068324089,
0.005314686335623264,
-0.058050885796546936,
-0.013537357561290264,
0.008831127546727657,
-0.00095961126498878,
0.02880804054439068,
0.0556783452630043,
0.029822731390595436,
-0.047003958374261856,
-0.05950215458869934,
0.04464259743690491,
0.041844286024570465,
0.020065046846866608,
-0.02061270736157894,
0.006878718733787537,
0.036434926092624664,
0.029828157275915146,
-0.05520808324217796,
0.01517849788069725,
-0.00880714226514101,
0.010872818529605865,
0.018917430192232132,
-0.013052512891590595,
0.022611193358898163,
-0.018777774646878242,
-0.04818275570869446,
-0.018401481211185455,
0.07131872326135635,
0.022866496816277504,
0.03219803050160408,
0.0018135657301172614,
-0.04442279413342476,
0.03706755116581917,
0.030654991045594215,
-0.032341860234737396,
0.02495923824608326,
0.02116117998957634,
-0.009046697057783604,
0.03473063185811043,
-0.0006950866081751883,
0.02420315518975258,
0.013872314244508743,
0.03923758119344711,
-0.02565832994878292,
0.05690997466444969,
-0.05235232785344124,
0.045338619500398636,
0.041100408881902695,
-0.059337958693504333,
-0.005642276722937822,
-0.0397699773311615,
0.05974142253398895,
-0.09320737421512604,
0.06066585332155228,
0.03541606292128563,
-0.016311343759298325,
0.01705126091837883,
-0.042733702808618546,
-0.04015467315912247,
0.032204288989305496,
-0.05440850183367729,
0.06198091804981232,
0.004314404912292957,
-0.06076577678322792,
0.06670119613409042,
0.02302870899438858,
-0.07804719358682632,
0.030188757926225662,
0.02721036970615387,
-0.013000219129025936,
0.007364312652498484,
0.053308822214603424,
-0.02456042356789112,
0.034830085933208466,
-0.05516504496335983,
0.04398918151855469,
-0.07068318128585815,
-0.04851438105106354,
0.022885506972670555,
-0.060221727937459946,
-0.02335694245994091,
0.018252724781632423,
-0.008649967610836029,
-0.008280113339424133,
0.045873742550611496,
-0.01874489337205887,
-0.027493925765156746,
0.0028924960643053055,
-0.00167594023514539,
0.011446568183600903,
0.001907373545691371,
-0.011958036571741104,
0.02987326867878437,
0.018046746030449867,
0.012115624733269215,
-0.030409330502152443,
0.019274866208434105,
0.010586519725620747,
-0.06041413173079491,
-0.054882243275642395,
0.05058088153600693,
0.002355248434469104,
-0.01280529797077179,
0.023235958069562912,
0.006239038426429033,
0.025665873661637306,
0.008558384142816067,
-0.028995521366596222,
-0.015985814854502678,
-0.04205893352627754,
-0.026561228558421135,
0.02015477418899536,
0.01832592859864235,
0.02528408356010914,
-0.01390378549695015,
0.011390283703804016,
0.059349481016397476,
0.02791650965809822,
0.019376134499907494,
-0.021218804642558098,
-0.0014157353434711695,
0.011402030475437641,
-0.06551546603441238,
0.01346488855779171,
-0.011822436936199665,
-0.030598660930991173,
-0.03607780113816261,
-0.0013309316709637642,
-0.023020340129733086,
0.04106339067220688,
-0.04526473954319954,
0.0331171452999115,
0.05530034005641937,
-0.0028450186364352703,
-0.05205356702208519,
-0.09831087291240692,
-0.030250880867242813,
-0.06069202721118927,
0.01953132264316082,
0.011122171767055988,
-0.059767864644527435,
0.0027620643377304077,
-0.037541136145591736,
-0.05591072514653206,
0.019777167588472366,
-0.013743068091571331,
-0.019346347078680992,
0.04594512656331062,
0.05125253647565842,
-0.013375031761825085,
0.01402042806148529,
-0.006116344127804041,
-0.036637697368860245,
-0.00931465346366167,
-0.0079821040853858,
0.0014750062255188823,
0.02484149858355522,
0.03523851931095123,
-0.026514101773500443,
0.003578437026590109,
-0.021827982738614082,
-0.0555652379989624,
-0.04621492698788643,
-0.006671188399195671,
0.060850467532873154
] |
Archie/myProject | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
tags:
- generated_from_trainer
metrics:
- accuracy
model-index:
- name: mbert_zhth
results: []
---
<!-- 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. -->
# mbert_zhth
This model is a fine-tuned version of [../mbert_zhth/](https://huggingface.co/../mbert_zhth/) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 1.4626
- Accuracy: 0.7125
## 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: 16
- eval_batch_size: 16
- seed: 42
- gradient_accumulation_steps: 2
- total_train_batch_size: 32
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 1.0
- mixed_precision_training: Native AMP
### Training results
### Framework versions
- Transformers 4.30.0.dev0
- Pytorch 1.13.1+cu116
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.0362318679690361,
0.0015617052558809519,
-0.029161490499973297,
0.04539109393954277,
0.03183870017528534,
0.025665204972028732,
-0.030722783878445625,
-0.01627638190984726,
-0.03899092972278595,
0.055691931396722794,
0.05170983076095581,
-0.017201846465468407,
0.0031592263840138912,
0.05375972390174866,
-0.023090044036507607,
-0.022081315517425537,
-0.007689529564231634,
-0.0032824743539094925,
-0.04347934573888779,
0.016348380595445633,
0.01110211480408907,
0.0043602632358670235,
-0.01376896258443594,
0.018470102921128273,
0.0010547182755544782,
0.02454371005296707,
0.009048365987837315,
0.024915730580687523,
0.02225649543106556,
-0.0636269748210907,
0.006079206708818674,
-0.03828812763094902,
-0.03902394697070122,
-0.018220312893390656,
-0.01732390560209751,
0.0035645009484142065,
0.0065085673704743385,
0.010084941051900387,
0.0457133911550045,
0.05775214731693268,
0.003692732425406575,
0.024956950917840004,
-0.014497077092528343,
-0.04025162383913994,
0.06287916004657745,
0.0127012450248003,
-0.039965253323316574,
-0.007001379504799843,
0.047263454645872116,
-0.004585948307067156,
-0.05702529847621918,
-0.05470111593604088,
-0.021134091541171074,
0.023046767339110374,
-0.030058955773711205,
-0.022954724729061127,
-0.04786989465355873,
-0.010491348803043365,
0.0648331567645073,
-0.054864153265953064,
-0.034142594784498215,
0.013781330548226833,
-0.06268472969532013,
0.027807487174868584,
0.04026158154010773,
-0.023505015298724174,
0.024172302335500717,
-0.0392003208398819,
0.02788853459060192,
-0.0231490395963192,
0.06478673964738846,
-0.020390933379530907,
0.007702419068664312,
-0.09511847048997879,
-0.03268718719482422,
-0.005787862930446863,
0.03758935257792473,
0.05089590325951576,
-0.02603207156062126,
0.04551834985613823,
0.03413376584649086,
-0.012809843756258488,
0.04897881671786308,
-0.03836243599653244,
0.001179706770926714,
0.029955308884382248,
-0.027637794613838196,
0.0010996575001627207,
0.011276963166892529,
0.04073047265410423,
-0.04225702956318855,
-0.030843136832118034,
-0.03854908421635628,
-0.021457131952047348,
-0.02301873452961445,
0.012021114118397236,
0.04580100625753403,
0.011632384732365608,
0.03950153663754463,
0.029808176681399345,
0.04308101907372475,
0.032308179885149,
-0.0064000822603702545,
0.07217501103878021,
-0.013141268864274025,
-0.027509991079568863,
-0.032107703387737274,
-0.019198326393961906,
-0.03653869405388832,
0.029389631003141403,
0.030449295416474342,
-0.027399221435189247,
-0.03605078160762787,
0.04105289652943611,
0.013242397457361221,
-0.008814030326902866,
0.08126871287822723,
-0.024123962968587875,
-0.034875862300395966,
-0.0369657501578331,
0.027853500097990036,
0.011285951361060143,
-0.009191296994686127,
-0.006289951968938112,
-0.04262596368789673,
-0.015404284931719303,
-0.02706157974898815,
-0.028109071776270866,
0.0027578461449593306,
0.012503261677920818,
-0.003442537970840931,
0.06939263641834259,
0.031341299414634705,
-0.056767355650663376,
-0.011423751711845398,
0.016545768827199936,
-0.03677088022232056,
0.05948055535554886,
0.004402514081448317,
0.11310850828886032,
-0.0670979768037796,
-0.08646602183580399,
0.02893516607582569,
0.002078458433970809,
-0.01994803361594677,
0.015344551764428616,
0.027287598699331284,
-0.03958805650472641,
-0.01739913411438465,
-0.0021434547379612923,
0.04253486916422844,
-0.047591451555490494,
-0.0005207189824432135,
0.056132152676582336,
0.006336647551506758,
0.03535892814397812,
-0.04960847645998001,
-0.028483377769589424,
0.010986917652189732,
-0.018195170909166336,
-0.02452521026134491,
0.04026059806346893,
-0.03506512567400932,
0.005692791193723679,
-0.017971819266676903,
-0.03964792564511299,
0.0030228598043322563,
0.08318699896335602,
-0.00611140625551343,
-0.02943943440914154,
-0.023237887769937515,
0.03719930350780487,
0.043217726051807404,
0.0539337657392025,
-0.0406915619969368,
0.03861086443066597,
0.06814005970954895,
0.02623269148170948,
-0.043261680752038956,
0.026778841391205788,
0.022057466208934784,
-0.025568818673491478,
-0.03075592964887619,
0.010750683024525642,
-0.0018069058423861861,
-0.0418587327003479,
0.016218701377511024,
0.02911505475640297,
-0.008608282543718815,
-0.05968847498297691,
-0.03298662602901459,
0.044186823070049286,
0.0035551460459828377,
-0.01002474781125784,
0.01722192019224167,
-0.015160792507231236,
-0.015430394560098648,
0.03849330171942711,
-0.01450988557189703,
0.013426498509943485,
-0.016645748168230057,
-0.03808493912220001,
0.013881945982575417,
0.031024839729070663,
0.02760741300880909,
0.06077711656689644,
-0.0107728885486722,
0.08630216866731644,
-0.0316198356449604,
0.027200374752283096,
-0.039609529078006744,
-0.04638127610087395,
0.0209575816988945,
0.059574928134679794,
0.043947309255599976,
0.043200187385082245,
0.007674809545278549,
-0.04640096798539162,
0.04235110804438591,
0.04817284271121025,
0.0273596104234457,
0.004650943912565708,
-0.027898123487830162,
-0.02325533516705036,
0.016052041202783585,
0.057959143072366714,
-0.0532894991338253,
-0.028510581701993942,
0.008637878112494946,
0.03784605488181114,
-0.011316531337797642,
0.012101886793971062,
-0.023226892575621605,
0.04245913401246071,
-0.05011391267180443,
-0.06341088563203812,
0.05169399455189705,
0.04421553760766983,
-0.015380104072391987,
0.03105662576854229,
-0.00005454194615595043,
-0.005864020902663469,
0.016738450154662132,
0.0022989867720752954,
0.006592900492250919,
-0.03343377262353897,
0.014206375926733017,
0.015394322574138641,
0.042994435876607895,
-0.04216523468494415,
0.029250256717205048,
-0.014107286930084229,
-0.0009472902165725827,
0.03678499534726143,
-0.04655741527676582,
0.022836364805698395,
0.03625967353582382,
0.03714936971664429,
-0.032307714223861694,
0.010632646270096302,
0.002845864510163665,
0.03723772615194321,
0.04948987439274788,
-0.014765435829758644,
0.06769409030675888,
-0.005684725008904934,
0.053502198308706284,
0.08006471395492554,
0.02936388924717903,
0.028171341866254807,
0.022160600870847702,
0.08505014330148697,
0.017685772851109505,
-0.025328554213047028,
0.057116564363241196,
-0.04799353703856468,
0.0029454068280756474,
-0.04804551228880882,
0.025785870850086212,
-0.02110220305621624,
-0.006684781983494759,
0.036824777722358704,
0.01136719062924385,
-0.01063314639031887,
-0.012102504260838032,
0.0026696203276515007,
-0.023669986054301262,
0.03492261841893196,
-0.003916227258741856,
-0.016213437542319298,
-0.0007662029238417745,
-0.006053667049854994,
-0.022949039936065674,
-0.07850339263677597,
-0.037870243191719055,
-0.014738742262125015,
-0.019966205582022667,
0.0005412470200099051,
-0.10894712060689926,
-0.005356822162866592,
-0.06464804708957672,
-0.025837847962975502,
0.03075295127928257,
0.004046311601996422,
-0.008883683010935783,
-0.03557104989886284,
0.022481249645352364,
-0.0465892031788826,
-0.04793059453368187,
-0.05295539274811745,
-0.04998461529612541,
-0.04742291569709778,
-0.07812251150608063,
0.040549084544181824,
0.01949850656092167,
0.015431598760187626,
0.0035414451267570257,
0.004201136529445648,
-0.002489598700776696,
-0.023722907528281212,
0.052227333188056946,
0.06215062737464905,
-0.039242859929800034,
-0.0627768337726593,
0.02406313084065914,
-0.014976311475038528,
0.019780423492193222,
0.010269960388541222,
-0.036417268216609955,
0.10119254887104034,
0.07987535744905472,
0.01709430292248726,
0.016168035566806793,
-0.026180094107985497,
-0.0626274049282074,
-0.04900812357664108,
-0.017326384782791138,
-0.022585101425647736,
-0.012485656887292862,
-0.04453250393271446,
-0.03953144699335098,
-0.016619179397821426,
-0.04871654883027077,
-0.00698569230735302,
-0.006189791020005941,
0.026391558349132538,
0.021419240161776543,
0.04394778609275818,
0.02810051292181015,
0.034045252948999405,
-0.03739704564213753,
-0.041123006492853165,
0.0589461475610733,
0.00654025049880147,
-0.01179493311792612,
-0.0807131677865982,
-0.012941868975758553,
0.03685449808835983,
0.028780274093151093,
0.009054642170667648,
-0.00787858571857214,
0.06531591713428497,
-0.01413569226861,
-0.0066726901568472385,
0.018878035247325897,
-0.0002213631960330531,
-0.02022533304989338,
-0.009301349520683289,
0.0008642624597996473,
-0.004786064848303795,
-0.040709007531404495,
-0.019637148827314377,
-0.004775607958436012,
0.0473301038146019,
-0.06298687309026718,
-0.05349110811948776,
-0.02987944893538952,
0.04405289888381958,
0.042459987103939056,
-0.015718387439846992,
-0.05252742022275925,
-0.01462483685463667,
-0.059128277003765106,
0.0034128776751458645,
0.04532201588153839,
0.019916150718927383,
0.02235041745007038,
0.041671279817819595,
0.009765398688614368,
-0.021493081003427505,
0.05243443325161934,
0.039073582738637924,
0.07362724840641022,
0.014653024263679981,
-0.0652705579996109,
-0.009980685077607632,
-0.02451331727206707,
0.01266508363187313,
0.0008013630867935717,
-0.02735600620508194,
-0.03031979501247406,
-0.11121349036693573,
-0.004878315143287182,
0.016059663146734238,
-0.0023283783812075853,
-0.009830080904066563,
0.05142614617943764,
-0.0063353669829666615,
-0.03642019256949425,
0.00012830039486289024,
0.012843663804233074,
0.051227763295173645,
-0.041567739099264145,
0.050187043845653534,
-0.012704447843134403,
0.013509373180568218,
-0.044875048100948334,
0.008679801598191261,
-0.03050467185676098,
-0.013333803974092007,
0.0006055536796338856,
0.061146318912506104,
0.008247019723057747,
0.053530726581811905,
0.07499620318412781,
0.012599085457623005,
-0.05080143362283707,
0.01902630552649498,
0.05811592936515808,
-0.035271789878606796,
-0.0516081266105175,
-0.004885788541287184,
-0.009841501712799072,
-0.014231886714696884,
-0.02674800530076027,
-0.004386148881167173,
0.04179120808839798,
0.050419118255376816,
0.0018930607475340366,
0.018053457140922546,
0.008270639926195145,
-0.009881383739411831,
-0.031068822368979454,
-0.04803808405995369,
-0.03558645397424698,
0.0024146479554474354,
-0.031147027388215065,
0.010373136028647423,
0.02977832406759262,
-0.0037037981674075127,
0.053277257829904556,
0.02961675450205803,
-0.027368823066353798,
-0.03416008874773979,
0.025822095572948456,
-0.0005282886559143662,
-0.03212716802954674,
-0.07356754690408707,
-0.019917551428079605,
0.020578937605023384,
0.04321206361055374,
-0.01846267469227314,
-0.05180748924612999,
0.010324225760996342,
0.05404550954699516,
-0.027578454464673996,
0.06349070370197296,
-0.013500072993338108,
0.04199494421482086,
0.05369134992361069,
-0.026665396988391876,
0.04117811098694801,
-0.018744289875030518,
-0.01106822956353426,
0.00039182978798635304,
0.038972221314907074,
-0.010756347328424454,
-0.03703581541776657,
-0.05148027092218399,
0.030503086745738983,
0.04055992141366005,
0.04590456932783127,
0.052337512373924255,
-0.029113316908478737,
-0.03756703436374664,
0.004603344947099686,
0.049827683717012405,
-0.0567375048995018,
0.01739363931119442,
0.02299496717751026,
0.03018658608198166,
-0.05656479299068451,
-0.02895307168364525,
-0.032275568693876266,
-0.019887955859303474,
0.024757737293839455,
-0.0018987538060173392,
-0.051450151950120926,
-0.030658142641186714,
0.03461093828082085,
0.00013880198821425438,
-0.016992568969726562,
-0.0589468888938427,
0.05662981793284416,
-0.011522323824465275,
-0.019292572513222694,
0.06857748329639435,
0.036389920860528946,
0.028712978586554527,
0.06134776398539543,
0.03111198917031288,
0.032737765461206436,
-0.03754350543022156,
0.04933474585413933,
-0.03899719938635826,
-0.007933065295219421,
0.018476178869605064,
-0.04864565655589104,
-0.010873757302761078,
-0.033324625343084335,
-0.034062426537275314,
-0.05353773385286331,
-0.013120885007083416,
0.006231328472495079,
-0.02011992409825325,
-0.020904187113046646,
-0.0032988768070936203,
0.050823744386434555,
-0.01578514650464058,
-0.02848891355097294,
-0.044068217277526855,
-0.02287142165005207,
-0.06995166838169098,
-0.07017405331134796,
0.018739139661192894,
-0.0029539878014475107,
0.03831222280859947,
0.03677942231297493,
0.017029743641614914,
0.016453584656119347,
-0.006139010656625032,
-0.034976717084646225,
0.021845296025276184,
-0.011988012120127678,
-0.01509484089910984,
-0.015283551998436451,
0.037119776010513306,
0.019163163378834724,
0.024649199098348618,
-0.03419437259435654,
0.0409134142100811,
0.015422231517732143,
-0.0005610421067103744,
-0.0107694948092103,
0.02007443830370903,
0.013155936263501644,
-0.07368957251310349,
-0.019042521715164185,
-0.005556290503591299,
-0.03354743495583534,
0.01970641501247883,
-0.02911914885044098,
-0.020596863701939583,
-0.0040122768841683865,
0.01471907738596201,
0.03636237233877182,
-0.013680173084139824,
-0.011201448738574982,
0.027209898456931114,
-0.032399293035268784,
0.01928381808102131,
-0.0429864265024662,
0.06030571833252907,
-0.05019807443022728,
0.018128959462046623,
-0.01276787742972374,
0.021109668537974358,
-0.059171900153160095,
0.04071470722556114,
-0.02547438070178032,
-0.022851962596178055,
-0.020939689129590988,
0.04576154425740242,
-0.030693231150507927,
0.032497894018888474,
-0.0032265621703118086,
0.028375010937452316,
-0.026954516768455505,
0.06138475239276886,
-0.040330059826374054,
0.013365039601922035,
-0.02037699706852436,
0.02188151888549328,
-0.029413070529699326,
0.015375478193163872,
-0.0078122843988239765,
-0.021383119747042656,
0.01422395370900631,
0.05934150889515877,
0.036679137498140335,
0.02414139360189438,
-0.000333609088556841,
-0.021010877564549446,
0.023421084508299828,
-0.03662601858377457,
-0.01017242856323719,
-0.022834433242678642,
0.004923072177916765,
-0.0028608087450265884,
0.04630249738693237,
0.054589346051216125,
-0.03764187917113304,
-0.06525707989931107,
0.06339352577924728,
0.0164413470774889,
-0.009905626997351646,
0.0024112085811793804,
0.03730682283639908,
0.03118731454014778,
0.05661758407950401,
-0.03490636497735977,
-0.013400310650467873,
-0.013745198026299477,
-0.050558071583509445,
0.03157348930835724,
0.01335277408361435,
0.04617093503475189,
0.013706565834581852,
-0.03451649099588394,
-0.053889840841293335,
0.0829397588968277,
0.020803678780794144,
0.024732256308197975,
-0.004917945712804794,
-0.050152383744716644,
0.05179436877369881,
0.00840829312801361,
-0.030471354722976685,
0.00922816526144743,
0.016149623319506645,
-0.025461994111537933,
0.07256749272346497,
-0.007864948362112045,
0.014442584477365017,
0.04047312214970589,
0.04451390728354454,
-0.005873751826584339,
0.05200750753283501,
-0.028279811143875122,
0.023238280788064003,
0.04614028334617615,
-0.062410078942775726,
-0.015644675120711327,
-0.02892625704407692,
0.06382240355014801,
-0.05765008553862572,
0.029238125309348106,
0.04753470420837402,
0.00939961988478899,
0.01545893494039774,
-0.04224337637424469,
-0.05633833259344101,
0.017537446692585945,
-0.043430689722299576,
0.07685921341180801,
0.008116231299936771,
-0.03743096813559532,
0.06417258083820343,
0.0031060262117534876,
-0.07204343378543854,
0.05095388740301132,
0.026219289749860764,
0.04442752152681351,
0.021001962944865227,
0.04984644427895546,
-0.042191557586193085,
0.017738139256834984,
-0.04374205693602562,
0.027341527864336967,
-0.05153326690196991,
-0.015589289367198944,
0.0370781347155571,
-0.033473338931798935,
-0.027039065957069397,
0.04079794883728027,
-0.004565774463117123,
-0.02036522701382637,
0.044363465160131454,
-0.04664674773812294,
-0.03121839091181755,
0.000008586236617702525,
-0.00017904801643453538,
-0.03654385730624199,
0.004114287905395031,
-0.045084308832883835,
0.01251391414552927,
0.009673401713371277,
-0.008462988771498203,
-0.013896397314965725,
-0.0064200134947896,
0.038711391389369965,
-0.0678083598613739,
-0.04850100725889206,
0.018522461876273155,
0.00900882575660944,
-0.022411203011870384,
0.04123108834028244,
0.01758493110537529,
0.03256223723292351,
0.016642292961478233,
0.011266369372606277,
0.014025627635419369,
-0.027499714866280556,
-0.01686350628733635,
0.024636361747980118,
-0.0034343700390309095,
0.03144698217511177,
-0.004154944326728582,
0.04139244183897972,
0.03823644667863846,
0.04357552528381348,
-0.021389123052358627,
-0.019050534814596176,
-0.035435471683740616,
0.030438747256994247,
-0.031191660091280937,
0.006713283713907003,
-0.005177449434995651,
-0.04614117741584778,
-0.03990655764937401,
-0.010692956857383251,
-0.033607397228479385,
0.03148861974477768,
-0.05707191675901413,
0.004354946315288544,
0.03070846013724804,
-0.004183880984783173,
-0.0686851516366005,
-0.09390421211719513,
-0.022426122799515724,
-0.04090401902794838,
0.004689881578087807,
0.04111947864294052,
-0.04254494234919548,
0.03430413082242012,
-0.04092913120985031,
-0.0432356595993042,
0.058449361473321915,
0.019263137131929398,
-0.041973087936639786,
0.04501868784427643,
0.04843233898282051,
-0.05257291719317436,
0.004230346530675888,
0.03238889202475548,
-0.04585879668593407,
0.006140760611742735,
0.014176719821989536,
-0.0007084527751430869,
0.0246209017932415,
0.02788945846259594,
-0.03500906005501747,
-0.013056350871920586,
-0.0754491314291954,
-0.04620589315891266,
-0.05012349784374237,
0.012597301043570042,
0.053938642144203186
] |
AriakimTaiyo/DialoGPT-cultured-Kumiko | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
license: openrail
datasets:
- databricks/databricks-dolly-15k
language:
- aa
metrics:
- accuracy
--- | [
-0.04297788813710213,
0.006895748432725668,
-0.01843447983264923,
-0.0019478440517559648,
0.06777317076921463,
-0.0007209588657133281,
0.001558084273710847,
0.025208469480276108,
-0.05581434443593025,
0.05209493264555931,
0.03827771916985512,
0.025138186290860176,
0.013837873004376888,
0.03419192507863045,
-0.02075638249516487,
-0.008503544144332409,
-0.0060247029177844524,
-0.02220994606614113,
-0.007510335650295019,
0.0102510005235672,
0.0259693656116724,
0.001741938409395516,
-0.03209990635514259,
0.0252937451004982,
-0.021114664152264595,
0.01151930633932352,
-0.026950934901833534,
0.0226545799523592,
0.047532934695482254,
-0.06162126734852791,
0.0035760398022830486,
-0.04057825356721878,
-0.027324922382831573,
-0.02719315141439438,
-0.04124600440263748,
-0.012814074754714966,
0.02672685496509075,
0.019222287461161613,
0.029545672237873077,
0.04066511616110802,
0.0025252453051507473,
0.012431344017386436,
-0.0053644124418497086,
-0.03168174996972084,
0.009155122563242912,
-0.04885299876332283,
-0.045731063932180405,
-0.024891389533877373,
0.014470147900283337,
-0.04769899323582649,
-0.07310622185468674,
-0.04174855351448059,
-0.0036383275873959064,
0.009074795059859753,
-0.016138484701514244,
-0.037219829857349396,
-0.02036772109568119,
-0.01265623141080141,
0.07137030363082886,
-0.0666385218501091,
-0.04930585250258446,
-0.0001127212235587649,
-0.06034257635474205,
-0.016003912314772606,
0.0337066575884819,
-0.05305664986371994,
0.03809700533747673,
-0.04616159573197365,
0.022998986765742302,
-0.015154010616242886,
0.06309141963720322,
-0.02479841560125351,
0.011989590711891651,
-0.05895942449569702,
-0.014149433001875877,
-0.018997760489583015,
0.02478705905377865,
0.042890116572380066,
-0.026708222925662994,
0.053608037531375885,
0.05306719243526459,
0.01975763402879238,
0.025528503581881523,
-0.009290210902690887,
0.005307631567120552,
0.03188517317175865,
-0.0423966720700264,
0.001541119534522295,
0.007226926740258932,
0.03681361302733421,
-0.03106239251792431,
-0.031683843582868576,
-0.020422350615262985,
-0.029215240851044655,
-0.017324188724160194,
0.017536498606204987,
0.052062418311834335,
-0.0432649664580822,
0.01707000471651554,
0.031072527170181274,
0.03002098575234413,
0.034625668078660965,
-0.018497202545404434,
0.03716380149126053,
0.009647057391703129,
-0.02022414095699787,
-0.006090587005019188,
-0.006374184042215347,
-0.03831274434924126,
0.014913352206349373,
0.007893834263086319,
-0.048361245542764664,
-0.015882661566138268,
0.037662431597709656,
0.018480470404028893,
-0.010538769885897636,
0.07133249938488007,
-0.019890854135155678,
-0.03877141326665878,
-0.057426854968070984,
0.050296850502491,
0.025489134714007378,
-0.020409321412444115,
0.004668086767196655,
-0.05038959160447121,
0.015440203249454498,
-0.032454315572977066,
-0.027102388441562653,
0.001287286402657628,
0.0068577928468585014,
-0.003987951669842005,
0.07163304090499878,
0.03009186126291752,
-0.08699854463338852,
-0.005823147017508745,
0.04048818349838257,
-0.0680604800581932,
0.030167151242494583,
0.004566578660160303,
0.11359056085348129,
-0.06816720962524414,
-0.07743915170431137,
0.0012778323143720627,
0.02352198399603367,
-0.016145741567015648,
0.01173019502311945,
0.0010485679376870394,
-0.05828353017568588,
-0.035262759774923325,
-0.014931784011423588,
0.03344784304499626,
-0.07888621836900711,
-0.02873607911169529,
0.06416738778352737,
0.004509159829467535,
0.005698412656784058,
-0.015029740519821644,
0.01917540654540062,
0.007898589596152306,
-0.007004545070230961,
-0.04287296533584595,
0.04863183572888374,
-0.003703042631968856,
-0.004819839261472225,
-0.037857361137866974,
-0.0517767034471035,
0.005793008487671614,
0.089745432138443,
0.010369314812123775,
-0.006340892519801855,
-0.055383697152137756,
0.0038185676094144583,
-0.0006693325121887028,
-0.00693502789363265,
-0.020612508058547974,
0.0249317716807127,
0.018578490242362022,
0.005219947546720505,
-0.025090884417295456,
0.055572524666786194,
0.03567473217844963,
-0.02467573992908001,
-0.016411514952778816,
0.005486674141138792,
0.02405950240790844,
-0.035097308456897736,
-0.03561863675713539,
0.03129707649350166,
0.022662416100502014,
-0.0392155796289444,
-0.03150221332907677,
0.02192760445177555,
-0.013593202456831932,
0.002929470269009471,
0.015744715929031372,
-0.011051799170672894,
-0.028744008392095566,
0.01261173840612173,
-0.012232622131705284,
0.014149702154099941,
-0.019001053646206856,
-0.02070077322423458,
0.02471799962222576,
0.03797382116317749,
0.033069856464862823,
0.03632766008377075,
-0.008537095971405506,
0.0919567123055458,
-0.055406637489795685,
0.014238592237234116,
-0.024890808388590813,
-0.05004274845123291,
0.019626114517450333,
0.05587232485413551,
0.03394043818116188,
0.0259238313883543,
-0.00639108894392848,
-0.06523261964321136,
0.01688108965754509,
0.0692286342382431,
0.0545637384057045,
0.027310747653245926,
-0.024962158873677254,
-0.005352184176445007,
-0.004571735858917236,
0.02167673408985138,
-0.04111069440841675,
-0.02841516025364399,
0.012807760387659073,
0.05490276589989662,
-0.011291633360087872,
0.008795730769634247,
-0.010992543771862984,
0.00042459325050003827,
-0.03999580070376396,
-0.053703535348176956,
0.003259129822254181,
0.018327198922634125,
0.00004620747495209798,
0.021479154005646706,
-0.021880049258470535,
0.0008496494847349823,
0.0322885662317276,
0.001242428901605308,
0.024464745074510574,
-0.044438984245061874,
0.012995954602956772,
0.014085139147937298,
0.05982661619782448,
-0.05416648089885712,
0.025673286989331245,
-0.03834519535303116,
-0.012233803980052471,
0.0131104476749897,
-0.04293358698487282,
0.02122759260237217,
0.11497505009174347,
0.02807427942752838,
-0.03865423798561096,
0.038453396409749985,
0.04085254296660423,
0.012125839479267597,
0.08290094882249832,
0.007948536425828934,
0.07918111234903336,
-0.014637446030974388,
0.053082793951034546,
0.07719399034976959,
0.00940933357924223,
0.008876655250787735,
0.022557130083441734,
0.07059741020202637,
-0.02344423532485962,
-0.013776257634162903,
0.04506475850939751,
-0.04604996740818024,
0.010040925815701485,
-0.025108689442276955,
-0.020517274737358093,
-0.025327574461698532,
-0.0018986925715580583,
0.050304900854825974,
-0.0026658785063773394,
-0.03872689977288246,
-0.014588305726647377,
0.003318395698443055,
0.00041394849540665746,
0.025553107261657715,
-0.013147375546395779,
0.004989027976989746,
-0.008460928685963154,
-0.028999444097280502,
0.026970690116286278,
-0.06085357442498207,
-0.045125387609004974,
-0.03634675219655037,
-0.00765995541587472,
0.014476890675723553,
-0.08708741515874863,
-0.01789538562297821,
-0.08412761241197586,
-0.0040045385248959064,
0.06054028868675232,
0.021292535588145256,
-0.012856033630669117,
-0.03418942913413048,
0.0037537412717938423,
-0.004512751940637827,
-0.02444925531744957,
-0.05173351988196373,
-0.05975155904889107,
-0.015975816175341606,
-0.04814625158905983,
0.026131978258490562,
0.047550518065690994,
0.0091475211083889,
0.007590855937451124,
0.00891798734664917,
-0.03558558598160744,
-0.02677084505558014,
0.041819989681243896,
0.059204187244176865,
-0.012433725409209728,
-0.02088230289518833,
0.014066442847251892,
-0.0034125358797609806,
0.03242120519280434,
0.023182660341262817,
-0.0416792556643486,
0.07228030264377594,
0.06410808861255646,
0.03175817057490349,
-0.018167292699217796,
-0.00575828505679965,
-0.059658363461494446,
-0.0319489948451519,
-0.04146121069788933,
-0.012784786522388458,
-0.019501587375998497,
-0.018147466704249382,
-0.0332491435110569,
-0.04401293769478798,
-0.034621816128492355,
-0.008525165729224682,
0.0036602437030524015,
0.003959714435040951,
0.02998259849846363,
0.05306180939078331,
0.03826694190502167,
0.04309676215052605,
-0.029659206047654152,
-0.007059416733682156,
0.0598408542573452,
0.014645249582827091,
-0.017635220661759377,
-0.05599021166563034,
-0.033827923238277435,
0.050263434648513794,
0.01776852458715439,
-0.010978354141116142,
-0.011639656499028206,
0.028504587709903717,
-0.004979172721505165,
0.031720489263534546,
0.02434758096933365,
-0.04251665249466896,
-0.005522114224731922,
0.009412411600351334,
-0.004103167448192835,
-0.021665535867214203,
-0.03899886831641197,
-0.0232041385024786,
0.04432399570941925,
0.06250430643558502,
-0.04603365436196327,
-0.04591871425509453,
-0.005739503540098667,
0.026398437097668648,
0.05090513452887535,
-0.013818817213177681,
-0.05318894237279892,
0.0162661150097847,
-0.03223325312137604,
-0.0048730154521763325,
0.03634610399603844,
-0.0035601805429905653,
-0.013288675807416439,
0.06220867484807968,
0.0035316182766109705,
0.0018198799807578325,
0.04635006934404373,
0.011096577160060406,
0.04847288131713867,
0.04651828855276108,
-0.042970143258571625,
-0.000730413303244859,
-0.007218403276056051,
-0.007446672767400742,
0.009132682345807552,
-0.03727621212601662,
-0.03029468096792698,
-0.10187835246324539,
-0.025077490136027336,
0.025703050196170807,
-0.03288745507597923,
-0.0014386659022420645,
0.05971839651465416,
0.015409475192427635,
-0.003536859294399619,
0.009090106934309006,
-0.004552172962576151,
0.04153294116258621,
-0.012590359896421432,
0.0670887678861618,
-0.007674773223698139,
-0.012960565276443958,
-0.04606274515390396,
0.00436403788626194,
-0.03665423020720482,
-0.017717618495225906,
0.033035118132829666,
0.07221109420061111,
0.027776381000876427,
0.051595162600278854,
0.06531593203544617,
-0.0022875864524394274,
-0.03701500967144966,
0.039133504033088684,
0.06488188356161118,
-0.05359818413853645,
-0.02743850275874138,
0.013628007844090462,
-0.007212021388113499,
0.0017355275340378284,
0.016926812008023262,
-0.038405612111091614,
0.06676793098449707,
0.06993637979030609,
-0.02751324139535427,
-0.003227927954867482,
-0.010911033488810062,
-0.011705377139151096,
-0.03486862778663635,
-0.03328967094421387,
-0.013058706186711788,
0.015483134426176548,
-0.038244180381298065,
0.02761579304933548,
0.07392040640115738,
0.041693296283483505,
0.05349602922797203,
0.003577189287170768,
-0.04391971230506897,
-0.03258763626217842,
0.02464182674884796,
0.001990783726796508,
-0.04350673407316208,
-0.08876119554042816,
-0.019567301496863365,
0.0017666127532720566,
0.010146239772439003,
-0.009015497751533985,
-0.06730573624372482,
-0.001423432258889079,
0.05085218325257301,
-0.04021293669939041,
0.05450335144996643,
0.010378382168710232,
0.021792782470583916,
0.04508812353014946,
-0.018673120066523552,
0.039365652948617935,
-0.022812845185399055,
0.012970679439604282,
0.004488333594053984,
0.028864199295639992,
-0.036497827619314194,
0.009709486737847328,
-0.03171239048242569,
0.021815381944179535,
-0.005072958767414093,
0.04068322479724884,
0.054105233401060104,
-0.06854183226823807,
-0.06529304385185242,
-0.03436669334769249,
0.03535870090126991,
-0.040307797491550446,
0.029372403398156166,
0.06331122666597366,
0.028808163478970528,
-0.014983328990638256,
-0.044093552976846695,
-0.002086165826767683,
0.009312727488577366,
0.04105301573872566,
-0.049175478518009186,
-0.01559427659958601,
-0.04722762107849121,
0.04939431697130203,
-0.013934190385043621,
-0.04800434038043022,
-0.116923488676548,
0.020039666444063187,
0.01171810831874609,
-0.0270277988165617,
0.05149533599615097,
0.021359499543905258,
0.04503878206014633,
0.06117339804768562,
0.012146723456680775,
0.034374531358480453,
-0.03691811114549637,
0.044406041502952576,
-0.016144566237926483,
-0.00013743530143983662,
0.012041077949106693,
-0.03489309549331665,
-0.047704633325338364,
0.007362055126577616,
-0.0485382080078125,
-0.040146809071302414,
0.004909214563667774,
0.03508763760328293,
0.006739357020705938,
-0.0051316190510988235,
-0.00515498872846365,
0.047161053866147995,
0.011025209911167622,
-0.03951239213347435,
0.0020896547939628363,
-0.027685346081852913,
-0.07050291448831558,
0.015256465412676334,
0.07877179235219955,
0.03152285888791084,
0.02955029159784317,
0.00955248810350895,
0.02013668231666088,
0.03521660715341568,
-0.002310710260644555,
-0.035478927195072174,
0.027444256469607353,
0.012452625669538975,
-0.004500562325119972,
-0.02065792866051197,
0.0031892580445855856,
0.03455618768930435,
0.029904650524258614,
-0.04283460974693298,
0.02069118805229664,
-0.019537994638085365,
-0.019163956865668297,
-0.03225712105631828,
0.005743536166846752,
0.04055316746234894,
-0.04260172322392464,
-0.043858084827661514,
-0.00338580715470016,
-0.026897327974438667,
0.03618969768285751,
-0.0344858355820179,
0.004248973447829485,
0.04557022079825401,
0.016456997022032738,
0.036423612385988235,
0.0035544084385037422,
-0.026219012215733528,
0.012114100158214569,
-0.016396578401327133,
0.024227287620306015,
-0.026901179924607277,
0.049897707998752594,
-0.013934370130300522,
0.011886014603078365,
-0.030983958393335342,
-0.005004520993679762,
-0.048871349543333054,
0.057780832052230835,
0.016218502074480057,
-0.015297341160476208,
-0.015775000676512718,
0.03350524976849556,
-0.02082020230591297,
0.04044152796268463,
0.009019361808896065,
0.03193408250808716,
-0.009147482924163342,
0.03127222880721092,
-0.05624927952885628,
0.03649123013019562,
-0.013692192733287811,
0.016607899218797684,
-0.058104436844587326,
0.00046333138016052544,
0.0015379136893898249,
-0.06473686546087265,
0.011055873706936836,
0.0629456639289856,
0.020265799015760422,
0.003171409945935011,
-0.005046767648309469,
-0.02038392424583435,
0.006292183417826891,
-0.0535673163831234,
-0.026384230703115463,
-0.018704263493418694,
0.0016022131312638521,
0.012960306368768215,
0.0414251871407032,
0.01736452244222164,
-0.05762310326099396,
-0.08735504001379013,
0.026697007939219475,
0.0137616703286767,
-0.010897955857217312,
-0.0037064615171402693,
0.02143852598965168,
0.048391252756118774,
0.060336634516716,
-0.02410285361111164,
0.00668871495872736,
-0.026977410539984703,
-0.0021450654603540897,
0.030142560601234436,
0.006914513651281595,
-0.0014575307723134756,
0.007192035671323538,
-0.05159112066030502,
-0.03150656074285507,
0.06874685734510422,
0.030822400003671646,
0.04577098786830902,
-0.012340795248746872,
-0.048635587096214294,
0.0472603440284729,
0.016783839091658592,
-0.0159415565431118,
0.02207956276834011,
0.008934090845286846,
-0.027914412319660187,
0.05014890804886818,
0.005913014989346266,
0.023437056690454483,
0.029222015291452408,
0.05845309793949127,
-0.03255748003721237,
0.055796053260564804,
-0.02541947364807129,
0.018854331225156784,
0.06892796605825424,
-0.07061563432216644,
-0.007216662168502808,
-0.03505248203873634,
0.057297613471746445,
-0.03189816698431969,
0.053718920797109604,
0.01210616435855627,
0.016363048925995827,
0.024713953956961632,
-0.03177168220281601,
-0.04370902106165886,
-0.008643871173262596,
-0.032848723232746124,
0.052066586911678314,
-0.014459803700447083,
-0.08061672002077103,
0.07771558314561844,
0.021468328312039375,
-0.09041723608970642,
0.009700941853225231,
0.010382097214460373,
0.050770726054906845,
0.027536462992429733,
-0.0015081666642799973,
-0.04339243471622467,
0.021584881469607353,
-0.046792443841695786,
0.0294412262737751,
-0.05946344882249832,
-0.026110606268048286,
0.055195290595293045,
-0.04126026853919029,
-0.03185088932514191,
0.010949513874948025,
-0.014499780721962452,
0.008355825208127499,
0.01805180311203003,
-0.025747982785105705,
-0.0644800141453743,
0.006529343780130148,
0.012917408719658852,
-0.02630467899143696,
0.006023166701197624,
-0.029601288959383965,
0.03525982052087784,
0.03739997372031212,
0.010691273026168346,
-0.02268090844154358,
-0.013590446673333645,
0.009022007696330547,
-0.05786925554275513,
-0.06454337388277054,
0.029426340013742447,
0.0117898965254426,
-0.01270894706249237,
0.047914788126945496,
-0.00516215106472373,
0.03215533867478371,
0.024757245555520058,
0.0009709835285320878,
0.009711405262351036,
-0.03519795835018158,
0.008875317871570587,
0.021404536440968513,
0.024787914007902145,
0.013374018482863903,
-0.0001457280886825174,
0.02338082157075405,
0.042571768164634705,
0.03504050895571709,
0.016720235347747803,
-0.05283762887120247,
-0.012103921733796597,
0.04082132875919342,
-0.04310785233974457,
0.022016631439328194,
0.006810399703681469,
-0.04608982056379318,
-0.03643835335969925,
-0.026294508948922157,
-0.03057158924639225,
0.035159941762685776,
-0.04756927117705345,
0.01628316566348076,
0.009271767921745777,
0.0181655865162611,
-0.07509667426347733,
-0.09465757757425308,
-0.0437304712831974,
-0.03963053598999977,
-0.003066668752580881,
0.018554722890257835,
-0.05692511051893234,
0.019871601834893227,
-0.05145486444234848,
-0.07260725647211075,
0.04619486629962921,
0.021152008324861526,
-0.01348845474421978,
0.0723465159535408,
0.0565800815820694,
-0.05989598482847214,
0.022296277806162834,
0.035358674824237823,
-0.03806653618812561,
0.0309456754475832,
0.000958977616392076,
0.011814994737505913,
0.03934042155742645,
0.0402689166367054,
0.0011392050655558705,
-0.022039247676730156,
-0.04200292006134987,
-0.029985783621668816,
-0.05275703966617584,
0.023922240361571312,
0.06062281131744385
] |
AriakimTaiyo/DialoGPT-medium-Kumiko | [
"conversational"
] | conversational | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | Access to model sinadi/LowRa is restricted and you are not in the authorized list. Visit https://huggingface.co/sinadi/LowRa to ask for access. | [
-0.027294913306832314,
-0.007367872167378664,
-0.003343193093314767,
0.0018473092932254076,
0.048153117299079895,
0.009573613293468952,
-0.015983877703547478,
0.0034307180903851986,
-0.0319899283349514,
0.06919863820075989,
0.04523029550909996,
-0.030771687626838684,
0.013797497376799583,
0.04402143135666847,
-0.028146885335445404,
-0.0121275270357728,
0.006189838517457247,
-0.0012736687203869224,
-0.04870716482400894,
-0.00462346849963069,
0.030148977413773537,
0.008578957058489323,
0.019121592864394188,
0.003185961628332734,
-0.012769924476742744,
0.009988750331103802,
-0.05288419499993324,
-0.014062834903597832,
0.045202210545539856,
-0.053592972457408905,
0.017422763630747795,
-0.0514865480363369,
-0.014179923571646214,
-0.062325846403837204,
-0.02297302708029747,
-0.016919955611228943,
0.036863088607788086,
0.007879108190536499,
0.009068815968930721,
0.03690534457564354,
-0.015900328755378723,
0.010234976187348366,
-0.029451800510287285,
-0.041302334517240524,
0.010606429539620876,
-0.018620142713189125,
-0.02450203150510788,
-0.03629482164978981,
0.0392959788441658,
-0.069432832300663,
-0.06432252377271652,
-0.0986894741654396,
-0.025171926245093346,
0.005901759956032038,
-0.027064090594649315,
-0.01832888275384903,
-0.043964989483356476,
-0.022143777459859848,
0.07496179640293121,
-0.057724110782146454,
-0.04606219381093979,
-0.03385451063513756,
-0.0919361338019371,
0.023931603878736496,
0.04325051233172417,
-0.046394575387239456,
0.04273151233792305,
-0.05551831051707268,
0.03944213315844536,
-0.018016621470451355,
0.03206656873226166,
-0.021356435492634773,
0.00010196003859164193,
-0.047451868653297424,
-0.03430107980966568,
-0.017706044018268585,
0.057622794061899185,
0.051626160740852356,
-0.04255072772502899,
0.06113990768790245,
0.015530090779066086,
-0.014207933098077774,
0.04126168042421341,
-0.01521439477801323,
-0.0036404896527528763,
0.043143726885318756,
-0.02769746445119381,
0.020590992644429207,
-0.0203542523086071,
0.0018693705787882209,
-0.019616171717643738,
-0.04897046089172363,
0.015198041684925556,
-0.021197635680437088,
-0.03531303629279137,
0.004412841983139515,
0.02194785140454769,
-0.03157604858279228,
0.034591540694236755,
0.03498651087284088,
0.030256031081080437,
0.017566541209816933,
0.001587018254213035,
0.06140252575278282,
0.0031247620936483145,
-0.02741711027920246,
0.0061335815116763115,
-0.025683104991912842,
-0.06022186949849129,
0.017384974285960197,
0.02143072709441185,
-0.05960806459188461,
-0.019483784213662148,
-0.002535542007535696,
0.008312108926475048,
-0.015296563506126404,
0.05185636878013611,
-0.04029596969485283,
-0.0594782680273056,
-0.056621208786964417,
0.023676380515098572,
0.041589558124542236,
0.0020114057697355747,
-0.0012560943141579628,
-0.03275046497583389,
0.03459066525101662,
-0.03153301775455475,
-0.019505158066749573,
0.002233391162008047,
-0.02827952802181244,
0.01335270144045353,
0.026868164539337158,
0.007887368090450764,
-0.10419102013111115,
-0.0007913640001788735,
0.02605115994811058,
-0.07981802523136139,
0.007493422832340002,
-0.035750795155763626,
0.10772094875574112,
-0.05908038839697838,
-0.025339139625430107,
0.005590431392192841,
-0.010182900354266167,
-0.033131346106529236,
-0.0031732136849313974,
0.029500039294362068,
-0.04487832263112068,
-0.04766237735748291,
-0.055163223296403885,
0.035152729600667953,
-0.03694639727473259,
0.0012114892015233636,
0.07398346066474915,
-0.005044101271778345,
0.022808842360973358,
-0.026732394471764565,
0.008809945546090603,
-0.011834432370960712,
0.047715798020362854,
0.020375849679112434,
0.043506816029548645,
-0.030202843248844147,
-0.043072979897260666,
-0.0355386808514595,
-0.043901778757572174,
0.0011724528158083558,
0.0874086320400238,
0.003144765505567193,
-0.000965924933552742,
-0.037014834582805634,
0.04590114206075668,
0.036279525607824326,
0.013740063644945621,
0.0018418811960145831,
0.04025790095329285,
0.04030408337712288,
0.05739569291472435,
-0.00478096678853035,
0.04779442399740219,
0.00023534114006906748,
-0.035672612488269806,
-0.01557803712785244,
0.013630442321300507,
0.03602322190999985,
-0.012012681923806667,
0.032984960824251175,
0.045288119465112686,
0.021762927994132042,
-0.01782337576150894,
-0.029826123267412186,
0.06666363030672073,
-0.059509437531232834,
0.007877742871642113,
0.03855377063155174,
0.016628939658403397,
-0.05630664899945259,
0.038725387305021286,
0.0011146770557388663,
0.008689532987773418,
-0.02356109209358692,
-0.001472142874263227,
0.04792458564043045,
0.009156445972621441,
0.0033155614510178566,
0.026777226477861404,
-0.056415852159261703,
0.06754419207572937,
-0.03593555837869644,
0.003712957724928856,
-0.021878864616155624,
-0.03608596697449684,
0.0021394190844148397,
0.06381985545158386,
0.07106342166662216,
0.02953733317553997,
-0.026056377217173576,
-0.03445342555642128,
0.04167201742529869,
0.05711265280842781,
0.04620494320988655,
0.016155406832695007,
-0.06571832299232483,
0.01341344229876995,
0.022887608036398888,
0.019704172387719154,
-0.054511066526174545,
-0.02931683324277401,
-0.005125128198415041,
0.04799172654747963,
-0.033032845705747604,
0.04116998240351677,
-0.022386373952031136,
0.01714862510561943,
-0.04666000232100487,
-0.07676363736391068,
0.01985131949186325,
0.015674881637096405,
0.02715340629220009,
0.006025079172104597,
-0.006403304636478424,
-0.009194675832986832,
0.012510592117905617,
0.020231105387210846,
0.0034567485563457012,
-0.04540173336863518,
0.026304520666599274,
0.0013238413957878947,
0.08305378258228302,
-0.030193669721484184,
0.027336683124303818,
-0.0022758468985557556,
-0.001219074591062963,
0.0019308788469061255,
-0.003989772871136665,
0.004026148933917284,
0.07125397771596909,
0.008583695627748966,
-0.043462399393320084,
0.04341822862625122,
0.0077631971798837185,
0.011124779470264912,
0.04213668778538704,
0.009232076816260815,
0.06534121185541153,
-0.015898890793323517,
0.03776416927576065,
0.06199513003230095,
-0.02098901756107807,
-0.03796708211302757,
0.017055006697773933,
0.05140236020088196,
-0.01472152303904295,
-0.02172314003109932,
0.06321965157985687,
-0.01670578494668007,
0.02672063373029232,
-0.05138007551431656,
-0.011532174423336983,
-0.0616290308535099,
-0.016724344342947006,
0.059785034507513046,
-0.017170803621411324,
-0.019076833501458168,
0.002841951558366418,
0.007247744128108025,
-0.0035645586904138327,
0.008349401876330376,
-0.0013899743789806962,
0.006763259880244732,
-0.049819208681583405,
-0.02319704368710518,
0.044312454760074615,
-0.06375525891780853,
-0.0029797798488289118,
0.01348810363560915,
-0.050215840339660645,
-0.025461189448833466,
-0.08362392336130142,
-0.01593024656176567,
-0.05928935110569,
-0.027017539367079735,
0.06462772935628891,
0.031408749520778656,
0.05499870702624321,
-0.0152938487008214,
0.017471320927143097,
-0.022512104362249374,
-0.027196668088436127,
-0.033911410719156265,
-0.045594047755002975,
-0.010445435531437397,
-0.041953958570957184,
0.002807033248245716,
0.018303949385881424,
0.026707444339990616,
0.02712802030146122,
0.0237105842679739,
-0.026996128261089325,
-0.026670541614294052,
0.04192802309989929,
0.0712624341249466,
-0.008685892447829247,
-0.06964593380689621,
0.011691071093082428,
-0.0162432249635458,
-0.02088513970375061,
-0.0017880049999803305,
-0.042764849960803986,
0.09955867379903793,
0.06252824515104294,
0.025559747591614723,
-0.0018874218221753836,
0.018644414842128754,
-0.042077239602804184,
-0.012058332562446594,
-0.02922121435403824,
-0.043812401592731476,
-0.025524413213133812,
-0.023905036970973015,
-0.02367689646780491,
0.008110526949167252,
-0.025990765541791916,
-0.020178643986582756,
-0.002737188944593072,
0.012030092068016529,
0.0645626112818718,
0.06872300058603287,
0.038140036165714264,
0.01579628698527813,
-0.03031664527952671,
-0.029946986585855484,
0.046130359172821045,
-0.013744148425757885,
-0.005485973786562681,
-0.07228749245405197,
-0.06224555894732475,
0.05555584281682968,
0.015114940702915192,
0.012993402779102325,
-0.028133010491728783,
0.049473997205495834,
0.016954394057393074,
-0.007227559573948383,
-0.016472037881612778,
-0.00978943333029747,
-0.02990063652396202,
-0.00896892324090004,
-0.05522441118955612,
-0.003780907252803445,
-0.01893765479326248,
0.0015847008908167481,
-0.003246486186981201,
0.08298972249031067,
-0.043379221111536026,
-0.003993771970272064,
-0.0288389939814806,
0.01707504689693451,
0.051345981657505035,
-0.0018208205001428723,
-0.04876859113574028,
-0.013188667595386505,
-0.05208083242177963,
-0.006684688851237297,
0.05247911065816879,
0.018570782616734505,
0.03756929561495781,
0.06384528428316116,
0.03351793810725212,
-0.006392030511051416,
0.045661259442567825,
-0.006065758410841227,
0.02480175532400608,
0.015474838204681873,
-0.03994084149599075,
0.012933414429426193,
-0.04839557781815529,
0.025413209572434425,
-0.02706766314804554,
-0.015159616246819496,
-0.04922778904438019,
-0.07339084893465042,
-0.043960217386484146,
0.011212354525923729,
-0.017770864069461823,
-0.008576836436986923,
0.030612561851739883,
0.017649825662374496,
-0.024542687460780144,
0.007821076549589634,
0.007852793671190739,
0.033581946045160294,
-0.03966217488050461,
0.041765037924051285,
-0.028488585725426674,
0.005732026882469654,
-0.02332337759435177,
0.008591370657086372,
-0.03406308963894844,
-0.02923285774886608,
-0.02754148282110691,
0.04118317365646362,
0.020644158124923706,
0.03490735962986946,
0.050274062901735306,
-0.027394769713282585,
-0.026462174952030182,
0.028273088857531548,
0.07420895993709564,
-0.029653629288077354,
-0.0450902134180069,
0.0042221383191645145,
-0.014149293303489685,
-0.031353648751974106,
-0.01570087857544422,
-0.039210036396980286,
0.051736243069171906,
0.031700681895017624,
-0.007347899954766035,
-0.01664617843925953,
0.0009655265603214502,
-0.018472878262400627,
-0.04363388195633888,
-0.02859543263912201,
0.047929175198078156,
0.034382496029138565,
-0.008729345165193081,
-0.02463293820619583,
0.04422447457909584,
0.04554426297545433,
0.05437316372990608,
0.008952856995165348,
-0.02439115010201931,
-0.05178520455956459,
0.02103034406900406,
0.02318231202661991,
-0.04049185290932655,
-0.08884920924901962,
-0.03310205414891243,
0.0075096189975738525,
0.03587700054049492,
-0.00010608352749841288,
-0.06518962234258652,
0.04217033088207245,
0.05741587281227112,
-0.05241343006491661,
0.043204568326473236,
0.00887919869273901,
0.025524867698550224,
0.028456205502152443,
-0.017413653433322906,
0.03268595039844513,
-0.05218759551644325,
0.003993739373981953,
-0.0046983566135168076,
0.051300108432769775,
-0.04073913022875786,
-0.010239989496767521,
-0.05599057674407959,
0.0006605459493584931,
0.011217521503567696,
0.013288636691868305,
0.03583730012178421,
-0.028471674770116806,
-0.0523182675242424,
0.014164113439619541,
0.031051626428961754,
-0.0277524683624506,
-0.0002023119741352275,
0.05457470566034317,
0.0010930291609838605,
-0.034048665314912796,
-0.05631960183382034,
-0.006308360490947962,
-0.003961940295994282,
0.05241989344358444,
-0.05406796559691429,
-0.011059430427849293,
-0.05088433995842934,
0.03143717348575592,
0.01598835177719593,
-0.025957996025681496,
-0.08040431886911392,
0.049903299659490585,
0.011825894005596638,
-0.03864704445004463,
0.03331655636429787,
0.015418165363371372,
0.027295971289277077,
0.05353163182735443,
0.02193484455347061,
0.044317614287137985,
-0.03432907536625862,
0.047799523919820786,
-0.057210393249988556,
0.00008090038318186998,
0.026362258940935135,
-0.04902413487434387,
-0.028577202931046486,
0.00547018414363265,
-0.017413530498743057,
-0.03759765625,
-0.011848516762256622,
0.02460668981075287,
0.016476331278681755,
0.03252222761511803,
0.007944111712276936,
0.028439730405807495,
-0.0015129054663702846,
-0.0642508864402771,
-0.014059974811971188,
-0.015500262379646301,
-0.10830795019865036,
-0.020560340955853462,
0.04730510711669922,
-0.02313496731221676,
0.019436214119195938,
-0.03102283924818039,
0.022445350885391235,
0.03706824779510498,
0.021145569160580635,
-0.03354894742369652,
0.04138811677694321,
0.009433510713279247,
-0.025687405839562416,
-0.043323829770088196,
-0.007659669034183025,
0.010888044722378254,
0.0683533325791359,
-0.006083200685679913,
0.028757290914654732,
0.006942721549421549,
-0.02822422981262207,
-0.005975429434329271,
0.007381332106888294,
0.022959955036640167,
-0.04736765846610069,
-0.02114432491362095,
0.008625720627605915,
-0.022470438852906227,
0.04774770140647888,
-0.0535719096660614,
-0.0011321069905534387,
0.04417671635746956,
0.014306011609733105,
0.03941895812749863,
0.02256281115114689,
-0.04969331622123718,
0.012419918552041054,
-0.021871577948331833,
0.0018174316501244903,
-0.020667577162384987,
0.025701552629470825,
-0.028248917311429977,
0.03073008544743061,
-0.002818014705553651,
-0.011512424796819687,
-0.08344652503728867,
0.04550943896174431,
-0.013331559486687183,
-0.022291401401162148,
0.02615576796233654,
0.025042448192834854,
-0.004816793836653233,
0.040585242211818695,
-0.014430885203182697,
0.013429755344986916,
-0.07556068152189255,
0.05522676557302475,
-0.037567440420389175,
0.01171132829040289,
-0.022512881085276604,
0.021172266453504562,
-0.0407404750585556,
-0.00013346815831027925,
-0.03397725895047188,
-0.05440891161561012,
0.032864026725292206,
0.05335986986756325,
0.03898714482784271,
0.030452793464064598,
-0.013844692148268223,
-0.011146729812026024,
-0.003438653191551566,
-0.06652206182479858,
0.005836034659296274,
0.003057577181607485,
0.0043109203688800335,
0.016231827437877655,
0.05200576409697533,
0.03471614047884941,
-0.056374989449977875,
-0.0441405214369297,
0.026034867390990257,
0.03054930455982685,
-0.010716392658650875,
-0.011651648208498955,
0.018237076699733734,
0.015293552540242672,
0.04948461800813675,
-0.045457568019628525,
-0.0014384102541953325,
-0.006955855060368776,
-0.026406850665807724,
0.02742307260632515,
-0.010055284015834332,
0.009416571818292141,
-0.01746782846748829,
-0.04560958966612816,
-0.024609006941318512,
0.08448561280965805,
0.02575666271150112,
0.023587271571159363,
-0.0030033602379262447,
-0.04232880845665932,
0.05769210681319237,
-0.030968818813562393,
-0.02095925249159336,
0.030369184911251068,
0.019189653918147087,
-0.03429878130555153,
0.030530167743563652,
0.009030831046402454,
0.02226279489696026,
0.020415307953953743,
0.029359564185142517,
-0.03414086997509003,
0.022437788546085358,
-0.03661450743675232,
0.012412349693477154,
0.05354167893528938,
-0.036751117557287216,
0.0016134448815137148,
-0.05993331968784332,
0.06436257064342499,
-0.04659421369433403,
0.059046488255262375,
0.05421995744109154,
-0.021083010360598564,
0.025520874187350273,
-0.035514332354068756,
-0.00770619185641408,
0.0019715644884854555,
-0.03513211011886597,
0.054237235337495804,
-0.035349175333976746,
-0.048396240919828415,
0.0507795624434948,
0.018059469759464264,
-0.07325877249240875,
0.03363345190882683,
0.028339091688394547,
0.014612453989684582,
0.04553668946027756,
0.020642872899770737,
-0.0672031119465828,
0.03401871398091316,
-0.03020499274134636,
0.04686133563518524,
-0.03143354877829552,
0.0048101507127285,
0.027678953483700752,
-0.02174968086183071,
-0.04350825771689415,
0.02573815919458866,
0.014290399849414825,
0.03731710463762283,
0.0360257662832737,
-0.03662190958857536,
-0.050665441900491714,
0.003795896889641881,
0.034258801490068436,
0.017069358378648758,
-0.03623851016163826,
-0.04198138415813446,
-0.01029733382165432,
0.011383414268493652,
0.010845392011106014,
-0.03212129697203636,
0.030929015949368477,
0.003853793488815427,
-0.07651329040527344,
-0.02178238146007061,
0.03225051984190941,
0.015490618534386158,
-0.031865641474723816,
0.01789131946861744,
0.019793927669525146,
0.009920768439769745,
0.016979381442070007,
-0.009373161010444164,
-0.004312151111662388,
-0.06740302592515945,
-0.058263856917619705,
0.035682935267686844,
-0.02067868411540985,
0.02824767678976059,
0.00991042610257864,
0.025231197476387024,
0.07381659001111984,
0.019475558772683144,
0.013516807928681374,
-0.05256488919258118,
-0.04759971424937248,
0.04036692902445793,
-0.05032925680279732,
0.0432225726544857,
-0.03121715411543846,
-0.044721826910972595,
-0.022393006831407547,
-0.022756997495889664,
-0.04384592920541763,
0.026588397100567818,
-0.05949489399790764,
0.03796496242284775,
0.03785218670964241,
0.01019247155636549,
-0.038632869720458984,
-0.062037162482738495,
-0.018856793642044067,
-0.030435064807534218,
0.025520319119095802,
0.013836614787578583,
-0.030626172199845314,
0.026849353685975075,
-0.03444354608654976,
-0.06745482236146927,
0.033047519624233246,
-0.008677736856043339,
-0.01351791899651289,
0.04944508895277977,
0.052021123468875885,
-0.016406545415520668,
0.01735580712556839,
0.033079471439123154,
-0.04741176590323448,
0.02586454711854458,
0.0017789796693250537,
0.011262772604823112,
0.03451472148299217,
-0.0014266966609284282,
-0.021675394847989082,
-0.01960679516196251,
-0.05316614359617233,
-0.0348128005862236,
-0.026210708543658257,
0.018832163885235786,
0.07863019406795502
] |
AriakimTaiyo/DialoGPT-small-Kumiko | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 11 | null | ---
tags:
- generated_from_keras_callback
model-index:
- name: T5-Text2Code
results: []
---
<!-- 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. -->
# T5-Text2Code
This model was trained from scratch on an unknown dataset.
It achieves the following results on the evaluation set:
## 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: None
- training_precision: float32
### Training results
### Framework versions
- Transformers 4.29.2
- TensorFlow 2.12.0
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.03750228509306908,
-0.02790951170027256,
0.009909569285809994,
0.030960693955421448,
0.037274207919836044,
0.029435856267809868,
-0.020710377022624016,
-0.009039786644279957,
-0.015409115701913834,
0.028069760650396347,
0.0345303937792778,
0.0012159876059740782,
-0.003990502096712589,
0.04183367267251015,
-0.049996986985206604,
-0.030923619866371155,
-0.025868354365229607,
-0.022558702155947685,
-0.03273987025022507,
-0.0004228598845656961,
0.017213843762874603,
0.004529362544417381,
-0.01106461975723505,
0.00040423739119432867,
-0.0221236739307642,
0.008386529050767422,
0.013489020988345146,
0.0215923972427845,
0.02681117318570614,
-0.09247317910194397,
-0.010416321456432343,
-0.06402269750833511,
-0.05067146196961403,
0.003049511695280671,
-0.022021504119038582,
0.01972157321870327,
-0.012629267759621143,
0.0021561793982982635,
0.02516208030283451,
0.046030957251787186,
0.0017720555188134313,
0.04154733195900917,
-0.014796976931393147,
-0.058936964720487595,
0.05782000720500946,
-0.00617933226749301,
-0.0480816476047039,
-0.015002375468611717,
0.025824865326285362,
-0.019720274955034256,
-0.06656442582607269,
-0.04940759018063545,
-0.0477631539106369,
0.0011328194523230195,
-0.030941324308514595,
-0.021629029884934425,
-0.0667884424328804,
0.000887486559804529,
0.0586986318230629,
-0.02796311490237713,
-0.037219975143671036,
0.006184179801493883,
-0.061655618250370026,
0.030894098803400993,
0.055829621851444244,
-0.03120516799390316,
0.00463236216455698,
-0.0374380387365818,
0.02335311844944954,
-0.026290372014045715,
0.04736671596765518,
-0.0074592395685613155,
0.007462792564183474,
-0.12173064053058624,
0.004157328978180885,
-0.009605137631297112,
0.05164308845996857,
0.03418079391121864,
-0.03162072226405144,
0.07408230006694794,
0.03401309624314308,
0.001522724167443812,
0.03181299567222595,
-0.0024169727694243193,
-0.026871971786022186,
0.044179387390613556,
-0.036514271050691605,
0.0005180222215130925,
-0.007853340357542038,
0.024969104677438736,
-0.043969396501779556,
-0.023962609469890594,
-0.047925811260938644,
-0.01870645396411419,
-0.045109063386917114,
0.013035458512604237,
0.046128224581480026,
0.01649503968656063,
0.029492216184735298,
0.025531478226184845,
0.04709865525364876,
0.03757534548640251,
-0.023881828412413597,
0.06503424793481827,
0.028951821848750114,
-0.0010931737488135695,
-0.00395116675645113,
-0.020362168550491333,
-0.032321274280548096,
0.050727635622024536,
-0.003019516821950674,
-0.015223583206534386,
-0.0430133230984211,
0.04103822261095047,
-0.007537102792412043,
-0.01200355589389801,
0.05650516599416733,
-0.029000181704759598,
-0.041831038892269135,
-0.029474055394530296,
0.03974273055791855,
0.01081810612231493,
-0.0025118263438344,
-0.0016907386016100645,
-0.054882876574993134,
0.005261520389467478,
-0.0451263003051281,
-0.0376066192984581,
0.00471600191667676,
0.004778879228979349,
-0.017599692568182945,
0.05864667147397995,
0.011807173490524292,
-0.06288175284862518,
-0.004159916657954454,
0.03442883864045143,
-0.026883259415626526,
0.05060476437211037,
0.01363895833492279,
0.10182181745767593,
-0.07737764716148376,
-0.06084896996617317,
0.019318178296089172,
-0.00899010244756937,
-0.031200692057609558,
0.006060787010937929,
-0.01426415890455246,
-0.04310380294919014,
-0.011651135981082916,
-0.00851698499172926,
0.057965684682130814,
-0.07471001893281937,
-0.014026198536157608,
0.03694780543446541,
0.015332098118960857,
0.015522566623985767,
-0.04992705583572388,
-0.015581363812088966,
0.0061091347597539425,
-0.0004883964429609478,
-0.029632801190018654,
0.04753057658672333,
-0.010720700025558472,
0.0035820500925183296,
-0.049687180668115616,
-0.03899572044610977,
0.012950216419994831,
0.0852523222565651,
0.006921262480318546,
-0.02808590605854988,
-0.024629419669508934,
0.016477761790156364,
0.05345212295651436,
0.045714154839515686,
-0.03741082549095154,
0.04103882983326912,
0.03659295290708542,
0.06415613740682602,
-0.020694462582468987,
0.054890092462301254,
-0.0009008541819639504,
-0.033373523503541946,
-0.061564844101667404,
0.02076786197721958,
0.0044176955707371235,
-0.050700269639492035,
0.02322123385965824,
0.0023202658630907536,
-0.006784123368561268,
-0.009477811865508556,
-0.008349534124135971,
0.06506180018186569,
0.006255931220948696,
0.00421633617952466,
-0.0002807732962537557,
-0.005961840972304344,
-0.04757453128695488,
0.0549209788441658,
-0.02373085916042328,
0.0009080622694455087,
-0.02046525850892067,
-0.018252380192279816,
0.019662022590637207,
-0.006044568493962288,
0.039706308394670486,
0.05553291365504265,
0.0033737225458025932,
0.0686550959944725,
-0.033607400953769684,
0.024964485317468643,
-0.0462520606815815,
-0.06702949106693268,
-0.0024684772361069918,
0.04622933268547058,
0.030206741765141487,
0.029529888182878494,
-0.0034437987487763166,
-0.06174854189157486,
0.03199886530637741,
0.04618571326136589,
0.048913318663835526,
0.009644824080169201,
-0.033908307552337646,
-0.006011025048792362,
0.049972549080848694,
0.07201213389635086,
-0.042071666568517685,
-0.032624389976263046,
0.031947724521160126,
0.07287164777517319,
-0.004932647105306387,
0.016814935952425003,
-0.010840349830687046,
0.040909867733716965,
-0.06942576169967651,
-0.05541646480560303,
0.027226386591792107,
0.026004990562796593,
0.010609783232212067,
0.027271762490272522,
-0.016415895894169807,
0.012316657230257988,
0.016274113208055496,
-0.00003000280230480712,
-0.0013653032947331667,
-0.02826804853975773,
0.011036518029868603,
-0.001172756077721715,
0.04318377375602722,
-0.05047732964158058,
0.042014461010694504,
0.0034874114207923412,
0.011333419010043144,
0.04714478179812431,
-0.03956126049160957,
0.02217336744070053,
0.03699355199933052,
0.04932517930865288,
-0.049383871257305145,
0.0002632022078614682,
0.019160425290465355,
0.04138196259737015,
0.05092967301607132,
0.011356058530509472,
0.06740026921033859,
-0.022457795217633247,
0.043515127152204514,
0.07134459167718887,
0.021814648061990738,
0.0069899288937449455,
0.04639458656311035,
0.0887816995382309,
0.013033496215939522,
-0.020854802802205086,
0.050283171236515045,
-0.0682300552725792,
0.008742159232497215,
-0.05804646387696266,
0.017154360190033913,
-0.02721771039068699,
-0.0024522386956959963,
0.06383843719959259,
0.01478539314121008,
-0.0342552587389946,
0.00762042636051774,
-0.035215847194194794,
-0.022546332329511642,
0.012716874480247498,
0.01204944308847189,
-0.0014177558477967978,
-0.014018872752785683,
-0.014186124317348003,
-0.0050298538990318775,
-0.07299868762493134,
-0.015385894104838371,
-0.029082493856549263,
-0.05922169238328934,
-0.006245448254048824,
-0.09406760334968567,
-0.033233292400836945,
-0.054338160902261734,
-0.037731725722551346,
0.041715413331985474,
-0.006484849378466606,
0.0005748700350522995,
-0.04942699894309044,
0.0026612691581249237,
-0.04502134397625923,
-0.055333442986011505,
-0.04162238538265228,
-0.040819037705659866,
-0.03689870238304138,
-0.07005118578672409,
0.04634799435734749,
-0.0018407537136226892,
-0.008044151589274406,
0.020647281780838966,
-0.0011740355985239148,
-0.018319588154554367,
-0.014124798588454723,
0.051105618476867676,
0.04220885783433914,
-0.04831812158226967,
-0.036332178860902786,
0.013478029519319534,
-0.02313983254134655,
0.025084834545850754,
-0.015538512729108334,
-0.01137449499219656,
0.09872788190841675,
0.06032444164156914,
0.019751297309994698,
0.014895389787852764,
-0.01978396624326706,
-0.059073369950056076,
-0.050898920744657516,
-0.014998233877122402,
-0.013911948539316654,
-0.028537878766655922,
-0.032895538955926895,
-0.04705900698900223,
-0.0256543830037117,
-0.050989843904972076,
-0.009393461048603058,
0.0014470284804701805,
0.01910214312374592,
0.03630297631025314,
0.031437914818525314,
0.02784537523984909,
0.025320399552583694,
-0.018363673239946365,
-0.04140540584921837,
0.028685133904218674,
-0.014264830388128757,
0.001977405045181513,
-0.0904938280582428,
-0.033697459846735,
0.024394523352384567,
0.014579957351088524,
0.01496979221701622,
-0.008542884141206741,
0.07332424074411392,
-0.006113357841968536,
-0.013402044773101807,
0.017984656617045403,
-0.011100247502326965,
-0.00934455543756485,
0.0016634532948955894,
0.0006272874306887388,
-0.03673044964671135,
-0.04159272834658623,
-0.023348476737737656,
-0.027362583205103874,
0.060880597680807114,
-0.057265087962150574,
-0.05853235721588135,
-0.019769808277487755,
0.043201547116041183,
0.042060382664203644,
0.010279557667672634,
-0.04471832886338234,
-0.029186943545937538,
-0.0469178631901741,
-0.042801715433597565,
0.04253203794360161,
0.019641784951090813,
0.0008223498007282615,
0.039715345948934555,
0.03409489616751671,
-0.036329369992017746,
0.05961064249277115,
0.028147730976343155,
0.03691345825791359,
0.011299286037683487,
-0.03161048889160156,
0.026685113087296486,
-0.034399595111608505,
0.028830697759985924,
0.0007502294611185789,
-0.028869744390249252,
-0.03636365383863449,
-0.10178747773170471,
-0.040101565420627594,
0.009573062881827354,
-0.03351573646068573,
-0.010186638683080673,
0.033763132989406586,
-0.020748645067214966,
-0.030239064246416092,
-0.026821402832865715,
0.04113273322582245,
0.04563423991203308,
-0.02808091975748539,
0.029621848836541176,
0.008575488813221455,
0.05168629810214043,
-0.04232250526547432,
0.0070997257716953754,
-0.02114877477288246,
-0.030539898201823235,
-0.02069891430437565,
0.05709495022892952,
0.0048182071186602116,
0.06954541802406311,
0.08313751965761185,
0.015168428421020508,
-0.031010542064905167,
0.06177780032157898,
0.0596327930688858,
-0.023429591208696365,
-0.04425859451293945,
-0.0015475854743272066,
-0.013182666152715683,
-0.03745085373520851,
-0.003988351672887802,
-0.01367428433150053,
0.030530955642461777,
0.05208477005362511,
-0.0013478269102051854,
0.005156386643648148,
-0.0040541174821555614,
-0.023746304214000702,
-0.03391290083527565,
-0.06291183829307556,
-0.03371861204504967,
-0.005069433245807886,
-0.0421593114733696,
0.01674734055995941,
0.010153650306165218,
0.025071807205677032,
0.07393207401037216,
0.02674226649105549,
-0.046425145119428635,
-0.042533986270427704,
0.005642122123390436,
0.03024228848516941,
-0.025272948667407036,
-0.04843438044190407,
-0.04934272915124893,
0.04084181785583496,
0.024132272228598595,
-0.02654927782714367,
-0.06147054582834244,
0.03045588731765747,
0.03646185249090195,
-0.03495555743575096,
0.06330705434083939,
-0.010003089904785156,
0.014890783466398716,
0.04919371381402016,
0.009480174630880356,
0.02854287438094616,
-0.018983474001288414,
-0.0007650252664461732,
0.005553503520786762,
0.0337749719619751,
-0.025048580020666122,
-0.035046447068452835,
-0.06533179432153702,
0.03340078145265579,
0.034644532948732376,
0.03468791022896767,
0.03627689182758331,
-0.010672220028936863,
-0.05905072018504143,
0.0056676254607737064,
0.02806738018989563,
-0.01922929286956787,
0.02647951990365982,
0.03999355807900429,
0.045809339731931686,
-0.04962396249175072,
-0.02185671217739582,
-0.04628738760948181,
-0.012471703812479973,
0.023494554683566093,
0.003647595178335905,
-0.047743987292051315,
-0.03472482040524483,
0.017497854307293892,
-0.0023660450242459774,
-0.020826254040002823,
-0.0781729593873024,
0.04634444788098335,
-0.01398484781384468,
-0.03353642672300339,
0.04730810225009918,
0.03473477065563202,
0.010232733562588692,
0.058450888842344284,
0.01765856146812439,
0.04924409091472626,
-0.009870199486613274,
0.04468325898051262,
-0.03187555819749832,
-0.024558739736676216,
-0.02197066880762577,
-0.05817638710141182,
-0.021476348862051964,
-0.020944494754076004,
-0.021127309650182724,
-0.051912821829319,
-0.014797760173678398,
0.008101028390228748,
-0.006305714603513479,
-0.0008519203984178603,
-0.001709663076326251,
0.039248574525117874,
-0.03896741196513176,
-0.03745049983263016,
-0.0515633225440979,
-0.036411549896001816,
-0.07651343196630478,
-0.051328469067811966,
0.029302136972546577,
0.017546871677041054,
0.04144315421581268,
-0.0009854782838374376,
0.02631152793765068,
0.023069316521286964,
-0.03272925317287445,
-0.003961517941206694,
0.003714557271450758,
-0.010416209697723389,
-0.008905226364731789,
-0.03133073076605797,
0.009436134248971939,
0.006911750417202711,
-0.0043471623212099075,
-0.014474853873252869,
0.03447611257433891,
0.018057931214571,
-0.009887472726404667,
-0.012056644074618816,
0.02979874797165394,
0.012639570981264114,
-0.07402709871530533,
-0.032104481011629105,
0.0014832328306511045,
-0.03848252445459366,
0.022897643968462944,
-0.01113229151815176,
-0.04207266867160797,
-0.020052792504429817,
0.020961208269000053,
0.04181447625160217,
-0.020514115691184998,
-0.014376411214470863,
0.010634727776050568,
-0.05374913290143013,
0.02679663524031639,
-0.04357723146677017,
0.050704680383205414,
-0.03625841066241264,
0.011906830593943596,
-0.019166233018040657,
0.01236958522349596,
-0.028700001537799835,
0.05628504231572151,
-0.016359155997633934,
-0.020058952271938324,
-0.006518161855638027,
0.03146444261074066,
-0.0176409725099802,
0.03219189494848251,
-0.004488202277570963,
0.012346398085355759,
-0.035886406898498535,
0.04840646684169769,
-0.02107737958431244,
0.02839595638215542,
-0.045373979955911636,
0.014871196821331978,
-0.012382899411022663,
-0.011544068343937397,
-0.003117685904726386,
-0.045855436474084854,
0.05826662480831146,
0.042128320783376694,
0.03519914671778679,
0.0168857853859663,
-0.023587649688124657,
-0.003496921621263027,
0.029505811631679535,
-0.05835818499326706,
-0.03328526392579079,
-0.009893028065562248,
0.021467888727784157,
-0.020659971982240677,
0.053936343640089035,
0.03137636557221413,
-0.03925527632236481,
-0.05642610788345337,
0.042312879115343094,
0.009251403622329235,
-0.0030779216904193163,
0.008550584316253662,
0.009195475839078426,
0.032039012759923935,
0.021714165806770325,
-0.017363358289003372,
0.003598998300731182,
0.0008549070917069912,
-0.018307635560631752,
0.01872953400015831,
-0.007522741332650185,
0.026358161121606827,
-0.02795635536313057,
-0.047919709235429764,
-0.014003342017531395,
0.048924513161182404,
0.02730996161699295,
0.025274155661463737,
0.0019438229501247406,
-0.049812912940979004,
0.032724037766456604,
-0.0017230724915862083,
-0.054901864379644394,
-0.006917677819728851,
0.0198650099337101,
-0.03642459958791733,
0.08078516274690628,
-0.010153853334486485,
-0.0004903862136416137,
0.03300181031227112,
0.022723648697137833,
-0.0042539360001683235,
0.036585502326488495,
-0.03190657123923302,
-0.003235288430005312,
0.04612093046307564,
-0.05250575765967369,
-0.028140492737293243,
-0.018143100664019585,
0.06766217201948166,
-0.05649439990520477,
0.05123411864042282,
0.029979512095451355,
0.02151051163673401,
0.011618852615356445,
-0.00911732017993927,
-0.053372129797935486,
0.003351600607857108,
-0.06384871900081635,
0.09053470939397812,
-0.0189320407807827,
-0.06742613762617111,
0.062418267130851746,
0.01596340909600258,
-0.08597813546657562,
0.04270366206765175,
0.05022517219185829,
0.03137120604515076,
0.030429821461439133,
0.0544053390622139,
-0.044688817113637924,
0.019619882106781006,
-0.023339759558439255,
0.0046209790743887424,
-0.058409012854099274,
-0.0136452941223979,
0.0420847050845623,
-0.025172153487801552,
-0.026672471314668655,
0.03697748854756355,
-0.013967771083116531,
-0.021602772176265717,
0.052785031497478485,
-0.041718631982803345,
-0.012191470712423325,
0.0017564470181241632,
0.012315831147134304,
-0.027486013248562813,
0.031864769756793976,
-0.033915065228939056,
0.03788885474205017,
0.0068598221987485886,
-0.027700142934918404,
-0.019648566842079163,
0.04176284372806549,
0.038322508335113525,
-0.035647325217723846,
-0.057945381850004196,
0.036566197872161865,
0.00005088094258098863,
-0.020293284207582474,
0.03089551068842411,
0.029440954327583313,
0.02130521461367607,
0.03307687118649483,
0.00462564779445529,
0.02738005295395851,
-0.04773079231381416,
-0.0001574020425323397,
-0.00007994163024704903,
0.0060578216798603535,
0.04930323734879494,
-0.004836829379200935,
0.036414120346307755,
0.0455758236348629,
0.02276909165084362,
-0.013810334727168083,
-0.0138991829007864,
-0.028285250067710876,
0.022710466757416725,
-0.04197664186358452,
0.02275823801755905,
-0.008310713805258274,
-0.028262486681342125,
-0.04100886732339859,
-0.035531941801309586,
-0.053084101527929306,
0.03439657762646675,
-0.05352985858917236,
0.02381979115307331,
0.04511861875653267,
0.007292633876204491,
-0.055748917162418365,
-0.08876083791255951,
-0.0011248021619394422,
-0.03789502754807472,
0.008245617151260376,
0.02124897390604019,
-0.0369434617459774,
0.029763266444206238,
-0.045862261205911636,
-0.0559714250266552,
0.048057712614536285,
0.022886907681822777,
-0.0399482436478138,
0.05954253301024437,
0.048688676208257675,
-0.03519531711935997,
0.012570105493068695,
0.02526644617319107,
-0.03659687936306,
-0.0019080308265984058,
0.02873116359114647,
0.011088691651821136,
0.020570790395140648,
0.0383315347135067,
-0.02959717996418476,
-0.03590596094727516,
-0.0653972327709198,
-0.03406911343336105,
-0.043901119381189346,
0.010637790895998478,
0.05006309598684311
] |
AriakimTaiyo/DialoGPT-small-Rikka | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
pipeline_tag: sentence-similarity
tags:
- sentence-transformers
- feature-extraction
- sentence-similarity
- transformers
license: mit
datasets:
- unicamp-dl/mmarco
language:
- it
library_name: sentence-transformers
---
# MMARCO-bert-base-italian-uncased
This is a [sentence-transformers](https://www.SBERT.net) model: It maps sentences & paragraphs to a 768 dimensional dense vector space and can be used for tasks like clustering or semantic search.
<!--- Describe your model here -->
## Usage (Sentence-Transformers)
Using this model becomes easy when you have [sentence-transformers](https://www.SBERT.net) installed:
```
pip install -U sentence-transformers
```
Then you can use the model like this:
```python
from sentence_transformers import SentenceTransformer, util
query = "Quante persone vivono a Londra?"
docs = ["A Londra vivono circa 9 milioni di persone", "Londra è conosciuta per il suo quartiere finanziario"]
#Load the model
model = SentenceTransformer('nickprock/mmarco-bert-base-italian-uncased')
#Encode query and documents
query_emb = model.encode(query)
doc_emb = model.encode(docs)
#Compute dot score between query and all document embeddings
scores = util.dot_score(query_emb, doc_emb)[0].cpu().tolist()
#Combine docs & scores
doc_score_pairs = list(zip(docs, scores))
#Sort by decreasing score
doc_score_pairs = sorted(doc_score_pairs, key=lambda x: x[1], reverse=True)
#Output passages & scores
for doc, score in doc_score_pairs:
print(score, doc)
```
## Usage (HuggingFace Transformers)
Without [sentence-transformers](https://www.SBERT.net), you can use the model like this: First, you pass your input through the transformer model, then you have to apply the right pooling-operation on-top of the contextualized word embeddings.
```python
from transformers import AutoTokenizer, AutoModel
import torch
#Mean Pooling - Take attention mask into account for correct averaging
def mean_pooling(model_output, attention_mask):
token_embeddings = model_output.last_hidden_state
input_mask_expanded = attention_mask.unsqueeze(-1).expand(token_embeddings.size()).float()
return torch.sum(token_embeddings * input_mask_expanded, 1) / torch.clamp(input_mask_expanded.sum(1), min=1e-9)
#Encode text
def encode(texts):
# Tokenize sentences
encoded_input = tokenizer(texts, padding=True, truncation=True, return_tensors='pt')
# Compute token embeddings
with torch.no_grad():
model_output = model(**encoded_input, return_dict=True)
# Perform pooling
embeddings = mean_pooling(model_output, encoded_input['attention_mask'])
return embeddings
# Sentences we want sentence embeddings for
query = "Quante persone vivono a Londra?"
docs = ["A Londra vivono circa 9 milioni di persone", "Londra è conosciuta per il suo quartiere finanziario"]
# Load model from HuggingFace Hub
tokenizer = AutoTokenizer.from_pretrained("nickprock/mmarco-bert-base-italian-uncased")
model = AutoModel.from_pretrained("nickprock/mmarco-bert-base-italian-uncased")
#Encode query and docs
query_emb = encode(query)
doc_emb = encode(docs)
#Compute dot score between query and all document embeddings
scores = torch.mm(query_emb, doc_emb.transpose(0, 1))[0].cpu().tolist()
#Combine docs & scores
doc_score_pairs = list(zip(docs, scores))
#Sort by decreasing score
doc_score_pairs = sorted(doc_score_pairs, key=lambda x: x[1], reverse=True)
#Output passages & scores
print("Query:", query)
for doc, score in doc_score_pairs:
print(score, doc)
```
## Evaluation Results
<!--- Describe how your model was evaluated -->
For an automated evaluation of this model, see the *Sentence Embeddings Benchmark*: [https://seb.sbert.net](https://seb.sbert.net?model_name={MODEL_NAME})
## Training
The model was trained with the parameters:
**DataLoader**:
`torch.utils.data.dataloader.DataLoader` of length 6250 with parameters:
```
{'batch_size': 16, 'sampler': 'torch.utils.data.sampler.RandomSampler', 'batch_sampler': 'torch.utils.data.sampler.BatchSampler'}
```
**Loss**:
`sentence_transformers.losses.TripletLoss.TripletLoss` with parameters:
```
{'distance_metric': 'TripletDistanceMetric.EUCLIDEAN', 'triplet_margin': 5}
```
Parameters of the fit()-Method:
```
{
"epochs": 10,
"evaluation_steps": 500,
"evaluator": "sentence_transformers.evaluation.TripletEvaluator.TripletEvaluator",
"max_grad_norm": 1,
"optimizer_class": "<class 'torch.optim.adamw.AdamW'>",
"optimizer_params": {
"lr": 2e-05
},
"scheduler": "WarmupLinear",
"steps_per_epoch": 1500,
"warmup_steps": 6250,
"weight_decay": 0.01
}
```
## Full Model Architecture
```
SentenceTransformer(
(0): Transformer({'max_seq_length': 512, 'do_lower_case': False}) with Transformer model: BertModel
(1): Pooling({'word_embedding_dimension': 768, 'pooling_mode_cls_token': False, 'pooling_mode_mean_tokens': True, 'pooling_mode_max_tokens': False, 'pooling_mode_mean_sqrt_len_tokens': False})
)
```
## Citing & Authors
<!--- Describe where people can find more information --> | [
-0.021974405273795128,
-0.029906978830695152,
-0.014024918898940086,
0.0657445564866066,
0.023036515340209007,
0.03190282732248306,
-0.003750098403543234,
0.008772250264883041,
-0.06922438740730286,
0.061543066054582596,
0.04066051170229912,
0.009891081601381302,
0.007956081070005894,
0.03951070457696915,
-0.029871931299567223,
-0.04419543221592903,
-0.009248120710253716,
-0.012477213516831398,
-0.050641562789678574,
-0.025138916447758675,
0.005280014127492905,
0.0032578050158917904,
0.007134932093322277,
0.016531679779291153,
-0.002306426642462611,
-0.000011117394933535252,
-0.014844403602182865,
0.016976136714220047,
0.021041838452219963,
-0.06558436155319214,
0.015307228080928326,
-0.010858995839953423,
-0.043292175978422165,
-0.013135447166860104,
-0.02788691036403179,
0.014201476238667965,
0.016943594440817833,
-0.004780986346304417,
0.005189164076000452,
0.04370307922363281,
-0.010048174299299717,
0.008936569094657898,
-0.020139724016189575,
-0.014426308684051037,
0.040506184101104736,
0.02112290821969509,
-0.03931446745991707,
-0.0287595484405756,
0.03083846904337406,
-0.04224409535527229,
-0.04725269600749016,
-0.08816401660442352,
-0.016827207058668137,
0.03936350718140602,
-0.02336088940501213,
-0.00995573028922081,
-0.0684761255979538,
-0.006988683715462685,
0.06407839059829712,
-0.0635748952627182,
-0.023702923208475113,
0.024799125269055367,
-0.06469198316335678,
0.019395707175135612,
0.01838698238134384,
-0.029140109196305275,
0.006673822645097971,
-0.054031554609537125,
0.015285316854715347,
-0.01730472408235073,
0.06467387080192566,
-0.03073607012629509,
0.013683696277439594,
-0.08765417337417603,
-0.0019620987586677074,
-0.009031024761497974,
0.02018958330154419,
0.02200082130730152,
-0.015530223958194256,
0.053208593279123306,
0.014208567328751087,
-0.0075277178548276424,
0.013644001446664333,
-0.006542816758155823,
-0.013085608370602131,
0.07016998529434204,
-0.0391310378909111,
-0.006055267993360758,
-0.02181180566549301,
0.01627640426158905,
-0.034618474543094635,
-0.019879337400197983,
0.012358303181827068,
-0.05488640442490578,
-0.019235864281654358,
0.022832730785012245,
0.033930398523807526,
-0.003209862159565091,
0.014214342460036278,
0.016744382679462433,
0.008237987756729126,
0.04013444110751152,
-0.010462758131325245,
0.06023646518588066,
-0.011775047518312931,
0.008912783116102219,
-0.008111868984997272,
-0.044207096099853516,
-0.040647126734256744,
0.03235887736082077,
0.022008057683706284,
-0.04548942297697067,
-0.050612978637218475,
0.03490984067320824,
0.05205304175615311,
-0.00876148696988821,
0.070452980697155,
-0.030450275167822838,
-0.04104010760784149,
-0.037586648017168045,
0.054992400109767914,
-0.00704356050118804,
0.0030540311709046364,
0.0013241828419268131,
-0.05724034458398819,
0.017185304313898087,
-0.056764181703329086,
-0.04150329530239105,
0.0024076004046946764,
0.027403559535741806,
0.011194027028977871,
0.01337172370404005,
0.016477931290864944,
-0.044715095311403275,
0.0037809619680047035,
-0.00356055935844779,
-0.09347217530012131,
0.030545303598046303,
0.045294757932424545,
0.12353823333978653,
-0.06125904992222786,
-0.03114105574786663,
0.012751273810863495,
0.03171616047620773,
-0.03222142159938812,
0.0017677561845630407,
0.019001295790076256,
-0.05901239067316055,
-0.01839350536465645,
0.0033287566620856524,
0.052636221051216125,
-0.02784462831914425,
-0.019131092354655266,
0.03629406541585922,
-0.013109971769154072,
0.03718028962612152,
-0.04806698113679886,
-0.009270125068724155,
0.009293466806411743,
0.009762164205312729,
-0.03410860523581505,
0.038634367287158966,
-0.019232556223869324,
-0.011832167394459248,
0.0033714177552610636,
-0.01487698033452034,
0.009171723388135433,
0.07882682979106903,
-0.01982954517006874,
-0.024123212322592735,
-0.029326358810067177,
0.007547556888312101,
0.019842954352498055,
0.04363672435283661,
-0.032092634588479996,
0.01893731951713562,
0.06336936354637146,
0.02806013822555542,
-0.006678897887468338,
0.048272646963596344,
0.004905621521174908,
-0.03848516568541527,
-0.025596661493182182,
0.006429648958146572,
0.007876516319811344,
-0.010029557161033154,
0.03502560406923294,
0.06273487955331802,
-0.03364789858460426,
-0.014574537985026836,
-0.009698046371340752,
0.050900619477033615,
-0.013143699616193771,
0.007071330212056637,
-0.0188628900796175,
-0.012579386122524738,
-0.021558169275522232,
0.044370025396347046,
-0.023467687889933586,
-0.002295935759320855,
-0.008518635295331478,
-0.056148380041122437,
0.012051833793520927,
0.027981141582131386,
0.010061036795377731,
0.04509076103568077,
0.006163441110402346,
0.08549732714891434,
-0.04769633710384369,
0.0126238614320755,
-0.04669983312487602,
-0.033336665481328964,
-0.0028220813255757093,
0.03102729097008705,
0.017856016755104065,
0.04404253140091896,
0.01986405812203884,
-0.02538975514471531,
0.012939635664224625,
0.03431175649166107,
0.023026004433631897,
0.04162847623229027,
-0.020746314898133278,
-0.021269895136356354,
0.01966766081750393,
0.0633535385131836,
-0.030387848615646362,
-0.03040003776550293,
0.010201414115726948,
0.020892851054668427,
-0.036682140082120895,
0.004899210296571255,
0.008407599292695522,
0.032764192670583725,
-0.030662300065159798,
-0.04527748376131058,
0.039933618158102036,
0.00703516136854887,
-0.008101473562419415,
0.03837853670120239,
-0.002253163605928421,
-0.008482405915856361,
0.03451130539178848,
-0.010289999656379223,
-0.025276893749833107,
-0.06670281291007996,
-0.0010107802227139473,
0.031371138989925385,
0.052055712789297104,
-0.03998516872525215,
0.020772362127900124,
0.0000982799829216674,
0.014263851568102837,
0.049537744373083115,
-0.030414963141083717,
0.02507590688765049,
0.06720229238271713,
0.007727393880486488,
-0.009951508603990078,
0.027722757309675217,
0.0025859279558062553,
0.017824498936533928,
0.08334028720855713,
-0.022624453529715538,
0.06772603839635849,
0.035251691937446594,
0.03353298828005791,
0.08754030615091324,
0.023204870522022247,
-0.004470376763492823,
0.056899476796388626,
0.07250482589006424,
-0.005739870015531778,
-0.010014747269451618,
0.056928642094135284,
-0.04977811872959137,
0.038400933146476746,
-0.039221249520778656,
0.025086784735322,
-0.014497743919491768,
-0.011852655559778214,
0.03490336984395981,
-0.008871136233210564,
-0.0017362962244078517,
0.011276349425315857,
-0.013589425012469292,
-0.010172219946980476,
0.03662049025297165,
-0.02141292579472065,
0.010284255258738995,
0.02896980196237564,
-0.04605891928076744,
0.013218274340033531,
-0.09015632420778275,
-0.06639889627695084,
0.016869112849235535,
-0.01670290343463421,
-0.014943892136216164,
-0.06834234297275543,
-0.05064907297492027,
-0.08875562995672226,
-0.010331028141081333,
0.0415908619761467,
0.01677260547876358,
0.022934071719646454,
-0.030756885185837746,
0.01255036797374487,
-0.040144674479961395,
-0.020654920488595963,
-0.0704500675201416,
-0.023665575310587883,
-0.04094047471880913,
-0.06638934463262558,
0.03162586688995361,
-0.0005602060700766742,
0.03911437466740608,
-0.0019859240856021643,
-0.019333425909280777,
-0.05352344363927841,
-0.008458653464913368,
0.05444173142313957,
0.0004528278368525207,
-0.001906207762658596,
-0.03000594489276409,
0.018129965290427208,
-0.02043667994439602,
0.01815446838736534,
-0.023318329825997353,
-0.046420618891716,
0.07893870770931244,
0.04934784397482872,
0.030691834166646004,
0.023561732843518257,
-0.01797335222363472,
-0.05394859239459038,
-0.03394686058163643,
-0.027464421465992928,
-0.04800291731953621,
-0.010349521413445473,
-0.025539707392454147,
-0.04269492253661156,
-0.002755424939095974,
-0.034906551241874695,
-0.028188666328787804,
0.0027616822626441717,
0.013586519286036491,
0.06139816716313362,
0.04075039550662041,
0.03783112019300461,
0.013279260136187077,
-0.055179890245199203,
-0.006876731291413307,
0.08450162410736084,
0.0189676433801651,
-0.009096505120396614,
-0.07964491099119186,
-0.029295669868588448,
0.02979200892150402,
0.009582451544702053,
0.0004784699412994087,
-0.024716435000300407,
0.07404608279466629,
0.022791830822825432,
0.014732725918293,
0.0016647110460326076,
0.025905078276991844,
-0.029627304524183273,
0.007809079252183437,
-0.030958296731114388,
-0.034943774342536926,
-0.045034755021333694,
-0.033805716782808304,
-0.02100464329123497,
0.028070999309420586,
-0.06625644117593765,
-0.06342767179012299,
-0.007944325916469097,
0.04272441565990448,
0.019051242619752884,
0.01716715656220913,
-0.047425128519535065,
0.011565607972443104,
-0.02386244758963585,
-0.03069664165377617,
0.02994159795343876,
-0.00037872474058531225,
0.004886342212557793,
0.03447825089097023,
0.024284377694129944,
-0.02291305735707283,
0.017521368339657784,
0.030090197920799255,
0.03229402005672455,
0.03154584392905235,
-0.037460681051015854,
0.04140108823776245,
-0.035704586654901505,
0.01689286157488823,
0.019766690209507942,
-0.020764006301760674,
-0.052840705960989,
-0.09276662021875381,
0.005885896738618612,
0.025093834847211838,
-0.016210157424211502,
0.02115849032998085,
0.02781088277697563,
-0.026524502784013748,
-0.03424939885735512,
0.024275286123156548,
0.012814953923225403,
0.05643273517489433,
-0.04825454577803612,
0.06326737254858017,
-0.01623591035604477,
0.04264194145798683,
-0.03436147794127464,
0.010935170575976372,
-0.028320305049419403,
-0.0387272872030735,
0.01780848391354084,
0.0612497553229332,
0.028467684984207153,
0.05379008874297142,
0.07540551573038101,
0.045533254742622375,
-0.035048019140958786,
0.06481488794088364,
0.046663060784339905,
-0.008942303247749805,
-0.06160750612616539,
-0.005405515898019075,
-0.01052690390497446,
-0.02858849987387657,
0.001257650670595467,
-0.03330187872052193,
0.034310754388570786,
0.01908954605460167,
-0.0022278879769146442,
-0.006408989429473877,
-0.02134152129292488,
-0.025267068296670914,
-0.023399271070957184,
-0.06233547255396843,
-0.027613025158643723,
-0.027434656396508217,
-0.02121739648282528,
0.046682193875312805,
0.044690266251564026,
0.015465599484741688,
0.06456852704286575,
0.039923373609781265,
0.002442454919219017,
-0.0428391732275486,
0.043985478579998016,
0.05161057040095329,
-0.07669220119714737,
-0.0721253901720047,
-0.0614558607339859,
0.021212076768279076,
0.059336621314287186,
-0.014073578640818596,
-0.085945725440979,
0.023868879303336143,
0.0655597522854805,
-0.02278640866279602,
0.06536734849214554,
-0.01292282622307539,
0.04416188225150108,
0.07028394937515259,
-0.031039629131555557,
0.0186886228621006,
-0.029918234795331955,
0.013445506803691387,
-0.00346644246019423,
0.0646061897277832,
-0.014885727316141129,
-0.048206303268671036,
-0.01784908026456833,
0.04718256741762161,
0.03933663293719292,
0.056181784719228745,
0.058323610574007034,
-0.023579377681016922,
-0.0737638771533966,
-0.0041339099407196045,
0.01988895982503891,
-0.04148232191801071,
0.01630980893969536,
0.017275696620345116,
0.05270270258188248,
-0.056279536336660385,
-0.03197788819670677,
-0.01497455034404993,
-0.0023545268923044205,
0.026245152577757835,
0.017038820311427116,
-0.03398529440164566,
-0.054891616106033325,
0.0067582749761641026,
-0.018985167145729065,
-0.02699108235538006,
-0.09044422954320908,
0.01972312107682228,
0.01031121239066124,
-0.024150995537638664,
0.07792362570762634,
0.05449874699115753,
0.04495518282055855,
0.024777226150035858,
-0.028103243559598923,
0.016898533329367638,
-0.04687841609120369,
0.03048592247068882,
-0.013166148215532303,
-0.012463505379855633,
-0.010672139003872871,
-0.07757027447223663,
-0.015286354348063469,
-0.02351582609117031,
-0.050181303173303604,
-0.04079804569482803,
-0.03213120996952057,
0.007410121615976095,
-0.02541591040790081,
0.0225418359041214,
-0.005048928316682577,
0.02137972228229046,
-0.05444660410284996,
-0.01884607970714569,
-0.024795833975076675,
-0.04156506806612015,
-0.07049569487571716,
-0.02297716774046421,
-0.0020839034114032984,
0.014080410823225975,
0.03419509157538414,
0.006860904395580292,
-0.0004778810543939471,
0.02578139118850231,
0.013802521862089634,
-0.02672789804637432,
0.04573200270533562,
0.017437217757105827,
-0.04336322471499443,
-0.043603118509054184,
0.015396292321383953,
0.013757097534835339,
0.022325433790683746,
-0.03529468551278114,
0.028456341475248337,
0.03721080347895622,
-0.05322732776403427,
-0.03922104835510254,
0.013096707873046398,
0.011846115812659264,
-0.0810711607336998,
-0.03083696961402893,
-0.027409309521317482,
-0.04227174445986748,
0.026183366775512695,
-0.004511610139161348,
0.005327465012669563,
-0.01708577200770378,
0.028026210144162178,
0.012084768153727055,
-0.0035288562066853046,
-0.03250464051961899,
0.010852822102606297,
-0.02262943610548973,
0.03455587476491928,
-0.08338657766580582,
0.03267522528767586,
-0.02016957849264145,
0.010420214384794235,
-0.02561032958328724,
0.003289274638518691,
-0.026549773290753365,
0.057930756360292435,
-0.003127600997686386,
-0.019001703709363937,
-0.0012570817489176989,
0.007464291527867317,
-0.03174831345677376,
0.035592954605817795,
-0.011462734080851078,
0.028587834909558296,
-0.023462995886802673,
0.05941272899508476,
-0.050062794238328934,
0.0019030279945582151,
-0.018327325582504272,
0.002899265382438898,
-0.019981274381279945,
-0.003971972037106752,
-0.019351592287421227,
-0.027978047728538513,
0.024664269760251045,
0.031376659870147705,
0.022085009142756462,
0.019235927611589432,
-0.019486818462610245,
0.027031129226088524,
0.014348768629133701,
-0.07998795062303543,
-0.024540411308407784,
-0.009360713884234428,
0.022137729451060295,
0.011235491372644901,
0.06605195999145508,
0.038760486990213394,
-0.06319840997457504,
-0.028982629999518394,
0.03654392436146736,
0.0024503415916115046,
-0.01757596619427204,
-0.0015989236999303102,
0.00042263956856913865,
0.0524480901658535,
0.038599494844675064,
-0.04088374972343445,
-0.0017693130066618323,
-0.00467140506953001,
-0.014783593825995922,
-0.00593442702665925,
0.011048129759728909,
0.021356018260121346,
-0.013328525237739086,
-0.030453555285930634,
-0.022997716441750526,
0.06916172057390213,
0.018569063395261765,
0.009117941372096539,
0.0038925791159272194,
-0.03151165321469307,
0.017836425453424454,
0.015976013615727425,
-0.05368858203291893,
-0.009016311727464199,
0.026678314432501793,
-0.030547866597771645,
0.05273427814245224,
-0.009714925661683083,
-0.004677894525229931,
0.04402388632297516,
0.007085560355335474,
-0.01339055597782135,
0.050312962383031845,
-0.031820885837078094,
0.012517737224698067,
0.05864238366484642,
-0.06178530305624008,
-0.016108062118291855,
-0.033706724643707275,
0.05305168405175209,
-0.05249747261404991,
0.05060015246272087,
0.02677006833255291,
0.042598478496074677,
0.03134164214134216,
-0.029457388445734978,
-0.05001182481646538,
0.02516905590891838,
-0.06598948687314987,
0.07655376940965652,
0.0011030941968783736,
-0.059824083000421524,
0.08225709199905396,
0.0359344482421875,
-0.07481096684932709,
0.04066774994134903,
0.03045114502310753,
0.03582675755023956,
0.04880575090646744,
0.03573407977819443,
-0.07067005336284637,
0.0044271135702729225,
-0.03669198602437973,
0.0440681055188179,
-0.07646048814058304,
-0.006600816734135151,
0.00609952537342906,
-0.02468496933579445,
-0.010661347769200802,
0.051275596022605896,
-0.019522344693541527,
-0.010907077230513096,
0.02786419913172722,
-0.05879795178771019,
-0.019181223586201668,
-0.01560946274548769,
0.009188080206513405,
-0.012092375196516514,
0.02072998881340027,
-0.009342003613710403,
-0.0023651858791708946,
0.016558336094021797,
-0.003159561660140753,
-0.044013652950525284,
0.014051592908799648,
0.0037347758188843727,
-0.05412513390183449,
-0.050885070115327835,
0.014489068649709225,
0.02146216668188572,
-0.038387492299079895,
0.04150046780705452,
-0.018018662929534912,
0.0444227010011673,
0.019855890423059464,
-0.02093365788459778,
-0.00422486150637269,
-0.04652947932481766,
0.017800603061914444,
0.018843146041035652,
0.007975631393492222,
0.0267880130559206,
-0.005923694930970669,
0.03954125940799713,
0.027261460199952126,
0.04093111678957939,
-0.01582859642803669,
-0.032254476100206375,
-0.027240896597504616,
0.02723006159067154,
-0.02807607688009739,
0.013356097973883152,
0.007096233312040567,
-0.04282217472791672,
-0.02465302310883999,
-0.008307374082505703,
0.010161684826016426,
0.04194062948226929,
-0.03595438227057457,
0.005345323123037815,
0.03170999884605408,
-0.032367028295993805,
-0.04787101969122887,
-0.05710318684577942,
-0.03268914669752121,
-0.03122248314321041,
0.02192474901676178,
0.02251630276441574,
-0.03776688873767853,
-0.007388958241790533,
-0.05133219435811043,
-0.030500510707497597,
0.05653119087219238,
0.02384563349187374,
-0.05326409637928009,
0.058936990797519684,
0.02809317782521248,
-0.028928881511092186,
0.019010130316019058,
0.03300239145755768,
-0.044338569045066833,
0.017233289778232574,
0.009584642015397549,
0.016484349966049194,
0.043085914105176926,
0.013628615997731686,
-0.03532739356160164,
-0.02005082555115223,
-0.07302822172641754,
-0.04083254188299179,
-0.03319835290312767,
-0.026963531970977783,
0.061102163046598434
] |
Aries/T5_question_answering | [
"pytorch",
"jax",
"t5",
"text2text-generation",
"transformers",
"autotrain_compatible"
] | text2text-generation | {
"architectures": [
"T5ForConditionalGeneration"
],
"model_type": "t5",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": true,
"length_penalty": 2,
"max_length": 200,
"min_length": 30,
"no_repeat_ngram_size": 3,
"num_beams": 4,
"prefix": "summarize: "
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to German: "
},
"translation_en_to_fr": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to French: "
},
"translation_en_to_ro": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to Romanian: "
}
}
} | 5 | null | ---
license: creativeml-openrail-m
tags:
- stablediffusionapi.com
- stable-diffusion-api
- text-to-image
- ultra-realistic
pinned: true
---
# API Inference

## Get API Key
Get API key from [Stable Diffusion API](http://stablediffusionapi.com/), No Payment needed.
Replace Key in below code, change **model_id** to "UMNDtl4qaHXQRyZxYI6h8g32p"
Coding in PHP/Node/Java etc? Have a look at docs for more code examples: [View docs](https://stablediffusionapi.com/docs)
Model link: [View model](https://stablediffusionapi.com/models/UMNDtl4qaHXQRyZxYI6h8g32p)
Credits: [View credits](https://civitai.com/?query=model_search)
View all models: [View Models](https://stablediffusionapi.com/models)
import requests
import json
url = "https://stablediffusionapi.com/api/v3/dreambooth"
payload = json.dumps({
"key": "",
"model_id": "UMNDtl4qaHXQRyZxYI6h8g32p",
"prompt": "actual 8K portrait photo of gareth person, portrait, happy colors, bright eyes, clear eyes, warm smile, smooth soft skin, big dreamy eyes, beautiful intricate colored hair, symmetrical, anime wide eyes, soft lighting, detailed face, by makoto shinkai, stanley artgerm lau, wlop, rossdraws, concept art, digital painting, looking into camera",
"negative_prompt": "painting, extra fingers, mutated hands, poorly drawn hands, poorly drawn face, deformed, ugly, blurry, bad anatomy, bad proportions, extra limbs, cloned face, skinny, glitchy, double torso, extra arms, extra hands, mangled fingers, missing lips, ugly face, distorted face, extra legs, anime",
"width": "512",
"height": "512",
"samples": "1",
"num_inference_steps": "30",
"safety_checker": "no",
"enhance_prompt": "yes",
"seed": None,
"guidance_scale": 7.5,
"multi_lingual": "no",
"panorama": "no",
"self_attention": "no",
"upscale": "no",
"embeddings": "embeddings_model_id",
"lora": "lora_model_id",
"webhook": None,
"track_id": None
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
print(response.text)
> Use this coupon code to get 25% off **DMGG0RBN** | [
-0.034281108528375626,
-0.03370112180709839,
-0.014059323817491531,
0.020622804760932922,
0.04126591235399246,
0.023460015654563904,
-0.015450876206159592,
0.0010375503916293383,
-0.012758462689816952,
0.05113747715950012,
0.03870284929871559,
-0.0048138746060431,
0.02173790894448757,
0.03406586870551109,
-0.026186782866716385,
-0.03358214348554611,
-0.044498685747385025,
0.016646316275000572,
-0.026354815810918808,
0.01700272038578987,
0.06250698119401932,
0.01983875408768654,
-0.002787745324894786,
0.0036546424962580204,
-0.015123691409826279,
0.017173560336232185,
-0.017512120306491852,
0.007548203691840172,
0.024135863408446312,
-0.04629617929458618,
-0.020214205607771873,
-0.0451168492436409,
-0.03562016040086746,
-0.04030279442667961,
-0.057832058519124985,
0.00529094273224473,
0.01819220930337906,
0.030559241771697998,
0.023170117288827896,
0.047965943813323975,
-0.004614722449332476,
0.0046352362260222435,
0.011815395206212997,
-0.014960398897528648,
0.06186271458864212,
0.0041004205122590065,
-0.04182508960366249,
-0.03694355487823486,
0.050366561859846115,
-0.008433018811047077,
-0.07848621904850006,
-0.07554475963115692,
-0.021769480779767036,
0.019519198685884476,
-0.0032699115108698606,
-0.023336896672844887,
-0.062933549284935,
-0.009714131243526936,
0.042616698890924454,
-0.07300525903701782,
-0.01224073488265276,
0.0013140138471499085,
-0.0759240984916687,
0.004137550946325064,
0.017839506268501282,
-0.04002866521477699,
-0.0036669387482106686,
-0.04797763004899025,
0.02456989698112011,
-0.018049033358693123,
0.05902646854519844,
-0.050544437021017075,
0.02703002467751503,
-0.0572691448032856,
-0.008511967957019806,
-0.022667359560728073,
0.06714972108602524,
0.035289786756038666,
-0.03340372443199158,
0.047690704464912415,
0.02336168847978115,
0.02938934415578842,
0.02524225041270256,
0.000822096539195627,
-0.0265029389411211,
0.04033426567912102,
-0.034939754754304886,
0.027125203981995583,
0.002877279883250594,
0.0373540036380291,
-0.05265083536505699,
-0.057361919432878494,
-0.00672225933521986,
-0.042725928127765656,
-0.0007617913070134819,
0.02353956736624241,
0.05567573010921478,
-0.01585647463798523,
0.030275296419858932,
0.025091545656323433,
0.025456424802541733,
0.0530715174973011,
-0.018258312717080116,
0.08779416233301163,
-0.01639675535261631,
-0.02776290476322174,
-0.023173581808805466,
-0.029089082032442093,
-0.044601887464523315,
0.007750062271952629,
0.04334176704287529,
-0.02238667570054531,
-0.010973631404340267,
0.01337678637355566,
0.042306989431381226,
0.007537239231169224,
0.034387923777103424,
-0.011656475253403187,
-0.035582322627305984,
-0.0750347450375557,
0.041170064359903336,
0.03192619979381561,
-0.015904851257801056,
-0.009478133171796799,
-0.048568759113550186,
0.03051885962486267,
-0.04268907010555267,
-0.022558994591236115,
-0.0000616375109530054,
0.030412262305617332,
-0.012955253943800926,
0.0227332953363657,
0.021304136142134666,
-0.06910454481840134,
-0.002775805303826928,
0.03615350276231766,
-0.03931214287877083,
0.03631504997611046,
-0.003475914243608713,
0.12003816664218903,
-0.06972026824951172,
-0.04263340309262276,
0.025817660614848137,
0.022901462391018867,
-0.043176401406526566,
0.023335527628660202,
0.012196190655231476,
-0.0567159503698349,
-0.004026330541819334,
-0.022921280935406685,
0.03864279389381409,
-0.05952172353863716,
-0.02995927259325981,
0.02125047892332077,
0.013844371773302555,
0.04492894560098648,
-0.026166973635554314,
-0.018961643800139427,
-0.013278371654450893,
-0.0018385321600362659,
-0.014452619478106499,
0.03079274669289589,
-0.012205971404910088,
-0.03783759847283363,
-0.023996010422706604,
-0.028203535825014114,
0.02488994225859642,
0.09166230261325836,
-0.025106137618422508,
-0.021780552342534065,
-0.04830469936132431,
0.010260354727506638,
0.037817928940057755,
0.030933648347854614,
-0.020776715129613876,
0.05814401060342789,
0.06007940322160721,
0.020064065232872963,
-0.043619927018880844,
0.055231671780347824,
0.01563495211303234,
-0.011006920598447323,
-0.008638658560812473,
-0.004954734817147255,
0.007850886322557926,
-0.02425299398601055,
-0.015333764255046844,
0.027356840670108795,
-0.01845262199640274,
-0.02839042618870735,
-0.0046042632311582565,
0.06603358685970306,
-0.0031059642788022757,
-0.028482548892498016,
-0.005281643941998482,
-0.002445124788209796,
-0.02034890092909336,
0.048710573464632034,
-0.010046035051345825,
-0.0012877603294327855,
-0.030035942792892456,
-0.024539602920413017,
0.0031009709928184748,
0.016560938209295273,
0.029719730839133263,
0.041820164769887924,
-0.003732964862138033,
0.08807235211133957,
-0.032267991453409195,
0.026749027892947197,
-0.07194548100233078,
-0.06566073000431061,
0.029934875667095184,
0.06042291969060898,
0.027362246066331863,
0.02906615287065506,
-0.015871789306402206,
-0.02440277487039566,
0.02240523137152195,
0.04792781546711922,
0.04267258197069168,
0.024542424827814102,
-0.019624963402748108,
-0.012714611366391182,
0.03229917213320732,
0.03951471671462059,
-0.06937090307474136,
-0.04010118544101715,
0.02724158763885498,
0.03118525817990303,
-0.04779883846640587,
0.015091369859874249,
-0.005152763798832893,
0.026551323011517525,
-0.053997840732336044,
-0.06293679028749466,
0.03741670772433281,
0.039987508207559586,
0.006460428237915039,
0.04035567119717598,
0.007258102763444185,
-0.007152350153774023,
0.03457094356417656,
-0.0038152383640408516,
0.029317639768123627,
-0.05966127663850784,
-0.0033988545183092356,
0.006937388796359301,
0.06795601546764374,
-0.047385718673467636,
0.04817567020654678,
-0.0029102731496095657,
0.046418558806180954,
0.04596743732690811,
-0.059276334941387177,
0.03200337663292885,
0.09259436279535294,
0.018714664503932,
-0.03842518851161003,
0.04795666038990021,
0.022693725302815437,
0.009291867725551128,
0.05135180801153183,
-0.011631019413471222,
0.0473410040140152,
-0.019539719447493553,
0.054431673139333725,
0.08707204461097717,
0.02712918631732464,
0.014567631296813488,
0.028973866254091263,
0.09262516349554062,
-0.025920476764440536,
-0.022989824414253235,
0.06028072163462639,
-0.043863844126462936,
0.0289042666554451,
-0.02653512731194496,
0.003212177427485585,
-0.020256780087947845,
0.0008573007071390748,
0.05840257927775383,
0.02590518817305565,
-0.0499720424413681,
-0.0012362422421574593,
0.020093129947781563,
0.0044659823179244995,
0.02901935763657093,
-0.010755082592368126,
0.0026401407085359097,
-0.015326070599257946,
-0.013909228146076202,
0.025096673518419266,
-0.07089640945196152,
-0.04816523194313049,
-0.028869489207863808,
-0.022588646039366722,
0.021871665492653847,
-0.07349994778633118,
-0.02194824628531933,
-0.0663180872797966,
0.010781553573906422,
0.04200088605284691,
0.004090324975550175,
-0.010268845595419407,
-0.044439785182476044,
0.025071198120713234,
-0.05237816646695137,
-0.06053125113248825,
-0.07944221794605255,
-0.04423948749899864,
-0.019328011199831963,
-0.07723648101091385,
0.049946513026952744,
0.008176155388355255,
0.02744913473725319,
-0.008102374151349068,
-0.0003189021081198007,
-0.009568840265274048,
-0.019794659689068794,
0.03105606883764267,
0.027187788859009743,
-0.03185318037867546,
-0.030534017831087112,
-0.0016921558417379856,
-0.019814325496554375,
0.01289378385990858,
-0.014049887657165527,
-0.019558386877179146,
0.09653972834348679,
0.03698725998401642,
0.006687290035188198,
-0.006693023256957531,
-0.003849743865430355,
-0.021844416856765747,
-0.02502758987247944,
-0.033183563500642776,
-0.048778876662254333,
-0.034935399889945984,
-0.015088281594216824,
-0.052633948624134064,
-0.007514460477977991,
-0.04268210008740425,
-0.04089321941137314,
-0.0074339997954666615,
-0.013684341683983803,
0.031230181455612183,
0.04769837111234665,
0.03302852809429169,
0.04735073074698448,
-0.04440176114439964,
-0.0405208095908165,
0.04989312216639519,
0.025139527395367622,
-0.012165158987045288,
-0.05953012406826019,
-0.02198631688952446,
0.012152865529060364,
0.009146355092525482,
-0.02856997586786747,
-0.019120339304208755,
0.0689253956079483,
0.027888448908925056,
-0.04677478224039078,
0.006296413950622082,
-0.021201707422733307,
-0.01625322736799717,
0.008619914762675762,
-0.0044922293163836,
-0.006109206005930901,
-0.01905444823205471,
0.006443011574447155,
0.004215051420032978,
0.040362827479839325,
-0.05660650134086609,
-0.08673390746116638,
-0.00622166134417057,
0.0224338136613369,
0.046259477734565735,
0.017348386347293854,
-0.045977506786584854,
-0.003569158259779215,
-0.06654966622591019,
-0.014481715857982635,
0.028201047331094742,
-0.014207419939339161,
0.019792916253209114,
0.023039299994707108,
0.00858753826469183,
-0.016492020338773727,
0.031575873494148254,
0.023769281804561615,
-0.0011513765202835202,
0.007816663011908531,
-0.021733984351158142,
-0.021153105422854424,
-0.02806568332016468,
0.022122319787740707,
0.009741968475282192,
-0.023050274699926376,
-0.07175257056951523,
-0.08601010590791702,
-0.003815655130892992,
0.028786761686205864,
-0.003630688413977623,
0.016296226531267166,
0.05962541699409485,
0.009351080283522606,
0.010922970250248909,
0.01520601101219654,
0.023261846974492073,
0.05160335451364517,
-0.05449336767196655,
0.0715753585100174,
-0.016292840242385864,
-0.0057786013931035995,
-0.041244275867938995,
0.015797603875398636,
-0.023991137742996216,
-0.035850152373313904,
0.014934699051082134,
0.048703499138355255,
0.026140762493014336,
0.07701177895069122,
0.02499556913971901,
0.019129790365695953,
-0.04486570507287979,
0.03165071830153465,
0.0372694693505764,
-0.026378072798252106,
-0.062156371772289276,
-0.0009904191829264164,
-0.013463210314512253,
-0.003564137499779463,
0.0051595671102404594,
-0.001945290481671691,
0.039757173508405685,
0.02851351909339428,
-0.037180639803409576,
0.0035437270998954773,
0.009951204061508179,
-0.01944269984960556,
-0.007846455089747906,
-0.05402039363980293,
0.00013372286048252136,
-0.00309960194863379,
-0.014409139752388,
0.0018511366797611117,
0.0410853773355484,
0.047087039798498154,
0.06055181100964546,
0.032587647438049316,
-0.024642812088131905,
-0.04483959078788757,
0.03892640769481659,
0.018495477735996246,
-0.026842603459954262,
-0.09782186895608902,
-0.04442897066473961,
0.008795322850346565,
0.0489472895860672,
-0.018018994480371475,
-0.08324644714593887,
0.05958878621459007,
0.041369855403900146,
-0.05293198674917221,
0.04925529658794403,
-0.004613515920937061,
0.015274777077138424,
0.055196791887283325,
0.0068582091480493546,
0.03380362689495087,
-0.03316165879368782,
0.011377381160855293,
0.006661382969468832,
0.03418060392141342,
-0.02121308445930481,
-0.03778892755508423,
-0.04782453179359436,
0.04266040772199631,
0.022290466353297234,
0.027504893019795418,
0.04392598196864128,
-0.05221696197986603,
-0.05340534448623657,
-0.042671214789152145,
0.06371484696865082,
-0.02287047728896141,
0.0342264324426651,
0.04221668094396591,
0.035683467984199524,
-0.031528290361166,
-0.04085827246308327,
0.011000189930200577,
-0.016571752727031708,
0.02173142321407795,
-0.0028747846372425556,
-0.040794625878334045,
-0.013521955348551273,
0.031171763315796852,
0.011572156101465225,
-0.00936113204807043,
-0.08239816874265671,
0.028858281672000885,
-0.03841590881347656,
-0.0365336611866951,
0.04095768183469772,
0.010119630955159664,
0.05813853070139885,
0.05917114391922951,
-0.0075029004365205765,
0.018438445404171944,
-0.021108008921146393,
0.021014098078012466,
-0.044535864144563675,
-0.00265387911349535,
-0.02756769023835659,
-0.06000218540430069,
-0.027257226407527924,
-0.01330134179443121,
-0.061696767807006836,
-0.04532912001013756,
-0.014968140050768852,
0.037989500910043716,
-0.014127851463854313,
0.010397287085652351,
0.00162057438865304,
0.009926483035087585,
-0.006764708086848259,
-0.028366366401314735,
-0.04776455834507942,
-0.029293794184923172,
-0.061233099550008774,
-0.03549325093626976,
0.04209878668189049,
0.013724545016884804,
0.0309385284781456,
-0.007662598509341478,
0.03183957561850548,
0.02560160495340824,
0.022581083700060844,
-0.05356792360544205,
0.02468336746096611,
0.014607028104364872,
-0.03251929581165314,
-0.022406170144677162,
0.009157024323940277,
0.014096804894506931,
0.019607892259955406,
-0.06331564486026764,
0.024246996268630028,
0.02744526043534279,
-0.032395828515291214,
-0.03510031849145889,
0.028399651870131493,
0.016196416690945625,
-0.042536795139312744,
0.005565576255321503,
0.004219311289489269,
-0.032540395855903625,
0.03136715292930603,
-0.02893809974193573,
-0.022000348195433617,
0.0006177693721838295,
0.006611282471567392,
0.04352470114827156,
0.0034898275043815374,
-0.061365846544504166,
0.03411474823951721,
-0.009503823705017567,
0.034314580261707306,
-0.06355685740709305,
0.05342349410057068,
-0.015735410153865814,
0.013497738167643547,
-0.007548358291387558,
0.0003699848020914942,
-0.030788561329245567,
0.052545953541994095,
-0.010087880305945873,
0.0058089313097298145,
-0.01686197891831398,
0.02614002302289009,
-0.038559794425964355,
0.05814334377646446,
-0.02381746657192707,
0.009787561371922493,
-0.015305034816265106,
0.06164061278104782,
-0.04673973098397255,
0.01036147028207779,
-0.019752241671085358,
0.00235377112403512,
-0.039831481873989105,
0.012479112483561039,
-0.012523812241852283,
-0.014789722859859467,
0.03215325251221657,
0.038405828177928925,
0.014758745208382607,
0.006920208223164082,
-0.04324007034301758,
0.0005729966796934605,
0.004541640169918537,
-0.05900100991129875,
-0.01276949793100357,
0.007861865684390068,
-0.000012367175258987118,
0.026188137009739876,
0.053648315370082855,
0.031775232404470444,
-0.046490203589200974,
-0.059242986142635345,
0.0490473136305809,
0.03927728906273842,
0.01975671574473381,
-0.01922159269452095,
0.0072175259701907635,
0.03553294762969017,
0.029339266940951347,
-0.05433858186006546,
0.014954820275306702,
-0.007964864373207092,
0.009457290172576904,
0.021336091682314873,
-0.014893459156155586,
0.022798189893364906,
-0.020148860290646553,
-0.04777885973453522,
-0.018071213737130165,
0.07340873032808304,
0.023597605526447296,
0.031381551176309586,
0.0021928376518189907,
-0.04390369728207588,
0.038804441690444946,
0.03251681476831436,
-0.03188338875770569,
0.028279241174459457,
0.023047134280204773,
-0.009193018078804016,
0.03344482555985451,
-0.0016097748884931207,
0.02400202862918377,
0.013514379039406776,
0.037164028733968735,
-0.028981445357203484,
0.05610710382461548,
-0.05336697772145271,
0.04457027092576027,
0.04122001677751541,
-0.05744441971182823,
-0.007361031603068113,
-0.03945668786764145,
0.06246595084667206,
-0.09263695031404495,
0.05982742831110954,
0.03440380096435547,
-0.017893847078084946,
0.017451511695981026,
-0.04204799607396126,
-0.03904363140463829,
0.0332639105618,
-0.05506238713860512,
0.060166213661432266,
0.004600405227392912,
-0.060426097363233566,
0.06723496317863464,
0.022995181381702423,
-0.0779915302991867,
0.02973036654293537,
0.028404323384165764,
-0.012515135109424591,
0.008755208924412727,
0.05461777001619339,
-0.02475772798061371,
0.03441232815384865,
-0.05453185364603996,
0.045440319925546646,
-0.06894809007644653,
-0.04910925030708313,
0.02394823171198368,
-0.06028542295098305,
-0.02409306727349758,
0.019239330664277077,
-0.00826658122241497,
-0.007461558561772108,
0.04558136314153671,
-0.02150977961719036,
-0.029491126537322998,
0.0007435636362060905,
-0.0009633692679926753,
0.009931642562150955,
0.00048679462634027004,
-0.013132192194461823,
0.02980119176208973,
0.017667101696133614,
0.011983511969447136,
-0.029407018795609474,
0.018254971131682396,
0.010932717472314835,
-0.06061011925339699,
-0.052555765956640244,
0.04893132671713829,
0.003016766393557191,
-0.012249297462403774,
0.023273032158613205,
0.008275567553937435,
0.024134306237101555,
0.008429053239524364,
-0.029269549995660782,
-0.01383196096867323,
-0.04408707469701767,
-0.025635065510869026,
0.020317424088716507,
0.01776137202978134,
0.028835289180278778,
-0.01629236713051796,
0.011470825411379337,
0.05571688711643219,
0.026499493047595024,
0.02064213901758194,
-0.0219369325786829,
-0.0020671533420681953,
0.012426028028130531,
-0.06496573984622955,
0.013538182713091373,
-0.011923558078706264,
-0.031193440780043602,
-0.03505450859665871,
-0.0012449616333469748,
-0.02326539158821106,
0.0405859537422657,
-0.04321661591529846,
0.03287850692868233,
0.05649440735578537,
-0.0043744551949203014,
-0.05103258788585663,
-0.09656602144241333,
-0.02960352785885334,
-0.058229438960552216,
0.024015581235289574,
0.01075914315879345,
-0.06057934835553169,
0.003632153384387493,
-0.03794875741004944,
-0.05659884586930275,
0.020160283893346786,
-0.015599207952618599,
-0.020754368975758553,
0.04799814149737358,
0.050570596009492874,
-0.012602169066667557,
0.013200629502534866,
-0.0057726092636585236,
-0.03646638244390488,
-0.01002658624202013,
-0.007136109750717878,
0.000872708042152226,
0.025847626850008965,
0.03626944124698639,
-0.023899083957076073,
0.003326795995235443,
-0.019669177010655403,
-0.05666980892419815,
-0.046267274767160416,
-0.006621409207582474,
0.06225718557834625
] |
ArnaudPannatier/MLPMixer | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
datasets:
- cats_vs_dogs
language:
- en
metrics:
- accuracy
library_name: transformers
---
# Image Classification
Classifies cat and dog images using a subset of the cats_vs_dogs dataset.<br>
Uses PyTorch for the preprocessing, training, and inference.
```
output_dir="cats_vs_dogs_model"
remove_unused_columns=False
evaluation_strategy="epoch"
save_strategy="epoch"
learning_rate=5e-5
per_device_train_batch_size=16
gradient_accumulation_steps=4
per_device_eval_batch_size=16
num_train_epochs=3
warmup_ratio=0.1
logging_steps=10
load_best_model_at_end=True
metric_for_best_model="accuracy"
push_to_hub=True
```
Note: during the training, I tried adjusting some of the above hyperparameters (like making the learning rate 0.1 as we have seen in class). But then the model could only classify cats and not dogs.
| [
-0.035902079194784164,
-0.005961082875728607,
-0.026732653379440308,
0.05473576858639717,
0.06641235202550888,
0.01457682903856039,
-0.019709806889295578,
-0.011586062610149384,
-0.03878498822450638,
0.06220090761780739,
0.030121199786663055,
-0.01920195482671261,
-0.0022163649555295706,
0.041177909821271896,
-0.025850707665085793,
-0.01952146552503109,
-0.027464846149086952,
-0.016442837193608284,
-0.03567378968000412,
-0.004889986012130976,
0.004449490457773209,
-0.017348255962133408,
0.010977010242640972,
0.03912961483001709,
-0.0027077316772192717,
0.012677865102887154,
0.009952379390597343,
0.023045487701892853,
0.03387022390961647,
-0.0642843022942543,
0.032407715916633606,
-0.04392143711447716,
-0.056147851049900055,
-0.027195289731025696,
0.0036736330948770046,
0.022462232038378716,
0.010755576193332672,
0.03713792935013771,
0.022117068991065025,
0.0540279895067215,
-0.0034340673591941595,
0.003248693887144327,
-0.0326288603246212,
-0.007815791293978691,
0.04372406005859375,
0.03933626413345337,
-0.0006360895349644125,
-0.022300435230135918,
0.031217414885759354,
-0.020194604992866516,
-0.049116477370262146,
-0.06286245584487915,
-0.05211634933948517,
0.043717529624700546,
-0.029560619965195656,
-0.014873489737510681,
-0.030929941684007645,
0.021832609549164772,
0.06548003852367401,
-0.03905746713280678,
-0.024822313338518143,
0.013872739858925343,
-0.08703850954771042,
0.02381998673081398,
0.007781940046697855,
-0.011399254202842712,
0.015443926677107811,
-0.03700927272439003,
0.016664408147335052,
-0.03587152808904648,
0.09963195770978928,
-0.032590776681900024,
0.03365490585565567,
-0.07820150256156921,
0.01356053352355957,
-0.03969681262969971,
0.02950621210038662,
0.03549513593316078,
-0.036278434097766876,
0.05197765678167343,
0.03477650508284569,
-0.00021725134865846485,
0.0314609669148922,
-0.022330885753035545,
-0.014930130913853645,
0.04844475910067558,
-0.03369178622961044,
-0.003985937684774399,
0.00905699748545885,
0.04659133031964302,
-0.06997623294591904,
-0.04294596239924431,
-0.02498093619942665,
-0.02886914275586605,
-0.030116159468889236,
0.01516134012490511,
0.03756602853536606,
-0.01289493590593338,
0.05011910945177078,
0.059860289096832275,
0.06740603595972061,
0.041772738099098206,
0.004922786727547646,
0.02552211843430996,
-0.011691208928823471,
-0.01068662479519844,
-0.02816399373114109,
-0.052825551480054855,
-0.053183794021606445,
0.03162337839603424,
0.0197684857994318,
-0.027121631428599358,
-0.03452395647764206,
0.05315638333559036,
-0.006056318990886211,
-0.025790372863411903,
0.10982462763786316,
-0.03347969427704811,
-0.03973735123872757,
-0.040777694433927536,
0.0395330972969532,
-0.011217642575502396,
-0.011855554766952991,
-0.0070717609487473965,
-0.026267297565937042,
-0.011878357268869877,
-0.05459880456328392,
-0.04229634255170822,
-0.008603710681200027,
0.024401964619755745,
-0.0033073141239583492,
0.046448808163404465,
0.03216180577874184,
-0.04293231666088104,
0.0050828950479626656,
-0.0011728863464668393,
-0.05756556987762451,
0.05624657869338989,
0.006853368598967791,
0.08851766586303711,
-0.0564064159989357,
-0.06949830800294876,
0.022739674896001816,
0.013908018358051777,
-0.020919693633913994,
0.024048764258623123,
0.013081609271466732,
-0.050168152898550034,
-0.040544576942920685,
-0.0183014627546072,
0.04207009822130203,
-0.040463656187057495,
-0.0072571029886603355,
0.040859781205654144,
0.01270071417093277,
0.04982038959860802,
-0.05803246051073074,
-0.014999039471149445,
-0.003922171425074339,
-0.020919205620884895,
-0.026074640452861786,
0.057283081114292145,
0.0029719348531216383,
0.0022371329832822084,
-0.050820499658584595,
-0.0375731959939003,
-0.008715285919606686,
0.11457082629203796,
-0.011131216771900654,
-0.01168737094849348,
-0.019098075106739998,
0.03175908699631691,
0.011737314984202385,
0.048734232783317566,
-0.015849409624934196,
0.04356628283858299,
0.06353722512722015,
0.021000884473323822,
-0.058520976454019547,
0.03694143891334534,
0.04686807096004486,
-0.055782072246074677,
-0.0297576691955328,
-0.006364248692989349,
0.014250502921640873,
-0.02506658062338829,
0.007343600504100323,
0.01905587874352932,
0.0010352120734751225,
-0.023685278370976448,
-0.007918914780020714,
0.04696192219853401,
0.0036918872501701117,
-0.012811873108148575,
-0.006196242291480303,
-0.05381270498037338,
-0.038158196955919266,
0.03622257336974144,
-0.02318846993148327,
-0.014047599397599697,
-0.03245585039258003,
-0.030220674350857735,
-0.004855995997786522,
-0.01499334815889597,
-0.003874179208651185,
0.023267658427357674,
-0.02457425370812416,
0.08683325350284576,
-0.023912442848086357,
0.0033027802128344774,
-0.05963814631104469,
-0.04983898624777794,
-0.003121892223134637,
0.026587573811411858,
0.022354476153850555,
0.039995864033699036,
0.0016415637219324708,
-0.06654887646436691,
0.05153031274676323,
0.029260946437716484,
0.06700186431407928,
-0.003939148969948292,
-0.02827138639986515,
0.005570943467319012,
0.015610136091709137,
0.05571296066045761,
-0.04174092784523964,
-0.01884353533387184,
0.009639781899750233,
0.03532842919230461,
0.007918897084891796,
0.022187523543834686,
0.0006318528903648257,
0.009918632917106152,
-0.042130835354328156,
-0.06375817209482193,
0.020213205367326736,
0.032145630568265915,
0.00436087092384696,
0.00782711897045374,
0.006425303872674704,
0.021499481052160263,
0.02795948088169098,
0.02044195681810379,
-0.010260192677378654,
-0.06217566132545471,
0.022766433656215668,
0.029201578348875046,
0.032967519015073776,
-0.03347858786582947,
0.03130339831113815,
-0.007139106746762991,
-0.010768357664346695,
0.06647077947854996,
-0.02432195097208023,
0.039186690002679825,
0.03650137037038803,
0.004765782039612532,
-0.010687913745641708,
0.03521808236837387,
0.006615540944039822,
0.02938528172671795,
0.05582227185368538,
0.002773052779957652,
0.060016848146915436,
-0.028927307575941086,
0.0485798716545105,
0.08339009433984756,
0.008240980096161366,
0.023845380172133446,
0.028518803417682648,
0.07518176734447479,
-0.013475262559950352,
-0.019938834011554718,
0.03308339789509773,
-0.04885661229491234,
-0.00785896647721529,
0.0031923437491059303,
0.01423596404492855,
-0.023461388424038887,
0.014637814834713936,
0.05515091121196747,
0.005131203215569258,
-0.04889759048819542,
0.0019485970260575414,
0.015430021099746227,
-0.009455077350139618,
0.02461043931543827,
-0.0050440579652786255,
-0.029948927462100983,
0.0011511339107528329,
-0.008985566906630993,
0.009022828191518784,
-0.0389525443315506,
-0.03220757842063904,
-0.026376891881227493,
-0.04914619401097298,
-0.031628649681806564,
-0.05808253958821297,
-0.030163506045937538,
-0.05314568430185318,
-0.02330080233514309,
0.06647178530693054,
-0.014195296913385391,
0.004858189728111029,
-0.039852723479270935,
0.0349099226295948,
-0.04657105356454849,
0.006443968042731285,
-0.059939805418252945,
-0.05332233011722565,
-0.0539180263876915,
-0.06457795947790146,
0.0284931268543005,
0.013931619934737682,
0.04960321635007858,
0.0026040764059871435,
0.00692366249859333,
-0.046492334455251694,
-0.015829026699066162,
0.04333477094769478,
0.044283654540777206,
-0.01023589912801981,
-0.0633702352643013,
0.032204851508140564,
-0.03006722591817379,
0.002241791458800435,
-0.007625964470207691,
-0.04393227770924568,
0.06752113252878189,
0.05901353433728218,
0.018290136009454727,
0.006261785980314016,
-0.004811020102351904,
-0.047168225049972534,
-0.08366420865058899,
-0.022344524040818214,
-0.026085039600729942,
0.011078677140176296,
-0.030421502888202667,
-0.02872111275792122,
-0.01860206387937069,
-0.031049136072397232,
-0.00980468187481165,
-0.009265839122235775,
0.015457418747246265,
0.04491933435201645,
0.05444765463471413,
0.025792211294174194,
0.021504022181034088,
-0.033336564898490906,
-0.037322696298360825,
0.03794221580028534,
0.003909796942025423,
0.0030470744241029024,
-0.05371015891432762,
-0.00789741799235344,
0.04001525044441223,
0.03921067342162132,
0.0022558392956852913,
-0.01490564364939928,
0.08562156558036804,
0.003410700475797057,
-0.009712537750601768,
0.04276830703020096,
-0.009849783033132553,
0.007682110648602247,
0.01317112147808075,
-0.0027363793924450874,
-0.01660284213721752,
-0.043266866356134415,
-0.024597564712166786,
-0.009759700857102871,
0.052119914442300797,
-0.06669048219919205,
-0.06175138056278229,
-0.011131657287478447,
0.024380628019571304,
0.01048263255506754,
0.04209749400615692,
-0.04338189586997032,
-0.002819647314026952,
-0.05612880364060402,
-0.01329977996647358,
0.03025764599442482,
0.006462584715336561,
0.028594007715582848,
0.04032675549387932,
-0.0196683369576931,
-0.004632912110537291,
0.042500048875808716,
0.029217487201094627,
0.05155554413795471,
0.007355064619332552,
-0.05109158903360367,
0.0003718973894137889,
-0.019263502210378647,
0.03701537474989891,
-0.0007421578629873693,
-0.03155580908060074,
-0.03029515966773033,
-0.09757974743843079,
-0.027590835466980934,
0.004743847530335188,
-0.04120654612779617,
-0.01185469701886177,
0.041627757251262665,
0.0031585267279297113,
-0.02798822708427906,
0.01772739551961422,
0.0040495810098946095,
0.05261988937854767,
-0.04524335637688637,
0.06044022738933563,
-0.012901228852570057,
0.004849832504987717,
-0.02762041613459587,
0.005742928944528103,
-0.043684449046850204,
-0.025451377034187317,
-0.02050407975912094,
0.06083958223462105,
0.008357889018952847,
0.061871737241744995,
0.08219971507787704,
0.0311378613114357,
-0.039777498692274094,
0.031702909618616104,
0.054509881883859634,
-0.026816457509994507,
-0.026935793459415436,
0.020837662741541862,
-0.01654287986457348,
-0.007085668388754129,
-0.028196528553962708,
0.004409098532050848,
0.014676937833428383,
0.04274407774209976,
-0.02004009485244751,
-0.027705658227205276,
-0.010515973903238773,
-0.026145119220018387,
-0.03213037922978401,
-0.02995249070227146,
0.002089869696646929,
0.008633868768811226,
0.0026969073805958033,
-0.015127578750252724,
0.028802018612623215,
0.03443755581974983,
0.052484072744846344,
0.017722807824611664,
-0.017356794327497482,
-0.009710143320262432,
0.031306833028793335,
0.006413064897060394,
-0.04237094521522522,
-0.05520199239253998,
-0.021847419440746307,
0.004844778683036566,
0.006526188924908638,
-0.020125901326537132,
-0.06379920244216919,
0.021829994395375252,
0.06736482679843903,
-0.06479551643133163,
0.08211791515350342,
0.006526697892695665,
0.025645727291703224,
0.049377165734767914,
-0.01897292025387287,
0.04255320131778717,
-0.018033452332019806,
0.004248775541782379,
0.014091592282056808,
0.030769580975174904,
0.006082550156861544,
-0.04439563304185867,
-0.055164508521556854,
0.024773932993412018,
0.02030068263411522,
0.044008418917655945,
0.04908294603228569,
-0.02188640460371971,
-0.0516388863325119,
0.003926596138626337,
0.036550622433423996,
-0.03359106183052063,
0.021645229309797287,
0.0313505083322525,
0.02559516578912735,
-0.02270226739346981,
-0.04936923086643219,
-0.03657566010951996,
-0.03593447059392929,
0.03784320130944252,
0.03350946307182312,
-0.030387314036488533,
-0.04042637720704079,
0.03499613702297211,
-0.012441746890544891,
-0.026578659191727638,
-0.08183155208826065,
0.0753760114312172,
-0.035440534353256226,
-0.012525917030870914,
0.05639734864234924,
0.03396148234605789,
0.02215263433754444,
0.0543208010494709,
0.01161734014749527,
0.011952798813581467,
-0.03901055082678795,
0.033620547503232956,
-0.03224065899848938,
-0.0028234266210347414,
0.008156855590641499,
-0.036644287407398224,
-0.02583775669336319,
-0.022746913135051727,
-0.05256689339876175,
-0.03058883175253868,
-0.023316483944654465,
-0.010491573251783848,
-0.020925814285874367,
-0.03564085066318512,
-0.01963423192501068,
0.025213109329342842,
-0.022855045273900032,
-0.044493116438388824,
-0.019080517813563347,
-0.010430603288114071,
-0.06243389844894409,
-0.031640563160181046,
0.02720457874238491,
0.005239247810095549,
0.04398312792181969,
-0.01405806839466095,
0.02346089668571949,
0.027208581566810608,
-0.00575642753392458,
-0.009254079312086105,
0.0047315629199147224,
0.02776798978447914,
-0.0058605303056538105,
0.01573701947927475,
0.015364577993750572,
0.010472768917679787,
0.026281166821718216,
-0.006863953545689583,
0.030020954087376595,
0.035230930894613266,
-0.010194124653935432,
-0.006117385346442461,
0.021522805094718933,
0.033837106078863144,
-0.08059211075305939,
-0.04918019101023674,
0.02810666710138321,
-0.04230315610766411,
0.016716016456484795,
-0.028642119839787483,
-0.03912613168358803,
0.03813885897397995,
0.009283778257668018,
0.02022562548518181,
-0.04923895001411438,
-0.014755044132471085,
0.01936301402747631,
-0.04004333168268204,
0.04058912768959999,
-0.04479632526636124,
0.02407955937087536,
-0.013773959130048752,
0.016711873933672905,
-0.011894586496055126,
0.003919210284948349,
-0.06169075518846512,
0.04531523585319519,
-0.012798496522009373,
-0.028825191780924797,
-0.026540499180555344,
0.018498623743653297,
-0.029075028374791145,
0.011723293922841549,
-0.016814451664686203,
-0.006108404137194157,
-0.03575633466243744,
0.05888363718986511,
-0.05159114673733711,
0.03583898767828941,
-0.029051601886749268,
-0.007180510088801384,
-0.024342959746718407,
-0.025347311049699783,
-0.01733606867492199,
-0.012579361908137798,
0.028797365725040436,
0.051426857709884644,
0.07109486311674118,
0.03542042523622513,
-0.020326295867562294,
0.00433364836499095,
0.021780263632535934,
-0.0562220923602581,
-0.050693463534116745,
-0.021634673699736595,
0.00006181225035106763,
-0.0048788427375257015,
0.03885256499052048,
0.05715440213680267,
-0.06592391431331635,
-0.04095951467752457,
0.05732131376862526,
0.037748776376247406,
-0.02613307349383831,
0.00856325775384903,
0.0030323988758027554,
0.016712278127670288,
0.04827660322189331,
-0.03282216191291809,
-0.039425551891326904,
-0.04173852875828743,
-0.03475664556026459,
0.05951282009482384,
-0.023868346586823463,
0.013001635670661926,
0.004287922754883766,
-0.012826859951019287,
-0.011461489833891392,
0.09797895699739456,
0.05470145866274834,
0.02180889993906021,
-0.018104609102010727,
-0.059189796447753906,
-0.000045783617679262534,
0.042796071618795395,
-0.04120207950472832,
0.0014468779554590583,
-0.006207008846104145,
-0.01070887316018343,
0.08404287695884705,
-0.004052871838212013,
-0.010641205124557018,
0.02826259844005108,
0.04813847318291664,
-0.006937171798199415,
0.07283549010753632,
-0.033388931304216385,
0.04094347357749939,
0.01786131225526333,
-0.06898406147956848,
-0.03238338977098465,
-0.04027826339006424,
0.049289271235466,
-0.08342002332210541,
0.060125794261693954,
0.04704095423221588,
0.00731842964887619,
-0.002049193251878023,
-0.029622985050082207,
-0.023109307512640953,
0.018215380609035492,
-0.06943266838788986,
0.0644969642162323,
-0.009389612823724747,
-0.044085174798965454,
0.10101383179426193,
0.012335244566202164,
-0.05404438450932503,
0.055473748594522476,
0.04952654987573624,
0.012370126321911812,
0.04990018904209137,
0.03844066336750984,
-0.0664505735039711,
0.0007800005842000246,
-0.031496312469244,
0.031286150217056274,
-0.04613453522324562,
-0.01778867095708847,
0.031708747148513794,
-0.038401950150728226,
-0.0059556798078119755,
0.04176352173089981,
-0.017289461567997932,
0.002911945106461644,
0.029301993548870087,
-0.03440672159194946,
-0.02940250001847744,
0.002670616377145052,
0.025603067129850388,
-0.00704954145476222,
-0.008774477057158947,
-0.018928885459899902,
0.0066595966927707195,
0.013657285831868649,
0.020731622353196144,
-0.0011539561673998833,
-0.015485788695514202,
0.013409712351858616,
-0.06234513223171234,
-0.04465426877140999,
0.01797054521739483,
0.022527312859892845,
-0.02725338004529476,
0.060449790209531784,
0.0004227152676321566,
0.03649444505572319,
0.010708434507250786,
-0.0036997266579419374,
0.02007378451526165,
-0.043873079121112823,
-0.011981342919170856,
0.0215154979377985,
-0.013958558440208435,
0.05066909268498421,
-0.0291892122477293,
0.026647064834833145,
0.029115725308656693,
0.033900532871484756,
-0.011029660701751709,
-0.01084696315228939,
-0.019024062901735306,
-0.0016977345803752542,
-0.03606002777814865,
0.04176991805434227,
0.0019230766920372844,
-0.031393397599458694,
-0.032587092369794846,
0.0075774239376187325,
-0.000537912710569799,
0.02844368666410446,
-0.04177219048142433,
-0.012798340059816837,
0.007506214082241058,
0.010189848951995373,
-0.052069079130887985,
-0.08044635504484177,
-0.032361846417188644,
-0.05705617740750313,
0.037153854966163635,
0.06791826337575912,
-0.06359193474054337,
0.036580152809619904,
-0.034292422235012054,
-0.04190108925104141,
0.022571297362446785,
0.04815908893942833,
-0.02777636982500553,
0.047944892197847366,
0.06442892551422119,
-0.05128900706768036,
0.01816035434603691,
0.016765683889389038,
-0.07450193911790848,
0.0042813620530068874,
0.004366204608231783,
0.010924670845270157,
0.022790905088186264,
0.018652722239494324,
0.0076046837493777275,
-0.009447535499930382,
-0.05815339833498001,
-0.03235344961285591,
-0.04086509346961975,
0.02622101455926895,
0.05087069422006607
] |
Arnold/wav2vec2-large-xlsr-hausa2-demo-colab | [
"pytorch",
"tensorboard",
"wav2vec2",
"automatic-speech-recognition",
"dataset:common_voice",
"transformers",
"generated_from_trainer",
"license:apache-2.0"
] | automatic-speech-recognition | {
"architectures": [
"Wav2Vec2ForCTC"
],
"model_type": "wav2vec2",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 5 | null |
---
license: creativeml-openrail-m
base_model: runwayml/stable-diffusion-v1-5
tags:
- stable-diffusion
- stable-diffusion-diffusers
- text-to-image
- diffusers
- lora
inference: true
---
# LoRA text2image fine-tuning - RenauxLouis/monet-test-1000steps-116-realsize-v3
These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were fine-tuned on the real-size-116 dataset. You can find some example images in the following.




| [
-0.029546428471803665,
-0.013596770353615284,
-0.025646686553955078,
0.023224102333188057,
0.03945781663060188,
-0.014621677808463573,
0.006592043209820986,
-0.0028716702945530415,
-0.010373841039836407,
0.06495881825685501,
0.011592053808271885,
-0.026734912768006325,
-0.0026337432209402323,
0.030684173107147217,
0.0001945815165527165,
-0.05536322668194771,
-0.014593446627259254,
-0.004748874343931675,
-0.021779188886284828,
-0.009461706504225731,
0.04587801918387413,
0.01536197867244482,
-0.01813504844903946,
0.027015333995223045,
-0.003240430960431695,
-0.016473211348056793,
-0.014692605473101139,
0.021890103816986084,
0.027062395587563515,
-0.073133684694767,
0.02576502226293087,
-0.04147857427597046,
-0.028079740703105927,
-0.03030340000987053,
-0.03835947811603546,
0.014520106837153435,
0.020099451765418053,
0.014102643355727196,
0.008670864626765251,
0.06796542555093765,
-0.01062268577516079,
0.017890118062496185,
-0.012192165479063988,
-0.03575528413057327,
0.017715726047754288,
-0.017851557582616806,
-0.05311191454529762,
-0.0354384109377861,
0.031828686594963074,
-0.05169873684644699,
-0.0737038254737854,
-0.06477513909339905,
-0.008678731508553028,
0.03035118617117405,
0.006600659340620041,
-0.013968276791274548,
-0.03932906687259674,
-0.010263117030262947,
0.027330681681632996,
-0.04281269386410713,
-0.022525999695062637,
-0.008413700386881828,
-0.06709039956331253,
0.007071582600474358,
0.022233108058571815,
-0.03945837914943695,
0.0019454638240858912,
-0.04434582218527794,
0.020701589062809944,
0.019700724631547928,
0.05142474174499512,
-0.03628837689757347,
0.014989337883889675,
-0.04880756512284279,
-0.006302949041128159,
-0.013544407673180103,
0.04963132366538048,
0.054625265300273895,
-0.054276611655950546,
0.08428829163312912,
0.05947874113917351,
0.02128482423722744,
-0.006179225165396929,
-0.013072825036942959,
-0.0061659179627895355,
0.035484906286001205,
-0.012723823077976704,
0.012836948037147522,
0.0065790764056146145,
0.0228523351252079,
-0.04086088389158249,
-0.027442457154393196,
-0.017986731603741646,
-0.047972582280635834,
0.02120213769376278,
0.02766013890504837,
0.04597105458378792,
-0.01766134425997734,
0.021836061030626297,
0.004578642547130585,
0.010698129422962666,
0.037909314036369324,
-0.020480690523982048,
0.04069586843252182,
-0.014749527908861637,
-0.03938987851142883,
-0.019555341452360153,
-0.029584504663944244,
-0.07018401473760605,
0.04772185906767845,
0.015184407122433186,
-0.027721967548131943,
-0.021731141954660416,
0.02777675911784172,
-0.031348470598459244,
-0.019991479814052582,
0.059174999594688416,
-0.019519681110978127,
-0.030375080183148384,
-0.07903751730918884,
0.057730283588171005,
0.007637752685695887,
0.005300374235957861,
0.00825357623398304,
-0.0569610521197319,
0.0349552258849144,
-0.024841949343681335,
-0.03603056073188782,
-0.012743121944367886,
0.015018688514828682,
0.01288868673145771,
0.0187365859746933,
0.00998364482074976,
-0.07420508563518524,
0.015474229119718075,
0.025847630575299263,
-0.06524776667356491,
0.04621436819434166,
0.0013838200829923153,
0.14553746581077576,
-0.06450905650854111,
-0.03940599784255028,
0.0225136186927557,
0.007101739756762981,
-0.035863276571035385,
-0.0006255916669033468,
-0.004456700291484594,
-0.05203143134713173,
-0.0024110472295433283,
-0.02637764811515808,
0.029823344200849533,
-0.058626897633075714,
-0.019163208082318306,
0.04127994179725647,
-0.0025852147955447435,
0.03296820446848869,
-0.018799282610416412,
-0.016957005485892296,
-0.0031846838537603617,
-0.008050529286265373,
-0.022722255438566208,
0.042866844683885574,
0.014822190627455711,
-0.0324706956744194,
-0.02467699907720089,
-0.028476102277636528,
0.004104272928088903,
0.07764033228158951,
-0.010967773385345936,
-0.03862982615828514,
-0.041325509548187256,
0.0484747551381588,
0.028936220332980156,
0.030140824615955353,
-0.0024090800434350967,
0.04796011373400688,
0.04118943586945534,
0.024242745712399483,
-0.021778305992484093,
0.05687703192234039,
0.040157292038202286,
-0.013962952420115471,
-0.02204151637852192,
-0.02085280604660511,
0.005850719753652811,
-0.0517757311463356,
-0.023750968277454376,
0.045497555285692215,
0.003510468639433384,
-0.03284310922026634,
-0.014154684729874134,
0.06559960544109344,
0.008171383291482925,
-0.02301141619682312,
0.018350673839449883,
-0.020320994779467583,
-0.028422612696886063,
0.05282795801758766,
-0.003314579837024212,
-0.022988487035036087,
-0.014427978545427322,
-0.021858233958482742,
-0.008343483321368694,
0.004990624263882637,
0.026187725365161896,
0.04000464081764221,
0.0080794058740139,
0.07108230143785477,
-0.035137105733156204,
0.03005446121096611,
-0.047462183982133865,
-0.0692114606499672,
0.015341943129897118,
0.05154288932681084,
0.015024508349597454,
0.04217744246125221,
-0.032741885632276535,
-0.04576791822910309,
0.030346112325787544,
0.05641806870698929,
0.01596769504249096,
0.02289804071187973,
-0.01994454488158226,
-0.02352195233106613,
0.015594389289617538,
0.03675387054681778,
-0.038143035024404526,
-0.045429691672325134,
0.010698555037379265,
0.042635537683963776,
-0.04850999638438225,
0.02059192955493927,
-0.027523048222064972,
0.018806470558047295,
-0.03720548376441002,
-0.05567096918821335,
0.030188115313649178,
0.05062422901391983,
0.00927829835563898,
0.027083897963166237,
0.01846894435584545,
0.018733486533164978,
0.024745939299464226,
0.021742312237620354,
0.04547751322388649,
-0.046427998691797256,
0.014084730297327042,
0.041253671050071716,
0.03774021565914154,
-0.05837947875261307,
0.04720047488808632,
-0.025597376748919487,
0.02558699995279312,
0.02841935306787491,
-0.060921940952539444,
0.008236185647547245,
0.1144365593791008,
0.02072249911725521,
-0.048210758715867996,
0.042259879410266876,
0.010579507797956467,
0.026359595358371735,
0.05121519789099693,
-0.010531614534556866,
0.04140309616923332,
-0.0349099338054657,
0.06303128600120544,
0.10722916573286057,
0.03239677473902702,
-0.026323281228542328,
0.033064160495996475,
0.09434625506401062,
-0.023467103019356728,
-0.009397264569997787,
0.05399226397275925,
-0.049528151750564575,
0.015087423846125603,
-0.017615661025047302,
0.010283859446644783,
-0.03153865039348602,
-0.015381398610770702,
0.05310367792844772,
0.0025744610466063023,
-0.027964139357209206,
-0.004209180828183889,
0.009637645445764065,
0.0062844641506671906,
0.020125018432736397,
-0.023652752861380577,
0.0128241665661335,
-0.017390716820955276,
-0.02833864465355873,
0.005813142284750938,
-0.04823250323534012,
-0.02785242535173893,
0.0036579982843250036,
-0.03588339686393738,
-0.015123534947633743,
-0.057192038744688034,
-0.012840664014220238,
-0.05316030979156494,
-0.01773940585553646,
0.0511602945625782,
0.0030616330914199352,
-0.002246007090434432,
-0.010554222390055656,
0.023274390026926994,
-0.029738400131464005,
-0.041210513561964035,
-0.07167930901050568,
-0.03675409406423569,
-0.0030547096394002438,
-0.06224942207336426,
0.04425922408699989,
0.0008625963237136602,
0.05320434272289276,
-0.007575724273920059,
0.005703487899154425,
-0.002578082727268338,
-0.02320055104792118,
0.04747592285275459,
0.050903111696243286,
-0.04243193566799164,
-0.035803113132715225,
-0.03461889922618866,
-0.014309920370578766,
0.006084229797124863,
-0.029295112937688828,
-0.022663738578557968,
0.09710972011089325,
0.048739466816186905,
0.0002842988178599626,
0.0006025326438248158,
0.018431073054671288,
-0.02544492296874523,
-0.03897995874285698,
-0.03876253217458725,
-0.020219335332512856,
-0.023082701489329338,
-0.040868181735277176,
-0.03282009810209274,
-0.025853432714939117,
-0.020281879231333733,
-0.0021642488427460194,
0.015659186989068985,
-0.017312005162239075,
0.046082593500614166,
0.06431276351213455,
0.03671839088201523,
0.051139336079359055,
-0.05320665240287781,
-0.04734059423208237,
0.04459365829825401,
0.036386869847774506,
-0.012149011716246605,
-0.0020218968857079744,
-0.033765096217393875,
0.0195444505661726,
0.03038729541003704,
-0.02211463265120983,
0.02968357317149639,
0.054340165108442307,
-0.011745274066925049,
-0.031740911304950714,
0.0006339451065286994,
-0.03372959420084953,
0.021566370502114296,
-0.009592280723154545,
-0.004847926087677479,
-0.011172238737344742,
-0.02004064805805683,
0.008593423292040825,
0.012655619531869888,
0.04597674682736397,
-0.07444087415933609,
-0.07416138797998428,
-0.03397994861006737,
0.01206838060170412,
0.055759962648153305,
0.02644001506268978,
-0.059933777898550034,
-0.0044351122342050076,
-0.06157630309462547,
0.008499706164002419,
0.040232181549072266,
-0.019941749051213264,
0.022157883271574974,
0.0398702509701252,
-0.009535249322652817,
0.019593771547079086,
0.0528232678771019,
0.012625066563487053,
0.037128426134586334,
0.030652936547994614,
-0.044612105935811996,
0.020628077909350395,
-0.024638501927256584,
0.031154118478298187,
0.0009098101872950792,
-0.017077336087822914,
-0.02759149856865406,
-0.08566328883171082,
-0.015470195561647415,
0.018089139834046364,
0.0015375440707430243,
0.008446519263088703,
0.05379864200949669,
-0.0131992781534791,
-0.003578182077035308,
0.01564091257750988,
0.016333216801285744,
0.07127532362937927,
-0.05638068541884422,
0.05855893716216087,
-0.009376748465001583,
-0.011184058152139187,
-0.04663074016571045,
0.02027297578752041,
-0.004008762072771788,
-0.022962922230362892,
0.018781200051307678,
0.04540444165468216,
0.030998991802334785,
0.030263178050518036,
0.03528990224003792,
0.03839700669050217,
-0.03899778053164482,
0.026963485404849052,
0.0344536155462265,
-0.015920590609312057,
-0.05684360861778259,
-0.0076097785495221615,
-0.009233320131897926,
-0.013181804679334164,
-0.009939266368746758,
-0.02604205347597599,
0.03368726372718811,
0.026130927726626396,
-0.03252313658595085,
0.010994980111718178,
-0.005312427878379822,
-0.003169730771332979,
-0.012402728199958801,
-0.020415322855114937,
-0.006008544936776161,
-0.02760777808725834,
-0.02477356232702732,
-0.0011164083844050765,
0.04562089592218399,
0.024839922785758972,
0.07133917510509491,
0.060442548245191574,
-0.023428665474057198,
-0.07129332423210144,
0.05170143395662308,
0.007515267003327608,
0.00028285104781389236,
-0.08547495305538177,
0.0006994712166488171,
0.0009218277991749346,
0.03966495394706726,
0.0012414292432367802,
-0.07949932664632797,
0.03244496136903763,
0.05425603315234184,
-0.07262397557497025,
0.04423649236559868,
-0.0009448599303141236,
0.006387753877788782,
0.03622311353683472,
-0.00004731851367978379,
0.04486069083213806,
-0.04845643788576126,
0.013041885569691658,
-0.03029194474220276,
0.027432162314653397,
-0.02164720557630062,
-0.02193032018840313,
-0.04236699268221855,
0.035982586443424225,
0.01805601827800274,
0.011959115043282509,
0.0615050382912159,
-0.0677514597773552,
-0.0856984481215477,
-0.029791198670864105,
0.03921547159552574,
-0.04485830292105675,
0.016712462529540062,
0.023594532161951065,
0.02318238653242588,
-0.024215346202254295,
-0.02562028169631958,
-0.014325088821351528,
0.007463823538273573,
0.026608629152178764,
-0.03339477628469467,
-0.03255193307995796,
-0.03717971593141556,
0.05703016370534897,
0.010851156897842884,
-0.019580397754907608,
-0.11032307893037796,
0.007028547115623951,
-0.005930120125412941,
-0.040848299860954285,
0.04343019053339958,
0.00792999193072319,
0.05386728793382645,
0.07350540161132812,
0.0030860553961247206,
0.06605599075555801,
-0.024361420422792435,
0.01724369265139103,
-0.0351046659052372,
-0.006271351594477892,
0.009306556545197964,
-0.01938365399837494,
-0.041188400238752365,
0.02822207100689411,
-0.053071681410074234,
-0.044924765825271606,
-0.005268643610179424,
0.027656076475977898,
0.014378580264747143,
0.039565689861774445,
0.017244543880224228,
0.018485713750123978,
0.007500520441681147,
-0.030704623088240623,
-0.02886463887989521,
-0.0032340320758521557,
-0.062432557344436646,
-0.020686034113168716,
0.042983196675777435,
-0.03129444271326065,
0.001977748703211546,
-0.02442297898232937,
0.02015431970357895,
0.025436297059059143,
0.06183759868144989,
-0.04782087355852127,
0.026371555402874947,
0.017163675278425217,
-0.021449387073516846,
-0.0017942599952220917,
0.0343913808465004,
0.018220867961645126,
0.03231843560934067,
-0.03180787339806557,
0.032658353447914124,
-0.010538797825574875,
0.0010625577997416258,
-0.02629820443689823,
0.02687034197151661,
0.024415340274572372,
-0.0554545558989048,
-0.017871767282485962,
-0.012982664629817009,
-0.03667307272553444,
0.019526032730937004,
-0.03874370828270912,
-0.0047935303300619125,
0.0009081990574486554,
0.026346417143940926,
0.031668998301029205,
-0.017557630315423012,
-0.031039675697684288,
0.026354068890213966,
-0.03510588780045509,
0.014089389704167843,
-0.06391574442386627,
0.017871327698230743,
-0.014466309919953346,
0.03839914873242378,
-0.017841249704360962,
-0.016436152160167694,
-0.0255974642932415,
0.041409190744161606,
-0.015481852926313877,
-0.0008824412361718714,
-0.015403764322400093,
0.03877286985516548,
-0.028457453474402428,
0.0314805768430233,
-0.030715307220816612,
0.018831351771950722,
-0.013196787796914577,
0.10404189676046371,
-0.02471473254263401,
0.014817318879067898,
0.00026261707535013556,
0.02018510177731514,
-0.02764306031167507,
-0.016772210597991943,
-0.05791221931576729,
-0.029893765226006508,
0.0328909307718277,
0.08635376393795013,
-0.0015545188216492534,
0.010207682847976685,
-0.008254371583461761,
0.01385665312409401,
0.019981922581791878,
-0.06245170533657074,
-0.02894226275384426,
0.01149393804371357,
-0.0126644317060709,
-0.009192525409162045,
0.07113613933324814,
0.024827705696225166,
-0.05743905529379845,
-0.05049996078014374,
0.07564518600702286,
0.00014300346083473414,
0.02461337298154831,
-0.02231050841510296,
0.027439258992671967,
0.028270214796066284,
0.06487884372472763,
-0.08182399719953537,
0.01270616240799427,
-0.02668701484799385,
0.000212152925087139,
0.016269827261567116,
-0.013349763117730618,
0.020918481051921844,
0.007857909426093102,
-0.038474954664707184,
-0.023098884150385857,
0.0763084888458252,
0.0021441662684082985,
0.027270765975117683,
0.0024951291270554066,
-0.04366027191281319,
0.06240672245621681,
0.0014240550808608532,
-0.02694336138665676,
0.04404877871274948,
0.026584936305880547,
-0.03265908733010292,
0.006062771193683147,
0.00808756984770298,
0.0037518891040235758,
0.046266596764326096,
0.048055537045001984,
-0.03854033723473549,
0.08581110090017319,
-0.03896847739815712,
0.04849376901984215,
0.019600974395871162,
-0.032774973660707474,
-0.03366834297776222,
-0.025598838925361633,
0.05852728709578514,
-0.06116608902812004,
0.06503458321094513,
0.030860941857099533,
0.010699215345084667,
0.02354736067354679,
-0.04684344306588173,
-0.020825034007430077,
0.01631981134414673,
-0.023564830422401428,
0.09513983130455017,
0.0039700958877801895,
-0.04763675108551979,
0.06369409710168839,
0.0351254977285862,
-0.0911947712302208,
0.05805251747369766,
0.0389895960688591,
0.017738185822963715,
0.011292907409369946,
0.03245604410767555,
-0.04759065806865692,
0.054717060178518295,
-0.04812932014465332,
0.02582469955086708,
-0.05470317602157593,
-0.013728585094213486,
0.040342941880226135,
-0.04168837517499924,
-0.027753110975027084,
0.03826815262436867,
-0.0271172896027565,
0.005946721415966749,
0.028285153210163116,
0.005608391482383013,
-0.015353038907051086,
0.020100556313991547,
0.002957775490358472,
0.034429650753736496,
-0.05007731169462204,
-0.01335436012595892,
0.005521422252058983,
0.017558595165610313,
0.008747033774852753,
-0.041307564824819565,
-0.004822643008083105,
0.008849851787090302,
-0.053581494837999344,
-0.031814102083444595,
0.04697103053331375,
0.024026961997151375,
-0.03726194053888321,
0.010034984908998013,
-0.012980787083506584,
0.014714211225509644,
0.01893850788474083,
0.009477230720221996,
0.0063841682858765125,
-0.04929904267191887,
-0.023599857464432716,
0.020691657438874245,
-0.003962044138461351,
0.00038330568349920213,
-0.006789558567106724,
0.012874213978648186,
0.0421036034822464,
0.036409031599760056,
0.03263347968459129,
-0.014585146680474281,
-0.005718722939491272,
0.013156892731785774,
-0.04733721911907196,
-0.018286608159542084,
-0.014229224994778633,
-0.042813003063201904,
-0.024862395599484444,
0.010158288292586803,
-0.049585431814193726,
0.004309978801757097,
-0.04627099260687828,
0.013411612249910831,
0.015962770208716393,
0.005910155829042196,
-0.07372219115495682,
-0.09172902256250381,
-0.04063078388571739,
-0.009282817132771015,
0.010455086827278137,
-0.005649619270116091,
-0.05691326782107353,
-0.0011516341473907232,
-0.029808875173330307,
-0.04401049017906189,
0.03291941434144974,
0.020619479939341545,
-0.021187685430049896,
0.05179190635681152,
0.07227237522602081,
-0.018247198313474655,
0.023893168196082115,
0.02822364680469036,
-0.048851847648620605,
0.011685268022119999,
-0.003836252260953188,
0.02555076964199543,
0.01825566403567791,
0.0028349650092422962,
0.00045671669067814946,
-0.02860838919878006,
-0.05569135397672653,
-0.03504640981554985,
-0.05200178548693657,
0.027923716232180595,
0.04555617272853851
] |
Arnold/wav2vec2-large-xlsr-turkish-demo-colab | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
tags:
- Pixelcopter-PLE-v0
- reinforce
- reinforcement-learning
- custom-implementation
- deep-rl-class
model-index:
- name: Reinforce-PixelCopter-PLE-v0_1
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: Pixelcopter-PLE-v0
type: Pixelcopter-PLE-v0
metrics:
- type: mean_reward
value: 7.80 +/- 5.58
name: mean_reward
verified: false
---
# **Reinforce** Agent playing **Pixelcopter-PLE-v0**
This is a trained model of a **Reinforce** agent playing **Pixelcopter-PLE-v0** .
To learn to use this model and train yours check Unit 4 of the Deep Reinforcement Learning Course: https://huggingface.co/deep-rl-course/unit4/introduction
| [
-0.04075101017951965,
0.01476689986884594,
0.014103991910815239,
0.01799307018518448,
0.04915979504585266,
-0.012676377780735493,
-0.02092871628701687,
-0.023040303960442543,
-0.01732652820646763,
0.06827428191900253,
0.035238754004240036,
-0.008113890886306763,
0.012556830421090126,
-0.007636460475623608,
-0.03712952509522438,
-0.061718475073575974,
-0.0003764237044379115,
0.012955916114151478,
-0.021812090650200844,
0.018140463158488274,
0.006498756818473339,
-0.007962916977703571,
-0.012222697027027607,
0.032465413212776184,
0.006700397469103336,
0.016656823456287384,
0.00489067891612649,
0.020580926910042763,
0.047698765993118286,
-0.06234302744269371,
-0.013552580960094929,
-0.04324112832546234,
-0.022697927430272102,
-0.019768675789237022,
-0.006873065140098333,
-0.009260859340429306,
0.01697424426674843,
0.01713663712143898,
0.02661174163222313,
0.060932233929634094,
-0.021822350099682808,
0.020209934562444687,
0.007812668569386005,
-0.03281710669398308,
0.026587361469864845,
0.006050464231520891,
-0.013439248315989971,
-0.009281757287681103,
0.014486868865787983,
-0.014722243882715702,
-0.0777435153722763,
-0.07547733932733536,
-0.008049673400819302,
0.017321379855275154,
0.0021859914995729923,
-0.04167831689119339,
-0.04503853619098663,
-0.0025106817483901978,
0.059759851545095444,
-0.06188184395432472,
-0.04346632957458496,
0.03136004880070686,
-0.02658402919769287,
0.010746452026069164,
0.028295109048485756,
-0.032611459493637085,
0.01919654943048954,
-0.04671831429004669,
0.020940076559782028,
-0.0308566652238369,
0.06026345491409302,
-0.03462901711463928,
0.012683861888945103,
-0.10542119294404984,
0.005880969110876322,
-0.00749335577711463,
0.005729451309889555,
0.013148547150194645,
-0.024669595062732697,
0.07679577171802521,
0.032933559268713,
0.028984200209379196,
0.04614328220486641,
-0.02503374218940735,
0.012687118723988533,
0.0019911674316972494,
-0.03686288371682167,
0.019167888909578323,
0.037280358374118805,
0.04386196285486221,
-0.014689836651086807,
-0.0013736160472035408,
-0.02826952002942562,
-0.032618120312690735,
-0.019170863553881645,
0.04896945878863335,
0.03847220540046692,
0.014566412195563316,
0.07079611718654633,
0.016167614609003067,
0.043917395174503326,
0.03841318190097809,
-0.02009035274386406,
0.0811891108751297,
0.01767798140645027,
-0.032677143812179565,
-0.027902519330382347,
0.0036655741278082132,
-0.04946316033601761,
0.05965929478406906,
0.009792700409889221,
-0.03335176780819893,
-0.027363846078515053,
0.027052948251366615,
-0.010465298779308796,
0.006485770456492901,
0.05986475571990013,
-0.02876959927380085,
-0.013192889280617237,
-0.0693662166595459,
0.08435133844614029,
0.015296632423996925,
0.01850653812289238,
-0.024624912068247795,
-0.03640573099255562,
0.004697754979133606,
-0.05135995149612427,
-0.025084037333726883,
-0.018319400027394295,
0.0110709797590971,
0.0030044224113225937,
0.0448349304497242,
-0.010496163740754128,
-0.0454438254237175,
0.006604657042771578,
0.022850174456834793,
-0.07040121406316757,
0.017770765349268913,
-0.006756235379725695,
0.06463456898927689,
-0.08577318489551544,
-0.054929837584495544,
0.008999665267765522,
0.027242649346590042,
-0.030525164678692818,
-0.019867271184921265,
0.008135431446135044,
-0.05786098539829254,
-0.056639932096004486,
-0.02116423472762108,
0.052174318581819534,
-0.06221698969602585,
-0.006967400666326284,
0.07468239217996597,
0.005626550875604153,
0.037726469337940216,
-0.020548298954963684,
0.018669618293642998,
-0.007993707433342934,
-0.0317552275955677,
-0.03361622244119644,
0.07247345894575119,
-0.04291937127709389,
-0.026441682130098343,
-0.05366482958197594,
-0.018204016610980034,
0.01959075964987278,
0.038415733724832535,
-0.02597075141966343,
-0.03670238330960274,
-0.02674512006342411,
0.028020398691296577,
0.03929293155670166,
0.006129889283329248,
0.011352788656949997,
0.03896299749612808,
0.04174099117517471,
0.035511564463377,
-0.02966572716832161,
0.032684724777936935,
0.02076343446969986,
-0.03663407266139984,
-0.030631475150585175,
0.011675020679831505,
-0.0007023116922937334,
-0.006452630273997784,
0.008210467174649239,
0.02330988645553589,
-0.0038367051165550947,
-0.06641039252281189,
-0.008805292658507824,
0.05785854905843735,
-0.026532964780926704,
0.010502558201551437,
-0.003149303374812007,
-0.01570245996117592,
-0.016142861917614937,
0.04552965983748436,
-0.018994122743606567,
-0.008790876716375351,
-0.033476199954748154,
-0.043688129633665085,
0.037551768124103546,
0.0298575758934021,
0.006856823340058327,
0.0024727126583456993,
-0.011070659384131432,
0.09775251895189285,
-0.014401961117982864,
0.020653074607253075,
-0.05807219073176384,
-0.05995422229170799,
-0.0009355691145174205,
0.02914055809378624,
0.04376529902219772,
0.03251797705888748,
-0.018411191180348396,
-0.05792870745062828,
0.036055561155080795,
0.029727919027209282,
0.04553018882870674,
0.005396612454205751,
-0.034387968480587006,
-0.014503908343613148,
0.030956437811255455,
0.01341327466070652,
-0.016758963465690613,
-0.024502338841557503,
0.03627967834472656,
0.05431494861841202,
-0.011961067095398903,
-0.0007775926496833563,
-0.038495272397994995,
0.03421163558959961,
-0.07445943355560303,
-0.03754224255681038,
0.01939304731786251,
0.030705751851201057,
0.013619485311210155,
0.0483284592628479,
-0.01650572381913662,
0.01590176299214363,
0.012408539652824402,
0.025084346532821655,
0.015468019992113113,
-0.04915200173854828,
0.009843465872108936,
0.024330874904990196,
0.06425316631793976,
-0.030988784506917,
0.03749336302280426,
0.01509516779333353,
-0.020375963300466537,
0.03294434770941734,
-0.04388546943664551,
0.03195721283555031,
0.0839446485042572,
0.0017373738810420036,
-0.000873498385772109,
0.04203612729907036,
-0.0035411061253398657,
0.027503909543156624,
0.015011630952358246,
-0.030512183904647827,
0.06535882502794266,
-0.015540681779384613,
0.02945142611861229,
0.051859982311725616,
0.02881575934588909,
0.00563321216031909,
0.01526798214763403,
0.07693293690681458,
0.01884440705180168,
-0.011773854494094849,
0.07066842913627625,
-0.021100269630551338,
0.04548267275094986,
-0.03149985149502754,
-0.019604183733463287,
-0.010973775759339333,
-0.005568494088947773,
0.06302358955144882,
0.016099873930215836,
-0.038181088864803314,
0.015091669745743275,
-0.004441813100129366,
-0.001316748559474945,
0.01008486095815897,
-0.019188517704606056,
0.002162892371416092,
0.010639099404215813,
-0.022522874176502228,
0.024480173364281654,
-0.08226027339696884,
-0.06213519349694252,
-0.02326354756951332,
-0.015144598670303822,
-0.02789970673620701,
-0.05832844600081444,
-0.03395465761423111,
-0.054232317954301834,
-0.009607849642634392,
0.044782333076000214,
0.014638482592999935,
-0.008758445270359516,
-0.021676652133464813,
0.019411327317357063,
-0.0386015847325325,
-0.03882049396634102,
-0.04715891554951668,
-0.03595159202814102,
-0.06920059025287628,
-0.06288456171751022,
0.033724650740623474,
0.015944616869091988,
0.03116239793598652,
0.004513987340033054,
0.0024352867621928453,
-0.03999248519539833,
-0.0179126039147377,
0.022432399913668633,
0.07499364763498306,
-0.009635088965296745,
-0.0456157848238945,
0.013219163753092289,
-0.017521649599075317,
0.013502190820872784,
0.015143140219151974,
-0.03680922091007233,
0.0625053271651268,
0.06759122759103775,
0.04193722456693649,
-0.008319788612425327,
-0.006933365482836962,
-0.043592408299446106,
-0.03243035450577736,
-0.03918749839067459,
-0.054941609501838684,
-0.008748241700232029,
-0.04473698139190674,
-0.04428669810295105,
-0.029380567371845245,
-0.023219559341669083,
-0.01809636317193508,
-0.015490531921386719,
0.013014886528253555,
0.006308210548013449,
0.07185772806406021,
0.01188340038061142,
0.02282327227294445,
-0.047555338591337204,
-0.05252017825841904,
0.026676347479224205,
0.006510109640657902,
-0.008090042509138584,
-0.07872126996517181,
-0.0384875051677227,
0.0242574792355299,
0.000765785516705364,
0.007477853912860155,
-0.010437441058456898,
0.07243535667657852,
0.013225539587438107,
-0.020149394869804382,
0.03763445094227791,
-0.039791882038116455,
0.003776587313041091,
-0.01696338690817356,
-0.0031526454258710146,
-0.0339277982711792,
-0.03663455694913864,
-0.002659411169588566,
-0.00027852976927533746,
0.04620412364602089,
-0.03605970740318298,
-0.046793971210718155,
0.005295572802424431,
0.03185513988137245,
0.048991791903972626,
0.005014965310692787,
-0.05406166613101959,
-0.004857132211327553,
-0.08224945515394211,
0.001962910173460841,
0.03396884351968765,
-0.011438707821071148,
0.0303348358720541,
0.04976561293005943,
0.012407039292156696,
0.008218396455049515,
0.04014910012483597,
0.0326874665915966,
0.03837685286998749,
0.01713971421122551,
-0.03016735427081585,
0.013261965475976467,
0.0005374817992560565,
0.06710891425609589,
0.003004485508427024,
-0.008136915974318981,
-0.04915487766265869,
-0.08390047401189804,
-0.032851237803697586,
0.019131453707814217,
-0.028346259146928787,
0.004417941905558109,
0.05256747826933861,
-0.02343970723450184,
-0.008967176079750061,
0.012269796803593636,
-0.0026226441841572523,
0.046397652477025986,
-0.04387332499027252,
0.06434059143066406,
-0.00819444004446268,
0.0356726236641407,
-0.06569886207580566,
0.022198956459760666,
-0.004797482863068581,
-0.021800683811306953,
-0.0020084278658032417,
0.05235295370221138,
0.04484422877430916,
0.0750390887260437,
0.05149892717599869,
0.033209364861249924,
-0.03970974683761597,
0.006143677979707718,
0.04269232600927353,
-0.025501573458313942,
-0.06130650267004967,
-0.00886476319283247,
0.006450093816965818,
0.0034040159080177546,
-0.001271709450520575,
-0.019398842006921768,
0.03839537128806114,
0.04507265239953995,
-0.0030166516080498695,
0.005372014362365007,
0.0036492832005023956,
-0.019968975335359573,
-0.04489048942923546,
-0.06236311048269272,
0.007783024106174707,
0.007235668133944273,
0.025340687483549118,
0.026753807440400124,
0.05009038373827934,
0.032225608825683594,
0.0352909080684185,
0.05904602259397507,
-0.0031457203440368176,
-0.06548284739255905,
0.046951014548540115,
0.014820638112723827,
-0.010087424889206886,
-0.044396813958883286,
-0.02176745794713497,
0.03133067488670349,
0.06193322688341141,
-0.014332314021885395,
-0.06382657587528229,
0.020883578807115555,
0.07628943026065826,
-0.06688747555017471,
0.09251166135072708,
0.0021341978572309017,
0.019704364240169525,
0.06716439872980118,
0.006197835318744183,
0.038413286209106445,
-0.019867422059178352,
-0.036239512264728546,
-0.0034570666030049324,
0.026036212220788002,
0.024714099243283272,
-0.026546549052000046,
-0.03324955701828003,
-0.0030161954928189516,
0.04778857156634331,
0.05751200392842293,
0.021353358402848244,
-0.057607367634773254,
-0.062319718301296234,
-0.03476141393184662,
0.04180384427309036,
-0.03938636928796768,
0.012562296353280544,
0.04817153140902519,
0.04349265992641449,
-0.06880488991737366,
-0.040784455835819244,
-0.039847247302532196,
-0.026553690433502197,
0.019707687199115753,
-0.009388945065438747,
-0.04584226757287979,
-0.03995146229863167,
0.04065673425793648,
-0.007354925852268934,
-0.01427644956856966,
-0.10853616893291473,
0.020856034010648727,
-0.009044690057635307,
-0.0009601123747415841,
0.03326944634318352,
0.0367213599383831,
0.04718974977731705,
0.053423020988702774,
0.02523820661008358,
0.021748390048742294,
-0.019396692514419556,
0.0430598258972168,
-0.0521983839571476,
-0.044822629541158676,
0.0031137140467762947,
-0.036830514669418335,
0.00863250158727169,
-0.028800509870052338,
-0.00872795470058918,
-0.017472345381975174,
-0.0408942848443985,
0.03227698802947998,
0.0048828525468707085,
0.007296645548194647,
-0.021407531574368477,
0.01900883950293064,
-0.02329806424677372,
-0.03854493424296379,
-0.025887899100780487,
-0.02120584435760975,
-0.03823515772819519,
-0.05360566824674606,
0.03226565569639206,
0.008028446696698666,
0.03967748209834099,
-0.008083494380116463,
0.04482061415910721,
0.033403877168893814,
-0.0009600211051292717,
-0.017033813521265984,
0.06512293964624405,
0.029890207573771477,
-0.020266277715563774,
-0.016080135479569435,
0.012513515539467335,
0.0077742463909089565,
0.05753505229949951,
-0.033817995339632034,
0.022213414311408997,
0.022268256172537804,
0.01131238229572773,
-0.005511379800736904,
0.018281439319252968,
-0.00190141296479851,
-0.0399259589612484,
-0.01710890792310238,
-0.024947339668869972,
-0.0526055283844471,
0.03306503966450691,
-0.029295912012457848,
-0.02712123654782772,
0.014615491963922977,
-0.005788096226751804,
0.04196041077375412,
-0.004480639006942511,
-0.04625662788748741,
0.021031592041254044,
-0.046294648200273514,
0.0767890214920044,
-0.03922819718718529,
0.01706000231206417,
-0.022415397688746452,
0.008613613434135914,
-0.015133189037442207,
-0.0033180827740579844,
-0.054652947932481766,
0.05592017620801926,
-0.005837948061525822,
-0.018114687874913216,
-0.04273160547018051,
0.022499889135360718,
-0.003949977923184633,
0.04318901523947716,
-0.012201858684420586,
0.03710512816905975,
-0.017076769843697548,
0.06313640624284744,
-0.03795231133699417,
0.012150038033723831,
-0.03242962062358856,
0.05645165592432022,
-0.007020313758403063,
-0.007528838235884905,
-0.03467261791229248,
-0.036807212978601456,
0.023731747642159462,
0.021483002230525017,
0.01400545984506607,
0.030200181528925896,
-0.021565252915024757,
0.01807018555700779,
-0.0062620434910058975,
-0.015161380171775818,
-0.046530935913324356,
-0.0003059730806853622,
0.023186849430203438,
0.0532471239566803,
0.025421472266316414,
0.03326602652668953,
-0.07406318187713623,
-0.04796365275979042,
0.057814717292785645,
0.03150150552392006,
0.02964932844042778,
-0.015518720261752605,
0.03469027578830719,
0.07265644520521164,
0.024925336241722107,
-0.051280613988637924,
0.020984463393688202,
-0.0031059111934155226,
0.00840155128389597,
0.01741921715438366,
-0.019403619691729546,
0.0399550162255764,
0.0192667618393898,
-0.0312587209045887,
-0.02773274853825569,
0.07902295887470245,
0.04898494482040405,
-0.00592914829030633,
-0.013956454582512379,
-0.036029744893312454,
0.02311720885336399,
-0.009677499532699585,
-0.044721171259880066,
0.011812105774879456,
0.0073271263390779495,
-0.025666574016213417,
0.0725104883313179,
-0.03687286004424095,
0.012713223695755005,
0.03762468695640564,
0.036400217562913895,
-0.008719587698578835,
0.04139212146401405,
-0.013230840675532818,
0.03104504384100437,
0.03144403547048569,
-0.06277814507484436,
-0.005943804979324341,
-0.036733970046043396,
0.06690102815628052,
-0.06366109102964401,
0.06973549723625183,
0.04092927649617195,
-0.007153518497943878,
0.010169073939323425,
-0.027149919420480728,
-0.06728889048099518,
-0.00793381966650486,
-0.050079088658094406,
0.0410597026348114,
0.026260267943143845,
-0.04729359596967697,
0.05095742270350456,
0.03263648599386215,
-0.06687755882740021,
0.017397798597812653,
0.012001127004623413,
0.020089801400899887,
-0.006955113261938095,
0.006662331521511078,
-0.03442433476448059,
0.01530894823372364,
-0.044969599694013596,
0.0745539665222168,
-0.06612610071897507,
-0.03933023288846016,
0.05024970322847366,
-0.04143515229225159,
-0.0023840772919356823,
0.04290864244103432,
-0.016064420342445374,
-0.011993412859737873,
0.024564772844314575,
-0.05463486537337303,
-0.06241993606090546,
0.007286895997822285,
0.008544310927391052,
0.027195315808057785,
0.020402412861585617,
-0.03875289112329483,
0.01736738719046116,
0.032102055847644806,
-0.038781460374593735,
-0.016225408762693405,
-0.023066021502017975,
0.01625397801399231,
-0.06002729758620262,
-0.036121975630521774,
0.059264350682497025,
0.010136564262211323,
-0.021907802671194077,
0.024441396817564964,
-0.014195505529642105,
0.005545026622712612,
0.001239309087395668,
0.03158031776547432,
0.007544845808297396,
-0.08162697404623032,
-0.015583747066557407,
-0.0066396803595125675,
0.02126052975654602,
0.027747757732868195,
-0.02718418836593628,
0.02650952711701393,
0.04884439706802368,
0.023765435442328453,
0.014216666109859943,
-0.03543839976191521,
-0.010744367726147175,
0.03833770006895065,
-0.05915243178606033,
0.02103082276880741,
0.010333436541259289,
-0.04705432802438736,
-0.035646650940179825,
-0.031404245644807816,
-0.015997961163520813,
0.01805451512336731,
-0.03639756515622139,
0.023155009374022484,
0.049901172518730164,
0.009840297512710094,
-0.05097632855176926,
-0.10947022587060928,
-0.006918812170624733,
-0.036441925913095474,
0.03444696590304375,
0.040207259356975555,
-0.034341879189014435,
0.002188190585002303,
0.013021495193243027,
-0.023220999166369438,
0.03628142550587654,
0.011275152675807476,
-0.032988760620355606,
0.04247868061065674,
0.038958143442869186,
-0.028688868507742882,
0.020121600478887558,
0.031353555619716644,
-0.033950075507164,
0.02726290002465248,
0.03268914297223091,
0.008124170824885368,
0.03385428339242935,
-0.007531675510108471,
-0.02619992569088936,
-0.030277855694293976,
-0.04248368740081787,
-0.012464551255106926,
-0.02741120383143425,
0.04924825578927994,
0.06050390005111694
] |
ArseniyBolotin/bert-multi-PAD-ner | [
"pytorch",
"jax",
"bert",
"token-classification",
"transformers",
"autotrain_compatible"
] | token-classification | {
"architectures": [
"BertForTokenClassification"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 11 | null | Access to model zhuxiang/yunduanshiyong is restricted and you are not in the authorized list. Visit https://huggingface.co/zhuxiang/yunduanshiyong to ask for access. | [
-0.07356470078229904,
-0.014327636919915676,
0.004561183508485556,
0.028120731934905052,
0.02963799610733986,
0.008388511836528778,
0.003279675729572773,
-0.011362769640982151,
-0.043229132890701294,
0.044139161705970764,
0.03971373662352562,
0.003938110079616308,
0.023129086941480637,
0.04692382365465164,
-0.006215507630258799,
-0.013145346194505692,
0.014065412804484367,
-0.006050831638276577,
-0.06034626439213753,
-0.0014315551379695535,
0.013421433977782726,
0.042638398706912994,
-0.012114313431084156,
0.030030377209186554,
-0.008440084755420685,
0.013772198930382729,
-0.011389204300940037,
0.03217604011297226,
0.019517943263053894,
-0.05794705078005791,
-0.012743895873427391,
-0.06689643859863281,
-0.022316040471196175,
-0.050378650426864624,
-0.016747971996665,
-0.01927170157432556,
0.04590587317943573,
-0.01153231505304575,
0.044099725782871246,
0.027950065210461617,
-0.030991893261671066,
0.004532553255558014,
-0.009297363460063934,
-0.029266737401485443,
0.029234612360596657,
-0.003566991537809372,
-0.03110588900744915,
-0.04339445382356644,
0.06278885155916214,
-0.04928741976618767,
-0.04633883386850357,
-0.08572077006101608,
-0.009111972525715828,
-0.010591007769107819,
-0.03305410221219063,
-0.023132290691137314,
-0.041346680372953415,
-0.007355670910328627,
0.10413888841867447,
-0.0623050220310688,
-0.060842983424663544,
-0.015942195430397987,
-0.0834580808877945,
0.043012816458940506,
0.044988952577114105,
-0.05334936082363129,
0.03554755821824074,
-0.03230885788798332,
0.0386451780796051,
-0.02430886961519718,
0.03247825801372528,
-0.016262860968708992,
-0.0002408771397313103,
-0.0505816750228405,
-0.023345347493886948,
-0.03039097785949707,
0.037584248930215836,
0.035844314843416214,
-0.044109538197517395,
0.055864863097667694,
0.0006539315218105912,
-0.022662607952952385,
0.03886094316840172,
-0.005101081449538469,
-0.02595675177872181,
0.02717190980911255,
-0.05047677084803581,
0.02350441925227642,
0.00005253977360553108,
0.022642720490694046,
-0.017307355999946594,
-0.06127990782260895,
-0.014954100362956524,
-0.032401710748672485,
-0.035047292709350586,
0.016458483412861824,
0.040051985532045364,
-0.027292052283883095,
0.040603868663311005,
0.04188506677746773,
0.03194960206747055,
0.016283726319670677,
0.019787322729825974,
0.053817931562662125,
-0.0007600273238494992,
-0.028818629682064056,
0.006651196628808975,
-0.02766144461929798,
-0.053090859204530716,
0.0074029224924743176,
0.015106862410902977,
-0.04501822963356972,
-0.01846388727426529,
0.0069945016875863075,
0.013942094519734383,
-0.018427299335598946,
0.05844464525580406,
-0.051569949835538864,
-0.050135307013988495,
-0.04590694233775139,
0.03195979818701744,
0.0387902669608593,
0.007400923874229193,
-0.007809809409081936,
-0.059523217380046844,
0.03109937347471714,
-0.031352851539850235,
-0.03867485746741295,
-0.015606808476150036,
0.01841544732451439,
0.002564407652243972,
0.03940095379948616,
0.008040646091103554,
-0.09041423350572586,
-0.004683380480855703,
0.027914073318243027,
-0.040182847529649734,
0.0304301418364048,
-0.008724783547222614,
0.09023988991975784,
-0.07166692614555359,
-0.048341911286115646,
-0.006646882742643356,
0.0012266457779332995,
-0.01633012853562832,
0.0021510564256459475,
0.023188050836324692,
-0.03534029796719551,
-0.045852456241846085,
-0.03959392011165619,
0.041517578065395355,
-0.026251068338751793,
0.011844145134091377,
0.06401944905519485,
-0.014420809224247932,
0.02964627370238304,
-0.04144074767827988,
0.03068072535097599,
0.010499928146600723,
0.027977045625448227,
-0.01609262451529503,
0.04426547512412071,
-0.025979790836572647,
-0.03876597434282303,
-0.04851914569735527,
-0.07067549228668213,
0.03782397881150246,
0.07195282727479935,
-0.036660078912973404,
-0.00814864318817854,
-0.06278261542320251,
0.044045109301805496,
0.04761308804154396,
0.02421198971569538,
-0.010605818592011929,
0.04243176057934761,
0.021445434540510178,
0.04684948921203613,
-0.013017437420785427,
0.04398535564541817,
0.01585361920297146,
-0.02028704062104225,
-0.014420128427445889,
-0.00429074140265584,
0.05339043214917183,
-0.028144637122750282,
0.026259873062372208,
0.04080578684806824,
-0.00035162747371941805,
-0.04092814400792122,
-0.017701972275972366,
0.031193001195788383,
-0.03250884637236595,
-0.013175657019019127,
0.030698705464601517,
0.008414577692747116,
-0.0372094102203846,
0.04427983611822128,
-0.01622690074145794,
0.006024121306836605,
-0.04034165292978287,
-0.007518771570175886,
0.02601500228047371,
0.011185722425580025,
0.01513356901705265,
0.03199528157711029,
-0.04531021788716316,
0.06765717267990112,
-0.022829381749033928,
0.009748287498950958,
-0.02581166848540306,
-0.05328837037086487,
-0.0004499974602367729,
0.04464719444513321,
0.048932794481515884,
0.027089392766356468,
-0.0018995889695361257,
-0.030071144923567772,
0.0488700345158577,
0.05591321736574173,
0.048652030527591705,
0.023272519931197166,
-0.04636934772133827,
-0.020345646888017654,
0.04942948743700981,
0.024690184742212296,
-0.0829586535692215,
-0.037462376058101654,
0.0052268230356276035,
0.04688286408782005,
-0.04092022776603699,
0.03687185049057007,
-0.00669139064848423,
0.02914825640618801,
-0.060821715742349625,
-0.08521556109189987,
0.0192464180290699,
0.04322994872927666,
0.024501362815499306,
0.02296413481235504,
0.00438179774209857,
0.019927876070141792,
-0.0040144105441868305,
0.018884291872382164,
0.017438406124711037,
-0.0418483205139637,
0.04162110388278961,
0.0043798405677080154,
0.08001746982336044,
-0.06178205832839012,
0.0007454596925526857,
0.015428155660629272,
-0.0015269055729731917,
0.008818497881293297,
-0.03314878046512604,
0.02785186655819416,
0.0671287253499031,
0.015898603945970535,
-0.0520162396132946,
0.0389123298227787,
0.01179590541869402,
0.02823757193982601,
0.040717508643865585,
0.007732086814939976,
0.04747069999575615,
-0.02034764364361763,
0.0611143484711647,
0.043411124497652054,
-0.0008892528130672872,
-0.031124986708164215,
0.007422426715493202,
0.04227719083428383,
0.0070832837373018265,
0.013321551494300365,
0.08040574938058853,
0.01512790285050869,
0.000928051711525768,
-0.06220430135726929,
0.020618513226509094,
-0.034078534692525864,
-0.018181487917900085,
0.050555191934108734,
-0.015564510598778725,
-0.0033801880199462175,
0.026303552091121674,
0.0023357304744422436,
0.0016199363162741065,
0.038869112730026245,
-0.00017311956617049873,
-0.0013231001794338226,
-0.02515425719320774,
-0.0502849742770195,
-0.02462569996714592,
-0.07359766215085983,
-0.013802308589220047,
-0.00019356059783603996,
-0.04193773493170738,
-0.016746118664741516,
-0.07517595589160919,
0.0053525022231042385,
-0.068181611597538,
-0.028301991522312164,
0.050505831837654114,
0.017228037118911743,
0.046425070613622665,
-0.030744098126888275,
0.042513228952884674,
-0.02780318260192871,
-0.018055465072393417,
-0.04520084708929062,
-0.03010333515703678,
-0.007456336636096239,
-0.05867231637239456,
0.017027918249368668,
0.012164512649178505,
0.01470256969332695,
0.035069625824689865,
-0.005340713541954756,
-0.02972167730331421,
-0.01328340545296669,
0.03441161662340164,
0.06238855421543121,
-0.0141439875587821,
-0.06043044105172157,
0.009941216558218002,
-0.0070005422458052635,
-0.01870969496667385,
-0.014241299591958523,
-0.0340491347014904,
0.08704382926225662,
0.09051960706710815,
0.025763053447008133,
0.025039508938789368,
-0.007233345415443182,
-0.034154314547777176,
-0.0162581205368042,
-0.02997765690088272,
-0.03782078996300697,
-0.006648896727710962,
-0.03790605813264847,
-0.012026982381939888,
0.00956149771809578,
-0.030697960406541824,
-0.009411981329321861,
-0.01042801234871149,
-0.020980030298233032,
0.03697760030627251,
0.05027078464627266,
0.01480245403945446,
0.03261193260550499,
-0.03059738501906395,
-0.03294089064002037,
0.05654723942279816,
-0.029347822070121765,
-0.011091850697994232,
-0.0912688821554184,
-0.05765770375728607,
0.06551707535982132,
0.025828780606389046,
0.013716569170355797,
-0.030840201303362846,
0.02927704155445099,
-0.012467017397284508,
-0.0127455098554492,
0.005224652588367462,
-0.029214153066277504,
-0.006218569353222847,
-0.0015755126951262355,
-0.03996766731142998,
0.0061553712002933025,
-0.03257614001631737,
-0.028484713286161423,
0.0053671118803322315,
0.07306219637393951,
-0.04930883273482323,
-0.013485146686434746,
-0.03397208824753761,
0.009088887833058834,
0.04164144769310951,
-0.012756210751831532,
-0.051056116819381714,
0.006815384607762098,
-0.0508720688521862,
-0.007545629981905222,
0.011429972015321255,
-0.003752515185624361,
0.03358150273561478,
0.05451692268252373,
0.040189918130636215,
-0.02633087895810604,
0.047797106206417084,
0.01806386187672615,
0.042888905853033066,
0.027797412127256393,
-0.0469391793012619,
-0.010013116523623466,
-0.02850818634033203,
0.030527813360095024,
-0.001956975320354104,
-0.017262382432818413,
-0.04672469198703766,
-0.07539144158363342,
-0.015165000222623348,
0.023539504036307335,
-0.0073829879984259605,
0.0037571045104414225,
0.034088362008333206,
0.003014557296410203,
-0.054355230182409286,
0.012747937813401222,
0.02080540731549263,
0.027476439252495766,
-0.03188515454530716,
0.057569801807403564,
-0.007673101499676704,
0.01051634643226862,
-0.03310169279575348,
0.014000237919390202,
-0.05197771266102791,
-0.018942132592201233,
-0.04326264560222626,
0.04109436273574829,
0.007410985883325338,
0.06480694562196732,
0.04799943417310715,
-0.018476147204637527,
-0.03805859014391899,
0.05076872184872627,
0.07039385288953781,
-0.031989436596632004,
-0.039307545870542526,
0.007136283442378044,
-0.007162533700466156,
-0.008120973594486713,
-0.04149453714489937,
-0.0030277513433247805,
0.032837603241205215,
0.03182540088891983,
0.012772148475050926,
0.003839504672214389,
0.031030945479869843,
-0.011964892037212849,
-0.02184709720313549,
-0.027587737888097763,
0.025685720145702362,
0.027294587343931198,
-0.01154324784874916,
-0.03236832469701767,
0.0499742291867733,
0.01594139263033867,
0.055086687207221985,
-0.007332807406783104,
-0.03273407742381096,
-0.03808131441473961,
0.022537369281053543,
0.029199501499533653,
-0.049045734107494354,
-0.062188874930143356,
-0.017744645476341248,
0.03706864267587662,
0.03822265565395355,
-0.006243532989174128,
-0.04936430603265762,
0.05503254756331444,
0.06219851225614548,
-0.0575467012822628,
0.04203835502266884,
-0.005505112465471029,
0.03941104933619499,
0.047218501567840576,
-0.020160241052508354,
0.0335206501185894,
-0.017438489943742752,
0.00032676811679266393,
0.014375966042280197,
0.05401655286550522,
-0.05558883026242256,
-0.010835819877684116,
-0.04553059861063957,
0.011448278091847897,
0.0325511135160923,
0.01530557032674551,
0.0372760184109211,
-0.029737336561083794,
-0.059547390788793564,
0.017891371622681618,
0.049625787883996964,
-0.032911572605371475,
0.02963847480714321,
0.0692022293806076,
0.019838327541947365,
-0.07874702662229538,
-0.04368093982338905,
-0.010985394939780235,
-0.008647722192108631,
0.050026971846818924,
-0.042479272931814194,
0.00017368386033922434,
-0.03694199398159981,
0.014236477203667164,
0.007071866188198328,
-0.021709561347961426,
-0.045078784227371216,
0.04023436829447746,
-0.00407075509428978,
-0.00982336699962616,
0.04872287064790726,
0.024685101583600044,
0.03753763809800148,
0.05812178552150726,
0.0211112629622221,
0.021522410213947296,
-0.04459652677178383,
0.04063727334141731,
-0.05457210913300514,
-0.0447990819811821,
0.031843699514865875,
-0.04006520286202431,
-0.017117341980338097,
-0.03342914953827858,
-0.026308374479413033,
-0.04861728847026825,
0.007108861580491066,
0.0413680337369442,
-0.0031061505433171988,
0.02333386056125164,
0.001050140825100243,
0.02734610252082348,
-0.005349365994334221,
-0.057620443403720856,
-0.02548200823366642,
-0.015919845551252365,
-0.06334956735372543,
-0.04490247368812561,
0.031234852969646454,
-0.025515198707580566,
-0.017175083979964256,
-0.008699716068804264,
0.030294956639409065,
0.03874073177576065,
0.005893080495297909,
-0.02789253555238247,
0.034795645624399185,
0.01757657341659069,
-0.01975613459944725,
-0.02805507928133011,
-0.009163029491901398,
0.0005435400526039302,
0.06929339468479156,
-0.028706282377243042,
0.019389132037758827,
0.004018098581582308,
-0.03802983835339546,
-0.01635736972093582,
0.024175751954317093,
-0.008082169108092785,
-0.05940863862633705,
-0.03143913671374321,
0.005696060601621866,
-0.006755822338163853,
0.054166894406080246,
-0.0597400963306427,
-0.03961701691150665,
0.04152536392211914,
0.010019236244261265,
0.020888222381472588,
-0.0006770597537979484,
-0.0012132682604715228,
0.01868804730474949,
-0.03892390429973602,
0.010400112718343735,
-0.041995953768491745,
0.032266538590192795,
-0.028812970966100693,
0.029837194830179214,
-0.014202059246599674,
0.022173428907990456,
-0.0935010015964508,
0.02752617932856083,
-0.04804781824350357,
-0.02924567647278309,
0.005600671283900738,
0.025123927742242813,
-0.008169879205524921,
0.013478242792189121,
-0.026040051132440567,
0.012103076092898846,
-0.05370573699474335,
0.04452960193157196,
-0.036700379103422165,
-0.0014853219036012888,
-0.04322487488389015,
0.025981619954109192,
-0.06844006478786469,
-0.0026814735028892756,
-0.019269049167633057,
-0.03950944542884827,
0.01972084306180477,
0.04768479987978935,
0.01136311050504446,
0.015175249427556992,
-0.030845219269394875,
-0.0010414228308945894,
-0.011896451935172081,
-0.058607958257198334,
0.016201457008719444,
-0.013826263137161732,
-0.0009194754529744387,
0.012777574360370636,
0.020702192559838295,
0.03332820162177086,
-0.039070677012205124,
-0.04739970341324806,
0.04248754680156708,
0.038274504244327545,
-0.02046961337327957,
-0.0026552369818091393,
0.00378979928791523,
-0.005718570668250322,
0.044800665229558945,
-0.03794300556182861,
-0.013870542868971825,
-0.013150175102055073,
-0.03219280019402504,
0.0348518081009388,
-0.0072160642594099045,
0.04571369290351868,
-0.014095458202064037,
-0.04655516892671585,
-0.04525606706738472,
0.06944739073514938,
0.04147830978035927,
0.021813398227095604,
-0.005983379203826189,
-0.03207455202937126,
0.058627527207136154,
-0.019339095801115036,
-0.020919546484947205,
0.015404978767037392,
0.0328034870326519,
-0.045077450573444366,
0.055046580731868744,
0.00930291973054409,
0.019147643819451332,
0.03259434178471565,
0.03400357440114021,
-0.023787787184119225,
0.03307705000042915,
-0.027616161853075027,
0.023989437147974968,
0.03751750662922859,
-0.05794547498226166,
0.0039392807520926,
-0.060615044087171555,
0.06038421019911766,
-0.0783534049987793,
0.06981148570775986,
0.07098810374736786,
-0.023019583895802498,
0.02269153669476509,
-0.04656548798084259,
-0.01914227567613125,
0.010096319951117039,
-0.04637086018919945,
0.05277274549007416,
-0.03585738688707352,
-0.048918116837739944,
0.05925293266773224,
0.0019304194720461965,
-0.055520083755254745,
0.033084686845541,
0.027006639167666435,
0.039266813546419144,
0.04016499221324921,
0.027207020670175552,
-0.05003444477915764,
0.0034572635777294636,
-0.052713386714458466,
0.042140696197748184,
-0.023327751085162163,
-0.029612455517053604,
0.026605112478137016,
-0.03481180965900421,
-0.07170598953962326,
0.016835657879710197,
0.03105189837515354,
0.0006132618873380125,
0.0314263179898262,
-0.047578517347574234,
-0.027014385908842087,
-0.0028219653759151697,
0.013237406499683857,
0.02928869239985943,
-0.02998976781964302,
-0.039173416793346405,
-0.018280260264873505,
0.0011584609746932983,
-0.0022351634688675404,
-0.01364203542470932,
0.03289147838950157,
0.017183158546686172,
-0.07620435208082199,
-0.023658309131860733,
0.026440326124429703,
0.011377095244824886,
-0.028595484793186188,
0.03361676260828972,
0.015530742704868317,
0.01949308253824711,
0.028413625434041023,
0.003639636794105172,
0.0255037359893322,
-0.04713023826479912,
-0.051039472222328186,
0.040222786366939545,
-0.011960036121308804,
0.014252936467528343,
0.002133464440703392,
0.011625750921666622,
0.03497672453522682,
0.0287662073969841,
0.024998843669891357,
-0.052646707743406296,
-0.05777181312441826,
0.04089764878153801,
-0.03669467568397522,
0.03236470744013786,
-0.014403247274458408,
-0.038938120007514954,
-0.03424376994371414,
-0.004766065627336502,
-0.03502924367785454,
0.049574047327041626,
-0.06042064353823662,
0.032025646418333054,
0.05852941796183586,
0.025698043406009674,
-0.06389950215816498,
-0.0710546001791954,
-0.01495242491364479,
-0.051832105964422226,
0.01818227581679821,
0.027080902829766273,
-0.04461413249373436,
0.033621352165937424,
-0.046162378042936325,
-0.0609581284224987,
0.050833649933338165,
-0.0011005813721567392,
-0.03224419802427292,
0.046777792274951935,
0.052829816937446594,
-0.027053678408265114,
0.004661095328629017,
0.02923564612865448,
-0.04725024476647377,
0.03263641148805618,
0.0197755079716444,
0.016832733526825905,
0.042941924184560776,
0.008515985682606697,
-0.008462260477244854,
-0.007304944097995758,
-0.05952712520956993,
-0.03945391997694969,
-0.009538873098790646,
0.002307675313204527,
0.06154680997133255
] |
Aruden/DialoGPT-medium-harrypotterall | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | null | ---
tags:
- spacy
- token-classification
language:
- en
model-index:
- name: en_Spacy_Custom_ner
results:
- task:
name: NER
type: token-classification
metrics:
- name: NER Precision
type: precision
value: 0.9911054638
- name: NER Recall
type: recall
value: 0.9961685824
- name: NER F Score
type: f_score
value: 0.9936305732
---
| Feature | Description |
| --- | --- |
| **Name** | `en_Spacy_Custom_ner` |
| **Version** | `0.0.0` |
| **spaCy** | `>=3.5.3,<3.6.0` |
| **Default Pipeline** | `tok2vec`, `ner` |
| **Components** | `tok2vec`, `ner` |
| **Vectors** | 514157 keys, 514157 unique vectors (300 dimensions) |
| **Sources** | n/a |
| **License** | n/a |
| **Author** | [n/a]() |
### Label Scheme
<details>
<summary>View label scheme (14 labels for 1 components)</summary>
| Component | Labels |
| --- | --- |
| **`ner`** | `BOOK`, `COMODITY`, `CONTAINER COUNT`, `CONTAINER SIZE`, `CONTAINER SIZE-COUNT`, `DESTINATION`, `ENQUIRY`, `HELP`, `INCOTERM`, `KYC`, `ORIGIN`, `SEARCH RATES`, `SHIP`, `SHIPMENT TYPE` |
</details>
### Accuracy
| Type | Score |
| --- | --- |
| `ENTS_F` | 99.36 |
| `ENTS_P` | 99.11 |
| `ENTS_R` | 99.62 |
| `TOK2VEC_LOSS` | 2568.71 |
| `NER_LOSS` | 72512.12 | | [
0.009792220778763294,
-0.00994603056460619,
-0.009566273540258408,
0.0437166690826416,
0.06058550998568535,
0.01689915359020233,
-0.022103196009993553,
-0.014771283604204655,
-0.04448837414383888,
0.054028287529945374,
0.03868122026324272,
0.008538459427654743,
0.01906663179397583,
0.0439913310110569,
-0.04939685016870499,
-0.04445110633969307,
-0.0019604996778070927,
-0.036352820694446564,
-0.05641767382621765,
-0.022734075784683228,
0.0019573194440454245,
0.019720658659934998,
-0.016710525378584862,
0.03457808122038841,
0.006779272109270096,
0.0066066007129848,
0.010890182107686996,
0.0332363098859787,
0.04251936078071594,
-0.07762889564037323,
-0.01253244373947382,
-0.03446188196539879,
-0.07573281973600388,
-0.030053408816456795,
-0.020480526611208916,
-0.009560280479490757,
-0.02040843293070793,
-0.01462632603943348,
0.027497954666614532,
0.06114696338772774,
-0.012924490496516228,
0.012868538498878479,
-0.025924762710928917,
-0.027755923569202423,
0.06369062513113022,
0.003271869383752346,
-0.0392913892865181,
-0.020486852154135704,
0.029517732560634613,
-0.05937735736370087,
-0.07794105261564255,
-0.06584558635950089,
-0.030467789620161057,
0.006041946820914745,
-0.056333091109991074,
-0.030991697683930397,
-0.057960569858551025,
-0.009576124139130116,
0.0532066784799099,
-0.03606546297669411,
-0.043792326003313065,
0.025270259007811546,
-0.08895519375801086,
-0.003979816101491451,
0.030988512560725212,
-0.020608752965927124,
-0.011894782073795795,
-0.045509222894907,
0.036515723913908005,
-0.0052009206265211105,
0.05528048053383827,
-0.04744654893875122,
0.0030103311873972416,
-0.07090628147125244,
0.019246906042099,
-0.021053889766335487,
0.04108739271759987,
0.019408170133829117,
-0.03792838752269745,
0.04599522799253464,
0.047848474234342575,
-0.016485029831528664,
0.03699791431427002,
-0.0168536938726902,
-0.02112708054482937,
0.052945803850889206,
-0.03578751161694527,
-0.008049407042562962,
-0.00250814575701952,
0.057109277695417404,
-0.03420663997530937,
-0.02515806257724762,
0.0014473500195890665,
-0.040887072682380676,
-0.04910685867071152,
0.027456384152173996,
0.024639610201120377,
-0.0031786058098077774,
0.013124929741024971,
0.011814363300800323,
0.02833755686879158,
0.05278714373707771,
-0.0032339852768927813,
0.07863466441631317,
0.013364820741117,
-0.02080462872982025,
-0.008542732335627079,
-0.018755678087472916,
-0.037939611822366714,
0.05265629664063454,
0.02637946978211403,
-0.010494248941540718,
-0.03810606151819229,
0.027820877730846405,
0.041339706629514694,
0.0035177727695554495,
0.06504680961370468,
-0.01882513426244259,
-0.03942294418811798,
-0.04679667949676514,
0.027405215427279472,
0.028401969000697136,
0.02435450628399849,
0.014769798144698143,
-0.006070713512599468,
-0.013568393886089325,
-0.05297446623444557,
-0.01961621828377247,
0.010036015883088112,
0.02365877851843834,
0.0012012330116704106,
0.046502865850925446,
0.006583578418940306,
-0.06768213212490082,
0.02014962211251259,
0.007756125181913376,
-0.05414345860481262,
0.04919245094060898,
0.04810040816664696,
0.10389695316553116,
-0.03185230493545532,
-0.047362327575683594,
0.02380649372935295,
0.017680944874882698,
-0.01737137697637081,
0.002229505917057395,
-0.005965713411569595,
-0.01846003532409668,
-0.035402797162532806,
0.0065927812829613686,
0.02740275301039219,
-0.06260298192501068,
0.006335563492029905,
0.04176834970712662,
0.003794246120378375,
0.045155610889196396,
-0.03965446352958679,
-0.005734227132052183,
0.002346618101000786,
-0.002768947510048747,
-0.011848753318190575,
0.04920812323689461,
-0.0062005287036299706,
0.009394422173500061,
-0.022501541301608086,
-0.04476965591311455,
-0.03174237534403801,
0.06906528025865555,
-0.010588373057544231,
-0.02161211147904396,
-0.04207426682114601,
-0.01039285957813263,
0.03798961266875267,
0.030419830232858658,
-0.0006985866348259151,
0.017150448635220528,
0.05919063463807106,
0.0516485758125782,
-0.02327871322631836,
0.05491532012820244,
0.023185864090919495,
-0.02492290548980236,
-0.0135484104976058,
0.015968065708875656,
0.013929219916462898,
-0.018698206171393394,
-0.0038951223250478506,
0.04587175324559212,
0.03333200514316559,
-0.034604184329509735,
-0.006939588114619255,
0.059880442917346954,
0.02051542140543461,
-0.005224811844527721,
-0.0006732273031957448,
-0.027849262580275536,
-0.028966691344976425,
0.0367022305727005,
-0.0018059127032756805,
0.005150630138814449,
-0.003043512813746929,
-0.044813960790634155,
0.022894904017448425,
0.011138267815113068,
0.01777333952486515,
0.011711562983691692,
0.00998395774513483,
0.07973001152276993,
-0.05623467266559601,
0.018733913078904152,
-0.03303415700793266,
-0.038070257753133774,
-0.008762101642787457,
0.0519375279545784,
0.032341353595256805,
0.034783583134412766,
0.0008102850406430662,
-0.01588580757379532,
0.024370234459638596,
0.05906004458665848,
0.01624101959168911,
0.03698810935020447,
-0.019686639308929443,
-0.010600831359624863,
0.04403015598654747,
0.05430030822753906,
-0.05448438972234726,
-0.017070045694708824,
0.022037159651517868,
0.0353759340941906,
-0.022481290623545647,
0.011631608009338379,
-0.03809816390275955,
0.013237344101071358,
-0.061711616814136505,
-0.05605342984199524,
0.041261181235313416,
0.0017013089964166284,
0.009914285503327847,
0.02482336387038231,
-0.017690259963274002,
-0.00020008490537293255,
0.03980642929673195,
0.026469256728887558,
0.0013483866350725293,
-0.04975093901157379,
0.029306501150131226,
0.03472303971648216,
0.03556676581501961,
-0.05350266396999359,
0.012391085736453533,
-0.019003231078386307,
0.02092110551893711,
0.0383395291864872,
-0.06974353641271591,
0.02275770716369152,
0.037277527153491974,
0.019818510860204697,
-0.025145528838038445,
0.04568339139223099,
0.024717848747968674,
-0.007110120262950659,
0.04671574383974075,
0.0017176924739032984,
0.059964537620544434,
-0.03279111161828041,
0.0416576974093914,
0.09233236312866211,
-0.00012207702093292028,
-0.003821838414296508,
0.02075248956680298,
0.07081515341997147,
0.009863471612334251,
-0.029786573722958565,
0.0803968757390976,
-0.045927561819553375,
0.011192165315151215,
-0.02769564464688301,
0.0015544017078354955,
-0.000213395178434439,
0.008386301808059216,
0.02566911093890667,
0.017314862459897995,
-0.026494283229112625,
0.01557071041315794,
-0.01480482704937458,
-0.01795216090977192,
0.032116323709487915,
-0.01903524249792099,
-0.006821326911449432,
0.02315606363117695,
-0.020655374974012375,
0.007046420592814684,
-0.0588403157889843,
-0.05003712326288223,
-0.03530656546354294,
-0.016583336517214775,
-0.0007500947685912251,
-0.0649571344256401,
-0.027051422744989395,
-0.07364671677350998,
-0.018032336607575417,
0.04179024323821068,
0.016478057950735092,
-0.0010329537326470017,
-0.04482661187648773,
0.023744260892271996,
-0.05748257040977478,
-0.05899348109960556,
-0.061594463884830475,
-0.025993553921580315,
-0.04195982590317726,
-0.09628848731517792,
0.04127548635005951,
0.015930915251374245,
0.032014936208724976,
0.009922360070049763,
-0.00026684810291044414,
-0.047291215509176254,
-0.024323126301169395,
0.04867260158061981,
0.03811453655362129,
-0.024632005020976067,
-0.01943151466548443,
0.02873256616294384,
-0.009979460388422012,
0.003460970940068364,
-0.006061290856450796,
-0.03789777308702469,
0.0716722309589386,
0.07852993160486221,
0.020289750769734383,
0.009848876856267452,
0.007568392902612686,
-0.03347191959619522,
-0.05809488147497177,
-0.02451412007212639,
-0.031161759048700333,
-0.00421913294121623,
-0.06604864448308945,
-0.03749693185091019,
-0.010955259203910828,
-0.03215190768241882,
-0.02590012364089489,
-0.004695331212133169,
0.011462019756436348,
0.06246379390358925,
0.03892964869737625,
0.029080254957079887,
0.031786851584911346,
-0.04725513979792595,
-0.03472629934549332,
0.060618817806243896,
-0.006274947430938482,
0.0059853848069906235,
-0.06589439511299133,
-0.02100098319351673,
0.032585982233285904,
0.0015103762270882726,
-0.0030730189755558968,
-0.024985382333397865,
0.06774690002202988,
0.014681035652756691,
-0.02528679184615612,
-0.000044417571189114824,
-0.016324102878570557,
-0.005845133680850267,
0.002216941211372614,
-0.023237159475684166,
-0.018887614831328392,
-0.03258374705910683,
-0.008836829103529453,
-0.021857939660549164,
0.021787146106362343,
-0.045643649995326996,
-0.06058630347251892,
-0.015028814785182476,
0.04582419991493225,
0.02322947420179844,
0.0330665297806263,
-0.043177444487810135,
-0.020877357572317123,
-0.06358197331428528,
-0.011666410602629185,
0.028501518070697784,
0.00019837466243188828,
0.0046913838014006615,
0.05091523751616478,
0.010510750114917755,
-0.02339102514088154,
0.04477962106466293,
0.046480171382427216,
0.04153095558285713,
0.012855553068220615,
-0.050370726734399796,
-0.0020165848545730114,
-0.009057726711034775,
0.018778055906295776,
0.006347957998514175,
-0.007492927368730307,
-0.0374826081097126,
-0.11366672813892365,
-0.008318054489791393,
0.039355117827653885,
-0.008135360665619373,
0.0009105372009798884,
0.03586773946881294,
-0.026224862784147263,
0.013306783512234688,
-0.009067677892744541,
0.019951974973082542,
0.03913217782974243,
-0.03842423856258392,
0.05382189899682999,
-0.02580036036670208,
0.042033709585666656,
-0.04028056934475899,
0.0014965200098231435,
-0.024325156584382057,
0.006120008882135153,
0.012541799806058407,
0.059868574142456055,
0.012248183600604534,
0.0364445336163044,
0.07510761171579361,
0.010335778817534447,
-0.0252740029245615,
0.04638620465993881,
0.040262579917907715,
-0.014938760548830032,
-0.06905431300401688,
0.012289858423173428,
-0.005738265812397003,
-0.04132390767335892,
0.015420634299516678,
-0.029358942061662674,
0.016078829765319824,
0.061591293662786484,
-0.013394344598054886,
-0.020357534289360046,
0.02931026555597782,
-0.026082241907715797,
-0.014180433936417103,
-0.03739979863166809,
-0.03725564852356911,
0.004408533684909344,
-0.019357165321707726,
0.03168971464037895,
0.033083487302064896,
0.016714608296751976,
0.0627094954252243,
0.04177926853299141,
-0.028147505596280098,
-0.04155002534389496,
0.03254407271742821,
0.025361310690641403,
-0.04738084226846695,
-0.054545484483242035,
-0.030439632013440132,
0.07931828498840332,
0.02736078016459942,
-0.015738356858491898,
-0.07781966775655746,
0.012627664022147655,
0.05813368409872055,
-0.030963407829403877,
0.0732712522149086,
0.0013181135291233659,
0.05024458095431328,
0.05107986181974411,
-0.016649622470140457,
0.023020751774311066,
-0.05098053812980652,
0.017223646864295006,
-0.005048274528235197,
0.033781684935092926,
-0.025139903649687767,
-0.048341698944568634,
-0.010686969384551048,
0.029711849987506866,
0.033071357756853104,
0.07495392858982086,
0.02431597001850605,
-0.04275259003043175,
-0.054174378514289856,
-0.016220785677433014,
0.040869373828172684,
-0.06450743973255157,
0.0013437401503324509,
0.027943208813667297,
0.056090012192726135,
-0.04808510094881058,
-0.05163206532597542,
-0.006036258302628994,
-0.018599042668938637,
0.016628045588731766,
-0.012377778068184853,
-0.024340732023119926,
-0.05521212890744209,
0.031227057799696922,
0.003146464703604579,
-0.008088001981377602,
-0.05140385031700134,
0.035957220941782,
-0.0364646278321743,
0.0017283703200519085,
0.049796536564826965,
0.027318086475133896,
0.04902259632945061,
0.04431866854429245,
0.0022147775162011385,
-0.003224894404411316,
-0.03438006341457367,
0.04154114052653313,
-0.04414384439587593,
-0.008924758993089199,
-0.0230554286390543,
-0.05269709229469299,
-0.014827456325292587,
-0.010473508387804031,
-0.07634184509515762,
-0.04107757657766342,
-0.010634499602019787,
0.034251920878887177,
0.021148307248950005,
-0.01324176974594593,
-0.013246853835880756,
0.019628172740340233,
-0.019404267892241478,
-0.024939559400081635,
-0.020654305815696716,
-0.027071891352534294,
-0.06193613260984421,
-0.05041903257369995,
0.016840491443872452,
-0.012344148010015488,
0.03137172386050224,
0.021616384387016296,
0.027821306139230728,
0.02181851863861084,
0.027765443548560143,
-0.020640600472688675,
0.0515601746737957,
-0.007552793249487877,
-0.036387886852025986,
-0.0006804684526287019,
0.02801704965531826,
0.007192088756710291,
0.05576160550117493,
-0.017094671726226807,
0.03271925449371338,
0.024900805205106735,
-0.03710689768195152,
-0.010846640914678574,
0.001674105180427432,
0.014467655681073666,
-0.04503598064184189,
-0.026841966435313225,
0.00418115546926856,
-0.050032101571559906,
0.011918922886252403,
-0.020980948582291603,
-0.017016012221574783,
-0.009735342115163803,
0.02303856797516346,
0.03402256593108177,
-0.028773609548807144,
-0.013572986237704754,
0.02006635069847107,
-0.01865735836327076,
0.00367199769243598,
-0.06505004316568375,
0.024942470714449883,
-0.027471154928207397,
0.021493883803486824,
-0.002447791863232851,
-0.024541400372982025,
-0.03511984646320343,
0.020359236747026443,
-0.01110811997205019,
-0.01989029534161091,
0.010870518162846565,
0.020782386884093285,
-0.04541711136698723,
0.049593452364206314,
0.008555912412703037,
0.034098826348781586,
-0.0014014028711244464,
0.04166249930858612,
-0.0769370049238205,
-0.018405208364129066,
0.0042641498148441315,
-0.010160857811570168,
-0.04909347742795944,
-0.02141614258289337,
-0.010076387785375118,
-0.040740545839071274,
0.025924788787961006,
0.07168493419885635,
-0.007556742522865534,
0.028845185413956642,
-0.04452605918049812,
0.003176238154992461,
0.02531142346560955,
-0.05842578038573265,
-0.019233664497733116,
-0.017690883949398994,
-0.016343725845217705,
-0.024571770802140236,
0.06887058913707733,
0.05157483369112015,
-0.05625579133629799,
-0.04685892537236214,
0.045980554074048996,
0.00045593283721245825,
0.012399565428495407,
0.0020708292722702026,
0.03872307762503624,
0.024148911237716675,
0.025282323360443115,
-0.04411016404628754,
-0.002754274057224393,
0.01937578245997429,
-0.00433747423812747,
0.01568646728992462,
-0.016910985112190247,
0.04066566377878189,
-0.012249582447111607,
-0.03201528638601303,
0.011047803796827793,
0.07468245923519135,
0.03457212448120117,
0.023549938574433327,
-0.010730212554335594,
-0.019460687413811684,
0.046030495315790176,
-0.007716379594057798,
-0.05779915302991867,
-0.0038820107001811266,
0.04885217174887657,
-0.0419413261115551,
0.08983466774225235,
-0.006263325456529856,
0.013428882695734501,
0.032587211579084396,
0.042982134968042374,
-0.018651915714144707,
0.06431129574775696,
-0.022173969075083733,
0.023045148700475693,
0.04444991797208786,
-0.07103985548019409,
0.013478989712893963,
-0.03711189702153206,
0.0532095767557621,
-0.07766745239496231,
0.05707978084683418,
0.04138226434588432,
0.03355124965310097,
0.018366564065217972,
-0.027635028585791588,
-0.04394792765378952,
0.028916114941239357,
-0.04940119385719299,
0.08347434550523758,
0.015186564065515995,
-0.08331593871116638,
0.08694121986627579,
0.019659914076328278,
-0.10079361498355865,
0.03357558697462082,
0.014478570781648159,
0.026711931452155113,
0.052089300006628036,
0.06309472024440765,
-0.03324262425303459,
0.013277395628392696,
-0.04874059930443764,
0.03661563619971275,
-0.010183447040617466,
-0.015860771760344505,
0.018600760027766228,
-0.027564488351345062,
-0.020700713619589806,
0.04086608812212944,
-0.02397049590945244,
-0.013736111111938953,
0.0307579655200243,
-0.04468970000743866,
-0.017214834690093994,
0.023754529654979706,
0.05375755950808525,
-0.014896185137331486,
0.008503115735948086,
-0.017239853739738464,
0.03410310298204422,
0.031451720744371414,
0.006944775581359863,
-0.03281109035015106,
-0.003932649735361338,
0.04212995991110802,
-0.08818501234054565,
-0.02885373868048191,
0.02765941247344017,
0.010649929754436016,
-0.031870804727077484,
0.02445542998611927,
0.029846154153347015,
0.05450301617383957,
-0.01099376194179058,
-0.007175000384449959,
-0.010070797987282276,
-0.05694448947906494,
0.004217519890516996,
-0.01155671663582325,
0.03345206752419472,
0.018634213134646416,
-0.007577016483992338,
0.04919354245066643,
0.031918518245220184,
0.04112258926033974,
-0.008141721598803997,
-0.02170764096081257,
-0.01194912102073431,
0.020749254152178764,
-0.05566387251019478,
0.025081118568778038,
0.006430338136851788,
-0.03751081973314285,
-0.04239500313997269,
-0.00015092326793819666,
-0.0073896003887057304,
0.05047433078289032,
-0.05513700097799301,
0.005606683902442455,
0.04701337590813637,
-0.008406988345086575,
-0.03997816890478134,
-0.0844213217496872,
-0.04186500981450081,
-0.02014731615781784,
0.023080194368958473,
0.013239513151347637,
-0.016310054808855057,
0.009499650448560715,
-0.011751995421946049,
-0.0656004250049591,
0.02136336825788021,
0.02596215158700943,
-0.0194050595164299,
0.04528683423995972,
0.07249757647514343,
-0.05383430793881416,
0.029829759150743484,
0.023411627858877182,
-0.03439108282327652,
0.04997921362519264,
-0.019246133044362068,
0.020584143698215485,
0.03717669099569321,
0.04948420077562332,
-0.001454761135391891,
-0.019661590456962585,
-0.04756578803062439,
-0.03692784905433655,
-0.01813044771552086,
-0.0014642905443906784,
0.035349853336811066
] |
ArvinZhuang/BiTAG-t5-large | [
"pytorch",
"t5",
"text2text-generation",
"transformers",
"autotrain_compatible"
] | text2text-generation | {
"architectures": [
"T5ForConditionalGeneration"
],
"model_type": "t5",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": true,
"length_penalty": 2,
"max_length": 200,
"min_length": 30,
"no_repeat_ngram_size": 3,
"num_beams": 4,
"prefix": "summarize: "
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to German: "
},
"translation_en_to_fr": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to French: "
},
"translation_en_to_ro": {
"early_stopping": true,
"max_length": 300,
"num_beams": 4,
"prefix": "translate English to Romanian: "
}
}
} | 4 | null | ---
license: creativeml-openrail-m
inference: true
language:
- en
library_name: diffusers
pipeline_tag: text-to-image
tags:
- stable-diffusion
- text-to-image
---
| [
-0.02143947035074234,
-0.017752718180418015,
-0.020721400156617165,
0.008300691843032837,
0.04246947914361954,
0.0015822063433006406,
-0.014202841557562351,
0.008438038639724255,
-0.01761752739548683,
0.04730221629142761,
0.02902165986597538,
0.004263688810169697,
0.009016508236527443,
0.044425271451473236,
-0.014676179736852646,
-0.037702251225709915,
-0.03330176696181297,
-0.028135184198617935,
-0.029832391068339348,
0.0013952519511803985,
0.03781289979815483,
0.009225699119269848,
-0.011808906681835651,
0.026013396680355072,
-0.022645223885774612,
0.019938381388783455,
-0.02324191853404045,
0.00991465337574482,
0.04882584884762764,
-0.053490348160266876,
-0.0006841135327704251,
-0.04394669458270073,
-0.028870902955532074,
-0.008978945203125477,
-0.04033735394477844,
0.0123521126806736,
0.015840329229831696,
0.028019368648529053,
-0.008206624537706375,
0.04499438405036926,
0.00044564655399881303,
0.012607859447598457,
-0.021097712218761444,
-0.03735910356044769,
0.03573701158165932,
0.0004845209768973291,
-0.023566225543618202,
-0.046758607029914856,
0.041097402572631836,
-0.05133196339011192,
-0.07857637852430344,
-0.07319480180740356,
-0.020195437595248222,
0.011538135819137096,
-0.022677065804600716,
-0.023260971531271935,
-0.04295432195067406,
0.0017150125931948423,
0.03310128301382065,
-0.03721908852458,
-0.015455811284482479,
-0.009514766745269299,
-0.0788508877158165,
0.013573745265603065,
0.01823705993592739,
-0.05664481595158577,
0.010275717824697495,
-0.041446126997470856,
0.0037513249553740025,
-0.003743839683011174,
0.060878220945596695,
-0.021314159035682678,
0.016835931688547134,
-0.05140923708677292,
-0.02057259902358055,
-0.03194229677319527,
0.054374173283576965,
0.048395443707704544,
-0.024992499500513077,
0.06907794624567032,
0.041656360030174255,
0.036518968641757965,
0.012973585166037083,
0.00011030196765204892,
-0.016941072419285774,
0.037239693105220795,
-0.012943021953105927,
0.006484667770564556,
0.007450255099684,
0.03133740276098251,
-0.03308682143688202,
-0.05228253826498985,
-0.010487078689038754,
-0.05590946972370148,
0.011864646337926388,
0.03675191476941109,
0.04252224788069725,
-0.011184520088136196,
0.013966172002255917,
0.03314844146370888,
0.039234407246112823,
0.057805243879556656,
-0.012596246786415577,
0.0485728457570076,
0.003767849877476692,
-0.02738954685628414,
-0.00005076070738141425,
-0.009364409372210503,
-0.07398266345262527,
0.028402039781212807,
0.006113703362643719,
-0.020337680354714394,
-0.023308539763092995,
0.04314453899860382,
-0.01364164985716343,
-0.01786389760673046,
0.07655692100524902,
-0.03915094956755638,
-0.009032039903104305,
-0.06337297707796097,
0.05073801055550575,
-0.00014526155428029597,
-0.00477238604798913,
0.005162231624126434,
-0.05589352175593376,
0.031300272792577744,
-0.0481787733733654,
-0.02311275526881218,
-0.008011012338101864,
0.015774982050061226,
-0.0020780053455382586,
0.0531088188290596,
0.013321361504495144,
-0.06616394221782684,
0.002847841242328286,
0.03200124576687813,
-0.04939625412225723,
0.027699768543243408,
0.015135901048779488,
0.1410219818353653,
-0.07692693173885345,
-0.05221939831972122,
0.014888851903378963,
0.03029925748705864,
-0.04229569807648659,
0.005950172431766987,
-0.001458731945604086,
-0.052582044154405594,
-0.02908647432923317,
-0.019148819148540497,
0.036451008170843124,
-0.06987903267145157,
-0.033581800758838654,
0.04138441011309624,
0.0020836039911955595,
0.02277587726712227,
-0.017546825110912323,
-0.019173022359609604,
0.006634300108999014,
0.0004258397384546697,
-0.036559611558914185,
0.04811118170619011,
0.006630449090152979,
-0.00805527064949274,
-0.023886283859610558,
-0.043446168303489685,
0.006253410130739212,
0.06673838198184967,
-0.01725563034415245,
-0.054447468370199203,
-0.04110098257660866,
0.024558719247579575,
0.023455558344721794,
0.025685351341962814,
-0.0073755350895226,
0.028863321989774704,
0.05531703680753708,
0.04300384968519211,
-0.027322830632328987,
0.07145162671804428,
0.030208149924874306,
-0.013330202549695969,
-0.028712328523397446,
-0.01138959638774395,
0.028962163254618645,
-0.02345205470919609,
-0.013687503524124622,
0.04488944262266159,
-0.006541574373841286,
-0.0371527299284935,
-0.014636946842074394,
0.04083804413676262,
-0.00008846139098750427,
-0.02870621532201767,
0.017758477479219437,
-0.020921140909194946,
-0.029655860736966133,
0.027496660128235817,
-0.02607097662985325,
-0.029259121045470238,
-0.034340642392635345,
-0.024133851751685143,
0.015891870483756065,
0.03405282273888588,
0.022796213626861572,
0.023950006812810898,
-0.02234949730336666,
0.08086880296468735,
-0.04656164348125458,
0.021502476185560226,
-0.04328019544482231,
-0.05479790270328522,
0.006675944663584232,
0.03861675038933754,
0.01669340208172798,
0.043812770396471024,
-0.010125767439603806,
-0.053765300661325455,
0.02807929925620556,
0.05188112333416939,
0.022296559065580368,
0.023072926327586174,
-0.01640804298222065,
-0.015518231317400932,
0.016449948772788048,
0.027212558314204216,
-0.047022223472595215,
-0.03488032519817352,
0.00890439748764038,
0.032057419419288635,
-0.022288000211119652,
-0.0069069452583789825,
-0.020054521039128304,
0.029866481199860573,
-0.04997609555721283,
-0.04449005424976349,
0.022980477660894394,
0.020908117294311523,
-0.006733324378728867,
0.02000582031905651,
0.012706378474831581,
-0.005517293699085712,
0.04096312075853348,
0.01611306704580784,
0.03835252299904823,
-0.061368465423583984,
0.015352659858763218,
0.03194672614336014,
0.054331425577402115,
-0.06121627241373062,
0.037602268159389496,
-0.023986520245671272,
0.017666276544332504,
0.017198855057358742,
-0.062274351716041565,
0.03465275466442108,
0.08311892300844193,
0.04673970118165016,
-0.044106584042310715,
0.05062679573893547,
0.003114435588940978,
0.033733900636434555,
0.07695122063159943,
0.006828825920820236,
0.06503130495548248,
-0.057574424892663956,
0.0763619989156723,
0.09215809404850006,
0.0241627786308527,
-0.024769870564341545,
0.04981830343604088,
0.07633014023303986,
-0.0297083742916584,
-0.010553776286542416,
0.06344962865114212,
-0.04512764513492584,
0.02188596874475479,
-0.043111514300107956,
0.004352887161076069,
-0.037620387971401215,
-0.016556721180677414,
0.0641610398888588,
0.017860047519207,
-0.034576598554849625,
0.013674149289727211,
0.007917911745607853,
0.0027316678315401077,
0.04031642898917198,
-0.0007451117853634059,
-0.0044102743268013,
-0.002369917929172516,
-0.028471918776631355,
0.020927313715219498,
-0.062470532953739166,
-0.06353846192359924,
-0.012792380526661873,
-0.02247922122478485,
-0.007899364456534386,
-0.05858219042420387,
-0.03438296914100647,
-0.04888420179486275,
-0.019157636910676956,
0.056676559150218964,
0.0246879905462265,
0.008108887821435928,
-0.021460331976413727,
0.026142543181777,
-0.025031110271811485,
-0.039908770471811295,
-0.06974257528781891,
-0.0383303165435791,
-0.012602056376636028,
-0.041789401322603226,
0.04625315964221954,
0.00263383355922997,
0.05069317668676376,
0.023306582123041153,
-0.0038476374465972185,
-0.013001356273889542,
-0.013137239031493664,
0.057326022535562515,
0.03514493629336357,
-0.040764059871435165,
-0.026917416602373123,
-0.01732676662504673,
-0.0073433807119727135,
0.011453523300588131,
-0.031810373067855835,
-0.03177317976951599,
0.0994616225361824,
0.04230904579162598,
0.024643318727612495,
-0.008370766416192055,
0.020179079845547676,
-0.04003703594207764,
-0.05014375224709511,
-0.02452995628118515,
-0.014318452216684818,
-0.04263142868876457,
-0.018921662122011185,
-0.03675934299826622,
-0.03997842222452164,
-0.04030374437570572,
-0.015136033296585083,
0.009943374432623386,
0.0030540097504854202,
0.011432934552431107,
0.058428917080163956,
0.025777598842978477,
0.03778323903679848,
-0.05151606351137161,
-0.04264979064464569,
0.0382130928337574,
0.0055979955941438675,
-0.004780353978276253,
-0.02710249274969101,
-0.03488234058022499,
0.028156548738479614,
-0.0034971125423908234,
-0.01357962004840374,
-0.012294880114495754,
0.061504118144512177,
-0.005009261891245842,
-0.000964573526289314,
0.007034124340862036,
-0.040574442595243454,
0.008261545561254025,
-0.004306252114474773,
-0.0022224378772079945,
-0.03316579759120941,
-0.02829032763838768,
0.015821054577827454,
0.017776237800717354,
0.05206967145204544,
-0.05220126360654831,
-0.058288801461458206,
-0.028336888179183006,
0.017043214291334152,
0.05823374167084694,
0.003728169947862625,
-0.058704543858766556,
0.006597207859158516,
-0.05082252621650696,
-0.00841771624982357,
0.02451625093817711,
-0.037987105548381805,
0.02327083609998226,
0.03505900502204895,
0.0016958743799477816,
-0.005162719637155533,
0.05735289305448532,
0.013753680512309074,
0.04705953225493431,
0.03827148675918579,
-0.038501493632793427,
0.016333067789673805,
-0.020900694653391838,
0.022197019308805466,
0.008341562002897263,
-0.03101739101111889,
-0.04730846360325813,
-0.09687449038028717,
0.0007324685575440526,
0.023146575316786766,
0.0018584819044917822,
0.01988118886947632,
0.07152196764945984,
-0.028089435771107674,
-0.01001609768718481,
0.009083977900445461,
0.016211537644267082,
0.05582417547702789,
-0.029350949451327324,
0.05343536287546158,
-0.02074424922466278,
0.0034185040276497602,
-0.049928177148103714,
0.026873884722590446,
-0.017745131626725197,
-0.01845577359199524,
0.0027073309756815434,
0.06448539346456528,
0.014301248826086521,
0.024736279621720314,
0.0403265543282032,
0.020915178582072258,
-0.035802725702524185,
0.03835507109761238,
0.035936690866947174,
-0.024058332666754723,
-0.061256542801856995,
-0.00015627784887328744,
0.004497043788433075,
0.002170962281525135,
-0.012253900989890099,
-0.01582285948097706,
-0.00009264768596040085,
0.039192091673612595,
-0.017491329461336136,
0.015939384698867798,
-0.0027362764813005924,
-0.01408782135695219,
-0.023448320105671883,
-0.04081646353006363,
-0.000737038382794708,
-0.005239945370703936,
-0.04040692746639252,
0.007881407625973225,
0.061968885362148285,
0.03301570191979408,
0.05724833160638809,
0.03401048108935356,
-0.024875221773982048,
-0.06713494658470154,
0.04673068970441818,
0.033901721239089966,
-0.01628490537405014,
-0.07930181175470352,
-0.01316656731069088,
0.005351795814931393,
0.03881416469812393,
-0.016405384987592697,
-0.07476893812417984,
0.04790887609124184,
0.04857552424073219,
-0.05779821425676346,
0.06557545810937881,
0.005303650628775358,
0.00955956894904375,
0.052274078130722046,
-0.02759178727865219,
0.022987691685557365,
-0.044983599334955215,
0.02632749266922474,
-0.008495116606354713,
0.022572411224246025,
-0.05059393122792244,
-0.029421420767903328,
-0.0290718711912632,
0.03559005632996559,
0.00836600549519062,
0.0319637693464756,
0.06025797128677368,
-0.06932185590267181,
-0.09019030630588531,
-0.026852041482925415,
0.04274570196866989,
-0.03192181512713432,
0.015131491236388683,
0.025913365185260773,
0.050979744642972946,
-0.04839230701327324,
-0.01256692223250866,
-0.007592764217406511,
0.009710497222840786,
0.03698347136378288,
-0.026824722066521645,
-0.036028459668159485,
-0.05556021258234978,
0.0433015450835228,
-0.013917312026023865,
-0.02710641361773014,
-0.11689391732215881,
-0.015248254872858524,
-0.007976840250194073,
-0.042887717485427856,
0.04352464899420738,
0.0125099066644907,
0.06664683669805527,
0.07002951949834824,
-0.008307968266308308,
0.051727406680583954,
-0.014952259138226509,
0.028486648574471474,
-0.03744865953922272,
-0.010751651600003242,
0.013925431296229362,
-0.03108730912208557,
-0.033979494124650955,
0.015248696319758892,
-0.05010221526026726,
-0.0436873584985733,
-0.009387783706188202,
0.019603731110692024,
0.001266711624339223,
-0.00009561586193740368,
0.008414619602262974,
-0.0008163832244463265,
-0.004728898871690035,
-0.022265750914812088,
-0.031715571880340576,
-0.02209024503827095,
-0.10325499624013901,
-0.03068770281970501,
0.04000657796859741,
-0.012371910735964775,
-0.0020017593633383512,
-0.006860904861241579,
0.01675553061068058,
0.05055195093154907,
0.046143729239702225,
-0.03366434574127197,
0.028889775276184082,
0.023087795823812485,
-0.045574288815259933,
-0.009143042378127575,
0.02340678498148918,
0.024759875610470772,
0.021931415423750877,
-0.03245360031723976,
0.018776584416627884,
-0.016620542854070663,
-0.028431808575987816,
-0.04789121821522713,
0.0181118156760931,
0.03013410046696663,
-0.0528990738093853,
-0.017420465126633644,
-0.03081342950463295,
-0.031293366104364395,
0.03147057071328163,
-0.023552821949124336,
-0.02055639959871769,
0.02094561606645584,
0.02426997199654579,
0.03056914731860161,
-0.023608727380633354,
-0.029085025191307068,
0.025248689576983452,
-0.021104764193296432,
0.019355013966560364,
-0.07890431582927704,
0.046851035207509995,
-0.00931598898023367,
0.02147544175386429,
-0.0035361123736947775,
0.006209319923073053,
-0.031224170699715614,
0.07238231599330902,
-0.0016388875665143132,
0.0015529365045949817,
-0.01550197508186102,
0.0007731470977887511,
-0.03915039449930191,
0.057541538029909134,
-0.005121238529682159,
0.010141764767467976,
-0.008652488701045513,
0.047634534537792206,
-0.06840020418167114,
0.008709656074643135,
-0.005943917203694582,
0.0032969429157674313,
-0.020878657698631287,
-0.0055967955850064754,
-0.0415177084505558,
-0.03556884452700615,
0.03138741850852966,
0.03637060150504112,
-0.007145790848881006,
0.0030269084963947535,
-0.008059869520366192,
0.008840302005410194,
0.02337002195417881,
-0.056998737156391144,
-0.025584766641259193,
-0.012239084579050541,
-0.019547130912542343,
-0.007110679056495428,
0.07349435240030289,
0.02967979572713375,
-0.03219479322433472,
-0.0657450333237648,
0.06470641493797302,
0.02619531750679016,
0.013181597925722599,
0.002352324081584811,
0.03454577922821045,
0.05093958228826523,
0.04357707127928734,
-0.0377444252371788,
0.0018983930349349976,
-0.026008542627096176,
0.01783456839621067,
0.0045056333765387535,
-0.012510037049651146,
0.015826789662241936,
0.01686098985373974,
-0.03037727251648903,
-0.032356616109609604,
0.0780329629778862,
0.02784307487308979,
0.03446643054485321,
-0.0002824173716362566,
-0.05689331144094467,
0.028004206717014313,
0.02134563960134983,
-0.030276227742433548,
0.020923003554344177,
0.03993721678853035,
-0.039473824203014374,
0.03394893556833267,
-0.005113673396408558,
0.033872563391923904,
0.013537706807255745,
0.026251867413520813,
-0.014839966781437397,
0.05097322165966034,
-0.045548491179943085,
0.03608240932226181,
0.0375678688287735,
-0.03366673365235329,
-0.0020076653454452753,
-0.02107979543507099,
0.03499172627925873,
-0.06364903599023819,
0.06539130210876465,
0.017692869529128075,
0.023156479001045227,
0.03484605252742767,
-0.05662404000759125,
-0.03975341469049454,
0.031100787222385406,
-0.04669785127043724,
0.07671385258436203,
-0.009174197912216187,
-0.049518682062625885,
0.08983954787254333,
0.03472696617245674,
-0.09131629765033722,
0.055985044687986374,
0.02808450721204281,
0.0025035266298800707,
0.014269077219069004,
0.04178425297141075,
-0.055641692131757736,
0.028007561340928078,
-0.035858698189258575,
0.008711558766663074,
-0.06287769973278046,
-0.03547019138932228,
0.003253563540056348,
-0.03870701044797897,
-0.017670826986432076,
0.008628107607364655,
-0.030111193656921387,
0.0036489954218268394,
0.016890699043869972,
-0.026138901710510254,
-0.029155846685171127,
0.008217952214181423,
0.007201719097793102,
0.023271020501852036,
-0.015470984391868114,
-0.01636452041566372,
-0.006643364671617746,
0.03337280824780464,
-0.004807043354958296,
-0.04346790909767151,
0.017155926674604416,
-0.009401088580489159,
-0.047387346625328064,
-0.03209548443555832,
0.0549619160592556,
0.046803683042526245,
-0.033829692751169205,
0.018759775906801224,
0.0030536456033587456,
0.04004848003387451,
0.027668964117765427,
-0.01832672394812107,
0.005049687344580889,
-0.06470309942960739,
0.0022839184384793043,
0.0216730535030365,
0.0029292895924299955,
0.002173019340261817,
-0.02050739899277687,
0.009721674025058746,
0.07193329930305481,
0.0447949580848217,
0.02405267022550106,
-0.009752828627824783,
0.0033659436739981174,
0.010990769602358341,
-0.05371081829071045,
0.00018819047545548528,
-0.005521934013813734,
-0.04946588724851608,
-0.018914122134447098,
0.014648819342255592,
-0.035688407719135284,
0.043785564601421356,
-0.044601935893297195,
0.034402478486299515,
0.035272419452667236,
-0.0032615268137305975,
-0.0661197230219841,
-0.08540366590023041,
-0.03095093183219433,
-0.03430740535259247,
0.038632337003946304,
0.01881769858300686,
-0.0495523102581501,
0.003061276860535145,
-0.03444693982601166,
-0.03130876645445824,
0.05147955194115639,
-0.009533092379570007,
-0.030788138508796692,
0.055356044322252274,
0.06673140823841095,
-0.021762868389487267,
0.0381644107401371,
0.02715263143181801,
-0.05030853673815727,
0.03181077539920807,
0.019087066873908043,
0.014631052501499653,
0.022994382306933403,
0.014811557717621326,
0.012140381149947643,
-0.004482568241655827,
-0.05279972404241562,
-0.03283311426639557,
-0.04521847888827324,
0.007449802476912737,
0.06415130198001862
] |
AshiNLP/Bert_model | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
tags:
- Pixelcopter-PLE-v0
- reinforce
- reinforcement-learning
- custom-implementation
- deep-rl-class
model-index:
- name: Reinforce-PixelCopter-PLE-v0_2
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: Pixelcopter-PLE-v0
type: Pixelcopter-PLE-v0
metrics:
- type: mean_reward
value: 21.50 +/- 15.52
name: mean_reward
verified: false
---
# **Reinforce** Agent playing **Pixelcopter-PLE-v0**
This is a trained model of a **Reinforce** agent playing **Pixelcopter-PLE-v0** .
To learn to use this model and train yours check Unit 4 of the Deep Reinforcement Learning Course: https://huggingface.co/deep-rl-course/unit4/introduction
| [
-0.04001769423484802,
0.014190418645739555,
0.01468629576265812,
0.01744663156569004,
0.049193158745765686,
-0.013551771640777588,
-0.019621051847934723,
-0.023274077102541924,
-0.017404399812221527,
0.06780176609754562,
0.03520311787724495,
-0.006781278643757105,
0.010475638322532177,
-0.006166959181427956,
-0.037445392459630966,
-0.06201019138097763,
-0.0001602944394107908,
0.012312566861510277,
-0.021032623946666718,
0.017561212182044983,
0.006093028467148542,
-0.007348952349275351,
-0.012379556894302368,
0.03223945572972298,
0.006651210132986307,
0.016113480553030968,
0.004611314740031958,
0.02148684859275818,
0.04663068428635597,
-0.06310513615608215,
-0.014674942009150982,
-0.043080732226371765,
-0.02275465801358223,
-0.019639937207102776,
-0.0060312459245324135,
-0.010478212498128414,
0.015113802626729012,
0.016634738072752953,
0.0270931888371706,
0.0589279867708683,
-0.021717755123972893,
0.021556904539465904,
0.006908971816301346,
-0.03218131884932518,
0.02707911841571331,
0.006149790715426207,
-0.013911057263612747,
-0.010678181424736977,
0.014124921523034573,
-0.0142678739503026,
-0.07818157225847244,
-0.07596179842948914,
-0.006356189958751202,
0.01684620790183544,
0.0034137738402932882,
-0.041500408202409744,
-0.04570288956165314,
-0.0020830475259572268,
0.05984991416335106,
-0.06267493218183517,
-0.044123031198978424,
0.030778421089053154,
-0.026489652693271637,
0.01048999559134245,
0.028973858803510666,
-0.03322238102555275,
0.0193859301507473,
-0.04628601297736168,
0.021232984960079193,
-0.03164176270365715,
0.0609176903963089,
-0.034317295998334885,
0.012761320918798447,
-0.10736755281686783,
0.006132934242486954,
-0.00767761655151844,
0.00658195186406374,
0.013670563697814941,
-0.02455194666981697,
0.07619524747133255,
0.033602628856897354,
0.030000802129507065,
0.04511753469705582,
-0.024217842146754265,
0.013088849373161793,
0.0023659735452383757,
-0.03751230984926224,
0.019800662994384766,
0.03811797872185707,
0.04522405192255974,
-0.015256155282258987,
-0.0007476680330000818,
-0.028481286019086838,
-0.03208452835679054,
-0.019999796524643898,
0.048433080315589905,
0.03844423592090607,
0.0142807113006711,
0.07127448171377182,
0.017309650778770447,
0.0428362637758255,
0.03811625763773918,
-0.020402168855071068,
0.0822763442993164,
0.019092582166194916,
-0.03304305300116539,
-0.028525549918413162,
0.003656407119706273,
-0.05111274868249893,
0.06002558395266533,
0.010053630918264389,
-0.03290597349405289,
-0.02743949182331562,
0.02784816175699234,
-0.01106666587293148,
0.006613300181925297,
0.060486797243356705,
-0.029514845460653305,
-0.014389144256711006,
-0.0701105147600174,
0.08343447744846344,
0.014718729071319103,
0.018694056198000908,
-0.024027016013860703,
-0.037592627108097076,
0.00416537094861269,
-0.05018329247832298,
-0.023862602189183235,
-0.0172381903976202,
0.01133281085640192,
0.002749875420704484,
0.04510142654180527,
-0.009549148380756378,
-0.04648350924253464,
0.0059596882201731205,
0.023823462426662445,
-0.07122164964675903,
0.01715976931154728,
-0.006193698849529028,
0.06513481587171555,
-0.08494804054498672,
-0.054934483021497726,
0.008480456657707691,
0.025398798286914825,
-0.03047076053917408,
-0.01877318136394024,
0.00842731911689043,
-0.05694444105029106,
-0.056075382977724075,
-0.02220379374921322,
0.05317062884569168,
-0.06399592757225037,
-0.006170052103698254,
0.07411922514438629,
0.00590308615937829,
0.03782929107546806,
-0.02107970230281353,
0.018922971561551094,
-0.008094296790659428,
-0.03172016516327858,
-0.03404100239276886,
0.0728485956788063,
-0.04148444905877113,
-0.026267224922776222,
-0.05504981055855751,
-0.017273707315325737,
0.018307004123926163,
0.039624523371458054,
-0.025052404031157494,
-0.03720851615071297,
-0.02682344615459442,
0.0288874302059412,
0.04019879922270775,
0.006855687592178583,
0.010708674788475037,
0.0385613888502121,
0.04195017367601395,
0.03613147512078285,
-0.030551645904779434,
0.03247459605336189,
0.020568547770380974,
-0.03664027154445648,
-0.030997898429632187,
0.011016513220965862,
0.0002019204112002626,
-0.006031818222254515,
0.008184083737432957,
0.02275526151061058,
-0.0040518189780414104,
-0.06512001901865005,
-0.008837773464620113,
0.05727063864469528,
-0.027459850534796715,
0.009060363285243511,
-0.0021932560484856367,
-0.015982767567038536,
-0.017040453851222992,
0.04635033756494522,
-0.019343659281730652,
-0.009261319413781166,
-0.033850111067295074,
-0.04344702139496803,
0.03718729317188263,
0.029450057074427605,
0.006727519910782576,
0.0026254469994455576,
-0.012003655545413494,
0.09755498170852661,
-0.014462164603173733,
0.02104298584163189,
-0.05829089879989624,
-0.060065265744924545,
-0.0021944085601717234,
0.029750782996416092,
0.044042207300662994,
0.03323269262909889,
-0.017491191625595093,
-0.05815497785806656,
0.03641028702259064,
0.029207395389676094,
0.04691586270928383,
0.006461654789745808,
-0.033886343240737915,
-0.015569907613098621,
0.029925597831606865,
0.013340429402887821,
-0.016071902588009834,
-0.025008363649249077,
0.03616315871477127,
0.054906703531742096,
-0.011979380622506142,
-0.0005068032769486308,
-0.03822271153330803,
0.03390711545944214,
-0.07418336719274521,
-0.03797575458884239,
0.018270881846547127,
0.03133891895413399,
0.014189017936587334,
0.04829178377985954,
-0.016783734783530235,
0.01626155711710453,
0.011938123032450676,
0.02463747002184391,
0.0158570297062397,
-0.050262123346328735,
0.00923557672649622,
0.025692680850625038,
0.06427215039730072,
-0.030841022729873657,
0.03732656314969063,
0.01474969182163477,
-0.021643932908773422,
0.03280424699187279,
-0.04433852806687355,
0.03259778767824173,
0.08379121869802475,
0.002412342233583331,
-0.0005935510853305459,
0.041332464665174484,
-0.0027590524405241013,
0.027747532352805138,
0.014678401872515678,
-0.02848803624510765,
0.06661771982908249,
-0.015520375221967697,
0.03090907260775566,
0.05169352889060974,
0.029990606009960175,
0.004947661887854338,
0.015564155764877796,
0.07682982087135315,
0.019726624712347984,
-0.012845148332417011,
0.06946203112602234,
-0.022599542513489723,
0.045758698135614395,
-0.031783536076545715,
-0.01963212713599205,
-0.011294753290712833,
-0.006488698069006205,
0.06227625906467438,
0.017072223126888275,
-0.03852762281894684,
0.01612114906311035,
-0.005135102663189173,
-0.0023391805589199066,
0.008332994766533375,
-0.01985551230609417,
0.0020582277793437243,
0.010600246489048004,
-0.02257229946553707,
0.02428775280714035,
-0.08293313533067703,
-0.06273150444030762,
-0.024190958589315414,
-0.015249394811689854,
-0.02796046994626522,
-0.05748485028743744,
-0.03376420587301254,
-0.05573955550789833,
-0.00885931309312582,
0.04473495110869408,
0.013917542062699795,
-0.00788209680467844,
-0.020878827199339867,
0.020000895485281944,
-0.03858258202672005,
-0.0375979021191597,
-0.04659673944115639,
-0.03637039288878441,
-0.06861802190542221,
-0.06316200643777847,
0.03281069174408913,
0.01707942970097065,
0.030795952305197716,
0.005033386871218681,
0.002347511239349842,
-0.03891679644584656,
-0.01767035387456417,
0.02260473184287548,
0.07525240629911423,
-0.010793281719088554,
-0.04579249769449234,
0.014596191234886646,
-0.0168916005641222,
0.013380048796534538,
0.014822687022387981,
-0.03555605560541153,
0.0620235837996006,
0.06743846833705902,
0.04164447262883186,
-0.007623479701578617,
-0.0073518953286111355,
-0.042641203850507736,
-0.03346753865480423,
-0.03997819870710373,
-0.0542440190911293,
-0.009228656068444252,
-0.045510463416576385,
-0.04485045000910759,
-0.02887425757944584,
-0.023152993991971016,
-0.018421852961182594,
-0.01474079955369234,
0.011793980374932289,
0.007216173689812422,
0.07174990326166153,
0.012024907395243645,
0.02205791510641575,
-0.048033781349658966,
-0.05182270333170891,
0.0271967314183712,
0.0055274940095841885,
-0.008197951130568981,
-0.07979799062013626,
-0.03815675154328346,
0.02314320020377636,
0.0005211369716562331,
0.006504965480417013,
-0.010114723816514015,
0.07258152216672897,
0.013366191647946835,
-0.018438342958688736,
0.0379117988049984,
-0.040037885308265686,
0.004269258119165897,
-0.017134463414549828,
-0.0019624424166977406,
-0.03380870819091797,
-0.03682335838675499,
-0.0023385141976177692,
-0.0005846623098477721,
0.044871825724840164,
-0.036079153418540955,
-0.04741773381829262,
0.005721472669392824,
0.031965699046850204,
0.047748010605573654,
0.0042591216042637825,
-0.05421735718846321,
-0.006086977198719978,
-0.08213423937559128,
0.0023650615476071835,
0.03425857797265053,
-0.011476241983473301,
0.02936047688126564,
0.050146158784627914,
0.013565189205110073,
0.007057221606373787,
0.041308414191007614,
0.03164294734597206,
0.037822894752025604,
0.01677246205508709,
-0.02940399944782257,
0.012931125238537788,
0.0006812314968556166,
0.0674130916595459,
0.005041562952101231,
-0.008247281424701214,
-0.04867669939994812,
-0.08401466906070709,
-0.0328720286488533,
0.018543241545557976,
-0.02772270329296589,
0.0039059226401150227,
0.05171830952167511,
-0.023503923788666725,
-0.008758729323744774,
0.011926254257559776,
-0.0022545091342180967,
0.04709482192993164,
-0.042378395795822144,
0.06426180899143219,
-0.007258381694555283,
0.034989263862371445,
-0.06551876664161682,
0.021226733922958374,
-0.005568239372223616,
-0.02109464630484581,
-0.002828802214935422,
0.05285836383700371,
0.043714866042137146,
0.07367660850286484,
0.05098264291882515,
0.033142026513814926,
-0.03838435932993889,
0.005821526516228914,
0.04241440072655678,
-0.026399683207273483,
-0.060328174382448196,
-0.009158750995993614,
0.00727124372497201,
0.003279933473095298,
-0.0013050514971837401,
-0.019008958712220192,
0.039077699184417725,
0.04542089253664017,
-0.003960189409554005,
0.004927252884954214,
0.003415763610973954,
-0.020474376156926155,
-0.04504842683672905,
-0.06130841001868248,
0.007357744500041008,
0.006554996129125357,
0.024544181302189827,
0.02605101466178894,
0.04841642081737518,
0.03290461376309395,
0.03617817535996437,
0.058639220893383026,
-0.0030934279784560204,
-0.06711641699075699,
0.04705079272389412,
0.01587756909430027,
-0.01045507937669754,
-0.04366910830140114,
-0.021225791424512863,
0.032206010073423386,
0.06150912865996361,
-0.013501780107617378,
-0.0630287155508995,
0.021214140579104424,
0.07510311901569366,
-0.06705861538648605,
0.09376542270183563,
0.002529800171032548,
0.017953088507056236,
0.06618974357843399,
0.0073209539987146854,
0.03852276876568794,
-0.019440369680523872,
-0.03598138317465782,
-0.0026160632260143757,
0.026279129087924957,
0.024250898510217667,
-0.026949642226099968,
-0.03370499238371849,
-0.002657757606357336,
0.04842028021812439,
0.058111805468797684,
0.022167658433318138,
-0.05888810381293297,
-0.06185774505138397,
-0.034579645842313766,
0.04187114164233208,
-0.03917950764298439,
0.01228866446763277,
0.04899747297167778,
0.04375196620821953,
-0.0695253238081932,
-0.04108613356947899,
-0.041179727762937546,
-0.02559654600918293,
0.019929971545934677,
-0.008206933736801147,
-0.046183645725250244,
-0.03988541290163994,
0.04005582258105278,
-0.006652905140072107,
-0.013948547653853893,
-0.10812198370695114,
0.021424617618322372,
-0.009908998385071754,
-0.0009136646403931081,
0.03303549811244011,
0.03582308068871498,
0.04778100922703743,
0.05402214825153351,
0.024752991273999214,
0.02251911722123623,
-0.018009038642048836,
0.04310222715139389,
-0.05232953280210495,
-0.04511071369051933,
0.0038759757298976183,
-0.037001755088567734,
0.007880320772528648,
-0.02702191099524498,
-0.007777289487421513,
-0.0195488091558218,
-0.04109972342848778,
0.03187360242009163,
0.004354272037744522,
0.008001608774065971,
-0.020118404179811478,
0.019915349781513214,
-0.022561807185411453,
-0.03905563801527023,
-0.02609587088227272,
-0.02221515029668808,
-0.03819075971841812,
-0.05340604484081268,
0.03234253078699112,
0.007437337655574083,
0.039930012077093124,
-0.008184189908206463,
0.04473433643579483,
0.03388599306344986,
-0.0015591579722240567,
-0.01785227656364441,
0.06444928050041199,
0.03008962608873844,
-0.020275408402085304,
-0.015892231836915016,
0.01266868319362402,
0.00766497477889061,
0.05616621673107147,
-0.03435720130801201,
0.021714547649025917,
0.02175532653927803,
0.011267649941146374,
-0.00542095210403204,
0.018534114584326744,
-0.0007575617055408657,
-0.039410848170518875,
-0.017111076042056084,
-0.02546241506934166,
-0.05232515186071396,
0.033732492476701736,
-0.028646280989050865,
-0.0262303464114666,
0.014490810222923756,
-0.005072733387351036,
0.042033594101667404,
-0.004854047205299139,
-0.0471121184527874,
0.022300492972135544,
-0.046520110219717026,
0.07628173381090164,
-0.04048897698521614,
0.017698509618639946,
-0.021193956956267357,
0.009062673896551132,
-0.014087052084505558,
-0.0026532034389674664,
-0.05405835062265396,
0.05561521649360657,
-0.005839379504323006,
-0.017462296411395073,
-0.04294731467962265,
0.02265719324350357,
-0.004663574509322643,
0.04332166537642479,
-0.011334126815199852,
0.0366213358938694,
-0.016872160136699677,
0.06236976757645607,
-0.03737015277147293,
0.011958232149481773,
-0.03346266970038414,
0.05716599524021149,
-0.005972673185169697,
-0.006790962535887957,
-0.034821946173906326,
-0.036656640470027924,
0.022506767883896828,
0.02169843763113022,
0.015131140127778053,
0.028033871203660965,
-0.021938765421509743,
0.018901081755757332,
-0.0046346415765583515,
-0.014170993119478226,
-0.04529445990920067,
-0.0013286812463775277,
0.023132113739848137,
0.05357366055250168,
0.02525079995393753,
0.03369798883795738,
-0.07430427521467209,
-0.04748144745826721,
0.058204084634780884,
0.031511545181274414,
0.030208000913262367,
-0.016259295865893364,
0.03438039869070053,
0.07173842936754227,
0.02458999492228031,
-0.051451049745082855,
0.02029978670179844,
-0.0040327031165361404,
0.00817829743027687,
0.017918597906827927,
-0.019207531586289406,
0.038427889347076416,
0.019297927618026733,
-0.03270506486296654,
-0.02796664647758007,
0.07820887863636017,
0.048731207847595215,
-0.00603497913107276,
-0.013809353113174438,
-0.036969590932130814,
0.022259458899497986,
-0.008874845691025257,
-0.04396209493279457,
0.011479306034743786,
0.006502977106720209,
-0.026340218260884285,
0.07195255905389786,
-0.03851235657930374,
0.010899516753852367,
0.03718503937125206,
0.03662807121872902,
-0.009210108779370785,
0.041653215885162354,
-0.013053442351520061,
0.03302314132452011,
0.03254971653223038,
-0.06380157172679901,
-0.00595096917822957,
-0.03629416599869728,
0.06661821901798248,
-0.06482812017202377,
0.07003562152385712,
0.040700625628232956,
-0.007313786540180445,
0.010260202921926975,
-0.026397712528705597,
-0.06854093819856644,
-0.00904959999024868,
-0.05023333430290222,
0.04113800451159477,
0.026358818635344505,
-0.04577260836958885,
0.051300033926963806,
0.031878866255283356,
-0.06570970267057419,
0.017442885786294937,
0.010775126516819,
0.020707475021481514,
-0.007297116797417402,
0.008629078976809978,
-0.034799832850694656,
0.014222349971532822,
-0.04433078318834305,
0.07350467145442963,
-0.06601990014314651,
-0.04020718112587929,
0.05067981779575348,
-0.042004190385341644,
-0.003057599300518632,
0.04366762563586235,
-0.01669968105852604,
-0.012584056705236435,
0.023490745574235916,
-0.05481858551502228,
-0.06236131861805916,
0.007362899370491505,
0.008015893399715424,
0.02603747323155403,
0.020033355802297592,
-0.0385478138923645,
0.017061561346054077,
0.03240744769573212,
-0.037618935108184814,
-0.015374907292425632,
-0.022485142573714256,
0.016519328579306602,
-0.05973215401172638,
-0.037001993507146835,
0.05892101675271988,
0.00964491255581379,
-0.02226601541042328,
0.02487172558903694,
-0.013492712751030922,
0.005218761041760445,
0.0027087745256721973,
0.03141741454601288,
0.008001646026968956,
-0.07988161593675613,
-0.015285852365195751,
-0.006034558173269033,
0.020840821787714958,
0.027743183076381683,
-0.02608071081340313,
0.027088675647974014,
0.048819784075021744,
0.02453809231519699,
0.013875778764486313,
-0.03412110358476639,
-0.009954032488167286,
0.03657461330294609,
-0.059608738869428635,
0.021029409021139145,
0.008700541220605373,
-0.0472777895629406,
-0.03636917844414711,
-0.031090518459677696,
-0.014481723308563232,
0.018108457326889038,
-0.035556912422180176,
0.022212712094187737,
0.05004328489303589,
0.00913954246789217,
-0.0502798855304718,
-0.11004838347434998,
-0.0065239123068749905,
-0.03675641492009163,
0.035149719566106796,
0.04072056710720062,
-0.034542061388492584,
0.002583208028227091,
0.012143370695412159,
-0.024246208369731903,
0.03688625618815422,
0.01130541693419218,
-0.03419985994696617,
0.04415956884622574,
0.040335316210985184,
-0.02833624742925167,
0.020567448809742928,
0.031134173274040222,
-0.03325510397553444,
0.026948044076561928,
0.03260231390595436,
0.010355393402278423,
0.03384486958384514,
-0.007759829051792622,
-0.027334772050380707,
-0.03052615001797676,
-0.04270453006029129,
-0.013680235482752323,
-0.027992961928248405,
0.047881439328193665,
0.05944476276636124
] |
Atampy26/GPT-Glacier | [
"pytorch",
"gpt_neo",
"text-generation",
"transformers"
] | text-generation | {
"architectures": [
"GPTNeoForCausalLM"
],
"model_type": "gpt_neo",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 5 | null | ---
language: en
tags:
- multivae
license: apache-2.0
---
### Downloading this model from the Hub
This model was trained with multivae. It can be downloaded or reloaded using the method `load_from_hf_hub`
```python
>>> from multivae.models import AutoModel
>>> model = AutoModel.load_from_hf_hub(hf_hub_path="your_hf_username/repo_name")
```
| [
-0.03653835132718086,
-0.0589064285159111,
-0.005368987563997507,
0.005391913000494242,
0.05030456930398941,
0.01870766468346119,
-0.006683170795440674,
-0.011249218136072159,
-0.02457122877240181,
0.02907027117908001,
0.0364757664501667,
0.00390697130933404,
0.03047722764313221,
0.04623886197805405,
-0.03794432058930397,
-0.020379548892378807,
-0.016867248341441154,
0.01913566328585148,
-0.06022094935178757,
0.003557350253686309,
0.03541235625743866,
0.017231319099664688,
-0.01924034021794796,
0.056218892335891724,
-0.009203637950122356,
-0.0014166191685944796,
0.005358221475034952,
0.02857666276395321,
0.03042895533144474,
-0.03500586375594139,
-0.006961334962397814,
-0.018316447734832764,
-0.04089336842298508,
-0.027679461985826492,
-0.012879469431936741,
0.0004695974930655211,
0.013268986716866493,
0.017253544181585312,
0.04153020307421684,
0.03985690698027611,
-0.033293452113866806,
0.006735892966389656,
-0.03065025433897972,
-0.02076013572514057,
0.051138363778591156,
0.017789455130696297,
-0.05357955023646355,
-0.07007883489131927,
0.019428210332989693,
-0.03591998293995857,
-0.052648235112428665,
-0.08905493468046188,
-0.023169465363025665,
0.03132591024041176,
-0.01311787310987711,
-0.03147052973508835,
-0.06035957112908363,
0.0005433755577541888,
0.05781544744968414,
-0.05618497356772423,
-0.004224841948598623,
0.022874267771840096,
-0.07422199100255966,
0.004319923929870129,
0.06732691824436188,
-0.04297355189919472,
0.009938218630850315,
-0.010648590512573719,
0.025675149634480476,
-0.026315076276659966,
0.056430451571941376,
-0.03673400357365608,
0.014852190390229225,
-0.061370670795440674,
-0.010391832329332829,
-0.0005625757621601224,
0.038416389375925064,
0.04170273616909981,
-0.03764668107032776,
0.05764945596456528,
0.00322168692946434,
-0.005975981708616018,
0.02824198268353939,
-0.016486050561070442,
0.0031241162214428186,
0.018756357952952385,
-0.027907593175768852,
0.014062057249248028,
-0.011407959274947643,
0.04382830485701561,
-0.05304591730237007,
-0.04236830025911331,
0.023244712501764297,
-0.02388385869562626,
-0.029878610745072365,
0.04557359963655472,
0.034064292907714844,
-0.027813654392957687,
0.026241932064294815,
0.0402655191719532,
0.02101537212729454,
0.02551089972257614,
-0.004422211088240147,
0.0654582604765892,
-0.01650647446513176,
0.0011813045712187886,
-0.04754916578531265,
-0.04233439266681671,
-0.02593913860619068,
0.031235165894031525,
0.015317457728087902,
-0.04126176983118057,
0.0009994927095249295,
0.06201457977294922,
0.0063222250901162624,
-0.008705283515155315,
0.07001321762800217,
-0.03317420929670334,
-0.019966110587120056,
-0.061003874987363815,
0.05232994630932808,
0.02523181214928627,
-0.02481016516685486,
0.023239443078637123,
-0.03770006075501442,
0.0008221686002798378,
-0.02440531924366951,
-0.042343128472566605,
0.009290887042880058,
0.019469620659947395,
-0.00979266595095396,
0.029885392636060715,
0.01523866131901741,
-0.08386615663766861,
0.023876044899225235,
0.0401790626347065,
-0.05475885421037674,
0.025554655119776726,
0.015381718054413795,
0.09178122878074646,
-0.03722762688994408,
-0.02624625526368618,
0.02287149801850319,
0.0038300289306789637,
-0.01896735467016697,
0.020021220669150352,
-0.007547722198069096,
-0.015626562759280205,
-0.03373004496097565,
-0.02159873954951763,
0.03777804225683212,
-0.02688191644847393,
-0.03127949684858322,
0.06196681782603264,
-0.027126803994178772,
0.052806172519922256,
-0.014125889167189598,
0.026248304173350334,
0.0004607862501870841,
-0.0056815617717802525,
0.008356462232768536,
0.04333847761154175,
-0.01113801822066307,
0.0022598665673285723,
-0.01629800722002983,
-0.04515685886144638,
-0.010635726153850555,
0.10414169728755951,
-0.008871796540915966,
-0.03164014592766762,
-0.03948146849870682,
0.020742086693644524,
0.008994382806122303,
0.02797471173107624,
-0.00715639116242528,
0.02146308124065399,
0.050528883934020996,
0.039864350110292435,
-0.01858575828373432,
0.053466010838747025,
0.01971730962395668,
-0.011312817223370075,
-0.013586297631263733,
0.024678101763129234,
0.0039931959472596645,
-0.02253223955631256,
-0.007955110631883144,
0.06399843841791153,
-0.018308041617274284,
-0.037877604365348816,
-0.004587984178215265,
0.04949965327978134,
0.010265983641147614,
-0.01702883094549179,
0.007616266142576933,
-0.012751972302794456,
-0.022916046902537346,
0.034706246107816696,
-0.031529828906059265,
-0.037947800010442734,
-0.02574331872165203,
-0.002938555320724845,
0.002273542806506157,
0.00022843146871309727,
0.03125346824526787,
0.032577887177467346,
0.005259580444544554,
0.08569318056106567,
-0.009891337715089321,
0.007467861287295818,
-0.044047728180885315,
-0.06567508727312088,
0.0017082549165934324,
0.03744647279381752,
0.027750128880143166,
0.04771023243665695,
-0.0012689479626715183,
-0.06591365486383438,
0.05289948359131813,
0.0638592317700386,
0.05741448327898979,
0.009537696838378906,
-0.061723481863737106,
-0.010344740003347397,
0.0017675760900601745,
0.05783488601446152,
-0.0676586776971817,
-0.029895054176449776,
0.02839510515332222,
0.07000762224197388,
-0.0477648600935936,
0.017441093921661377,
-0.01591043546795845,
0.03875073045492172,
-0.030673163011670113,
-0.06163795292377472,
0.024117514491081238,
0.04688875749707222,
0.01557838823646307,
0.01781550422310829,
0.005601782817393541,
-0.007133231498301029,
0.011860694736242294,
0.04811428487300873,
0.006991838105022907,
-0.05325780808925629,
-0.0010358091676607728,
0.04554852470755577,
0.07897786051034927,
-0.04238736256957054,
0.06762015074491501,
-0.006745492108166218,
0.017879273742437363,
0.022831957787275314,
-0.07176157087087631,
0.03214283287525177,
0.06936555355787277,
0.00851456355303526,
-0.03179458901286125,
0.035948142409324646,
0.007337749470025301,
0.035547755658626556,
0.03566986322402954,
0.026407184079289436,
0.06382487714290619,
0.019715839996933937,
0.027780979871749878,
0.057460758835077286,
0.01768632046878338,
0.012403137050569057,
0.033303841948509216,
0.0814175009727478,
0.006320151034742594,
0.00927774142473936,
0.04905739799141884,
-0.03845897316932678,
0.01477555837482214,
-0.03579850122332573,
-0.019456615671515465,
-0.007950391620397568,
0.014951669611036777,
0.05383428931236267,
-0.015130506828427315,
-0.0000699775482644327,
0.02240668423473835,
-0.003327568992972374,
-0.019619202241301537,
0.02571139857172966,
-0.02133522555232048,
-0.0002596390841063112,
0.005150557961314917,
-0.00167705281637609,
0.02129850722849369,
-0.07278750091791153,
-0.0222091693431139,
-0.018296632915735245,
-0.055469997227191925,
-0.018862349912524223,
-0.03941299021244049,
-0.01736075058579445,
-0.06693108379840851,
-0.0339493602514267,
0.036194704473018646,
0.007574363145977259,
-0.009996656328439713,
-0.03893806412816048,
0.009445910342037678,
-0.017599545419216156,
-0.038339462131261826,
-0.047982107847929,
-0.07200756669044495,
-0.03321781009435654,
-0.06784951686859131,
0.040320366621017456,
0.008416040800511837,
0.010477881878614426,
-0.009763135574758053,
0.006483654025942087,
-0.009264299646019936,
-0.023035909980535507,
0.04156135767698288,
0.05951297655701637,
-0.03179117664694786,
-0.05032818764448166,
0.017294397577643394,
0.0009445754694752395,
-0.01307474821805954,
-0.010944237932562828,
-0.0434337817132473,
0.061762385070323944,
0.03719564527273178,
0.013990147039294243,
-0.0009296219795942307,
0.011805793270468712,
-0.05474938824772835,
-0.03612641245126724,
-0.01594512164592743,
-0.05625859647989273,
-0.017202097922563553,
-0.023007966578006744,
-0.05097094178199768,
-0.006029908545315266,
-0.060225293040275574,
-0.0330386646091938,
-0.02017311006784439,
-0.018388673663139343,
0.01655513606965542,
0.06911256164312363,
0.034980855882167816,
0.039885956794023514,
-0.03476468846201897,
-0.030564401298761368,
0.05419059842824936,
0.02678488753736019,
-0.014265786856412888,
-0.06258124858140945,
-0.04423857852816582,
0.030142221599817276,
0.007431927602738142,
-0.0028874347917735577,
-0.02575753629207611,
0.06155521422624588,
0.012970433570444584,
0.0152598200365901,
0.017043650150299072,
-0.0312403105199337,
-0.017318101599812508,
-0.01936963014304638,
0.011372590437531471,
-0.017395740374922752,
-0.05934428423643112,
0.00547734135761857,
0.005321012809872627,
0.04847993329167366,
-0.06779906898736954,
-0.04321813955903053,
-0.02664348855614662,
0.01960359886288643,
0.01865725964307785,
-0.008989344350993633,
-0.040652841329574585,
-0.010854486376047134,
-0.07156755030155182,
-0.018482692539691925,
0.034451477229595184,
-0.02213849313557148,
0.017007149755954742,
0.0784391313791275,
0.03059997595846653,
-0.00704371789470315,
0.07584229856729507,
0.03677073121070862,
0.050171494483947754,
0.03214385360479355,
-0.054493248462677,
0.012537938542664051,
-0.03172309324145317,
0.03760753944516182,
-0.0010339806322008371,
-0.006213419605046511,
-0.052086327224969864,
-0.06945781409740448,
-0.028190329670906067,
0.032078202813863754,
-0.007588554173707962,
-0.012797923758625984,
0.07419191300868988,
-0.03016509674489498,
-0.029872683808207512,
-0.029929881915450096,
0.00508941151201725,
0.03831838443875313,
-0.05511895939707756,
0.0778065174818039,
0.015368056483566761,
0.03998766839504242,
-0.035368870943784714,
0.008705508895218372,
-0.027681201696395874,
-0.034389033913612366,
0.023716270923614502,
0.04368262737989426,
0.020487602800130844,
0.07223216444253922,
0.0412609688937664,
-0.011896011419594288,
-0.020987125113606453,
0.07332876324653625,
0.04070275276899338,
-0.00084888213314116,
-0.0331268310546875,
0.024056782945990562,
-0.014556762762367725,
-0.03178019821643829,
-0.02759299799799919,
-0.024090660735964775,
0.04913433641195297,
0.04447862505912781,
0.0015229274285957217,
0.03690577670931816,
0.00037670950405299664,
-0.0037687509320676327,
-0.02073991857469082,
-0.027390409260988235,
-0.008921224623918533,
0.0132444454357028,
0.008542349562048912,
-0.001143895206041634,
0.052674826234579086,
0.0017333179712295532,
0.04572582244873047,
0.04831893369555473,
-0.033332325518131256,
-0.05508149787783623,
0.00018735101912170649,
0.016268517822027206,
-0.029173340648412704,
-0.057619206607341766,
-0.015689203515648842,
0.05635377764701843,
0.03118319995701313,
-0.025134123861789703,
-0.0759405717253685,
0.011015956290066242,
0.06206187233328819,
-0.04164844751358032,
0.05204584077000618,
-0.012455662712454796,
0.031056135892868042,
0.06679674237966537,
-0.03188219666481018,
0.01468038558959961,
-0.035865746438503265,
0.008008217439055443,
-0.010002235881984234,
0.031239453703165054,
-0.01651153899729252,
-0.054837387055158615,
-0.018532898277044296,
0.021179702132940292,
0.049981482326984406,
0.029545292258262634,
0.026840638369321823,
-0.04692783206701279,
-0.06494230031967163,
-0.01127168070524931,
0.036284614354372025,
-0.026850536465644836,
0.00256329239346087,
0.03420489653944969,
0.017835408449172974,
-0.05337918922305107,
-0.023192614316940308,
-0.0292477086186409,
-0.01697058603167534,
0.025162935256958008,
-0.012227875180542469,
-0.04750435799360275,
-0.0450243316590786,
0.02426774986088276,
0.013895806856453419,
-0.02674209326505661,
-0.09684325754642487,
-0.002129973378032446,
0.0006977980956435204,
-0.013505271635949612,
0.06590434163808823,
0.0022066175006330013,
0.050470057874917984,
0.0651717260479927,
-0.016715550795197487,
0.014414706267416477,
-0.03768252208828926,
0.05724985525012016,
-0.029064053669571877,
-0.04064387455582619,
-0.015490545891225338,
-0.04138048738241196,
-0.04646379500627518,
-0.019151324406266212,
-0.038720518350601196,
-0.022841133177280426,
-0.020001763477921486,
0.006155236158519983,
0.00047212716890498996,
0.005495082121342421,
0.006653661839663982,
0.01134965568780899,
-0.03663972392678261,
-0.011128812097012997,
-0.061596017330884933,
0.000915598648134619,
-0.055635448545217514,
-0.033482976257801056,
0.05334125831723213,
0.01955190859735012,
0.014710613526403904,
0.01036012452095747,
0.01727980561554432,
0.0344591848552227,
0.01705937087535858,
-0.021502044051885605,
0.015048789791762829,
0.010929486714303493,
-0.05990331247448921,
-0.016013605520129204,
0.010871176607906818,
0.021603981032967567,
0.032593097537755966,
-0.019438982009887695,
0.02213236317038536,
0.01013191044330597,
-0.008355917409062386,
0.0003303708217572421,
0.026949316263198853,
-0.0035116630606353283,
-0.03532508760690689,
-0.025714943185448647,
0.007779297884553671,
-0.05091191083192825,
0.031202208250761032,
-0.033075202256441116,
-0.008108828216791153,
0.009064842946827412,
0.009753496386110783,
0.04764978960156441,
-0.005467759910970926,
-0.03557697683572769,
0.04434780776500702,
-0.023004859685897827,
-0.017728688195347786,
-0.0706191435456276,
0.00539025291800499,
-0.030301032587885857,
0.030586401000618935,
-0.012656879611313343,
-0.0219406858086586,
-0.04371989145874977,
0.05924983695149422,
-0.029537109658122063,
-0.02484324388206005,
-0.024910511448979378,
0.021409712731838226,
-0.03784727677702904,
0.06277491897344589,
-0.0011286260560154915,
-0.006248863413929939,
-0.022471634671092033,
0.0630207285284996,
-0.05889875814318657,
-0.017696239054203033,
-0.04096285253763199,
-0.020944567397236824,
-0.009959875606000423,
-0.014568155631422997,
-0.046436261385679245,
-0.016878027468919754,
0.016576219350099564,
0.035287123173475266,
0.032026566565036774,
0.000588736031204462,
-0.02583296038210392,
-0.007536584045737982,
0.03040492907166481,
-0.068753182888031,
-0.036406029015779495,
-0.010080023668706417,
0.017734099179506302,
0.009793422184884548,
0.06755339354276657,
0.051092732697725296,
-0.05605773255228996,
-0.055320896208286285,
0.07995570451021194,
0.02032618038356304,
0.018147442489862442,
0.002044129651039839,
0.031354401260614395,
0.024805355817079544,
0.024092627689242363,
-0.03571571782231331,
-0.02488197758793831,
-0.023432862013578415,
-0.024376749992370605,
0.025958117097616196,
-0.016568772494792938,
0.022367695346474648,
0.022098414599895477,
-0.04242313280701637,
-0.01893918216228485,
0.055162690579891205,
0.038023367524147034,
0.04904843866825104,
-0.04269510880112648,
-0.0378771647810936,
0.02934284321963787,
0.004156280774623156,
-0.03855809196829796,
0.01436593383550644,
0.018413908779621124,
-0.04330476000905037,
0.06634138524532318,
-0.014324516989290714,
0.02834511175751686,
0.052519965916872025,
0.05344625934958458,
-0.040914203971624374,
0.04283503070473671,
-0.03738430142402649,
0.003686098614707589,
0.08616779744625092,
-0.07128587365150452,
-0.014768078923225403,
-0.03466568514704704,
0.06007346510887146,
-0.0729433223605156,
0.06740841269493103,
0.023366525769233704,
0.01868862472474575,
0.031534068286418915,
-0.06245650723576546,
-0.022734442725777626,
-0.011579527519643307,
-0.057002704590559006,
0.10827931761741638,
0.016981249675154686,
-0.0632329210639,
0.07182544469833374,
0.012747563421726227,
-0.08543266355991364,
0.023531705141067505,
0.014975626952946186,
0.003253230592235923,
0.028079234063625336,
0.033339399844408035,
-0.03481694683432579,
0.014923774637281895,
-0.030595330521464348,
0.039692338556051254,
-0.0513954795897007,
0.01366232056170702,
0.04060288891196251,
-0.03227020800113678,
-0.008016284555196762,
0.04239697381854057,
-0.012026558630168438,
0.005741189233958721,
0.0013844980858266354,
-0.04056929051876068,
-0.062307290732860565,
0.0020008462015539408,
0.025496279820799828,
-0.004101249855011702,
0.012021617032587528,
-0.019987130537629128,
0.007738293148577213,
0.02151343785226345,
-0.010122152045369148,
-0.016517380252480507,
-0.015290522016584873,
0.03204130381345749,
-0.07103744149208069,
-0.04747762531042099,
0.008366077207028866,
-0.004246720112860203,
-0.03522021323442459,
0.013832082971930504,
0.0026200604625046253,
0.019243020564317703,
0.007822987623512745,
0.0037739244289696217,
0.005129584111273289,
-0.06437056511640549,
-0.014522751793265343,
0.011046298779547215,
-0.003293295856565237,
0.035204265266656876,
-0.02721576765179634,
0.040247976779937744,
0.02255127765238285,
0.00174096436239779,
0.016272924840450287,
-0.024860508739948273,
-0.012515773996710777,
0.008795349858701229,
-0.05519641190767288,
-0.002066368702799082,
-0.022644126787781715,
-0.031630128622055054,
-0.035480618476867676,
0.010400013998150826,
-0.014320412650704384,
0.05618041381239891,
-0.045323509722948074,
0.014688673429191113,
0.0010307467309758067,
-0.01029975526034832,
-0.05325010418891907,
-0.11370205134153366,
-0.03998284786939621,
-0.03198140859603882,
0.025985579937696457,
0.0006696816417388618,
-0.024047495797276497,
0.03685036674141884,
-0.019789615646004677,
-0.06844426691532135,
0.03613574057817459,
0.019504504278302193,
-0.010046949610114098,
0.04757368937134743,
0.03573896363377571,
-0.05206426605582237,
0.015363717451691628,
0.04449347034096718,
-0.02272219955921173,
0.05151967331767082,
-0.0030764639377593994,
-0.0015816300874575973,
0.006071071606129408,
-0.0007945179240778089,
-0.043229710310697556,
-0.01063796877861023,
-0.054350875318050385,
-0.04731578379869461,
-0.007025117054581642,
-0.01608392223715782,
0.054811254143714905
] |
Augustvember/wokka | [
"gpt2",
"text-generation",
"transformers"
] | text-generation | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
datasets:
- pokemon-classification
metrics:
- accuracy
model-index:
- name: my_awesome_pokemon_model
results:
- task:
name: Image Classification
type: image-classification
dataset:
name: pokemon-classification
type: pokemon-classification
config: full
split: validation
args: full
metrics:
- name: Accuracy
type: accuracy
value: 0.07553956834532374
---
<!-- 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. -->
# my_awesome_pokemon_model
This model is a fine-tuned version of [google/vit-base-patch16-224](https://huggingface.co/google/vit-base-patch16-224) on the pokemon-classification dataset.
It achieves the following results on the evaluation set:
- Loss: 7.3838
- Accuracy: 0.0755
## 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: 16
- eval_batch_size: 16
- seed: 42
- gradient_accumulation_steps: 4
- total_train_batch_size: 64
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- lr_scheduler_warmup_ratio: 0.1
- num_epochs: 30
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy |
|:-------------:|:-----:|:----:|:---------------:|:--------:|
| 4.926 | 1.0 | 76 | 5.4705 | 0.0007 |
| 3.7521 | 1.99 | 152 | 5.9651 | 0.0129 |
| 1.9692 | 2.99 | 228 | 5.8631 | 0.0144 |
| 0.7605 | 4.0 | 305 | 5.9688 | 0.0482 |
| 0.4163 | 5.0 | 381 | 6.1329 | 0.0655 |
| 0.3085 | 5.99 | 457 | 6.2311 | 0.0806 |
| 0.2155 | 6.99 | 533 | 6.4040 | 0.0683 |
| 0.2188 | 8.0 | 610 | 6.4869 | 0.0748 |
| 0.2241 | 9.0 | 686 | 6.6527 | 0.0763 |
| 0.1505 | 9.99 | 762 | 6.7076 | 0.0755 |
| 0.1429 | 10.99 | 838 | 6.7627 | 0.0719 |
| 0.1378 | 12.0 | 915 | 6.8740 | 0.0712 |
| 0.1335 | 13.0 | 991 | 6.9456 | 0.0741 |
| 0.1335 | 13.99 | 1067 | 6.8821 | 0.0748 |
| 0.1131 | 14.99 | 1143 | 6.9655 | 0.0763 |
| 0.1041 | 16.0 | 1220 | 7.0660 | 0.0763 |
| 0.0844 | 17.0 | 1296 | 7.1479 | 0.0770 |
| 0.086 | 17.99 | 1372 | 7.1182 | 0.0748 |
| 0.1028 | 18.99 | 1448 | 7.1395 | 0.0734 |
| 0.0456 | 20.0 | 1525 | 7.2099 | 0.0748 |
| 0.0617 | 21.0 | 1601 | 7.2512 | 0.0734 |
| 0.0711 | 21.99 | 1677 | 7.3157 | 0.0813 |
| 0.0623 | 22.99 | 1753 | 7.2590 | 0.0791 |
| 0.0419 | 24.0 | 1830 | 7.3413 | 0.0712 |
| 0.0924 | 25.0 | 1906 | 7.3051 | 0.0784 |
| 0.0471 | 25.99 | 1982 | 7.3136 | 0.0763 |
| 0.0654 | 26.99 | 2058 | 7.3667 | 0.0734 |
| 0.0836 | 28.0 | 2135 | 7.4039 | 0.0770 |
| 0.06 | 29.0 | 2211 | 7.3998 | 0.0799 |
| 0.0694 | 29.9 | 2280 | 7.3838 | 0.0755 |
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.029288221150636673,
-0.010753792710602283,
-0.0028867535293102264,
0.017936568707227707,
0.03802177309989929,
-0.0007502555381506681,
-0.004310291260480881,
-0.024866998195648193,
-0.016135601326823235,
0.054619353264570236,
0.025679782032966614,
-0.007594158407300711,
0.0036365212872624397,
0.02257881686091423,
-0.03513011708855629,
-0.03804488107562065,
-0.009530467912554741,
-0.014594982378184795,
-0.02235702984035015,
0.03068620152771473,
-0.00016144181427080184,
-0.011109624058008194,
-0.019870540127158165,
0.00043357309186831117,
0.006227131467312574,
-0.0002360723738092929,
-0.009791320189833641,
-0.005234097596257925,
0.02915811538696289,
-0.07287461310625076,
0.009244688786566257,
-0.057442158460617065,
-0.057716332376003265,
-0.009455437771975994,
-0.0076408907771110535,
-0.015547000803053379,
-0.00650925375521183,
0.023534998297691345,
0.006699757184833288,
0.07501772046089172,
0.0024988362565636635,
0.022783981636166573,
-0.014128066599369049,
-0.017092719674110413,
0.037564467638731,
0.016004566103219986,
-0.03323667123913765,
-0.02252325601875782,
0.04290841147303581,
-0.016755281016230583,
-0.06826432794332504,
-0.02088805101811886,
-0.00915684923529625,
0.02439008466899395,
-0.025018902495503426,
-0.014762471430003643,
-0.05234283208847046,
-0.03151924908161163,
0.04897892847657204,
-0.04687357321381569,
-0.017804572358727455,
0.020107485353946686,
-0.07135261595249176,
0.024601085111498833,
0.01914711855351925,
-0.033697135746479034,
0.012272845953702927,
-0.028773419559001923,
0.02956186607480049,
-0.032815027981996536,
0.0709763839840889,
-0.03204187750816345,
0.02541773021221161,
-0.08510344475507736,
-0.02634431980550289,
-0.01516982726752758,
0.029660066589713097,
0.04769885912537575,
-0.0422842875123024,
0.04541851580142975,
0.0283485297113657,
0.020390184596180916,
0.037275444716215134,
-0.027049768716096878,
-0.00953461229801178,
0.0298771932721138,
-0.05720100924372673,
0.020123209804296494,
0.018421895802021027,
0.04542418196797371,
-0.031019888818264008,
-0.035896044224500656,
-0.03849664703011513,
-0.02653740718960762,
0.0020464409608393908,
0.03566601872444153,
0.038640763610601425,
0.0002131004584953189,
0.04835081472992897,
0.01938779652118683,
0.03278785198926926,
0.0007813279516994953,
-0.031129365786910057,
0.054420728236436844,
-0.03092063032090664,
-0.010797139257192612,
-0.03722015395760536,
-0.00958335679024458,
-0.010078742168843746,
0.03112790361046791,
0.017151016741991043,
-0.007985323667526245,
-0.03468998521566391,
0.014523838646709919,
0.0039003652054816484,
-0.003559074131771922,
0.07926424592733383,
-0.033043716102838516,
-0.03188422694802284,
-0.040464527904987335,
0.03198108822107315,
0.033298950642347336,
-0.0054394956678152084,
-0.003687240183353424,
-0.0655466839671135,
-0.017141178250312805,
-0.01537451520562172,
-0.028612706810235977,
-0.01356331817805767,
0.014951396733522415,
-0.006983008701354265,
0.037562329322099686,
0.023641815409064293,
-0.05427299439907074,
-0.020669667050242424,
0.01970573700964451,
-0.03160469979047775,
0.036487046629190445,
0.005017505493015051,
0.09697669744491577,
-0.07113660871982574,
-0.05083952099084854,
0.011737029068171978,
0.02562885731458664,
-0.015315279364585876,
0.04048328101634979,
-0.010724745690822601,
-0.07575295120477676,
-0.018539218232035637,
-0.018399477005004883,
0.06633580476045609,
-0.04766338691115379,
-0.015935158357024193,
0.04720596596598625,
0.019204426556825638,
0.03409332036972046,
-0.04345756769180298,
-0.00978606753051281,
0.02457546442747116,
-0.02455197647213936,
-0.015250679105520248,
0.029396601021289825,
-0.028458043932914734,
0.009900777600705624,
-0.04883258789777756,
-0.034429147839546204,
-0.004950441885739565,
0.09475643187761307,
-0.009716403670608997,
-0.01878688856959343,
-0.009798228740692139,
0.03532402589917183,
0.03824307397007942,
0.029786601662635803,
-0.05567892640829086,
0.04564008116722107,
0.044772569090127945,
0.044059135019779205,
-0.0695112943649292,
0.03035447746515274,
0.04139522835612297,
-0.021934187039732933,
-0.03230684623122215,
0.018743479624390602,
0.01283050887286663,
-0.047316037118434906,
0.027578333392739296,
0.02338773012161255,
0.006530778482556343,
-0.0470610074698925,
-0.03324589505791664,
0.07761426270008087,
0.006697493139654398,
-0.0037968342658132315,
0.0025623561814427376,
-0.007991904392838478,
-0.013258393853902817,
0.046037763357162476,
-0.012769888155162334,
-0.004793472588062286,
-0.03798560053110123,
-0.037982597947120667,
0.014801683835685253,
0.01692701131105423,
0.015519860200583935,
0.04301949590444565,
-0.020035533234477043,
0.10213908553123474,
-0.03626769408583641,
0.028385184705257416,
-0.027860883623361588,
-0.03599060699343681,
-0.009905623272061348,
0.04250745847821236,
0.059196557849645615,
0.042789701372385025,
0.0360860601067543,
-0.04402662441134453,
0.026925651356577873,
0.059349700808525085,
0.05666721984744072,
-0.008981379680335522,
-0.04269751161336899,
-0.007301446050405502,
0.025077927857637405,
0.04229094460606575,
-0.04052583500742912,
-0.0140644870698452,
0.04747430980205536,
0.03445202112197876,
0.010610975325107574,
0.009902572259306908,
-0.021656109020113945,
0.023891611024737358,
-0.055780503898859024,
-0.05826080963015556,
0.04935954883694649,
0.031806282699108124,
-0.007480167783796787,
0.019249094650149345,
-0.005893995054066181,
0.006995594594627619,
0.015163230709731579,
0.031198710203170776,
-0.009173562750220299,
-0.07389023154973984,
0.009336971677839756,
0.0020640972070395947,
0.05065818876028061,
-0.05380626767873764,
0.05370740592479706,
-0.02734336629509926,
-0.01601690985262394,
0.03892534598708153,
-0.0711810290813446,
0.017057502642273903,
0.061237841844558716,
0.014304772019386292,
-0.05329291895031929,
0.02279173955321312,
0.013624317944049835,
0.03331389278173447,
0.07078108191490173,
-0.017088638618588448,
0.06541947275400162,
0.002465860452502966,
0.043160952627658844,
0.06145816296339035,
0.03600519150495529,
-0.006665493361651897,
0.029006628319621086,
0.07025749981403351,
-0.004082552623003721,
-0.005546612665057182,
0.03706495091319084,
-0.030989116057753563,
0.026864001527428627,
-0.035986438393592834,
0.01904349960386753,
-0.0005224180640652776,
0.006534725893288851,
0.005700292531400919,
0.017069175839424133,
-0.041676465421915054,
-0.004343316424638033,
0.0003865951730404049,
-0.012043943628668785,
0.01898839697241783,
-0.016573507338762283,
-0.019439077004790306,
-0.0075845192186534405,
0.009363752789795399,
-0.0031482763588428497,
-0.0659763514995575,
-0.04548032954335213,
-0.024453360587358475,
-0.03687772527337074,
-0.03716437518596649,
-0.11829020082950592,
-0.00436358479782939,
-0.07714344561100006,
-0.009606380015611649,
0.03176097944378853,
0.012487794272601604,
-0.017901459708809853,
-0.059823986142873764,
0.017523951828479767,
-0.04345853254199028,
-0.0398111566901207,
-0.05089174211025238,
-0.05484233796596527,
-0.02943894825875759,
-0.07131414115428925,
0.01395945344120264,
0.028725216165184975,
0.023800909519195557,
0.021526223048567772,
0.005844556260854006,
0.00037270731991156936,
-0.013941316865384579,
0.04220787063241005,
0.05816113203763962,
-0.01543392799794674,
-0.04688854515552521,
0.03288079425692558,
-0.026509257033467293,
0.019354725256562233,
-0.003059116890653968,
-0.017327930778265,
0.07497309893369675,
0.06727908551692963,
0.005666372366249561,
-0.04398390278220177,
-0.0198395736515522,
-0.047193776816129684,
-0.047126851975917816,
-0.01593422144651413,
-0.03251732885837555,
-0.022455759346485138,
-0.042859792709350586,
-0.030209418386220932,
-0.019475439563393593,
-0.053534213453531265,
-0.007826072163879871,
0.003859400749206543,
-0.008276506327092648,
0.02390315569937229,
0.015365645289421082,
0.02868890017271042,
0.01993369869887829,
-0.027462169528007507,
-0.05464767664670944,
0.01491316594183445,
0.035978008061647415,
-0.019512522965669632,
-0.07851614058017731,
-0.0391719713807106,
0.024805676192045212,
0.02944069169461727,
-0.0036893158685415983,
0.005996384657919407,
0.07617335766553879,
0.000723056320566684,
-0.003548083361238241,
0.017561502754688263,
-0.03679455816745758,
-0.009339199401438236,
-0.022503424435853958,
0.008733002468943596,
-0.0023956901859492064,
-0.02938227355480194,
-0.005871790461242199,
0.0014523215359076858,
0.050122782588005066,
-0.06842275708913803,
-0.044200003147125244,
-0.01367398165166378,
0.05039446800947189,
0.03146737441420555,
-0.00292294193059206,
-0.05238693207502365,
-0.006396006792783737,
-0.07166992127895355,
-0.0025820450391620398,
0.03823242336511612,
0.006918003782629967,
0.00015766650903970003,
0.056915730237960815,
0.02337641641497612,
-0.03211524710059166,
0.015199943445622921,
0.03874056041240692,
0.04384342581033707,
0.01274664793163538,
-0.049160152673721313,
-0.001458452665247023,
-0.008252217434346676,
0.06646014750003815,
0.003269793465733528,
-0.010078511200845242,
-0.011671620421111584,
-0.08801886439323425,
-0.004313086625188589,
-0.0007642598357051611,
-0.00563351484015584,
-0.018410149961709976,
0.06203979626297951,
0.006173639092594385,
-0.024517782032489777,
0.011217718943953514,
0.009320965968072414,
0.0444883294403553,
-0.05121434107422829,
0.05434635281562805,
-0.01702125556766987,
0.012336883693933487,
-0.03797091543674469,
-0.0014166185865178704,
-0.008857643231749535,
-0.017013253644108772,
0.004363272804766893,
0.06374752521514893,
0.013643679209053516,
0.060830481350421906,
0.06057245284318924,
0.02853325940668583,
-0.04898018389940262,
0.02886943891644478,
0.07527679204940796,
-0.04693379998207092,
-0.04283706843852997,
0.007521087769418955,
-0.010507438331842422,
-0.008207817561924458,
-0.015442228876054287,
-0.007432274054735899,
0.028246993198990822,
0.026864750310778618,
-0.006831549108028412,
0.011182382702827454,
0.0036456005182117224,
-0.010623668320477009,
-0.025548292323946953,
-0.07196715474128723,
0.00031184626277536154,
0.027417581528425217,
-0.005674254614859819,
-0.015677552670240402,
0.0471891425549984,
0.022994479164481163,
0.09088988602161407,
0.023009438067674637,
-0.03384438157081604,
-0.031241945922374725,
0.00021442426077555865,
0.005794720258563757,
-0.024868054315447807,
-0.07383688539266586,
-0.021419215947389603,
0.04194124788045883,
0.009743163362145424,
-0.01709684543311596,
-0.03337453678250313,
0.009627243503928185,
0.057159312069416046,
-0.06077222153544426,
0.04087625443935394,
0.015312327072024345,
0.0395171120762825,
0.0628960132598877,
-0.02058330550789833,
0.0486140251159668,
-0.012296919710934162,
-0.0307004377245903,
0.018287524580955505,
0.0310972910374403,
-0.008365277200937271,
-0.03941021114587784,
-0.03502897545695305,
0.04342518374323845,
0.043725304305553436,
0.03600918501615524,
0.0513407438993454,
-0.022367030382156372,
-0.020686941221356392,
-0.01424412988126278,
0.03907644376158714,
-0.03282187506556511,
0.03140248358249664,
0.016359131783246994,
0.04558895155787468,
-0.04734054207801819,
-0.04926183447241783,
-0.043332066386938095,
-0.020145585760474205,
0.024165917187929153,
0.004562166519463062,
-0.02948087267577648,
-0.020866241306066513,
0.009963015094399452,
-0.008054561913013458,
-0.006677436642348766,
-0.05939033627510071,
0.05417867749929428,
0.010847510769963264,
-0.009943444281816483,
0.05207660421729088,
0.02780408412218094,
0.03076145052909851,
0.067128486931324,
0.02044432982802391,
0.019636502489447594,
-0.03172009065747261,
0.06200672686100006,
-0.04878544062376022,
0.0036647850647568703,
-0.008875819854438305,
-0.04586540535092354,
0.001560785574838519,
-0.010857711546123028,
-0.032036613672971725,
-0.025922873988747597,
-0.03663070127367973,
-0.0018603999633342028,
-0.02599412389099598,
-0.04818276688456535,
0.0030620070174336433,
0.03394705802202225,
-0.026307381689548492,
-0.029421569779515266,
-0.05547994375228882,
-0.015242357738316059,
-0.055479977279901505,
-0.02205725945532322,
0.03333025425672531,
-0.014556415379047394,
0.025078563019633293,
0.029690200462937355,
0.029622426256537437,
0.04032483324408531,
0.007000548765063286,
-0.04319455102086067,
0.021086035296320915,
0.005701396614313126,
-0.010175527073442936,
-0.023402132093906403,
0.016114452853798866,
0.02680828608572483,
0.010482744313776493,
-0.011640212498605251,
0.020185887813568115,
0.03291631117463112,
0.015845362097024918,
-0.01556842029094696,
0.030030936002731323,
0.008513559587299824,
-0.04954858869314194,
-0.01117991004139185,
0.0037869145162403584,
-0.04751047119498253,
0.018622897565364838,
-0.04051398113369942,
-0.01926189474761486,
0.004191748332232237,
-0.020736178383231163,
0.052274372428655624,
-0.036849845200777054,
0.012314459308981895,
0.0101070711389184,
-0.021911149844527245,
0.030143875628709793,
-0.07696201652288437,
0.058910295367240906,
-0.021397272124886513,
0.0020427999552339315,
-0.03823773190379143,
0.00342834135517478,
-0.054270025342702866,
0.028363516554236412,
-0.0338105782866478,
-0.03535141795873642,
-0.01322212815284729,
0.03847073018550873,
-0.010655419901013374,
0.014691905118525028,
-0.013002486899495125,
0.02457532286643982,
-0.036963362246751785,
0.05926097184419632,
-0.029080312699079514,
0.021645562723279,
-0.03906670957803726,
0.013194842264056206,
-0.015634948387742043,
0.004997706972062588,
-0.026179522275924683,
-0.021494168788194656,
0.03274901583790779,
0.05674830451607704,
0.05787764489650726,
0.05163060501217842,
-0.02155550941824913,
-0.0160407442599535,
0.02148844115436077,
-0.04450840502977371,
-0.0455607995390892,
0.016412021592259407,
-0.0019395314157009125,
-0.0044680568389594555,
0.07050721347332001,
0.05283476412296295,
-0.03259755298495293,
-0.06803997606039047,
0.04767754301428795,
0.027996836230158806,
0.008471248671412468,
-0.00920487754046917,
0.023568060249090195,
0.03220689296722412,
0.04974202811717987,
-0.0440019816160202,
-0.01274811290204525,
-0.02648615837097168,
-0.035821568220853806,
0.04661492258310318,
-0.013820265419781208,
0.02527717873454094,
0.036953601986169815,
-0.032139360904693604,
-0.038582608103752136,
0.04621458426117897,
0.055573608726263046,
0.01807493530213833,
-0.0060797203332185745,
-0.03995904326438904,
0.057260606437921524,
-0.003921746276319027,
-0.06380557268857956,
0.01171830203384161,
-0.009645272977650166,
0.016457574442029,
0.06238826364278793,
0.008867955766618252,
0.017635414376854897,
0.058485470712184906,
0.054911475628614426,
-0.0002030494506470859,
0.07034120708703995,
-0.0403776690363884,
-0.009990912862122059,
0.06210479512810707,
-0.08137860894203186,
-0.018107827752828598,
-0.038502782583236694,
0.05040686950087547,
-0.09362520277500153,
0.05336670204997063,
0.04374882951378822,
0.008294806815683842,
0.002555041341111064,
-0.054028913378715515,
-0.04408691078424454,
0.033881790935993195,
-0.04385578632354736,
0.07458297163248062,
0.012399228289723396,
-0.0540643110871315,
0.06110486760735512,
0.032333411276340485,
-0.08500981330871582,
0.02340811677277088,
0.0454162061214447,
0.06502652168273926,
0.026768507435917854,
0.05269215628504753,
-0.05604149028658867,
0.017642594873905182,
-0.026660598814487457,
0.04893187806010246,
-0.04691144824028015,
-0.041729994118213654,
0.04938197508454323,
-0.03738084062933922,
-0.01273888349533081,
0.06120222061872482,
0.0009907386265695095,
-0.012181802652776241,
0.04305727034807205,
-0.038253508508205414,
-0.045315686613321304,
0.010900471359491348,
0.001990695483982563,
-0.02910531684756279,
0.02711629867553711,
-0.030364884063601494,
0.021814322099089622,
-0.009383349679410458,
-0.006301427260041237,
-0.022069178521633148,
-0.0011470812605693936,
0.025973791256546974,
-0.04034307971596718,
-0.04902367666363716,
0.011973315849900246,
-0.009721187874674797,
-0.017343571409583092,
0.04124245420098305,
0.021715719252824783,
0.011743087321519852,
0.027350151911377907,
-0.0023178216069936752,
0.02620067447423935,
-0.06895442306995392,
-0.012164625339210033,
0.044461287558078766,
-0.018588867038488388,
0.04020801931619644,
0.015147964470088482,
0.029843278229236603,
0.056135062128305435,
0.015008939430117607,
-0.009025922045111656,
-0.015139609575271606,
-0.02670031599700451,
0.026008864864706993,
-0.0427979938685894,
0.041431717574596405,
0.0023599588312208652,
-0.04107555001974106,
-0.031063219532370567,
-0.004311441443860531,
-0.02843119576573372,
0.03563370555639267,
-0.046847276389598846,
-0.020365936681628227,
0.011925922706723213,
0.00004866064773523249,
-0.045685265213251114,
-0.11497244238853455,
-0.006137891206890345,
-0.04926489666104317,
-0.008173394948244095,
0.07681550085544586,
-0.05087430775165558,
0.041527148336172104,
-0.04854056239128113,
-0.040358323603868484,
0.0021762647666037083,
0.014183641411364079,
-0.025810739025473595,
0.020644186064600945,
0.055030688643455505,
-0.048569969832897186,
0.012177363969385624,
0.004853997845202684,
-0.08191461861133575,
0.016403961926698685,
0.013728783465921879,
0.002890863688662648,
0.011463329195976257,
-0.0019079659832641482,
-0.033647481352090836,
-0.021074239164590836,
-0.052591342478990555,
-0.04052811861038208,
-0.030037345364689827,
0.018554972484707832,
0.04599775746464729
] |
Aybars/ModelOnTquad | [
"pytorch",
"bert",
"question-answering",
"transformers",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"BertForQuestionAnswering"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
license: openrail
---
details on https://followfoxai.substack.com/ | [
-0.03829827904701233,
-0.011083965189754963,
-0.016585076227784157,
0.0049886866472661495,
0.04886558651924133,
0.029328009113669395,
-0.008760844357311726,
0.016092339530587196,
-0.048623889684677124,
0.036227598786354065,
0.01134373527020216,
0.02891058847308159,
0.022073613479733467,
0.01911384053528309,
-0.051176704466342926,
-0.042195871472358704,
-0.020431606099009514,
-0.0158695038408041,
-0.0029758724849671125,
0.01740332320332527,
0.03531305119395256,
0.013684436678886414,
-0.02641921676695347,
0.02921278402209282,
-0.02936517633497715,
0.005831556860357523,
-0.03814557567238808,
0.027147315442562103,
0.027153903618454933,
-0.05995810404419899,
2.836183625731792e-7,
-0.009867486543953419,
-0.035441603511571884,
-0.02058682031929493,
-0.027687225490808487,
0.009913059882819653,
0.021251682192087173,
0.050007276237010956,
0.029572226107120514,
0.01955266296863556,
0.008686346001923084,
-0.0028122214134782553,
0.025645917281508446,
-0.01096759457141161,
0.006671880837529898,
-0.023228654637932777,
-0.02289246954023838,
-0.025113895535469055,
0.008743912912905216,
-0.008146023377776146,
-0.08868437260389328,
-0.045020658522844315,
-0.0008212986285798252,
0.009751822799444199,
-0.008296605199575424,
-0.02828890085220337,
-0.037396617233753204,
-0.02193409763276577,
0.07020215690135956,
-0.07634732127189636,
-0.040977828204631805,
-0.016189442947506905,
-0.08149214088916779,
-0.01882883347570896,
0.04574732109904289,
-0.06514786183834076,
0.03556978330016136,
-0.04046207666397095,
0.01610620692372322,
-0.008718320168554783,
0.06633292883634567,
-0.01813208870589733,
0.028581086546182632,
-0.04212605208158493,
-0.030663464218378067,
-0.02456147037446499,
0.048761799931526184,
0.05314035341143608,
-0.037032850086688995,
0.04807168245315552,
0.041937459260225296,
0.013683701865375042,
0.024789145216345787,
0.000401645724195987,
0.008129123598337173,
0.026779815554618835,
-0.03003276139497757,
0.0001648975012358278,
0.004911959636956453,
0.028171835467219353,
-0.040375180542469025,
-0.05624505877494812,
-0.007379327435046434,
-0.022022075951099396,
0.009128822945058346,
0.016294632107019424,
0.06642580777406693,
-0.03042101301252842,
0.020771807059645653,
0.04953450709581375,
0.045053914189338684,
0.026714980602264404,
-0.005906993057578802,
0.042630985379219055,
0.015182526782155037,
-0.013749504461884499,
-0.004192705731838942,
-0.0029900148510932922,
-0.03019661083817482,
0.007378903217613697,
0.01901119388639927,
-0.052359700202941895,
-0.02118789218366146,
0.028827166184782982,
0.010996788740158081,
-0.007969491183757782,
0.07479428499937057,
-0.027857545763254166,
-0.035668544471263885,
-0.05735873803496361,
0.056165650486946106,
0.02617385983467102,
0.0028422074392437935,
0.012896931730210781,
-0.03629132732748985,
0.01668613776564598,
-0.019143998622894287,
-0.038407761603593826,
-0.006914569064974785,
-0.0029392393771559,
-0.00969772506505251,
0.07693609595298767,
0.03486568108201027,
-0.06234748288989067,
-0.011415199376642704,
0.040057986974716187,
-0.07335729151964188,
0.03938908874988556,
0.006856247317045927,
0.12691941857337952,
-0.07025882601737976,
-0.07425978779792786,
0.0031509289983659983,
0.016570989042520523,
-0.043534696102142334,
0.002151941414922476,
0.011143757030367851,
-0.04840764030814171,
-0.03131095692515373,
-0.02532142587006092,
0.024610986933112144,
-0.06961365044116974,
-0.04586464539170265,
0.05993052199482918,
0.013468855060636997,
0.015606560744345188,
-0.008420531637966633,
-0.006028403993695974,
0.00801130197942257,
0.00937649980187416,
-0.022993242368102074,
0.05090866982936859,
-0.008981269784271717,
0.004084422253072262,
-0.04972050338983536,
-0.04878665879368782,
0.01474713534116745,
0.0793452039361,
-0.011976881884038448,
-0.016370419412851334,
-0.044009968638420105,
-0.0037279825191944838,
0.013858974911272526,
-0.004227424971759319,
-0.015380185097455978,
0.06645380705595016,
0.01786855421960354,
0.04163846746087074,
-0.0020471480675041676,
0.05444135516881943,
0.03868788108229637,
-0.036602847278118134,
-0.03839815407991409,
0.01909184828400612,
0.019962813705205917,
-0.014308810234069824,
0.009237471967935562,
0.04360673949122429,
0.01630171574652195,
-0.05864369124174118,
-0.048930972814559937,
0.047782860696315765,
-0.01084927935153246,
-0.006837169639766216,
0.004236230161041021,
0.01638898067176342,
-0.024112887680530548,
0.02589070238173008,
0.006300550419837236,
-0.021347729489207268,
-0.031186513602733612,
-0.006705278065055609,
0.029758267104625702,
0.008568438701331615,
0.026634441688656807,
0.0342150554060936,
-0.01463935524225235,
0.1026984378695488,
-0.050026264041662216,
0.021465318277478218,
-0.009561696089804173,
-0.033994030207395554,
0.024309998378157616,
0.06469497084617615,
0.03965088352560997,
0.026015203446149826,
-0.006942613050341606,
-0.05140885338187218,
0.023953687399625778,
0.05084545910358429,
0.05481964349746704,
0.006997205317020416,
-0.029615523293614388,
-0.003683215007185936,
0.005787829868495464,
0.0248995590955019,
-0.029162075370550156,
-0.023988546803593636,
0.0114364642649889,
0.04514477401971817,
-0.026319051161408424,
-0.004020576365292072,
-0.01597888208925724,
0.0015582215273752809,
-0.026181364431977272,
-0.05073406547307968,
-0.01057286188006401,
0.003183303866535425,
0.007089968770742416,
0.008265119977295399,
-0.003271590219810605,
-0.029461296275258064,
0.012004750780761242,
-0.0006200439529493451,
0.03711570426821709,
-0.067137710750103,
-0.001224245992489159,
0.03278136998414993,
0.05496266484260559,
-0.058443643152713776,
0.04975216090679169,
-0.014951075427234173,
-0.009019569493830204,
0.013783352449536324,
-0.021432654932141304,
0.0355159230530262,
0.11631157249212265,
0.023911215364933014,
-0.040256716310977936,
0.037722114473581314,
0.0402434766292572,
0.04253764450550079,
0.07968393713235855,
0.031140150502324104,
0.0935538113117218,
-0.007079035975039005,
0.05575414374470711,
0.05987416207790375,
0.0017409719293937087,
0.0003588673716876656,
0.02622971683740616,
0.061259135603904724,
-0.023203285411000252,
0.0027558852452784777,
0.0336323156952858,
-0.04066525027155876,
0.035532377660274506,
-0.014636431820690632,
-0.02012063004076481,
-0.03839096799492836,
-0.0250103697180748,
0.05872856825590134,
0.005689944140613079,
-0.04774387180805206,
-0.0039021398406475782,
0.01898115687072277,
0.001479220692999661,
0.03548617660999298,
0.022227199748158455,
0.02115635573863983,
-0.012731497175991535,
-0.01800697296857834,
0.036546848714351654,
-0.08001019060611725,
-0.05926618352532387,
-0.036843687295913696,
-0.0065616704523563385,
0.012217309325933456,
-0.056650061160326004,
-0.00972401350736618,
-0.08784140646457672,
-0.0037337173707783222,
0.06990239769220352,
0.04120048135519028,
-0.0036567857023328543,
-0.03517654165625572,
0.02636207453906536,
-0.0274982750415802,
-0.03440377861261368,
-0.06058577820658684,
-0.0598013699054718,
-0.016425058245658875,
-0.0499134287238121,
0.03990946710109711,
0.03429950028657913,
0.018901802599430084,
0.020916983485221863,
-0.004858946893364191,
-0.036853987723588943,
-0.018228016793727875,
0.06392306089401245,
0.03814871609210968,
-0.015660816803574562,
-0.020564613863825798,
0.01685159094631672,
-0.009751567617058754,
0.0025840518064796925,
0.00840880535542965,
-0.03452037274837494,
0.0820125937461853,
0.03497612476348877,
0.03141812980175018,
-0.026586271822452545,
-0.013103574514389038,
-0.05124475806951523,
-0.048645757138729095,
-0.054794467985630035,
-0.040492501109838486,
-0.04014923796057701,
-0.014533731155097485,
-0.04130804166197777,
-0.040289562195539474,
-0.0453009307384491,
-0.0069701834581792355,
-0.012986457906663418,
0.00039133726386353374,
0.007975204847753048,
0.030366232618689537,
0.029363056644797325,
0.054954756051301956,
-0.01678374968469143,
-0.02276979200541973,
0.05075078085064888,
0.015936704352498055,
-0.015743039548397064,
-0.04367056116461754,
-0.04917971417307854,
0.050503235310316086,
0.009897792711853981,
-0.012186359614133835,
-0.009813612326979637,
0.0415063202381134,
-0.011245894245803356,
0.00894664041697979,
0.033739183098077774,
-0.04535441845655441,
-0.007359704002737999,
-0.0026669208891689777,
-0.004879437852650881,
-0.029050759971141815,
-0.039728179574012756,
-0.013452889397740364,
0.026089131832122803,
0.04120762646198273,
-0.05304983630776405,
-0.038984619081020355,
0.008315293118357658,
0.010043750517070293,
0.04367456212639809,
0.016052400693297386,
-0.050169508904218674,
0.024238044396042824,
-0.04243404045701027,
-0.018038511276245117,
0.0034063784405589104,
-0.02698519453406334,
0.04045587033033371,
0.044279277324676514,
0.03626496344804764,
-0.013215196318924427,
0.03648259863257408,
0.005241716746240854,
0.04658621922135353,
0.05185689777135849,
-0.06544289737939835,
0.004910819698125124,
-0.009695232845842838,
0.01292429119348526,
-0.0026782681234180927,
-0.019607964903116226,
-0.04701332747936249,
-0.07331828027963638,
-0.0399627648293972,
0.03097737394273281,
-0.010206745937466621,
0.011057276278734207,
0.06650721281766891,
0.00036225010990165174,
0.010061952285468578,
-0.007796985562890768,
0.012121165171265602,
0.05564216896891594,
-0.03251201659440994,
0.05343126505613327,
-0.02780022658407688,
0.01030697114765644,
-0.044767722487449646,
-0.012578927911818027,
-0.037786711007356644,
-0.034743547439575195,
0.03599202260375023,
0.0642566978931427,
0.0051194350235164165,
0.05074344575405121,
0.057757604867219925,
0.00513745890930295,
-0.028034791350364685,
0.036741115152835846,
0.06298099458217621,
-0.04309564083814621,
-0.051418617367744446,
0.011796918697655201,
0.005947391502559185,
0.014713053591549397,
-0.007111473474651575,
-0.007251061964780092,
0.03500235080718994,
0.047719333320856094,
-0.03856836259365082,
0.010517320595681667,
-0.0019286352908238769,
0.003751344745978713,
-0.05769381299614906,
-0.03019171580672264,
0.02220269665122032,
0.046756453812122345,
-0.03250078484416008,
-0.0014372048899531364,
0.05360054969787598,
0.04072460159659386,
0.039733756333589554,
0.009882723912596703,
-0.040168397128582,
-0.02306891418993473,
0.04530738666653633,
0.008043819107115269,
-0.04371921718120575,
-0.08265681564807892,
0.002016804413869977,
0.015529422089457512,
0.021537961438298225,
-0.004284594673663378,
-0.07269067317247391,
0.028987934812903404,
0.026182372123003006,
-0.034266840666532516,
0.04801155999302864,
0.02502116933465004,
0.01578456535935402,
0.05456745624542236,
0.004294061101973057,
0.04827432706952095,
-0.018011482432484627,
0.04102193936705589,
0.017588716000318527,
-0.0033697173930704594,
-0.03325698524713516,
-0.009902091696858406,
-0.022815324366092682,
0.027681641280651093,
0.006612973753362894,
0.02909528836607933,
0.04930872842669487,
-0.07779756933450699,
-0.07165861129760742,
-0.029831785708665848,
0.04964996501803398,
-0.01784730888903141,
0.019909707829356194,
0.05266643315553665,
0.04422347620129585,
-0.021098144352436066,
-0.05505720153450966,
0.011600914411246777,
0.014706229791045189,
0.02508537471294403,
-0.03883160278201103,
-0.017488854005932808,
-0.057781338691711426,
0.05993175879120827,
-0.006810526829212904,
-0.038170162588357925,
-0.11055565625429153,
-0.003576898016035557,
0.007690125610679388,
-0.0369909293949604,
0.034540947526693344,
0.0238318033516407,
0.05484040826559067,
0.06331486999988556,
0.0106477290391922,
0.039340775460004807,
-0.03524356335401535,
0.023814605548977852,
-0.027442632243037224,
-0.030316302552819252,
0.024268154054880142,
-0.02959662303328514,
-0.026404334232211113,
0.01882142573595047,
-0.05428946018218994,
-0.018774377182126045,
-0.032719049602746964,
0.020052803680300713,
0.002408229513093829,
0.019710198044776917,
-0.01631217822432518,
0.02086590602993965,
0.002000449225306511,
-0.04191523790359497,
0.00804592203348875,
-0.022459572181105614,
-0.0966113954782486,
-0.006017145235091448,
0.06887010484933853,
0.01237445417791605,
0.004721564706414938,
0.013664654456079006,
0.033518578857183456,
0.045649729669094086,
0.01600009575486183,
-0.04546269029378891,
0.023323794826865196,
0.02070244401693344,
-0.005392314866185188,
-0.016120759770274162,
0.019002722576260567,
0.02032971940934658,
0.040606990456581116,
-0.016297025606036186,
0.023546988144516945,
-0.00863228552043438,
-0.008991451002657413,
-0.014062033034861088,
0.005143660120666027,
0.026531336829066277,
-0.05074560269713402,
-0.045932263135910034,
-0.021006209775805473,
-0.02859271503984928,
0.04005074128508568,
-0.0009312824695371091,
-0.014191019348800182,
0.043594472110271454,
0.014137592166662216,
0.026695022359490395,
0.013055546209216118,
-0.027986235916614532,
0.037471674382686615,
-0.02237539179623127,
0.03817422688007355,
-0.038093533366918564,
0.046946845948696136,
-0.008818123489618301,
0.014630827121436596,
-0.021437708288431168,
-0.001455279067158699,
-0.05435950309038162,
0.07551120221614838,
0.011679098010063171,
-0.008453520014882088,
0.021413343027234077,
0.01936253160238266,
0.0006170010310597718,
0.04079263284802437,
-0.004196628928184509,
0.0316723994910717,
-0.01853812113404274,
0.021125007420778275,
-0.030809003859758377,
0.014894222840666771,
-0.021026618778705597,
0.037050869315862656,
-0.05670452117919922,
-0.01310852449387312,
-0.004499804228544235,
-0.04656195640563965,
0.025875287130475044,
0.0456092394888401,
0.02295679971575737,
-0.010108057409524918,
-0.011829281225800514,
-0.009267550893127918,
0.008974071592092514,
-0.05713542178273201,
-0.04182739555835724,
-0.01103902142494917,
-0.016948029398918152,
-0.015480945818126202,
0.02904416248202324,
0.04285722225904465,
-0.030330277979373932,
-0.08124973624944687,
0.056945860385894775,
0.0250859372317791,
0.015591800212860107,
0.0071547371335327625,
0.03090406209230423,
0.04492250829935074,
0.04284713417291641,
-0.02318529225885868,
0.0042598797008395195,
-0.04120500758290291,
0.012240349315106869,
0.03700810298323631,
-0.018344568088650703,
0.006736268755048513,
-0.009488004259765148,
-0.0482557937502861,
-0.03485994413495064,
0.05353982374072075,
0.04116657376289368,
0.04142023250460625,
-0.026395821943879128,
-0.0458221435546875,
0.06456276029348373,
0.01646733656525612,
-0.006600505672395229,
0.017571058124303818,
0.02406756579875946,
-0.05282547324895859,
0.0316486656665802,
-0.016361748799681664,
0.02244483307003975,
0.0078066992573440075,
0.05107574909925461,
-0.030931944027543068,
0.0625254213809967,
-0.037768442183732986,
-0.00006982463673921302,
0.042148470878601074,
-0.0550558865070343,
-0.01199424173682928,
-0.027867387980222702,
0.043429408222436905,
-0.03791985288262367,
0.04837386682629585,
0.028443507850170135,
0.009873791597783566,
0.0261628907173872,
-0.03434578329324722,
-0.052833568304777145,
0.010388066060841084,
-0.05424347147345543,
0.05073195695877075,
-0.03812909871339798,
-0.08720265328884125,
0.06286688148975372,
0.021920332685112953,
-0.08583477139472961,
0.010219022631645203,
0.029530420899391174,
0.008799245581030846,
0.016366295516490936,
-0.007673807442188263,
-0.05048405006527901,
0.041811853647232056,
-0.06371744722127914,
0.037494391202926636,
-0.07422244548797607,
-0.02169436402618885,
0.0395677350461483,
-0.04378770291805267,
-0.01357177458703518,
0.026594998314976692,
-0.03361716866493225,
0.025693409144878387,
0.028114905580878258,
-0.02180774137377739,
-0.041980307549238205,
-0.003923289943486452,
0.02164502441883087,
-0.025142250582575798,
-0.010762598365545273,
-0.005965427961200476,
0.015014573000371456,
0.023179763928055763,
0.01699831895530224,
-0.04041643813252449,
-0.007801342289894819,
0.0070707225240767,
-0.03478081524372101,
-0.07058732211589813,
0.0607922300696373,
0.02099497988820076,
-0.018628865480422974,
0.028937241062521935,
-0.008860381320118904,
0.03541368991136551,
0.03303486481308937,
-0.01496923714876175,
0.024114053696393967,
-0.03272329643368721,
0.02200559712946415,
0.012824056670069695,
0.020253052935004234,
0.023969236761331558,
-0.020720981061458588,
0.01912069320678711,
0.02668917365372181,
0.04049060493707657,
0.005785769317299128,
-0.034691523760557175,
-0.028363453224301338,
0.014791356399655342,
-0.02761826664209366,
0.03114381991326809,
-0.016602160409092903,
-0.044327881187200546,
-0.052244629710912704,
-0.01576652191579342,
-0.04877401515841484,
0.022381052374839783,
-0.03832433745265007,
0.01936001516878605,
0.006997268181294203,
0.02612142637372017,
-0.07558650523424149,
-0.0920051634311676,
-0.019823702052235603,
-0.037085648626089096,
0.01871042512357235,
0.042180560529232025,
-0.042922839522361755,
0.019712962210178375,
-0.021788442507386208,
-0.07332871109247208,
0.04831123352050781,
-0.01648302935063839,
-0.03266178071498871,
0.06732204556465149,
0.06559263169765472,
-0.01534281950443983,
0.02210586704313755,
0.02667485736310482,
-0.04829278960824013,
0.018709110096096992,
0.0005561658181250095,
0.024361789226531982,
0.053092796355485916,
0.049564193934202194,
-0.0022732140496373177,
-0.01924704760313034,
-0.01754532940685749,
-0.026205336675047874,
-0.046470753848552704,
0.003996390849351883,
0.08257205039262772
] |
Aybars/ModelOnWhole | [
"pytorch",
"bert",
"question-answering",
"transformers",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"BertForQuestionAnswering"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 4 | null | ---
datasets:
- IlyaGusev/gpt_roleplay_realm
language:
- en
pipeline_tag: text-generation
---
LLaMA 7B fine-tuned on the English part of the `gpt_roleplay_realm` dataset.
Code example:
```
from peft import PeftModel, PeftConfig
from transformers import AutoModelForCausalLM, AutoTokenizer, GenerationConfig
MODEL_NAME = "IlyaGusev/rpr_7b"
DEFAULT_MESSAGE_TEMPLATE = "<s>{role}\n{content}</s>\n"
class Conversation:
def __init__(
self,
system_prompt,
message_template=DEFAULT_MESSAGE_TEMPLATE,
start_token_id=1,
bot_token_id=9225
):
self.message_template = message_template
self.start_token_id = start_token_id
self.bot_token_id = bot_token_id
self.messages = [{
"role": "system",
"content": system_prompt
}]
def get_start_token_id(self):
return self.start_token_id
def get_bot_token_id(self):
return self.bot_token_id
def add_user_message(self, message):
self.messages.append({
"role": "user",
"content": message
})
def add_bot_message(self, message):
self.messages.append({
"role": "bot",
"content": message
})
def get_prompt(self, tokenizer):
final_text = ""
for message in self.messages:
message_text = self.message_template.format(**message)
final_text += message_text
final_text += tokenizer.decode([self.start_token_id, self.bot_token_id])
return final_text.strip()
def generate(model, tokenizer, prompt, generation_config):
data = tokenizer(prompt, return_tensors="pt")
data = {k: v.to(model.device) for k, v in data.items()}
output_ids = model.generate(**data,generation_config=generation_config)[0]
output_ids = output_ids[len(data["input_ids"][0]):]
output = tokenizer.decode(output_ids, skip_special_tokens=True)
return output.strip()
config = PeftConfig.from_pretrained(MODEL_NAME)
model = AutoModelForCausalLM.from_pretrained(
config.base_model_name_or_path,
load_in_8bit=True,
torch_dtype=torch.float16,
device_map="auto"
)
model = PeftModel.from_pretrained(
model,
MODEL_NAME,
torch_dtype=torch.float16
)
model.eval()
tokenizer = AutoTokenizer.from_pretrained(MODEL_NAME)
generation_config = GenerationConfig.from_pretrained(MODEL_NAME)
print(generation_config)
system_prompt = "You are Chiharu Yamada. Chiharu Yamada is a young, computer engineer-nerd with a knack for problem solving and a passion for technology."
conversation = Conversation(system_prompt=system_prompt)
for inp in inputs:
inp = input()
conversation.add_user_message(inp)
prompt = conversation.get_prompt(tokenizer)
output = generate(model, tokenizer, prompt, generation_config)
conversation.add_bot_message(output)
print(output)
``` | [
-0.025299202650785446,
-0.023334695026278496,
-0.013336759991943836,
0.01776384934782982,
0.08376481384038925,
0.031547192484140396,
-0.032480232417583466,
-0.03357890620827675,
-0.012347855605185032,
0.06918204575777054,
0.06318910419940948,
-0.008784954436123371,
0.034648746252059937,
0.04258738085627556,
-0.03500774875283241,
-0.012024764902889729,
-0.056474924087524414,
0.005037546157836914,
-0.0407380647957325,
-0.0011442461982369423,
0.01705358177423477,
-0.017881736159324646,
-0.00011687228106893599,
0.010170619003474712,
0.004795459099113941,
0.031095394864678383,
-0.01846259832382202,
0.008041951805353165,
0.04863256216049194,
-0.023283081129193306,
0.019293777644634247,
-0.03303330019116402,
-0.018221136182546616,
0.0010645324364304543,
-0.024240076541900635,
-0.010763384401798248,
0.005422250833362341,
-0.007115823216736317,
0.0034962776117026806,
0.04239683598279953,
-0.013193083927035332,
-0.03243076428771019,
-0.007144632283598185,
-0.05790077522397041,
0.057876769453287125,
0.023375017568469048,
-0.06075490638613701,
-0.004922940861433744,
0.02402951754629612,
-0.03466060757637024,
-0.028400439769029617,
-0.06706885993480682,
-0.042928729206323624,
0.01080083753913641,
0.005004243925213814,
-0.026002157479524612,
-0.05340210348367691,
-0.035914670675992966,
0.10300080478191376,
-0.025634735822677612,
-0.014818509109318256,
0.015337109565734863,
-0.07616084814071655,
0.027116011828184128,
0.03653870150446892,
-0.04293633624911308,
0.01649784855544567,
-0.056888148188591,
0.02721353992819786,
-0.018770864233374596,
0.0474490225315094,
-0.02558835782110691,
0.02028772607445717,
-0.06393985450267792,
0.009029197506606579,
-0.034187398850917816,
0.05187198147177696,
0.012931001372635365,
-0.0099478242918849,
0.05981488525867462,
0.03211619332432747,
0.029852857813239098,
0.05299241468310356,
0.0025925871450453997,
-0.011293059214949608,
0.026868175715208054,
-0.03840617835521698,
0.017764002084732056,
-0.02165505848824978,
0.04664500057697296,
-0.02976946160197258,
-0.04620189964771271,
-0.03787939250469208,
-0.04821155592799187,
0.00722377048805356,
0.034781698137521744,
0.058616045862436295,
-0.023907659575343132,
0.033642303198575974,
0.03070460818707943,
0.042622338980436325,
0.05424286425113678,
-0.010737048462033272,
0.03838803619146347,
0.01188301108777523,
0.01835521310567856,
-0.007993257604539394,
-0.04446735233068466,
-0.06159811094403267,
0.02208866737782955,
-0.00031409371877089143,
-0.044422343373298645,
-0.039990413933992386,
0.014330265112221241,
0.03316705301403999,
-0.009822510182857513,
0.026919029653072357,
-0.018506361171603203,
-0.06345981359481812,
-0.05765160173177719,
0.04348577931523323,
0.009233170188963413,
0.009600850753486156,
0.013026371598243713,
-0.05561640113592148,
0.018057841807603836,
-0.040997184813022614,
-0.04388102889060974,
0.003490360686555505,
0.03003298118710518,
0.007973898202180862,
0.04077967256307602,
0.008188101463019848,
-0.037440598011016846,
0.008875718340277672,
0.042317502200603485,
-0.04308608919382095,
0.04790400713682175,
-0.0016997355269268155,
0.09063436090946198,
-0.05542827025055885,
-0.046266425400972366,
0.00816674530506134,
-0.001274651731364429,
-0.036427274346351624,
-0.009985880926251411,
0.0037086668889969587,
-0.023823663592338562,
-0.032038986682891846,
-0.006223156116902828,
0.033861927688121796,
-0.05031534656882286,
-0.036007110029459,
0.04970908164978027,
0.01917705312371254,
0.048412978649139404,
-0.04408105090260506,
-0.018708176910877228,
0.005583902355283499,
-0.009945990517735481,
-0.061096638441085815,
0.0551227405667305,
-0.0032526745926588774,
-0.02291499823331833,
-0.05554237216711044,
-0.040978431701660156,
0.02091853693127632,
0.09608235210180283,
-0.0034024957567453384,
-0.0010376630816608667,
0.01042111311107874,
0.017125314101576805,
0.04224855452775955,
0.01333009172230959,
-0.015180917456746101,
0.035875335335731506,
0.03812907636165619,
0.022519458085298538,
-0.03689411282539368,
0.062426816672086716,
-0.01719365455210209,
-0.036705512553453445,
-0.026621013879776,
0.022291580215096474,
0.017027413472533226,
-0.017460789531469345,
0.03524421527981758,
0.027675364166498184,
0.004334680736064911,
-0.02463865838944912,
0.025600971654057503,
0.006677969358861446,
-0.01344689354300499,
-0.022788656875491142,
0.016460038721561432,
0.007658123970031738,
-0.019235169515013695,
0.047020334750413895,
-0.019610946998000145,
0.002330771181732416,
-0.041414983570575714,
-0.026540160179138184,
0.017058907076716423,
0.009140959940850735,
0.025788357481360435,
0.055794667452573776,
-0.015149770304560661,
0.10299531370401382,
-0.01876254752278328,
-0.01550251618027687,
-0.06119199097156525,
-0.058580126613378525,
-0.017990659922361374,
0.05844515934586525,
0.022412776947021484,
0.0650094673037529,
-0.0049782609567046165,
-0.05571970343589783,
0.03733513876795769,
0.05687357485294342,
0.04287443310022354,
0.017042968422174454,
-0.06821213662624359,
0.007642708253115416,
0.007030250038951635,
0.06717949360609055,
-0.05242682248353958,
-0.02377130649983883,
-0.0021563617046922445,
0.04989517480134964,
-0.0311958696693182,
0.0024247062392532825,
0.010844272561371326,
0.00047849348629824817,
-0.025920435786247253,
-0.09357769042253494,
0.04748508334159851,
0.02979571558535099,
0.0425993874669075,
0.005922775715589523,
-0.023108862340450287,
-0.0048903594724833965,
0.05564871430397034,
-0.015786299481987953,
0.013951594941318035,
-0.05916721373796463,
-0.003990677651017904,
0.010503232479095459,
0.0745583176612854,
-0.04334854707121849,
0.03730715438723564,
0.022430671378970146,
-0.003868595464155078,
0.031811852008104324,
-0.020717395469546318,
0.04059882462024689,
0.05160868912935257,
0.017877742648124695,
-0.020377973094582558,
0.02946278639137745,
-0.004222013521939516,
0.03147709369659424,
0.04064872860908508,
-0.029898688197135925,
0.06898952275514603,
-0.006688072811812162,
0.04691578820347786,
0.06206471472978592,
0.0340452566742897,
0.009241857565939426,
0.03821127116680145,
0.06432565301656723,
-0.018298253417015076,
-0.0069605824537575245,
0.06218743696808815,
-0.03809088468551636,
0.029361139982938766,
-0.02764247916638851,
0.019871434196829796,
0.0027456525713205338,
-0.01944492757320404,
0.05072590708732605,
0.03857245296239853,
-0.03126955032348633,
0.015675649046897888,
-0.0014003728283569217,
0.01879345066845417,
0.024907417595386505,
-0.0010455843294039369,
0.010690566152334213,
-0.007142729591578245,
-0.033350784331560135,
0.031219590455293655,
-0.0833527073264122,
-0.0013781455345451832,
-0.038758810609579086,
-0.041322626173496246,
0.009917397052049637,
-0.0975455790758133,
-0.058666933327913284,
-0.04224277660250664,
-0.013310054317116737,
0.03653014078736305,
0.005618555471301079,
0.026713913306593895,
-0.0192812979221344,
0.04164726287126541,
-0.04265362024307251,
-0.035590268671512604,
-0.03602376952767372,
-0.04223966598510742,
-0.027589712291955948,
-0.05371391773223877,
0.02128668688237667,
0.014488164335489273,
0.023502212017774582,
0.007402138318866491,
0.0043497234582901,
-0.05016438290476799,
-0.009659269824624062,
0.03975701704621315,
0.034501656889915466,
-0.018058184534311295,
-0.054238252341747284,
0.035996053367853165,
-0.01690666191279888,
0.043709371238946915,
0.0031988860573619604,
-0.023874064907431602,
0.07019592821598053,
0.04150283709168434,
-0.002747094724327326,
0.003924582153558731,
-0.00140176631975919,
-0.04627915471792221,
-0.035694945603609085,
-0.008293812163174152,
-0.043330464512109756,
-0.038885269314050674,
-0.02361060306429863,
-0.0248503889888525,
-0.025119345635175705,
-0.02754966728389263,
-0.008730900473892689,
-0.013592037372291088,
0.018482310697436333,
0.04753708094358444,
0.034016117453575134,
0.033720213919878006,
0.04143742844462395,
-0.04753049835562706,
-0.00018825546430889517,
0.040782198309898376,
-0.01155868824571371,
0.010068580508232117,
-0.06677575409412384,
-0.042700979858636856,
0.03679708018898964,
0.0327192060649395,
-0.006273855455219746,
-0.01619841903448105,
0.05171677842736244,
0.034587614238262177,
-0.0040366156026721,
0.01634630188345909,
-0.02769913710653782,
-0.004464172758162022,
-0.00584167568013072,
-0.029460931196808815,
-0.04212157800793648,
-0.056500136852264404,
-0.010970305651426315,
-0.0003997161111328751,
0.05410778149962425,
-0.05566059798002243,
-0.04833262413740158,
-0.03587491437792778,
0.025971414521336555,
0.030543694272637367,
0.020253805443644524,
-0.03513902425765991,
-0.008870980702340603,
-0.04410286247730255,
-0.053505636751651764,
0.008946284651756287,
-0.013925583101809025,
0.02360149659216404,
0.02946992963552475,
0.04370380565524101,
-0.00951686967164278,
0.004735434893518686,
0.022354984655976295,
0.05932615324854851,
0.0038162933196872473,
-0.03746247664093971,
0.024039840325713158,
-0.02231627330183983,
0.0375090129673481,
-0.0007407187367789447,
-0.04725176468491554,
-0.04566476121544838,
-0.1020229384303093,
-0.021670008078217506,
0.0035033668391406536,
-0.042946889996528625,
0.000027413889256422408,
0.023462403565645218,
-0.03247380256652832,
-0.022301658987998962,
-0.017170017585158348,
0.02181476168334484,
0.053574368357658386,
-0.057796280831098557,
0.04090046510100365,
-0.008937451057136059,
0.04268880560994148,
-0.05898983031511307,
-0.02241104282438755,
0.0011116157984361053,
-0.012967623770236969,
-0.010049696080386639,
0.06651913374662399,
0.03959076106548309,
0.08133403211832047,
0.04395067319273949,
0.015174955129623413,
-0.042327068746089935,
0.03099069744348526,
0.03920445963740349,
-0.013222148641943932,
-0.02541429176926613,
0.0004801386676263064,
-0.004284978844225407,
-0.03999457508325577,
0.01576102524995804,
-0.03328859061002731,
0.006736805196851492,
0.041418399661779404,
-0.0005136661347933114,
-0.029365023598074913,
-0.006369525566697121,
-0.009781721979379654,
-0.0289833452552557,
-0.05886140838265419,
-0.027229202911257744,
-0.0047689336352050304,
-0.01870594173669815,
0.0357464998960495,
0.062445707619190216,
0.032499637454748154,
0.058826494961977005,
0.03155031055212021,
-0.02223105914890766,
-0.08226506412029266,
0.03893944248557091,
0.01616699993610382,
-0.029725557193160057,
-0.08286761492490768,
-0.038995418697595596,
0.025661682710051537,
0.04156864061951637,
-0.012560552917420864,
-0.0872151255607605,
0.03215261176228523,
0.05230993032455444,
-0.02960817515850067,
0.05682918429374695,
-0.015658721327781677,
0.03844789043068886,
0.04548260197043419,
-0.021560676395893097,
0.022401699796319008,
-0.019312242045998573,
0.0011392597807571292,
-0.0036793258041143417,
0.018214914947748184,
-0.007338445167988539,
-0.03994077816605568,
-0.06573739647865295,
0.04365110397338867,
0.04069378226995468,
0.04276552423834801,
0.02265067584812641,
0.003962568938732147,
-0.058717090636491776,
0.004061906598508358,
0.04384324327111244,
-0.020157556980848312,
0.03686365857720375,
0.03854213282465935,
0.06498479843139648,
-0.029865412041544914,
-0.03403996303677559,
-0.0018935315310955048,
0.007145877927541733,
0.03782941773533821,
-0.009714016690850258,
-0.015290309675037861,
-0.04481261596083641,
0.02568562887609005,
0.0003889343061018735,
-0.02896520309150219,
-0.08613588660955429,
0.02905585616827011,
-0.018798870965838432,
-0.027463160455226898,
0.05986222252249718,
0.06008771061897278,
0.045518942177295685,
0.06760521978139877,
0.004474835470318794,
0.021410055458545685,
-0.03214915096759796,
0.004693564958870411,
-0.04776237532496452,
-0.030932318419218063,
-0.027525052428245544,
-0.06140418350696564,
-0.023663615807890892,
-0.038675982505083084,
-0.06493856757879257,
-0.044300343841314316,
-0.03148192539811134,
0.027512310072779655,
-0.017506562173366547,
-0.0068816146813333035,
-0.01667301543056965,
0.03092946670949459,
-0.028223233297467232,
-0.03350592777132988,
-0.022855820134282112,
-0.02463863603770733,
-0.07854130864143372,
-0.048462092876434326,
0.023568183183670044,
0.013106133788824081,
0.018051447346806526,
-0.04045621678233147,
0.009962769225239754,
0.040995918214321136,
-0.01949375495314598,
0.0011172661324962974,
0.032219298183918,
0.01057196781039238,
-0.019503001123666763,
-0.055000316351652145,
-0.005178394727408886,
0.01798224076628685,
0.02858654409646988,
0.018155409023165703,
0.05111073702573776,
-0.003040893701836467,
-0.02433067187666893,
-0.008361120708286762,
0.02555510215461254,
0.0031298233661800623,
-0.068107470870018,
-0.010263513773679733,
-0.0031401203013956547,
-0.033406294882297516,
0.038371700793504715,
-0.02355356328189373,
-0.040618643164634705,
0.0014704077038913965,
0.014264333061873913,
0.038937486708164215,
0.004277250729501247,
-0.034230273216962814,
0.020329199731349945,
-0.02067684568464756,
0.0013935106107965112,
-0.03480644151568413,
0.0310885701328516,
-0.035676829516887665,
-0.015242539346218109,
-0.014165806584060192,
0.022624410688877106,
-0.04947527125477791,
0.06134801730513573,
0.0025516250170767307,
-0.007038121577352285,
-0.0009325376013293862,
-0.012341819703578949,
-0.016174638643860817,
0.030032385140657425,
0.015217753127217293,
0.04973507300019264,
-0.05744367092847824,
0.04152804985642433,
-0.038647618144750595,
0.003554500872269273,
-0.016082676127552986,
-0.017742734402418137,
-0.047165438532829285,
-0.051639240235090256,
-0.021598398685455322,
-0.0368051677942276,
0.027415268123149872,
0.03323434665799141,
0.011496934108436108,
0.020304976031184196,
0.0018380583496764302,
-0.0009375836816616356,
0.0045432159677147865,
-0.09034296870231628,
0.008932684548199177,
-0.01131004374474287,
-0.02275947295129299,
0.015608519315719604,
0.04014331102371216,
0.05595135688781738,
-0.059680551290512085,
-0.050189945846796036,
0.04810098558664322,
0.03015846200287342,
0.020635275170207024,
0.0050695715472102165,
0.018100032582879066,
0.060573648661375046,
0.010185585357248783,
-0.03543820232152939,
-0.014540590345859528,
0.006313243415206671,
-0.01170406024903059,
-0.02814965695142746,
0.0029305971693247557,
-0.005088848061859608,
0.013382157310843468,
-0.026676278561353683,
-0.03134813532233238,
0.09043290466070175,
0.03657181188464165,
0.013854173012077808,
0.007125763688236475,
-0.034041132777929306,
0.038607124239206314,
0.001301047159358859,
-0.03244006633758545,
-0.00325709767639637,
0.01145679596811533,
-0.025052199140191078,
0.08333681523799896,
-0.016825685277581215,
0.017882203683257103,
0.029697971418499947,
0.025946125388145447,
-0.007263013161718845,
0.026502376422286034,
-0.059441857039928436,
0.016972854733467102,
0.028800826519727707,
-0.050038550049066544,
0.011099311523139477,
-0.030583089217543602,
0.04472966492176056,
-0.06961728632450104,
0.05234929546713829,
0.02512253448367119,
0.044542863965034485,
-0.01778850331902504,
-0.04441358894109726,
-0.05490172654390335,
-0.0063818213529884815,
-0.049587003886699677,
0.06803807616233826,
-0.018169652670621872,
-0.06384231895208359,
0.08547452837228775,
0.0078110587783157825,
-0.07755690813064575,
0.05518755316734314,
0.07721461355686188,
0.025677744299173355,
0.029076721519231796,
0.046501487493515015,
-0.03832169622182846,
0.02088109776377678,
-0.054676055908203125,
0.01889597252011299,
-0.04994070157408714,
-0.036293912678956985,
0.010464668273925781,
-0.030734730884432793,
-0.018140973523259163,
0.017861364409327507,
0.030613066628575325,
0.006088368594646454,
0.030808812007308006,
-0.045375749468803406,
-0.04225773736834526,
0.007164532318711281,
0.02607097290456295,
-0.03000260330736637,
0.007955027744174004,
-0.025392092764377594,
0.019954828545451164,
0.009344314225018024,
-0.018053626641631126,
-0.015136477537453175,
0.016155404970049858,
-0.008645517751574516,
-0.06891318410634995,
-0.01931321807205677,
0.058172471821308136,
0.022699879482388496,
0.016119005158543587,
0.033814456313848495,
0.015348639339208603,
0.021819718182086945,
0.003837841795757413,
-0.01110165286809206,
0.004484707489609718,
-0.04045850783586502,
0.009502632543444633,
-0.005141010042279959,
0.01093216985464096,
0.010519701987504959,
-0.008232996799051762,
0.027478627860546112,
0.03566368669271469,
0.027929600328207016,
0.01433091051876545,
-0.03329979255795479,
-0.023229127749800682,
0.00945877842605114,
-0.056345075368881226,
0.023142481222748756,
0.03803546726703644,
-0.03222307935357094,
-0.03415863960981369,
-0.021770428866147995,
-0.015968529507517815,
0.03363773971796036,
-0.04292833060026169,
0.027567123994231224,
0.0395217165350914,
-0.009962955489754677,
-0.023614555597305298,
-0.0860367938876152,
-0.03919626772403717,
-0.03505443409085274,
0.05615053325891495,
0.03410640358924866,
-0.04674825072288513,
0.016820309683680534,
-0.03777223080396652,
-0.03884081169962883,
0.05164877697825432,
0.005293471273034811,
-0.023664720356464386,
0.036600448191165924,
0.06613212078809738,
-0.028998155146837234,
0.016384446993470192,
0.02429521270096302,
-0.03696487843990326,
0.034685518592596054,
0.026384741067886353,
0.0268008541315794,
0.04310324415564537,
0.02906208299100399,
-0.03276854008436203,
-0.005767660681158304,
-0.04702543094754219,
-0.02228391356766224,
-0.030903976410627365,
0.016347292810678482,
0.07484200596809387
] |
Ayjayo/DialoGPT-medium-AyjayoAI | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 12 | 2023-05-18T13:33:47Z | ---
library_name: stable-baselines3
tags:
- AntBulletEnv-v0
- deep-reinforcement-learning
- reinforcement-learning
- stable-baselines3
model-index:
- name: A2C
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: AntBulletEnv-v0
type: AntBulletEnv-v0
metrics:
- type: mean_reward
value: 2109.47 +/- 78.71
name: mean_reward
verified: false
---
# **A2C** Agent playing **AntBulletEnv-v0**
This is a trained model of a **A2C** agent playing **AntBulletEnv-v0**
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
...
```
| [
-0.045976072549819946,
-0.0014110583579167724,
-0.021980369463562965,
0.032292310148477554,
0.04391983523964882,
0.017383618280291557,
-0.018427634611725807,
-0.029994815587997437,
-0.037008218467235565,
0.06923738121986389,
0.021752551198005676,
0.0033651439007371664,
0.015031867660582066,
0.027981435880064964,
-0.0482729971408844,
-0.03009141981601715,
0.007458412554115057,
-0.00443496648222208,
-0.01257671695202589,
0.004400945268571377,
0.01516965962946415,
0.011136618442833424,
0.0018033311935141683,
0.04571148008108139,
-0.0028296574018895626,
0.03387753665447235,
-0.035065796226263046,
0.060386400669813156,
0.02489481121301651,
-0.05068648234009743,
-0.004620918072760105,
-0.01794300600886345,
-0.010968012735247612,
-0.03354927897453308,
-0.011101856827735901,
0.012610135599970818,
0.014154252596199512,
0.02678184024989605,
0.008570718578994274,
0.05161488056182861,
-0.014191687107086182,
0.02117880806326866,
0.0396457314491272,
-0.005170459393411875,
0.03980143368244171,
-0.01088286004960537,
-0.04154796898365021,
-0.01420266181230545,
0.047546789050102234,
-0.01095110084861517,
-0.06411692500114441,
-0.06699612736701965,
0.017764633521437645,
0.03155692294239998,
0.0031257160007953644,
-0.01866522803902626,
-0.027733800932765007,
-0.003931630868464708,
0.06544817984104156,
-0.06257733702659607,
-0.05152462050318718,
-0.013056221418082714,
-0.05541527271270752,
-0.013846433721482754,
0.015109451487660408,
-0.00004298723433748819,
0.015827635303139687,
-0.05075416341423988,
0.021117426455020905,
-0.021183976903557777,
0.05889733508229256,
-0.0028400772716850042,
0.03421798348426819,
-0.0635606124997139,
-0.011593992821872234,
-0.027449753135442734,
0.022638065740466118,
0.036132194101810455,
-0.017605531960725784,
0.06838330626487732,
0.017537595704197884,
-0.009609139524400234,
0.056252095848321915,
0.004731888882815838,
0.026110563427209854,
0.0029675387777388096,
-0.059583090245723724,
-0.005038158036768436,
0.028290007263422012,
0.020941533148288727,
-0.03192950412631035,
-0.017551762983202934,
-0.018711891025304794,
-0.031680960208177567,
-0.01165169756859541,
0.04588068276643753,
0.06147265061736107,
0.006719275843352079,
0.05539912357926369,
0.018729286268353462,
0.010844063945114613,
0.03558677062392235,
-0.024223938584327698,
0.07385578751564026,
0.0054250722751021385,
-0.01030042115598917,
-0.020291155204176903,
-0.02125992625951767,
-0.03742210939526558,
0.055771756917238235,
0.01852560043334961,
-0.03877731040120125,
-0.03562799468636513,
0.040995970368385315,
0.01858280412852764,
-0.024731166660785675,
0.038070227950811386,
-0.03382499888539314,
-0.029836038127541542,
-0.05965360626578331,
0.05413259193301201,
-0.016940556466579437,
-0.013640200719237328,
-0.04313257336616516,
-0.033207330852746964,
-0.025475531816482544,
-0.049175925552845,
-0.01873273402452469,
-0.029512500390410423,
0.020675472915172577,
0.00924260076135397,
0.05504585802555084,
0.019011564552783966,
-0.08108974248170853,
0.01667932979762554,
-0.010022997856140137,
-0.11433485895395279,
0.055930715054273605,
0.008493460714817047,
0.10555901378393173,
-0.06504539400339127,
-0.06380369514226913,
0.021489189937710762,
0.0073194364085793495,
-0.04553044214844704,
0.0037756843958050013,
0.005963081959635019,
-0.04035127907991409,
-0.02066814713180065,
-0.012011618353426456,
0.07900479435920715,
-0.07038641721010208,
-0.027864111587405205,
0.04694565385580063,
-0.007132869679480791,
0.03252996504306793,
-0.032589562237262726,
0.015105740167200565,
-0.003806564025580883,
-0.028089022263884544,
-0.01879577897489071,
0.0512702576816082,
-0.022694181650877,
-0.06504641473293304,
-0.04566173627972603,
-0.00637309392914176,
0.0051878998056054115,
0.08267967402935028,
-0.016445398330688477,
-0.014429150149226189,
-0.028074044734239578,
0.028240421786904335,
0.03097042441368103,
0.007145344279706478,
0.007247952278703451,
0.033189162611961365,
0.05061814561486244,
0.02431822009384632,
-0.033935509622097015,
0.034775249660015106,
0.02870415896177292,
-0.013133056461811066,
-0.011314022354781628,
0.012488450855016708,
0.009080540388822556,
-0.00643312931060791,
-0.006775775458663702,
0.021115044131875038,
0.0146825285628438,
-0.03610268235206604,
-0.033925823867321014,
0.021063722670078278,
0.01081580389291048,
0.010212047956883907,
-0.012357654049992561,
-0.003549714805558324,
-0.0030573972035199404,
0.03863377124071121,
-0.0006452479865401983,
-0.007205776870250702,
-0.03755471855401993,
-0.02257547155022621,
0.012609579600393772,
0.0053070420399308205,
0.04310629144310951,
0.02832632325589657,
-0.016355207189917564,
0.072686105966568,
-0.03060244582593441,
0.03406819328665733,
-0.05891259387135506,
-0.05161416530609131,
0.005323885008692741,
0.04102616012096405,
0.05529244616627693,
0.06622271239757538,
-0.017366910353302956,
-0.04139013588428497,
0.024487413465976715,
0.05112294480204582,
0.05355076119303703,
0.012389837764203548,
-0.029923101887106895,
-0.014371325261890888,
0.029483312740921974,
0.014438592828810215,
-0.03726435825228691,
-0.052097346633672714,
0.03028297983109951,
0.04920309782028198,
-0.0004239161789882928,
0.01248617097735405,
-0.04289776086807251,
0.04211548715829849,
-0.06527863442897797,
-0.05305030941963196,
0.02026713453233242,
0.02948138676583767,
0.01900768093764782,
0.019718501716852188,
-0.010579055175185204,
0.021496547386050224,
0.030961520969867706,
0.016695469617843628,
0.005355863366276026,
-0.04945256933569908,
0.03492601960897446,
0.011891648173332214,
0.07231725007295609,
-0.032393284142017365,
0.04308770224452019,
0.003473940072581172,
-0.009997131302952766,
0.04087979346513748,
-0.053126513957977295,
0.020415855571627617,
0.08504259586334229,
0.03031950443983078,
-0.01274412777274847,
0.021437639370560646,
0.017756888642907143,
0.039666350930929184,
0.037449587136507034,
0.002599770203232765,
0.06324845552444458,
-0.03733538091182709,
0.029465721920132637,
0.07916570454835892,
0.03243697062134743,
0.021518154069781303,
0.038351383060216904,
0.06354198604822159,
0.0030756411142647266,
0.030654536560177803,
0.054310087114572525,
-0.030174143612384796,
0.032002732157707214,
-0.03732507303357124,
0.007828909903764725,
-0.015289935283362865,
-0.009140902198851109,
0.062277767807245255,
0.013386287726461887,
-0.030451368540525436,
-0.026529252529144287,
-0.008636686950922012,
0.0164230614900589,
0.006796026602387428,
-0.012089508585631847,
0.001819653669372201,
0.027200687676668167,
-0.017268287017941475,
-0.006655607372522354,
-0.0709850862622261,
-0.06736423820257187,
-0.0162787027657032,
-0.016860488802194595,
-0.01987355388700962,
-0.05722973123192787,
-0.04238154739141464,
-0.07677382230758667,
-0.02401605062186718,
0.03608539327979088,
0.006990266498178244,
-0.006987465545535088,
-0.03707888722419739,
0.014839408919215202,
-0.05056403577327728,
-0.013945633545517921,
-0.05050216615200043,
-0.053773414343595505,
-0.036659929901361465,
-0.04258115962147713,
0.04092323035001755,
0.01981326751410961,
0.03136812895536423,
0.01093248650431633,
-0.011285325512290001,
-0.02376743033528328,
-0.025974677875638008,
0.05596204102039337,
0.05152702331542969,
-0.02127564139664173,
-0.04917197674512863,
0.030677881091833115,
0.005549994762986898,
0.02396608516573906,
0.015330981463193893,
-0.04316091537475586,
0.0684397742152214,
0.06157969683408737,
-0.002574662445113063,
-0.014951123856008053,
-0.0066920253448188305,
-0.045379508286714554,
-0.057138483971357346,
-0.040964193642139435,
-0.03312506154179573,
-0.01390031911432743,
-0.05812932178378105,
-0.03777259960770607,
-0.012876644730567932,
-0.01702730730175972,
-0.024714376777410507,
-0.034355279058218,
0.006256929133087397,
0.03356084227561951,
0.065536729991436,
0.02793947421014309,
0.03939876705408096,
-0.048869237303733826,
-0.02296234481036663,
0.04629933461546898,
0.02093995362520218,
-0.017573224380612373,
-0.08688610047101974,
-0.02940327115356922,
0.026602288708090782,
-0.004875503480434418,
0.008958432823419571,
-0.01425777468830347,
0.08038413524627686,
0.03322400525212288,
-0.0014947077725082636,
0.03030523844063282,
-0.02588733099400997,
-0.0011701886542141438,
-0.02518594078719616,
0.01641990803182125,
0.0014708323869854212,
-0.029576539993286133,
-0.01603466086089611,
0.023673128336668015,
0.03570110350847244,
-0.05005627125501633,
-0.0425715371966362,
-0.0037152008153498173,
0.01399210561066866,
0.032640937715768814,
0.008067998103797436,
-0.04957841336727142,
-0.034080106765031815,
-0.07731162011623383,
0.0025068181566894054,
0.02640685997903347,
-0.021554673090577126,
-0.003712667152285576,
0.03976563736796379,
0.018039507791399956,
0.0212057214230299,
0.049674637615680695,
0.03378649055957794,
0.04382913187146187,
0.01918037422001362,
-0.02716720849275589,
0.002639581449329853,
-0.005817995872348547,
0.036486878991127014,
0.03228382393717766,
-0.022823302075266838,
-0.03487306088209152,
-0.09880109131336212,
-0.03157265856862068,
0.0007918279734440148,
-0.015019177459180355,
0.010535584762692451,
0.03217092156410217,
-0.02319679595530033,
-0.010382715612649918,
0.005931053776293993,
0.004206999205052853,
0.04181576147675514,
-0.013883783482015133,
0.07226038724184036,
-0.02499563805758953,
0.03678679093718529,
-0.040219638496637344,
0.029282033443450928,
-0.030966099351644516,
-0.021716807037591934,
-0.003316727699711919,
0.023689618334174156,
0.024707946926355362,
0.08932602405548096,
0.04756087064743042,
0.03511342033743858,
-0.05788934975862503,
0.02629239112138748,
0.06034376472234726,
-0.03379085659980774,
-0.0511774942278862,
-0.01738915592432022,
0.02574346214532852,
-0.011843712069094181,
0.028537971898913383,
-0.024977903813123703,
0.0018256495241075754,
0.06430463492870331,
-0.01637651026248932,
-0.0025445022620260715,
-0.025714648887515068,
-0.006178540177643299,
-0.05345742031931877,
-0.01687620021402836,
0.0022635823115706444,
0.029903581365942955,
-0.00772550655528903,
0.006044403649866581,
0.03576866537332535,
0.033951327204704285,
0.05225241184234619,
0.053243231028318405,
-0.0066363136284053326,
-0.04108082503080368,
0.03922029957175255,
0.0071189082227647305,
-0.023578660562634468,
-0.06741604208946228,
-0.027096280828118324,
0.024661188945174217,
0.017337284982204437,
0.0032961051911115646,
-0.06365576386451721,
0.017573853954672813,
0.03816566988825798,
-0.05747968703508377,
0.06879342347383499,
-0.0035977771040052176,
0.01752764731645584,
0.043546248227357864,
-0.006583883427083492,
0.04107419028878212,
-0.028553815558552742,
-0.03457780182361603,
0.00486118346452713,
0.03242102637887001,
-0.029212137684226036,
-0.0349726602435112,
-0.03723609074950218,
0.011540032923221588,
0.037572234869003296,
0.03561759367585182,
0.029034489765763283,
-0.0528319887816906,
-0.062273845076560974,
-0.015966156497597694,
0.040106143802404404,
-0.01933712512254715,
0.012705696746706963,
0.06406579911708832,
0.03551558032631874,
-0.058621857315301895,
-0.04481679946184158,
-0.024067923426628113,
-0.026280870661139488,
0.04184618219733238,
0.012310443446040154,
-0.027404887601733208,
-0.02608347311615944,
0.03193897381424904,
-0.00996610801666975,
-0.02725941687822342,
-0.07212481647729874,
0.03167876601219177,
-0.0017148156184703112,
0.008324571885168552,
0.04941407963633537,
0.02848600596189499,
0.04913642629981041,
0.05861452966928482,
0.03013337217271328,
-0.01395665854215622,
-0.03429576754570007,
0.03700711950659752,
-0.026900168508291245,
-0.026089709252119064,
0.0021912914235144854,
-0.06025915592908859,
-0.019159937277436256,
-0.004201565403491259,
-0.01728852465748787,
-0.03728721663355827,
-0.027279632166028023,
0.034009262919425964,
0.015704646706581116,
0.012498598545789719,
0.01563340239226818,
0.0292043574154377,
-0.0034656659699976444,
-0.05680755525827408,
-0.03367165848612785,
-0.00450268154963851,
-0.06806547939777374,
-0.05806651711463928,
0.026190880686044693,
-0.007632811088114977,
0.025161126628518105,
0.015415557660162449,
0.05033135786652565,
0.02433759532868862,
0.027468299493193626,
-0.02089557610452175,
0.0069987778551876545,
0.0003284745034761727,
-0.04949362576007843,
-0.008929284289479256,
0.012729868292808533,
-0.004231678321957588,
0.043828096240758896,
-0.014477505348622799,
0.025595638900995255,
0.003585492493584752,
-0.0282027255743742,
-0.02842918410897255,
0.019322531297802925,
0.025463098660111427,
-0.04179566353559494,
-0.014748581685125828,
-0.00004762384560308419,
-0.02028455212712288,
0.04711482301354408,
-0.01653110980987549,
-0.0438629686832428,
0.01871502585709095,
0.012497708201408386,
0.04107768461108208,
-0.014782847836613655,
-0.05396225303411484,
0.020229289308190346,
-0.04267448931932449,
0.05133076757192612,
-0.08035155385732651,
0.025935105979442596,
-0.03687682002782822,
0.015935134142637253,
-0.005930102895945311,
0.003153411438688636,
-0.02806871570646763,
0.057818200439214706,
0.009920939803123474,
-0.022445010021328926,
-0.05020979046821594,
0.03495628759264946,
-0.0018964221235364676,
0.030140280723571777,
0.009513571858406067,
0.009805047884583473,
0.0024803532287478447,
0.012630226090550423,
-0.026617294177412987,
0.027888581156730652,
-0.02665138803422451,
0.027149736881256104,
-0.025688661262392998,
-0.012944145128130913,
-0.028092999011278152,
-0.05109841004014015,
0.016517365351319313,
0.009165224619209766,
0.02625320293009281,
0.010616851039230824,
-0.03091602399945259,
0.00973404198884964,
0.03080417402088642,
-0.04339445009827614,
-0.038270920515060425,
0.011821283958852291,
0.02666209638118744,
0.021253924816846848,
0.059611376374959946,
0.04871901869773865,
-0.07227838784456253,
-0.04583100974559784,
0.07850056886672974,
0.0070894923992455006,
0.01924000307917595,
0.008928763680160046,
0.05902591347694397,
0.04151003435254097,
0.03362734243273735,
-0.03819795697927475,
0.025625478476285934,
0.0011061124969273806,
-0.005370990373194218,
0.015600932762026787,
-0.040955401957035065,
0.010142387822270393,
0.024028204381465912,
-0.06075483188033104,
-0.026975475251674652,
0.05844920128583908,
0.03980230167508125,
-0.0024660357739776373,
-0.024914799258112907,
-0.034031204879283905,
0.0346076525747776,
-0.00851634331047535,
-0.04247336462140083,
0.015497813001275063,
-0.001601524418219924,
-0.024240540340542793,
0.06681419909000397,
-0.016837114468216896,
0.009849335066974163,
0.022248338907957077,
0.057469069957733154,
-0.020262548699975014,
0.06520789116621017,
-0.028721557930111885,
0.06285747140645981,
0.039688557386398315,
-0.05453501641750336,
0.008626481518149376,
-0.054530464112758636,
0.06871099770069122,
-0.07680311053991318,
0.05611634626984596,
0.04616697132587433,
0.0064136795699596405,
0.022846681997179985,
-0.017304010689258575,
-0.05654095113277435,
-0.023663220927119255,
-0.044558390974998474,
0.05624270439147949,
0.0063053034245967865,
-0.05407175049185753,
0.0726410448551178,
0.005756473634392023,
-0.0629446879029274,
0.03848953917622566,
0.02248338982462883,
0.033335182815790176,
0.01001355703920126,
0.05477854609489441,
-0.05801697075366974,
0.01771531254053116,
-0.03300870582461357,
0.04573025926947594,
-0.041712578386068344,
-0.020425807684659958,
0.026728659868240356,
-0.05104087293148041,
-0.025813370943069458,
0.026769477874040604,
-0.018375923857092857,
-0.02126351371407509,
0.043669089674949646,
-0.05775514617562294,
-0.06052744388580322,
0.02438373491168022,
0.0012063068570569158,
-0.014014155603945255,
0.007004986517131329,
-0.018361901864409447,
0.03604236617684364,
0.01930769346654415,
0.01749664731323719,
-0.007718377280980349,
-0.009195057675242424,
0.027117334306240082,
-0.05463951826095581,
-0.038601621985435486,
0.05118062347173691,
-0.012828831560909748,
-0.010042447596788406,
0.004076620563864708,
-0.0007360782474279404,
0.03220945969223976,
0.0163828544318676,
0.010699727572500706,
0.026625053957104683,
-0.06357913464307785,
-0.024477630853652954,
0.0352294035255909,
-0.01579396054148674,
0.018508199602365494,
-0.03324473276734352,
0.007981531322002411,
0.020508142188191414,
0.005991820711642504,
-0.02039872482419014,
-0.022740017622709274,
-0.0020950797479599714,
0.041131097823381424,
-0.0577368400990963,
0.005172803066670895,
0.00979421753436327,
-0.04550880566239357,
-0.04209830239415169,
-0.025854384526610374,
-0.010946591384708881,
0.027223313227295876,
-0.03180330991744995,
-0.004768725950270891,
0.05353362113237381,
-0.00038603731081821024,
-0.060338132083415985,
-0.11953790485858917,
-0.020656054839491844,
-0.054465990513563156,
0.013788338750600815,
0.03653860464692116,
-0.05370359495282173,
0.004570486955344677,
-0.029322080314159393,
-0.06708218902349472,
0.07349763810634613,
0.029007870703935623,
-0.038015540689229965,
0.062067851424217224,
0.06875160336494446,
-0.030697360634803772,
0.004993709269911051,
0.013144241645932198,
-0.05091080442070961,
-0.008595583029091358,
0.025466052815318108,
0.02414757013320923,
0.04241141304373741,
0.027198627591133118,
-0.030069272965192795,
-0.024692023172974586,
-0.03351355716586113,
-0.06308353692293167,
-0.032100774347782135,
0.006722974590957165,
0.06559344381093979
] |
AyushPJ/ai-club-inductions-21-nlp-roBERTa-base-squad-v2 | [
"pytorch",
"roberta",
"question-answering",
"transformers",
"generated_from_trainer",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"RobertaForQuestionAnswering"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
license: openrail
library_name: diffusers
pipeline_tag: text-to-image
--- | [
-0.009582461789250374,
-0.017209386453032494,
-0.006328653544187546,
0.004316666163504124,
0.05952602997422218,
0.005057748407125473,
-0.008079170249402523,
0.014635279774665833,
-0.026337265968322754,
0.03285207971930504,
0.00651529198512435,
0.022792551666498184,
0.015563555993139744,
0.047841984778642654,
-0.017754394561052322,
-0.03855849802494049,
-0.04744410142302513,
-0.023646919056773186,
-0.034090880304574966,
-0.009325479157269001,
0.04329162463545799,
0.010276775807142258,
-0.010392772033810616,
0.014002135954797268,
-0.027584094554185867,
0.003254827344790101,
-0.029487157240509987,
0.027006324380636215,
0.05716031417250633,
-0.0536646693944931,
0.014345730654895306,
-0.04444374516606331,
-0.034745972603559494,
-0.0016514501767233014,
-0.05046521872282028,
0.016039032489061356,
0.029828310012817383,
0.007478709798306227,
-0.005108030512928963,
0.039485543966293335,
-0.0029101695399731398,
0.010697009041905403,
-0.018074557185173035,
-0.04083692654967308,
0.01820693351328373,
-0.008492650464177132,
-0.039125338196754456,
-0.05108501389622688,
0.010389917530119419,
-0.06115220859646797,
-0.07615107297897339,
-0.0666356012225151,
-0.03536404296755791,
0.0014355318853631616,
-0.020312374457716942,
-0.023650655522942543,
-0.03994369134306908,
0.0012297247303649783,
0.054752059280872345,
-0.03204381465911865,
-0.025226593017578125,
-0.012775218114256859,
-0.06281598657369614,
0.0067626358941197395,
0.0182778462767601,
-0.05046042799949646,
0.02056744508445263,
-0.03856567665934563,
0.003268991829827428,
-0.004428009502589703,
0.05478297919034958,
-0.025480547919869423,
0.02213234081864357,
-0.05233663693070412,
-0.009201408363878727,
-0.03180267661809921,
0.04773959890007973,
0.05328436940908432,
-0.02363235503435135,
0.08219415694475174,
0.02784479409456253,
0.026666270568966866,
0.016300143674016,
-0.005720734596252441,
-0.010637075640261173,
0.04319371283054352,
-0.016836564987897873,
0.015419074334204197,
0.00625943299382925,
0.05110418424010277,
-0.015421707183122635,
-0.06789184361696243,
-0.035613156855106354,
-0.051885832101106644,
-0.005484448280185461,
0.0600159652531147,
0.03650406375527382,
-0.014024576172232628,
0.0004329374642111361,
0.03745945915579796,
0.0440041609108448,
0.04786931723356247,
-0.02148354984819889,
0.033716317266225815,
0.00001392338890582323,
-0.005902692675590515,
0.009987272322177887,
-0.0042868563905358315,
-0.0625479593873024,
0.014365486800670624,
0.016174156218767166,
-0.014882736839354038,
-0.028694307431578636,
0.0417742058634758,
-0.015585478395223618,
-0.012795194052159786,
0.07097058743238449,
-0.05737679451704025,
-0.0120839923620224,
-0.050989266484975815,
0.04467388987541199,
0.022859053686261177,
0.0010487546678632498,
0.018878577277064323,
-0.054774798452854156,
0.025361264124512672,
-0.04075109213590622,
-0.009261163882911205,
-0.006352164316922426,
0.011849986389279366,
0.01056758500635624,
0.04423541575670242,
0.01763627678155899,
-0.05334410071372986,
0.0065391212701797485,
0.03534961864352226,
-0.04807686805725098,
0.04879814013838768,
0.031236201524734497,
0.13627618551254272,
-0.08662479370832443,
-0.06580477952957153,
-0.010759539902210236,
0.0292293019592762,
-0.042060092091560364,
0.0007015306618995965,
-0.009141363203525543,
-0.06274617463350296,
-0.020455006510019302,
-0.007312704809010029,
0.03042551502585411,
-0.07187553495168686,
-0.05911748483777046,
0.037431079894304276,
0.01720701903104782,
0.005482749082148075,
-0.014463340863585472,
-0.002413088921457529,
0.010482268407940865,
-0.0003899313451256603,
-0.04621683433651924,
0.048727694898843765,
0.003165092086419463,
-0.003220995655283332,
-0.02609918639063835,
-0.05495236814022064,
0.014519735239446163,
0.07576190680265427,
-0.027055250480771065,
-0.055373191833496094,
-0.05035760626196861,
0.005099537782371044,
0.019220078364014626,
0.015911776572465897,
-0.0024022322613745928,
0.024968400597572327,
0.03376270458102226,
0.04615164175629616,
-0.03780406340956688,
0.06619837135076523,
0.03185439854860306,
-0.038643959909677505,
-0.03270838409662247,
-0.005448316689580679,
0.04081495851278305,
-0.022970939055085182,
-0.007481746841222048,
0.01790795475244522,
-0.01079870481044054,
-0.034803807735443115,
-0.024870343506336212,
0.0225213710218668,
-0.004717712756246328,
-0.0028239372186362743,
0.03272850066423416,
-0.031758278608322144,
-0.024096781387925148,
0.019787920638918877,
-0.01927589438855648,
-0.01970522291958332,
-0.02818116918206215,
-0.01613280363380909,
0.019419362768530846,
0.010825769044458866,
0.01845231093466282,
0.028602557256817818,
-0.01721087098121643,
0.08182242512702942,
-0.04631679132580757,
0.0174797922372818,
-0.040409382432699203,
-0.04200156405568123,
0.02088078483939171,
0.01918560266494751,
0.04376745969057083,
0.021905824542045593,
0.0055389548651874065,
-0.07526374608278275,
0.015307916328310966,
0.04054221138358116,
0.028695542365312576,
0.021320601925253868,
-0.02669808454811573,
-0.011600472964346409,
0.004935201723128557,
0.038143809884786606,
-0.02316161058843136,
-0.0559014268219471,
-0.004287620075047016,
0.02663090080022812,
-0.0034946678206324577,
0.014837910421192646,
-0.021416783332824707,
0.007399877533316612,
-0.02312648855149746,
-0.04791624844074249,
0.02806670218706131,
0.009469911456108093,
-0.010025358758866787,
0.00342675787396729,
0.010427800007164478,
-0.011756103485822678,
0.04477255418896675,
0.0037520548794418573,
0.02640059031546116,
-0.07008599489927292,
-0.005226592533290386,
0.021499473601579666,
0.04852817580103874,
-0.05871044471859932,
0.026307053864002228,
-0.019643083214759827,
0.020182408392429352,
0.00811085943132639,
-0.026132505387067795,
0.030900830402970314,
0.101681649684906,
0.04579902067780495,
-0.0315888337790966,
0.029281802475452423,
0.010158984921872616,
0.0397711843252182,
0.08018691092729568,
0.019518012180924416,
0.07636813819408417,
-0.038476113229990005,
0.07847827672958374,
0.08817434310913086,
0.014072053134441376,
-0.00888063944876194,
0.044402338564395905,
0.07662369310855865,
-0.039583366364240646,
0.004317678976804018,
0.04959986358880997,
-0.04996544122695923,
0.02891208417713642,
-0.039543312042951584,
-0.017558898776769638,
-0.04654835909605026,
-0.024316614493727684,
0.05921917036175728,
0.01839439943432808,
-0.025801697745919228,
0.013276432640850544,
0.0052147433161735535,
-0.006630231626331806,
0.052504993975162506,
0.005599698051810265,
0.0029619408305734396,
-0.0009549599490128458,
-0.022307077422738075,
0.01079302653670311,
-0.061392128467559814,
-0.06903207302093506,
-0.0086116474121809,
-0.021564777940511703,
-0.001156994723714888,
-0.07209855318069458,
-0.03129550442099571,
-0.06336947530508041,
-0.006296723149716854,
0.059323448687791824,
0.03374215587973595,
0.002505588112398982,
-0.043404899537563324,
0.010768805630505085,
-0.018440986052155495,
-0.04767275229096413,
-0.06108623743057251,
-0.03594620153307915,
-0.01530148833990097,
-0.03370313718914986,
0.04150709509849548,
0.018406638875603676,
0.037055641412734985,
0.010494398884475231,
-0.001168979099020362,
-0.03609534353017807,
-0.01344168558716774,
0.048735953867435455,
0.03938671946525574,
-0.019528202712535858,
-0.005013806279748678,
-0.019111696630716324,
-0.01532917469739914,
0.02210555039346218,
-0.006786801386624575,
-0.028340352699160576,
0.09632262587547302,
0.04449208453297615,
0.037980809807777405,
-0.0004094177857041359,
-0.021108785644173622,
-0.03687066212296486,
-0.04745527356863022,
-0.05676128342747688,
-0.020694609731435776,
-0.04296831041574478,
-0.016331488266587257,
-0.048654574900865555,
-0.034875210374593735,
-0.05218607559800148,
0.006792228203266859,
0.013185991905629635,
-0.0032277361024171114,
0.01654192805290222,
0.06084127351641655,
0.017151206731796265,
0.04556610435247421,
-0.0536515936255455,
-0.02758743241429329,
0.030490972101688385,
-0.008658058941364288,
-0.012541485019028187,
-0.01921083591878414,
-0.041966963559389114,
0.042244281619787216,
0.002671130234375596,
-0.01753919944167137,
-0.007573273498564959,
0.027603544294834137,
-0.014664459973573685,
0.025578904896974564,
-0.005986508447676897,
-0.048437830060720444,
0.007558596786111593,
-0.009656716138124466,
-0.01116872951388359,
-0.03235262259840965,
-0.026803413406014442,
0.0020119401160627604,
0.029936494305729866,
0.04841090738773346,
-0.05318361148238182,
-0.061546441167593,
-0.014597425237298012,
0.01745142973959446,
0.06059670075774193,
0.01371392048895359,
-0.05120391026139259,
0.020191732794046402,
-0.044220488518476486,
-0.008007991127669811,
0.01920076459646225,
-0.029637832194566727,
0.020783547312021255,
0.023099880665540695,
0.019196856766939163,
-0.011933616362512112,
0.033837635070085526,
0.008602374233305454,
0.06983404606580734,
0.041335996240377426,
-0.04954385384917259,
0.03284339979290962,
-0.02873491868376732,
0.00929323397576809,
0.009711465798318386,
-0.022593623027205467,
-0.033877182751894,
-0.0788024440407753,
-0.016454609110951424,
0.00935080274939537,
-0.005600443109869957,
0.0375312902033329,
0.06326701492071152,
-0.035235438495874405,
-0.0187686774879694,
0.0016804527258500457,
0.005283427890390158,
0.05332924425601959,
-0.022506916895508766,
0.05706028267741203,
-0.01588072068989277,
0.016814136877655983,
-0.04908955097198486,
0.018774570897221565,
-0.04784761741757393,
-0.01957443356513977,
-0.004648507572710514,
0.08912735432386398,
0.01665251888334751,
0.0361417718231678,
0.04220253974199295,
0.02239203453063965,
-0.03259826824069023,
0.02935498207807541,
0.04596578702330589,
-0.01220609713345766,
-0.04684266075491905,
0.0000684997794451192,
0.0206317026168108,
0.009005638770759106,
-0.016220195218920708,
-0.011692960746586323,
-0.009087306447327137,
0.02646646834909916,
-0.026281721889972687,
0.019755374640226364,
-0.011782334186136723,
-0.002266711788251996,
-0.032761018723249435,
-0.039053428918123245,
0.007137557025998831,
0.0022800446022301912,
-0.027100389823317528,
0.0033518928103148937,
0.061188362538814545,
0.03502670302987099,
0.06097812205553055,
0.01665893942117691,
-0.03180679306387901,
-0.05748068913817406,
0.038396891206502914,
0.022655023261904716,
-0.012057075276970863,
-0.0772615596652031,
-0.024718379601836205,
0.011958588846027851,
0.028968386352062225,
-0.024516800418496132,
-0.08052650839090347,
0.05163254961371422,
0.03206589072942734,
-0.0683448389172554,
0.055688828229904175,
0.0253162644803524,
-0.00047253858065232635,
0.05564387887716293,
-0.012260149233043194,
0.02929902821779251,
-0.03312975913286209,
0.02603946067392826,
0.016169017180800438,
0.014215217903256416,
-0.044180531054735184,
-0.010336517356336117,
-0.03424848988652229,
0.03528742119669914,
0.0021011289209127426,
0.04166422411799431,
0.054903075098991394,
-0.08088608086109161,
-0.08215029537677765,
-0.026287885382771492,
0.040708836168050766,
-0.03147311136126518,
0.019382597878575325,
0.03040226362645626,
0.05605803430080414,
-0.04476458579301834,
-0.015100892633199692,
-0.011309180408716202,
0.00014468438166659325,
0.05355415865778923,
-0.043477196246385574,
-0.011771091260015965,
-0.07435303926467896,
0.057647112756967545,
-0.00391425471752882,
-0.04386480525135994,
-0.11694911122322083,
-0.011119021102786064,
0.0017843969399109483,
-0.03385647013783455,
0.0224002618342638,
0.009532416239380836,
0.0663159117102623,
0.06044764444231987,
-0.005526240449398756,
0.0673140287399292,
-0.03886568918824196,
0.023864340037107468,
-0.053326163440942764,
-0.029748791828751564,
0.023009659722447395,
-0.025587424635887146,
-0.03341452404856682,
0.00939648225903511,
-0.054730985313653946,
-0.03231886401772499,
0.0008964335429482162,
0.02112531289458275,
-0.005223673768341541,
0.007735265884548426,
-0.0017921822145581245,
0.0037607187405228615,
0.011936158873140812,
-0.023579096421599388,
-0.016190597787499428,
-0.029960738494992256,
-0.10428553819656372,
-0.00433801906183362,
0.04353334382176399,
-0.007148389704525471,
-0.010846043936908245,
0.00023984575818758458,
0.02695242129266262,
0.04978047311306,
0.039498548954725266,
-0.014520644210278988,
0.028355035930871964,
0.04321688413619995,
-0.035827867686748505,
-0.014527653343975544,
0.033875059336423874,
0.026683438569307327,
0.019669821485877037,
-0.01784873940050602,
0.021126778796315193,
-0.026354581117630005,
-0.022830208763480186,
-0.047072216868400574,
0.007508294656872749,
0.03579526022076607,
-0.05928262323141098,
-0.03517725691199303,
-0.031334925442934036,
-0.03095373325049877,
0.03759828209877014,
-0.03791521117091179,
-0.004491676576435566,
0.030661672353744507,
0.02928091213107109,
0.028265703469514847,
-0.025805994868278503,
-0.03527703508734703,
0.03488921746611595,
-0.025165043771266937,
0.027956731617450714,
-0.05531749501824379,
0.029032772406935692,
0.0052611855790019035,
0.03190608322620392,
0.0008201213786378503,
0.004214015789330006,
-0.014024610631167889,
0.05618539825081825,
0.00013757438864558935,
-0.00749623216688633,
-0.007175701670348644,
0.0165033508092165,
-0.017430974170565605,
0.05416910722851753,
0.0024455119855701923,
0.030412016436457634,
-0.022346731275320053,
0.036813247948884964,
-0.05593027174472809,
0.02349322848021984,
-0.002533914055675268,
0.019718606024980545,
-0.038194701075553894,
-0.003121643327176571,
-0.025700924918055534,
-0.04642367362976074,
0.02541830949485302,
0.03223544359207153,
-0.004911004565656185,
-0.00559748662635684,
-0.015333270654082298,
-0.000885989866219461,
0.009586794301867485,
-0.058391768485307693,
-0.029925784096121788,
-0.008818617090582848,
-0.02420586533844471,
-0.008665633387863636,
0.05820579081773758,
0.036799147725105286,
-0.03959417715668678,
-0.07076240330934525,
0.04750220850110054,
0.03080587461590767,
0.014585500583052635,
0.010490640997886658,
0.03426222503185272,
0.06310968101024628,
0.048657726496458054,
-0.02748994156718254,
0.01814757101237774,
-0.017528530210256577,
0.02219567820429802,
0.009580057114362717,
-0.002576650818809867,
0.029708363115787506,
-0.008042018860578537,
-0.03760236129164696,
-0.03832085058093071,
0.05704113095998764,
0.047515615820884705,
0.03463872894644737,
0.008836054243147373,
-0.057741679251194,
0.023221630603075027,
0.011812637560069561,
-0.020041707903146744,
0.017876509577035904,
0.031708549708127975,
-0.043777741491794586,
0.025238920003175735,
0.004700080491602421,
0.028504628688097,
-0.0007691561477258801,
0.030068185180425644,
-0.028371399268507957,
0.04927980527281761,
-0.06014019623398781,
0.026435840874910355,
0.041456304490566254,
-0.03238023445010185,
-0.016075557097792625,
-0.028925061225891113,
0.03547229245305061,
-0.04530860111117363,
0.05424831435084343,
0.023922709748148918,
0.023817600682377815,
0.035682983696460724,
-0.05071699619293213,
-0.033558133989572525,
0.014736812561750412,
-0.05868949741125107,
0.07598836719989777,
-0.02898070588707924,
-0.04884691536426544,
0.07209877669811249,
0.008961504325270653,
-0.08364415168762207,
0.031549084931612015,
0.024725615978240967,
-0.0025809279177337885,
0.015591959469020367,
0.036950357258319855,
-0.05914115533232689,
0.016471264883875847,
-0.0474374033510685,
0.006632971577346325,
-0.07913783937692642,
-0.020803622901439667,
0.02312507852911949,
-0.019019970670342445,
-0.03855336830019951,
0.02755770832300186,
-0.03620366007089615,
0.01350999716669321,
0.009099917486310005,
-0.018428100273013115,
-0.03586529195308685,
-0.009487368166446686,
0.022409792989492416,
0.028972195461392403,
-0.026682104915380478,
-0.0036609021481126547,
-0.022081708535552025,
0.013238498941063881,
0.0012600913178175688,
-0.040930118411779404,
0.0325293205678463,
0.0011367391562089324,
-0.04750654473900795,
-0.039753228425979614,
0.0442068874835968,
0.037189047783613205,
-0.020086534321308136,
0.035452261567115784,
-0.004195142537355423,
0.0387672483921051,
0.03862214460968971,
-0.015912899747490883,
0.002260457957163453,
-0.040326088666915894,
0.010588672943413258,
-0.00401960127055645,
0.022410577163100243,
-0.006022329442203045,
0.0003388160839676857,
0.016033388674259186,
0.05438344553112984,
0.05428982526063919,
0.039093807339668274,
-0.02038843370974064,
-0.010756430216133595,
0.016829388216137886,
-0.05064332112669945,
-0.0045747156254947186,
0.00977623462677002,
-0.03660503402352333,
-0.029541652649641037,
0.008642475120723248,
-0.051303647458553314,
0.051775939762592316,
-0.03570247441530228,
0.041932862251996994,
0.02987741492688656,
0.02047359198331833,
-0.07161418348550797,
-0.08546999841928482,
-0.02235271781682968,
-0.0593516007065773,
0.04513096436858177,
0.031178811565041542,
-0.05379229411482811,
0.022267354652285576,
-0.03436260297894478,
-0.038740333169698715,
0.06439731270074844,
-0.017573559656739235,
-0.041491832584142685,
0.06991387158632278,
0.0711948573589325,
-0.028746994212269783,
0.02564341016113758,
0.025626592338085175,
-0.049600839614868164,
0.02605006843805313,
0.017861049622297287,
0.007947953417897224,
0.02014888823032379,
0.02670101448893547,
0.0021802436094731092,
-0.02656414732336998,
-0.037094708532094955,
-0.02800607681274414,
-0.036753099411726,
0.01754171960055828,
0.07706733793020248
] |
AyushPJ/test-squad-trained-finetuned-squad | [
"pytorch",
"tensorboard",
"distilbert",
"question-answering",
"dataset:squad",
"transformers",
"generated_from_trainer",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"DistilBertForQuestionAnswering"
],
"model_type": "distilbert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | null | ---
license: mit
tags:
- generated_from_trainer
datasets:
- squad
model-index:
- name: roberta-base_mod_squad
results: []
---
<!-- 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. -->
# roberta-base_mod_squad
This model is a fine-tuned version of [roberta-base](https://huggingface.co/roberta-base) on the squad dataset.
It achieves the following results on the evaluation set:
- Loss: 1.0100
## 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: 3e-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 |
|:-------------:|:-----:|:-----:|:---------------:|
| 0.9367 | 1.0 | 10950 | 0.9221 |
| 0.6845 | 2.0 | 21900 | 0.9035 |
| 0.4838 | 3.0 | 32850 | 1.0100 |
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0+cu118
- Datasets 2.11.0
- Tokenizers 0.13.3
| [
-0.03461644425988197,
-0.019749442115426064,
-0.012038657441735268,
0.03964884951710701,
0.03067351132631302,
0.03072478622198105,
-0.027726437896490097,
0.014738926663994789,
-0.03185879439115524,
0.03988894820213318,
0.03985217586159706,
-0.03493647277355194,
0.007928005419671535,
0.04343944787979126,
-0.043720975518226624,
-0.04805833846330643,
-0.0046838270500302315,
0.0034437505528330803,
-0.034356072545051575,
-0.037252236157655716,
0.013016118668019772,
-0.004545514937490225,
0.015341479331254959,
0.02178308367729187,
0.021738294512033463,
0.008815604262053967,
-0.014564097858965397,
0.0052866204641759396,
0.055605921894311905,
-0.05501732975244522,
0.0147774713113904,
-0.039863619953393936,
-0.0429069846868515,
-0.030494417995214462,
-0.0027672299183905125,
-0.015421400777995586,
0.0216824933886528,
0.002310556825250387,
0.039488837122917175,
0.05198153853416443,
0.005757901817560196,
0.0276277307420969,
-0.033290304243564606,
-0.036773525178432465,
0.06292784214019775,
0.011658919043838978,
-0.03268204629421234,
-0.017634432762861252,
0.04174644500017166,
-0.03194215148687363,
-0.06563439965248108,
-0.07886628806591034,
-0.03034435585141182,
0.03299061208963394,
-0.003430228680372238,
-0.016819186508655548,
-0.06437961012125015,
0.0026454092003405094,
0.06610871851444244,
-0.0699840635061264,
-0.031957998871803284,
0.0326525941491127,
-0.06591776758432388,
0.02116343192756176,
0.021929306909441948,
-0.04350574314594269,
0.021560292690992355,
-0.035064321011304855,
0.0433812290430069,
-0.013761677779257298,
0.07055046409368515,
-0.010187586769461632,
0.010420014150440693,
-0.05904201418161392,
0.00975875835865736,
-0.024626225233078003,
0.0195465087890625,
0.044933248311281204,
-0.03783748671412468,
0.06172919273376465,
0.022774195298552513,
-0.019629530608654022,
0.027607979252934456,
-0.043147314339876175,
-0.005314467009156942,
0.024261293932795525,
-0.03957003727555275,
0.02693483792245388,
0.015125555917620659,
0.029970785602927208,
-0.042142294347286224,
-0.021104056388139725,
-0.0368998721241951,
-0.000760042981710285,
-0.015029258094727993,
0.02768087573349476,
0.04510152339935303,
0.017936885356903076,
0.02336932346224785,
0.027888081967830658,
0.049652207642793655,
0.03671451285481453,
-0.042958877980709076,
0.06569162011146545,
-0.000981061370112002,
0.0013557149795815349,
-0.010040964931249619,
-0.007395999506115913,
-0.04549827054142952,
0.02631661854684353,
0.034552622586488724,
-0.026120683178305626,
-0.032351620495319366,
0.004458969458937645,
0.03839810937643051,
0.013689626939594746,
0.06750310212373734,
-0.028935151174664497,
-0.04265625774860382,
-0.04363575577735901,
0.05161786824464798,
0.020288337022066116,
-0.02366652898490429,
0.007973670028150082,
-0.03374950960278511,
-0.026833992451429367,
-0.0247202031314373,
-0.04306681826710701,
0.014895252883434296,
0.020836135372519493,
0.006963193416595459,
0.0575590506196022,
0.007201171945780516,
-0.0738535225391388,
-0.0068624611012637615,
0.01199724618345499,
-0.032092686742544174,
0.04331452026963234,
-0.001909877872094512,
0.10972213000059128,
-0.057607363909482956,
-0.07033943384885788,
0.02915676310658455,
-0.0029923676047474146,
-0.011629483662545681,
-0.0037341024726629257,
-0.02302710898220539,
-0.03610662743449211,
-0.019387735053896904,
0.0029235221445560455,
0.05309375748038292,
-0.026371987536549568,
-0.014204381965100765,
0.05798964574933052,
-0.0075567071326076984,
0.036374736577272415,
-0.051276545971632004,
-0.01600782386958599,
0.02146279253065586,
-0.013894633390009403,
-0.01887417584657669,
0.059489477425813675,
-0.02525758557021618,
-0.02620626986026764,
-0.009143363684415817,
-0.02802835963666439,
0.007762526627629995,
0.11390365660190582,
-0.013285137712955475,
-0.024167362600564957,
-0.01515481062233448,
0.026717685163021088,
0.03230281546711922,
0.027435055002570152,
-0.008303293026983738,
0.02996436320245266,
0.05095291882753372,
0.04330115765333176,
-0.021288858726620674,
0.02978079952299595,
0.04385968670248985,
-0.03476053848862648,
-0.022644978016614914,
0.01740734465420246,
-0.0034540484193712473,
-0.028309807181358337,
0.04382770508527756,
0.03275591507554054,
0.016653750091791153,
-0.05049321800470352,
-0.034252263605594635,
0.060219574719667435,
-0.03413708508014679,
0.003862924873828888,
-0.000033933993108803406,
0.001993425190448761,
-0.04083611071109772,
0.0537739172577858,
-0.004807057790458202,
-0.013275106437504292,
-0.0319744311273098,
-0.031007133424282074,
0.014091027900576591,
0.015204213559627533,
0.021504348143935204,
0.062482066452503204,
-0.01025830116122961,
0.10288740694522858,
-0.02610454522073269,
0.021821312606334686,
-0.03340130299329758,
-0.037473760545253754,
0.009290562942624092,
0.06101016327738762,
0.06943338364362717,
0.06250166893005371,
0.007676711305975914,
-0.05181752145290375,
0.03724093362689018,
0.05599386617541313,
0.03364485502243042,
0.005956182722002268,
-0.02592257596552372,
-0.02471085637807846,
0.011548297479748726,
0.05144669860601425,
-0.026155339553952217,
-0.018036024644970894,
0.011682065203785896,
0.044686902314424515,
-0.009537152014672756,
0.024983584880828857,
-0.045855917036533356,
0.03665568679571152,
-0.06245493143796921,
-0.05717227980494499,
0.04521854594349861,
0.01554984599351883,
-0.012232187204062939,
0.026755716651678085,
-0.01244285237044096,
-0.007754682097584009,
-0.006588976830244064,
0.020282316952943802,
0.007217990700155497,
-0.03195960447192192,
0.009300782345235348,
0.01760127767920494,
0.07344120740890503,
-0.03291438892483711,
0.061330292373895645,
-0.0000013852952633897075,
0.02671433985233307,
0.03037364035844803,
-0.037129342555999756,
0.013793000020086765,
0.05629519745707512,
0.014860720373690128,
-0.014043762348592281,
0.022745326161384583,
0.021946780383586884,
0.0222017839550972,
0.02407686598598957,
-0.00470223743468523,
0.061838071793317795,
-0.0066148024052381516,
0.035569000989198685,
0.08538799732923508,
0.0072479695081710815,
0.050754982978105545,
0.03148367628455162,
0.07569889724254608,
0.010592706501483917,
0.009910967200994492,
0.04940063878893852,
-0.04105030745267868,
0.008808096870779991,
-0.038520097732543945,
0.008653298020362854,
-0.027977682650089264,
-0.020240692421793938,
0.06255404651165009,
-0.012731722556054592,
-0.015070758759975433,
-0.028629593551158905,
-0.007917823269963264,
-0.015707001090049744,
0.038977984338998795,
-0.013250826857984066,
-0.00034607178531587124,
0.006264844909310341,
-0.009171544574201107,
-0.017004789784550667,
-0.0822342112660408,
-0.02569912001490593,
0.010589045472443104,
-0.027923451736569405,
-0.02507350593805313,
-0.07812546193599701,
-0.011515140533447266,
-0.03500309959053993,
-0.034538112580776215,
0.03541727736592293,
-0.02628020942211151,
0.0029212909284979105,
-0.02470999024808407,
0.02179749496281147,
-0.04127904772758484,
-0.038085341453552246,
-0.034433647990226746,
-0.06055086478590965,
-0.02755523845553398,
-0.056385818868875504,
0.017610330134630203,
0.024103444069623947,
0.03851219266653061,
0.010847373865544796,
0.005066458135843277,
-0.006318815052509308,
-0.030001340433955193,
0.03370381519198418,
0.06348603218793869,
-0.013153119944036007,
-0.060459282249212265,
0.012661253102123737,
0.0014273463748395443,
0.018848350271582603,
0.03269195184111595,
-0.02569521777331829,
0.09588510543107986,
0.06159428879618645,
0.012412264943122864,
0.007648248225450516,
-0.0067841531708836555,
-0.049202483147382736,
-0.03955111652612686,
-0.03183027729392052,
-0.04764702916145325,
-0.006301669403910637,
-0.053128357976675034,
-0.037895023822784424,
-0.030346518382430077,
-0.0059319064021110535,
0.014443942345678806,
-0.014870998449623585,
0.009820775128901005,
0.05759059265255928,
0.040655750781297684,
0.02597799152135849,
0.021598301827907562,
-0.023425471037626266,
-0.021664028987288475,
0.030256491154432297,
0.003025876125320792,
-0.0006557198357768357,
-0.07774592190980911,
-0.03405160456895828,
0.026812607422471046,
0.02620425447821617,
0.013299612328410149,
-0.0024448446929454803,
0.08641216903924942,
0.0088597247377038,
-0.007923079654574394,
0.012012834660708904,
-0.019873468205332756,
-0.036252036690711975,
-0.00546097569167614,
-0.0015427073230966926,
-0.01662037894129753,
-0.031301092356443405,
-0.007164389360696077,
-0.004605760332196951,
0.05866148695349693,
-0.04825032874941826,
-0.05435317009687424,
-0.013823981396853924,
0.04275771230459213,
0.0457666851580143,
0.0028287754394114017,
-0.021220242604613304,
-0.014724524691700935,
-0.06205663084983826,
-0.02875162661075592,
0.043075479567050934,
0.004471410997211933,
-0.006957901641726494,
0.058303896337747574,
0.034832775592803955,
-0.030667105689644814,
0.04107755422592163,
0.04881611093878746,
0.07178763300180435,
0.018032608553767204,
-0.05743201822042465,
-0.0033733085729181767,
-0.05088289454579353,
0.042087532579898834,
-0.00505190622061491,
-0.03177093341946602,
-0.024025198072195053,
-0.10926862061023712,
-0.02210138365626335,
0.006925539113581181,
-0.0004491732979658991,
-0.014516756869852543,
0.056027207523584366,
0.010107362642884254,
-0.025899678468704224,
-0.0072045405395329,
0.009087882936000824,
0.05705692619085312,
-0.01810774952173233,
0.061809226870536804,
0.0002560276188887656,
0.02472125180065632,
-0.042223744094371796,
-0.001197217614389956,
-0.022562840953469276,
-0.016321351751685143,
0.020430568605661392,
0.05415845662355423,
-0.005301728844642639,
0.061959609389305115,
0.08247581869363785,
0.04064307361841202,
-0.043743107467889786,
0.03250078111886978,
0.05769903212785721,
-0.025588201358914375,
-0.024056117981672287,
-0.007498141378164291,
-0.01179470308125019,
-0.015675360336899757,
-0.000005023677204007981,
-0.006185879930853844,
0.04495300352573395,
0.02765810675919056,
-0.0039169760420918465,
0.025564350187778473,
0.004372567404061556,
-0.01239602081477642,
-0.0361601822078228,
-0.02365252748131752,
-0.020643826574087143,
0.008144693449139595,
0.004919904749840498,
0.00211762310937047,
0.04030972719192505,
-0.004623142536729574,
0.04508190602064133,
0.03996943309903145,
-0.034008678048849106,
-0.05039186030626297,
0.012456150725483894,
0.019596083089709282,
-0.022323615849018097,
-0.09086426347494125,
-0.03937883302569389,
0.04700063169002533,
0.024591119959950447,
-0.007761589717119932,
-0.06540630012750626,
-0.00197508349083364,
0.05906185507774353,
-0.05276748165488243,
0.04658937081694603,
-0.002066859509795904,
0.06227816641330719,
0.055218663066625595,
-0.03301691636443138,
0.025274202227592468,
-0.022633612155914307,
-0.017416825518012047,
-0.0014430739684030414,
0.027397185564041138,
-0.008551173843443394,
-0.04110294580459595,
-0.05244402214884758,
0.019920065999031067,
0.07199134677648544,
0.03856833651661873,
0.012945869006216526,
-0.02585071325302124,
-0.036828696727752686,
0.033705197274684906,
0.044817887246608734,
-0.06810525059700012,
0.014151268638670444,
0.023910431191325188,
0.007180027198046446,
-0.04431727156043053,
-0.06195501983165741,
-0.023573702201247215,
-0.003948552068322897,
0.029091397300362587,
-0.018591854721307755,
-0.03645375743508339,
-0.04255189374089241,
0.03290577977895737,
0.011677868664264679,
-0.02139686420559883,
-0.08295431733131409,
0.047786321491003036,
-0.008916315622627735,
0.005318192299455404,
0.06632566452026367,
0.02866852656006813,
0.03713693469762802,
0.05375578999519348,
0.027729887515306473,
0.017335884273052216,
-0.042742516845464706,
0.033011145889759064,
-0.014823774807155132,
-0.01705911196768284,
-0.0020185501780360937,
-0.0419577956199646,
-0.02213304117321968,
-0.016161121428012848,
-0.025032633915543556,
-0.03731130436062813,
-0.011485439725220203,
0.00525273010134697,
-0.010114028118550777,
0.0045403833501040936,
-0.006180014461278915,
0.025702213868498802,
-0.015700386837124825,
-0.04200289770960808,
-0.03362294286489487,
0.0032055284827947617,
-0.04202963784337044,
-0.03336449712514877,
0.034220173954963684,
0.0013151727616786957,
0.04519073665142059,
0.018677985295653343,
0.04052839055657387,
-0.0004040671919938177,
-0.02072237618267536,
-0.05818076804280281,
-0.005891548469662666,
-0.0075179096311330795,
0.007774940226227045,
-0.03347630053758621,
0.013779889792203903,
0.012297692708671093,
0.03260117769241333,
-0.029069598764181137,
0.02650648169219494,
0.03529295697808266,
0.008123582229018211,
-0.008588558994233608,
0.02829415164887905,
0.01831061951816082,
-0.08523879200220108,
-0.026215875521302223,
0.003127130912616849,
-0.034613706171512604,
0.016044802963733673,
-0.08341953903436661,
-0.01484287902712822,
0.00494164926931262,
0.005787358153611422,
0.03909964859485626,
0.010899066925048828,
-0.023032035678625107,
0.007740659173578024,
-0.03990651294589043,
0.0025847996585071087,
-0.054663896560668945,
0.018928460776805878,
-0.03145686537027359,
0.007004124112427235,
-0.028358791023492813,
0.0031583032105118036,
-0.04135259985923767,
0.039263658225536346,
-0.034467749297618866,
-0.008277657441794872,
-0.019965767860412598,
0.04746915027499199,
-0.017778420820832253,
0.02486436441540718,
0.005457371938973665,
0.0260109081864357,
-0.04415053129196167,
0.07661473006010056,
-0.0341043695807457,
0.022308964282274246,
-0.04214974865317345,
0.02804643101990223,
-0.02009063959121704,
0.03593072667717934,
-0.012089002877473831,
-0.030226070433855057,
0.014982842840254307,
0.06360054016113281,
0.04695596918463707,
0.007144450210034847,
-0.02400420419871807,
-0.009872069582343102,
0.001016929978504777,
-0.061697401106357574,
-0.020204801112413406,
0.01768089272081852,
-0.014659806154668331,
0.010886703617870808,
0.023260584101080894,
0.04637085273861885,
-0.03751944378018379,
-0.052601125091314316,
0.03658219054341316,
0.013948384672403336,
0.01167326420545578,
0.0013516448670998216,
0.023398518562316895,
0.0209023617208004,
0.04794640094041824,
-0.04016498848795891,
0.008399367332458496,
-0.012413575313985348,
-0.022384293377399445,
0.020186645910143852,
-0.003328102407976985,
0.04318354278802872,
0.02717498689889908,
-0.040092356503009796,
-0.0318271741271019,
0.0818513035774231,
0.04059726744890213,
0.004206748213618994,
-0.00009143517672782764,
-0.04729500040411949,
0.05679488554596901,
-0.008023721165955067,
-0.027622928842902184,
0.033422086387872696,
-0.0021073308307677507,
-0.02622322551906109,
0.06925147771835327,
-0.01918715424835682,
0.0014433561591431499,
0.031129198148846626,
0.018924493342638016,
-0.024564558640122414,
0.0488612987101078,
-0.02042548730969429,
0.02793351374566555,
0.05342191830277443,
-0.08911089599132538,
-0.005419327411800623,
-0.03534894064068794,
0.0580558255314827,
-0.07105759531259537,
0.04764536768198013,
0.0674724131822586,
0.0035223308950662613,
0.016652943566441536,
-0.06510143727064133,
-0.04233891889452934,
-0.013906021602451801,
-0.04865359514951706,
0.054399602115154266,
-0.0037750534247606993,
-0.05818096175789833,
0.06492827087640762,
0.02204025536775589,
-0.06614119559526443,
0.04651755094528198,
0.025963852182030678,
0.04253759980201721,
0.03369053825736046,
0.0483752079308033,
-0.06476540863513947,
0.033336639404296875,
-0.040498122572898865,
0.05188959091901779,
-0.068553127348423,
-0.029079381376504898,
0.04382067546248436,
-0.011584591120481491,
-0.011354697868227959,
0.041642360389232635,
0.019853750243782997,
0.0032871090807020664,
0.043811023235321045,
-0.048381783068180084,
-0.043260183185338974,
-0.0035710406955331564,
0.003714290214702487,
-0.017615770921111107,
0.00916192028671503,
-0.03372114896774292,
0.025382090359926224,
0.02316148765385151,
-0.006296110339462757,
-0.020706918090581894,
0.002337733283638954,
0.008687149733304977,
-0.05097008869051933,
-0.036241985857486725,
0.04822693392634392,
-0.005935697816312313,
-0.02895938791334629,
0.03676643967628479,
0.013006404973566532,
0.03535008430480957,
0.002492377068847418,
0.00586614478379488,
0.0016168574802577496,
-0.045721206814050674,
-0.02480541355907917,
0.020524464547634125,
-0.00005080418850411661,
0.02542058750987053,
0.011142784729599953,
0.026848630979657173,
0.02134954184293747,
0.03112049773335457,
-0.018292279914021492,
-0.016681363806128502,
-0.040552545338869095,
0.05470341444015503,
-0.03919902443885803,
-0.005464380141347647,
-0.017294984310865402,
-0.050387587398290634,
-0.057545702904462814,
-0.023297658190131187,
-0.024333680048584938,
0.01980954222381115,
-0.05807042866945267,
0.015904316678643227,
0.023112643510103226,
-0.03236357867717743,
-0.05633259937167168,
-0.0836687833070755,
-0.011981523595750332,
-0.02985352836549282,
0.000014064909919397905,
0.03294110670685768,
-0.030847685411572456,
0.021731097251176834,
-0.013197684660553932,
-0.06580162048339844,
0.054451845586299896,
0.025542400777339935,
-0.047278646379709244,
0.047638606280088425,
0.05087101459503174,
-0.054987769573926926,
-0.018562374636530876,
0.015988055616617203,
-0.036680929362773895,
0.0022230029571801424,
0.01034377422183752,
0.016321824863553047,
0.024331284686923027,
0.0000872748569236137,
-0.05896340310573578,
-0.04166536033153534,
-0.062462206929922104,
-0.048815932124853134,
-0.054795149713754654,
0.010970212519168854,
0.08788170665502548
] |
BSen/wav2vec2-large-xls-r-300m-turkish-colab | [
"pytorch",
"tensorboard",
"wav2vec2",
"automatic-speech-recognition",
"dataset:common_voice",
"transformers",
"generated_from_trainer",
"license:apache-2.0"
] | automatic-speech-recognition | {
"architectures": [
"Wav2Vec2ForCTC"
],
"model_type": "wav2vec2",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
model-index:
- name: jason-expert-uspto-1.5k-preeval
results: []
---
<!-- 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. -->
# jason-expert-uspto-1.5k-preeval
This model is a fine-tuned version of [EleutherAI/pythia-1b-deduped](https://huggingface.co/EleutherAI/pythia-1b-deduped) on an unknown dataset.
## 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.0001
- train_batch_size: 1
- eval_batch_size: 8
- seed: 42
- distributed_type: multi-GPU
- num_devices: 8
- gradient_accumulation_steps: 8
- total_train_batch_size: 64
- total_eval_batch_size: 64
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- training_steps: 1500
### Training results
### Framework versions
- Transformers 4.28.1
- Pytorch 2.0.1+rocm5.4.2
- Datasets 2.11.0
- Tokenizers 0.13.3
| [
-0.0341615304350853,
-0.010180594399571419,
-0.020207393914461136,
0.03311780467629433,
0.04103168100118637,
0.023930080235004425,
-0.003976209554821253,
-0.000691335357259959,
-0.03147943690419197,
0.044113531708717346,
0.01900498755276203,
-0.01488297525793314,
-0.010356725193560123,
0.05268244817852974,
-0.03400685265660286,
-0.05099622905254364,
-0.03350332751870155,
0.005552645307034254,
-0.0410078689455986,
0.028407076373696327,
0.02092687413096428,
-0.011801077984273434,
-0.014947239309549332,
0.0333610437810421,
-0.004992916714400053,
0.012710634618997574,
0.0040276916697621346,
-0.0002109896158799529,
0.02458876371383667,
-0.06817162036895752,
-0.0066281575709581375,
-0.03827691823244095,
-0.043610960245132446,
-0.005573381669819355,
-0.01952233724296093,
-0.013212124817073345,
0.009988933801651001,
0.031114138662815094,
0.054659951478242874,
0.05230451375246048,
-0.0021340763196349144,
0.006464014295488596,
-0.0010660432744771242,
-0.02080526202917099,
0.03220034018158913,
0.0024855921510607004,
-0.036566633731126785,
-0.007569001987576485,
0.03229553624987602,
-0.02447122521698475,
-0.070915088057518,
-0.0572071298956871,
-0.01951344683766365,
-0.0020851700101047754,
-0.0017258103471249342,
-0.02169136516749859,
-0.059708092361688614,
-0.022012555971741676,
0.05266513675451279,
-0.058045580983161926,
-0.02958076074719429,
0.004285674076527357,
-0.10440650582313538,
0.039363447576761246,
0.030226053670048714,
-0.019331928342580795,
0.0026469535659998655,
-0.043736476451158524,
0.0360519103705883,
-0.013815543614327908,
0.04842233285307884,
-0.01820693351328373,
0.010716012679040432,
-0.09105774760246277,
-0.03230174630880356,
-0.015958789736032486,
0.018835538998246193,
0.04865407943725586,
-0.026198789477348328,
0.041856154799461365,
0.013162338174879551,
-0.019614314660429955,
0.06416299939155579,
-0.03455542400479317,
0.002565453527495265,
0.0191805399954319,
-0.04484060779213905,
0.0060485610738396645,
0.015799690037965775,
0.04021356254816055,
-0.038875944912433624,
-0.04359607398509979,
-0.03862452879548073,
-0.02782462164759636,
-0.009051225148141384,
0.04161564260721207,
0.0357256717979908,
0.012390515767037868,
0.03299221023917198,
0.0036847335286438465,
0.043954502791166306,
0.030665483325719833,
-0.011982695199549198,
0.06790051609277725,
-0.014586327597498894,
-0.009224962443113327,
-0.02152717486023903,
-0.029364876449108124,
-0.03685462474822998,
0.04615085944533348,
0.026028547435998917,
-0.028412677347660065,
-0.04751412570476532,
0.030613837763667107,
0.01277199573814869,
0.0025826790370047092,
0.053597044199705124,
-0.040582623332738876,
-0.0365644246339798,
-0.005915610585361719,
0.023439882323145866,
0.02944093383848667,
0.0037083295173943043,
-0.02008635550737381,
-0.04034966230392456,
0.005132715683430433,
-0.035588428378105164,
-0.022466644644737244,
-0.006524135358631611,
0.007475724443793297,
-0.016608629375696182,
0.044412653893232346,
0.030000271275639534,
-0.0573117658495903,
0.006002302281558514,
0.02870691567659378,
-0.0635359063744545,
0.05267089605331421,
0.03258539363741875,
0.08307302743196487,
-0.07954141497612,
-0.07914697378873825,
0.03752931207418442,
0.016002275049686432,
-0.024757005274295807,
-0.004902894143015146,
0.015714207664132118,
-0.045370083302259445,
-0.028103621676564217,
-0.014279675669968128,
0.027088724076747894,
-0.042168185114860535,
-0.0032248857896775007,
0.059782080352306366,
-0.017537398263812065,
0.04573429003357887,
-0.05380818992853165,
-0.025501511991024017,
0.015513993799686432,
-0.0016333042876794934,
-0.009446509182453156,
0.031049758195877075,
-0.009281325154006481,
0.02495582401752472,
-0.05146598815917969,
-0.029194271191954613,
-0.004523963667452335,
0.10513398796319962,
0.008639716543257236,
-0.032596372067928314,
-0.015351265668869019,
0.019731583073735237,
0.06931249797344208,
0.035262107849121094,
-0.015143042430281639,
0.041483644396066666,
0.05997287854552269,
0.05245783179998398,
-0.03789064288139343,
0.03720850870013237,
0.049776893109083176,
-0.010578887537121773,
-0.01930576004087925,
0.014340672641992569,
0.014515893533825874,
-0.05571058392524719,
0.0008474176283925772,
0.022704539820551872,
0.009721698239445686,
-0.03922094777226448,
-0.017756087705492973,
0.04615873470902443,
-0.005331631284207106,
-0.018483316525816917,
0.0040517388842999935,
-0.00920820701867342,
-0.002491795225068927,
0.044016629457473755,
-0.015988890081644058,
-0.006594928912818432,
-0.01814480498433113,
-0.023654894903302193,
-0.0045631746761500835,
0.04561883956193924,
0.03038233146071434,
0.04919490963220596,
-0.0007123223622329533,
0.08258289098739624,
-0.01530633494257927,
0.014482064172625542,
-0.03479122370481491,
-0.05125947669148445,
-0.003056302899494767,
0.050487540662288666,
0.03388328477740288,
0.058711256831884384,
0.021475864574313164,
-0.03521645814180374,
0.06793133914470673,
0.05368254706263542,
0.03088914230465889,
-0.00017925960128195584,
-0.03739742562174797,
-0.012384647503495216,
0.03288205340504646,
0.06197391450405121,
-0.041253626346588135,
-0.027276702225208282,
0.02998996526002884,
0.046699341386556625,
0.0023263473995029926,
0.026715967804193497,
-0.016223939135670662,
0.04199770838022232,
-0.06288699060678482,
-0.06167745590209961,
0.036581527441740036,
0.024258174002170563,
0.0004116035997867584,
0.017356952652335167,
-0.0019195894710719585,
-0.012826048769056797,
0.013629564084112644,
0.012332044541835785,
-0.0028607910498976707,
-0.010852131992578506,
0.02582399919629097,
0.011440730653703213,
0.053742408752441406,
-0.05103049799799919,
0.036697909235954285,
-0.009241295047104359,
0.0020671167876571417,
0.04468916729092598,
-0.030252819880843163,
0.018821412697434425,
0.020407654345035553,
0.019190391525626183,
-0.027533814311027527,
-0.0138693917542696,
-0.016064951196312904,
0.03143448010087013,
0.02900836057960987,
0.006057286635041237,
0.06386283785104752,
-0.006947288289666176,
0.047638099640607834,
0.062475793063640594,
0.017016401514410973,
0.04641040042042732,
0.036964379251003265,
0.05804947763681412,
0.027293603867292404,
-0.017075883224606514,
0.03830286115407944,
-0.040444012731313705,
0.011534848250448704,
-0.04143437743186951,
0.01871522143483162,
-0.009446490556001663,
-0.02184229902923107,
0.043908946216106415,
-0.0016759951831772923,
0.0006275129853747785,
-0.020264187827706337,
-0.018822290003299713,
-0.04322490841150284,
0.021355649456381798,
0.0010521445656195283,
0.011347109451889992,
0.011920392513275146,
-0.003492334857583046,
-0.008848168887197971,
-0.059316541999578476,
-0.03839614987373352,
0.00025467612431384623,
-0.04576243832707405,
-0.007115104701370001,
-0.08702973276376724,
-0.00748440669849515,
-0.050399236381053925,
0.000758328300435096,
0.048174675554037094,
-0.0030550681985914707,
-0.015133453533053398,
-0.05453632026910782,
0.03001655824482441,
-0.022435875609517097,
-0.036419909447431564,
-0.045170944184064865,
-0.05981231480836868,
-0.036228522658348083,
-0.08674195408821106,
0.015566415153443813,
0.015603652223944664,
0.020786771550774574,
0.0004029619740322232,
0.01713147945702076,
-0.007187425158917904,
-0.02750510163605213,
0.0416623093187809,
0.054616160690784454,
-0.04320704936981201,
-0.0658087506890297,
0.04037954658269882,
-0.013535584323108196,
-0.008568958379328251,
0.0021275717299431562,
-0.026789367198944092,
0.08661989867687225,
0.06548486649990082,
0.017747128382325172,
0.001626306097023189,
-0.05087010934948921,
-0.0495377853512764,
-0.05663958191871643,
-0.00888536125421524,
-0.05180097743868828,
0.004235844127833843,
-0.02818930149078369,
-0.04420709237456322,
-0.017869433388113976,
-0.04962392523884773,
0.012335164472460747,
-0.001972929108887911,
0.005271590314805508,
0.02728879079222679,
0.03409190848469734,
0.024789564311504364,
0.039135053753852844,
-0.02963944338262081,
-0.05956795811653137,
0.07564394176006317,
-0.002787938341498375,
0.0045318142510950565,
-0.0569070428609848,
-0.019877584651112556,
0.05534855276346207,
0.0358244813978672,
0.023999545723199844,
-0.03184806555509567,
0.06829395890235901,
0.013979308307170868,
-0.012203208170831203,
0.01875894144177437,
-0.004669488407671452,
-0.0441182442009449,
-0.01754559762775898,
-0.01218357216566801,
-0.016736546531319618,
-0.03338208794593811,
-0.040245503187179565,
-0.016261395066976547,
0.04225585237145424,
-0.08348920941352844,
-0.03970050439238548,
-0.02021126076579094,
0.03607183322310448,
0.0696815773844719,
0.01824425533413887,
-0.04326994717121124,
-0.008589639328420162,
-0.05975785106420517,
0.003723232541233301,
0.005898099392652512,
0.011751408688724041,
0.0349496528506279,
0.013949517160654068,
0.011025014333426952,
-0.010618171654641628,
0.06453514844179153,
0.035774167627096176,
0.09189675003290176,
0.03383999317884445,
-0.05090733990073204,
-0.00036753102904185653,
-0.013800647109746933,
0.03449525311589241,
-0.0014838043134659529,
0.0027556379791349173,
-0.034266915172338486,
-0.10837948322296143,
-0.017672250047326088,
0.016380062326788902,
0.01395914051681757,
-0.01686897687613964,
0.03998899087309837,
-0.005110437050461769,
-0.0165616013109684,
0.010953985154628754,
0.024043092504143715,
0.057176075875759125,
-0.03223326802253723,
0.06403506547212601,
0.008269828744232655,
0.03786507993936539,
-0.048428505659103394,
0.0034539508633315563,
-0.046440061181783676,
-0.016941320151090622,
0.002024374669417739,
0.06428196281194687,
0.011514237150549889,
0.0651942789554596,
0.0960642471909523,
-0.010802466422319412,
-0.037277866154909134,
0.018790224567055702,
0.06332121789455414,
-0.04056437686085701,
-0.057671573013067245,
-0.006362453103065491,
-0.02929946966469288,
-0.00928516499698162,
-0.004152347799390554,
-0.020981546491384506,
0.04627084732055664,
0.025156475603580475,
0.0003786974120885134,
0.0340641550719738,
0.00424613431096077,
0.005431063007563353,
-0.03807311877608299,
-0.05469677224755287,
-0.02406713366508484,
0.010196102783083916,
-0.028309063985943794,
-0.0004426018858794123,
0.029353266581892967,
0.01015482097864151,
0.053104642778635025,
0.03557774797081947,
-0.0541984997689724,
-0.04579199105501175,
0.01540305931121111,
0.03425139561295509,
-0.0337214469909668,
-0.07503329962491989,
-0.04750791937112808,
0.03603910282254219,
0.02445150353014469,
-0.027281876653432846,
-0.0725870206952095,
0.01314335037022829,
0.05222298204898834,
-0.035380419343709946,
0.05278107523918152,
-0.018673013895750046,
0.038655221462249756,
0.05529042333364487,
-0.015355912037193775,
0.023854203522205353,
-0.019895583391189575,
-0.0005714719300158322,
0.028304534032940865,
0.029080986976623535,
-0.01102275401353836,
-0.05382554978132248,
-0.03735858201980591,
0.019283054396510124,
0.059644732624292374,
0.05711720883846283,
0.04149196669459343,
-0.028314972296357155,
-0.04913139343261719,
-0.012863422743976116,
0.03317999467253685,
-0.035401634871959686,
0.0055061643943190575,
0.03946845605969429,
0.03203440457582474,
-0.055491071194410324,
-0.0455729216337204,
-0.028256351128220558,
-0.018368370831012726,
0.03609360009431839,
-0.014122496359050274,
-0.05020171403884888,
-0.03821959346532822,
0.01999153383076191,
0.007354252971708775,
-0.025687742978334427,
-0.07450492680072784,
0.058339349925518036,
0.005541085731238127,
-0.009146793745458126,
0.0684671476483345,
0.02960432693362236,
0.010228825733065605,
0.07993613928556442,
0.005612228997051716,
0.03379251807928085,
-0.04671327769756317,
0.024992095306515694,
-0.05503193661570549,
-0.023465292528271675,
0.012355218641459942,
-0.05371227115392685,
-0.022550100460648537,
-0.037061624228954315,
-0.024795062839984894,
-0.047201719135046005,
-0.01108806487172842,
0.00110934441909194,
-0.00455686217173934,
-0.027339158579707146,
-0.0015479233115911484,
0.050320230424404144,
-0.03009328991174698,
-0.02949632704257965,
-0.04698842391371727,
-0.02197571098804474,
-0.048509594053030014,
-0.05051694065332413,
0.029451830312609673,
-0.0038552293553948402,
0.04862351343035698,
0.013053348287940025,
0.016553042456507683,
0.021832142025232315,
0.01316058449447155,
-0.019455574452877045,
0.015401383861899376,
0.021081658080220222,
-0.02504081279039383,
-0.010982534848153591,
0.03052348457276821,
0.01693537086248398,
0.018411368131637573,
-0.03056628815829754,
0.03705272078514099,
0.008147697895765305,
-0.006845860742032528,
-0.015207529067993164,
0.022020000964403152,
0.016381576657295227,
-0.06000157818198204,
-0.012120293453335762,
0.0015436263056471944,
-0.053686972707509995,
0.0158859733492136,
-0.027411172166466713,
-0.03118698112666607,
-0.014901570044457912,
0.0008401913801208138,
0.03341924399137497,
-0.006282238755375147,
-0.0138552812859416,
0.01673760637640953,
-0.0059315855614840984,
0.032102249562740326,
-0.04779442399740219,
0.05816749855875969,
-0.03732861950993538,
0.007229213137179613,
-0.0100193340331316,
0.028668303042650223,
-0.06880500912666321,
0.03678731992840767,
-0.01949607953429222,
-0.0182267464697361,
-0.027947062626481056,
0.019106784835457802,
-0.028672439977526665,
0.031803932040929794,
0.006379482802003622,
0.03132827952504158,
-0.016474798321723938,
0.07125882804393768,
-0.047856494784355164,
0.005240201950073242,
-0.02840067259967327,
0.027432307600975037,
-0.03574581444263458,
-0.009659791365265846,
-0.015387611463665962,
-0.022072939202189445,
0.014594297856092453,
0.06733982264995575,
0.03499240428209305,
0.013222211971879005,
-0.033525656908750534,
-0.046619489789009094,
0.03173571079969406,
-0.07328247278928757,
-0.02469535730779171,
-0.025279901921749115,
0.008958449587225914,
-0.0013834648998454213,
0.06457106024026871,
0.04749773442745209,
-0.03222573548555374,
-0.05094796046614647,
0.056024402379989624,
0.007525726221501827,
0.01139021199196577,
0.005886905826628208,
0.022395901381969452,
-0.0020707796793431044,
0.040305230766534805,
-0.03736169636249542,
0.0020879735238850117,
-0.002415400231257081,
-0.046226635575294495,
0.04208008572459221,
-0.0034238516818732023,
0.021466219797730446,
0.004636463243514299,
-0.03542394936084747,
-0.021448273211717606,
0.061358317732810974,
0.05099251866340637,
0.018291831016540527,
-0.017123296856880188,
-0.050773561000823975,
0.04344819858670235,
-0.0032325058709830046,
-0.06055038049817085,
-0.00015430118946824223,
-0.005839862860739231,
-0.01751725748181343,
0.07602257281541824,
-0.017434990033507347,
0.005582393147051334,
0.05371600016951561,
0.03736797347664833,
-0.045404233038425446,
0.016354678198695183,
-0.026412054896354675,
-0.007687820121645927,
0.05284746736288071,
-0.05827852711081505,
-0.0007646455778740346,
-0.017705686390399933,
0.05119004845619202,
-0.05985242500901222,
0.04036938026547432,
0.04510227590799332,
-0.012646582908928394,
0.002443960402160883,
-0.0235784612596035,
-0.041424307972192764,
0.021060505881905556,
-0.02826208993792534,
0.07375570386648178,
-0.0021020639687776566,
-0.0554065965116024,
0.0440138541162014,
-0.0014789511915296316,
-0.05575959384441376,
0.03170217573642731,
0.020302128046751022,
0.05724659934639931,
0.04448196291923523,
0.04863286018371582,
-0.05777726694941521,
0.0132222268730402,
-0.058819498866796494,
0.045948151499032974,
-0.03956969082355499,
-0.004692467395216227,
0.031915292143821716,
-0.03809430077672005,
-0.03341532498598099,
0.06489457935094833,
0.007970035076141357,
-0.007100894581526518,
0.04542136564850807,
-0.05895000323653221,
-0.039469800889492035,
0.011816737242043018,
0.005744745023548603,
-0.03863314911723137,
0.020733656361699104,
-0.042863912880420685,
-0.018054213374853134,
0.01793319545686245,
-0.002575599355623126,
0.005121731664985418,
0.0038126842118799686,
0.029171843081712723,
-0.042911261320114136,
-0.038693998008966446,
0.012253987602889538,
0.02502104640007019,
-0.017181038856506348,
0.043600182980298996,
0.00029394819284789264,
0.03586301580071449,
0.023747671395540237,
-0.005331371445208788,
0.017762774601578712,
-0.031175512820482254,
-0.03892960399389267,
0.02689129300415516,
0.0006472314707934856,
0.04739880561828613,
-0.0036872844211757183,
0.05595286563038826,
0.023604707792401314,
0.04238094016909599,
-0.022940533235669136,
-0.023141037672758102,
-0.04959665611386299,
0.017127227038145065,
-0.035235144197940826,
0.026331864297389984,
-0.004846868105232716,
-0.058487582951784134,
-0.04845548793673515,
-0.014495761133730412,
-0.042719703167676926,
0.015018858015537262,
-0.07094226032495499,
-0.006539257243275642,
0.03446853160858154,
0.014390249736607075,
-0.054160453379154205,
-0.0860673263669014,
-0.038263093680143356,
-0.04557833448052406,
0.005423252005130053,
0.020671097561717033,
-0.03534543886780739,
0.03238349035382271,
-0.032194074243307114,
-0.058280978351831436,
0.047434087842702866,
0.0015408311737701297,
-0.03967463970184326,
0.025560205802321434,
0.03889908269047737,
-0.05456237494945526,
-0.00026892515597864985,
0.02543860673904419,
-0.034119877964258194,
0.007548476103693247,
0.011305765248835087,
0.00305022019892931,
0.034716349095106125,
0.012478593736886978,
-0.050991617143154144,
-0.035132940858602524,
-0.06479508429765701,
-0.04300260916352272,
-0.0557476244866848,
0.020273594185709953,
0.06911186128854752
] |
Babelscape/rebel-large | [
"pytorch",
"safetensors",
"bart",
"text2text-generation",
"en",
"dataset:Babelscape/rebel-dataset",
"transformers",
"seq2seq",
"relation-extraction",
"license:cc-by-nc-sa-4.0",
"model-index",
"autotrain_compatible",
"has_space"
] | text2text-generation | {
"architectures": [
"BartForConditionalGeneration"
],
"model_type": "bart",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 9,458 | null | ---
tags:
- LunarLander-v2
- ppo
- deep-reinforcement-learning
- reinforcement-learning
- custom-implementation
- deep-rl-course
model-index:
- name: PPO
results:
- task:
type: reinforcement-learning
name: reinforcement-learning
dataset:
name: LunarLander-v2
type: LunarLander-v2
metrics:
- type: mean_reward
value: -37.96 +/- 96.58
name: mean_reward
verified: false
---
# PPO Agent Playing LunarLander-v2
This is a trained model of a PPO agent playing LunarLander-v2.
# Hyperparameters
```python
{'exp_name': 'ppo'
'seed': 1
'torch_deterministic': True
'cuda': True
'track': False
'wandb_project_name': 'cleanRL'
'wandb_entity': None
'capture_video': False
'env_id': 'LunarLander-v2'
'total_timesteps': 500000
'learning_rate': 0.00025
'num_envs': 4
'num_steps': 128
'anneal_lr': True
'gae': True
'gamma': 0.99
'gae_lambda': 0.95
'num_minibatches': 4
'update_epochs': 4
'norm_adv': True
'clip_coef': 0.2
'clip_vloss': True
'ent_coef': 0.01
'vf_coef': 0.5
'max_grad_norm': 0.5
'target_kl': None
'repo_id': 'irow/ppo-LunarLander-v2'
'batch_size': 512
'minibatch_size': 128}
```
| [
-0.007829193957149982,
0.006073124706745148,
-0.016631579026579857,
0.0164193045347929,
0.05895008146762848,
-0.028392134234309196,
0.007711767219007015,
-0.03396731987595558,
-0.026625938713550568,
0.06594094634056091,
0.027584118768572807,
-0.02802243083715439,
-0.0010448176180943847,
0.027568530291318893,
-0.03547681123018265,
-0.054518621414899826,
-0.01984613947570324,
-0.005836320575326681,
-0.0383642204105854,
0.009776950813829899,
-0.015689413994550705,
0.03705678880214691,
-0.025981754064559937,
0.01818680204451084,
0.012729816138744354,
0.02231728658080101,
0.013577493838965893,
0.028910450637340546,
-0.0013343831524252892,
-0.0754927396774292,
-0.023724962025880814,
-0.02269819751381874,
-0.04197756573557854,
-0.00939520075917244,
-0.016378581523895264,
-0.005963961593806744,
0.00035703828325495124,
0.007114777807146311,
0.02473745308816433,
0.029229579493403435,
-0.0006714220508001745,
0.009965707547962666,
-0.0004734845133498311,
-0.022995546460151672,
0.019581645727157593,
0.002158958464860916,
-0.0381571426987648,
0.01846139132976532,
0.026593394577503204,
-0.006824829615652561,
-0.05176731199026108,
-0.055852096527814865,
-0.0009775094222277403,
0.012599794194102287,
-0.009627005085349083,
-0.0037651194725185633,
-0.06937302649021149,
-0.013547331094741821,
0.06378181278705597,
-0.046220239251852036,
-0.04157001152634621,
-0.005626723635941744,
-0.04835427924990654,
0.013452085666358471,
0.008137675002217293,
-0.006036302074790001,
0.009214158169925213,
-0.05634673684835434,
0.04308518022298813,
-0.013688578270375729,
0.06489314883947372,
-0.04196667671203613,
0.009318242780864239,
-0.0830351859331131,
0.014256080612540245,
0.006944496184587479,
0.03916199505329132,
0.016830438748002052,
-0.036342985928058624,
0.07847428321838379,
0.05048110708594322,
0.005719888024032116,
0.018411045894026756,
-0.007716844789683819,
-0.0004843269707635045,
0.006080457475036383,
-0.01800154708325863,
0.007935339584946632,
0.02624540589749813,
0.05435370281338692,
-0.0032710374798625708,
-0.032302454113960266,
-0.04183323308825493,
-0.012102927081286907,
-0.012402018532156944,
0.01703382283449173,
0.03818512707948685,
-0.02519693225622177,
0.0530809611082077,
0.013536905869841576,
0.02735024504363537,
0.05007314682006836,
-0.02812444232404232,
0.08043859153985977,
0.002268071984872222,
-0.021966014057397842,
-0.018449436873197556,
-0.014915681444108486,
-0.03726577013731003,
0.03247056156396866,
0.021962348371744156,
-0.030790170654654503,
-0.033362552523612976,
0.05355298891663551,
0.02061045728623867,
0.008003752678632736,
0.053194936364889145,
-0.026048941537737846,
-0.05801524594426155,
-0.07674182951450348,
0.06782146543264389,
0.02213784120976925,
-0.005852739792317152,
-0.007761678192764521,
-0.00952677708119154,
-0.010365383699536324,
-0.0634259283542633,
-0.02110799215734005,
-0.00672055734321475,
0.036468807607889175,
-0.009593440219759941,
0.024169472977519035,
0.0195842944085598,
-0.06948211789131165,
0.02731386013329029,
-0.014794465154409409,
-0.08943998068571091,
0.01611442118883133,
-0.0013463590294122696,
0.09999310225248337,
-0.04506572335958481,
-0.0778731182217598,
0.02773362398147583,
-0.031940165907144547,
-0.03710426017642021,
-0.007707214914262295,
-0.02290571667253971,
-0.04050799831748009,
-0.017210550606250763,
-0.015065732412040234,
0.07382673770189285,
-0.05045993998646736,
-0.014470995403826237,
0.06935678422451019,
0.02239602990448475,
0.02670522779226303,
-0.006767678074538708,
-0.005535382777452469,
0.00670394953340292,
-0.03214384987950325,
-0.0039987326599657536,
0.047537390142679214,
-0.024991441518068314,
0.008125283755362034,
-0.038021303713321686,
-0.04535483196377754,
-0.011124169453978539,
0.07617541402578354,
-0.0031510284170508385,
-0.03290284797549248,
-0.041613996028900146,
0.03197842463850975,
0.034738555550575256,
0.008460399694740772,
-0.004753335379064083,
0.03789068013429642,
0.06584177166223526,
0.014757370576262474,
-0.04149716719985008,
0.03129107505083084,
0.04664295166730881,
-0.02321113832294941,
-0.020137323066592216,
0.015742328017950058,
0.0049497163854539394,
0.005692355800420046,
0.0046527693048119545,
0.025932082906365395,
0.00003340785042382777,
-0.03402712196111679,
-0.009350677952170372,
0.03859889507293701,
0.011107745580375195,
-0.012929338030517101,
-0.014768915250897408,
0.012669962830841541,
0.0008432879694737494,
0.055617522448301315,
-0.009489567019045353,
-0.00025133517920039594,
-0.002184260869398713,
-0.020440585911273956,
0.018257543444633484,
0.010828536003828049,
0.023013442754745483,
0.018318504095077515,
-0.0037236602511256933,
0.11043132096529007,
-0.04592699185013771,
0.03703824430704117,
-0.07037042081356049,
-0.04979117959737778,
0.014714482240378857,
0.055485066026449203,
0.04504042863845825,
0.013806094415485859,
0.004418134689331055,
-0.02641533873975277,
0.04882374405860901,
0.04764854535460472,
0.06416714936494827,
0.01206088438630104,
-0.05627203360199928,
-0.03053421340882778,
0.01604069024324417,
0.04337046295404434,
-0.03445959836244583,
-0.04055199772119522,
0.02048385888338089,
0.04402873292565346,
0.007882901467382908,
0.018710043281316757,
-0.02906118519604206,
0.019502267241477966,
-0.03419703617691994,
-0.05956301465630531,
0.04292639344930649,
0.023316113278269768,
0.01441722922027111,
0.018485460430383682,
0.017961690202355385,
0.014344550669193268,
0.0257298294454813,
0.02537236548960209,
0.008241514675319195,
-0.026049524545669556,
0.0008251069230027497,
0.02316398359835148,
0.0694715678691864,
-0.045703303068876266,
0.046482622623443604,
-0.023838499560952187,
-0.011883653700351715,
0.050841037184000015,
-0.05843266844749451,
0.010755572468042374,
0.06061042100191116,
0.022659046575427055,
-0.00677203806117177,
0.011303817853331566,
0.0019196197390556335,
0.0360531248152256,
0.04148402065038681,
-0.027024950832128525,
0.0555153451859951,
0.006139205303043127,
0.05539049953222275,
0.051458682864904404,
0.00791232194751501,
0.005224285181611776,
-0.002429888816550374,
0.06852956861257553,
0.006402596831321716,
-0.022098615765571594,
0.029081763699650764,
-0.0318051315844059,
0.013600370846688747,
-0.02922377549111843,
0.0018269901629537344,
-0.02110012248158455,
0.006512153893709183,
0.04923436790704727,
0.018245145678520203,
-0.04257829859852791,
0.0014287895755842328,
-0.003397627267986536,
-0.030209718272089958,
-0.0004482649965211749,
-0.029542183503508568,
0.009126846678555012,
-0.009473194368183613,
0.008490793406963348,
0.006384746171534061,
-0.08162655681371689,
-0.0930827334523201,
-0.02225944772362709,
-0.0037607806734740734,
-0.018382081761956215,
-0.08540596067905426,
-0.03445914015173912,
-0.05033702403306961,
0.009252650663256645,
0.02509518340229988,
-0.008332624100148678,
-0.010834109969437122,
-0.044382888823747635,
0.010187262669205666,
-0.07203890383243561,
-0.024402905255556107,
-0.047523315995931625,
-0.05165867134928703,
-0.05954393744468689,
-0.08720290660858154,
0.010265626013278961,
0.03441520035266876,
0.02815462090075016,
0.013772859238088131,
-0.0003326770674902946,
-0.04774167016148567,
-0.017527006566524506,
0.05587633326649666,
0.05247841402888298,
-0.014778164215385914,
-0.05013950541615486,
0.021786674857139587,
-0.009912150911986828,
-0.000017333191863144748,
-0.012674110010266304,
-0.026097651571035385,
0.08061321079730988,
0.06971243768930435,
-0.002998152282088995,
0.008312402293086052,
-0.021768998354673386,
-0.05018781125545502,
-0.040779028087854385,
-0.05150869861245155,
-0.05767253786325455,
-0.008520652540028095,
-0.05338640138506889,
-0.02676500380039215,
-0.018687672913074493,
-0.01815134845674038,
-0.0021569165401160717,
-0.022459618747234344,
0.011980220675468445,
0.0633472353219986,
0.06311368197202682,
0.02475031092762947,
0.03277016803622246,
-0.08200324326753616,
-0.038525793701410294,
0.059346504509449005,
-0.015106916427612305,
0.020680828019976616,
-0.053592365235090256,
-0.011045780964195728,
-0.002804928459227085,
0.013046667911112309,
-0.010625051334500313,
0.03242943808436394,
0.06083666533231735,
0.030174732208251953,
-0.0174839086830616,
0.020955316722393036,
-0.03397927060723305,
-0.03361665830016136,
-0.036618322134017944,
-0.012344777584075928,
-0.031266264617443085,
-0.0034805545583367348,
0.020055541768670082,
-0.01686662621796131,
0.014896245673298836,
-0.041326865553855896,
-0.0578170046210289,
-0.036184608936309814,
0.02480257861316204,
0.036869123578071594,
0.022473759949207306,
-0.05075382441282272,
-0.02674923650920391,
-0.06151929870247841,
0.026599248871207237,
0.03264017030596733,
0.011811437085270882,
-0.006782623939216137,
0.04051562026143074,
0.04567185044288635,
-0.01631082035601139,
0.035275060683488846,
0.04186481237411499,
0.05795774608850479,
0.005547583103179932,
-0.05275464802980423,
0.0016249907203018665,
-0.01877502351999283,
0.03732268512248993,
-0.003300630720332265,
-0.011752456426620483,
-0.02823599800467491,
-0.10356871038675308,
-0.02182813361287117,
0.024199074134230614,
-0.021936990320682526,
-0.022872542962431908,
0.03304591029882431,
0.0014511807821691036,
0.008382166735827923,
-0.012388857081532478,
-0.008004161529242992,
0.05823112651705742,
-0.06460877507925034,
0.04075802490115166,
-0.010955216363072395,
0.026133831590414047,
-0.054489001631736755,
0.01826372556388378,
-0.0060515254735946655,
-0.010866004042327404,
0.024536380544304848,
0.04217388853430748,
0.042040612548589706,
0.05289554223418236,
0.059167202562093735,
0.026344623416662216,
-0.05227259173989296,
0.026850378140807152,
0.06783117353916168,
-0.03757466748356819,
-0.06785158812999725,
-0.02950947917997837,
0.01320970430970192,
-0.016375744715332985,
0.008551118895411491,
0.00247480277903378,
0.04728176072239876,
0.042248960584402084,
-0.008480447344481945,
-0.024046042934060097,
0.02871798723936081,
-0.014648803509771824,
-0.031208191066980362,
-0.011175288818776608,
-0.018939660862088203,
0.022178927436470985,
-0.011044667102396488,
0.008535049855709076,
0.0400710254907608,
0.03594134747982025,
0.03362836688756943,
0.05517983064055443,
-0.03226872906088829,
-0.04177991300821304,
0.04281448572874069,
0.00008602102025179192,
-0.025246670469641685,
-0.05726765841245651,
-0.010885451920330524,
0.05658398196101189,
0.03904592618346214,
-0.026900209486484528,
-0.08261314034461975,
0.0017666110070422292,
0.06295149773359299,
-0.05165954306721687,
0.05708301067352295,
-0.006265691481530666,
0.026676081120967865,
0.04976637288928032,
0.011033535934984684,
0.037564050406217575,
-0.03326408565044403,
-0.004608933813869953,
0.0033187582157552242,
0.036164164543151855,
0.009030558168888092,
-0.024091342464089394,
-0.04392509534955025,
0.030442344024777412,
0.028436405584216118,
0.09177820384502411,
0.02368389442563057,
-0.0567108616232872,
-0.046481408178806305,
-0.016291508451104164,
0.02836981788277626,
-0.05227779969573021,
0.00849468819797039,
0.03695421665906906,
0.029785452410578728,
-0.06056898459792137,
-0.045119769871234894,
-0.029282821342349052,
0.00007437467866111547,
0.03248181566596031,
0.0008954860386438668,
-0.010972942225635052,
-0.023316219449043274,
0.059933140873909,
0.0040370505303144455,
-0.021674051880836487,
-0.07046717405319214,
0.021899985149502754,
-0.005018376279622316,
0.013456273823976517,
0.018988357856869698,
0.013078039512038231,
0.04645974561572075,
0.0715169757604599,
0.03876722604036331,
0.01919049210846424,
-0.02695351466536522,
0.03401094675064087,
-0.03263944014906883,
-0.009632092900574207,
0.0032225502654910088,
-0.061518821865320206,
-0.00038031398435123265,
-0.01185668259859085,
-0.0481453463435173,
-0.04040083661675453,
-0.04982367157936096,
0.0351434126496315,
-0.004279167391359806,
-0.01734810508787632,
-0.007931633852422237,
0.06499101221561432,
0.007775096222758293,
-0.05518346279859543,
-0.030630040913820267,
-0.027230406180024147,
-0.04442078620195389,
-0.05864492803812027,
0.01980619505047798,
-0.003352173836901784,
0.009452130645513535,
0.031550388783216476,
0.04938727617263794,
0.024191342294216156,
0.026334742084145546,
-0.015609005466103554,
0.0621330700814724,
0.00963038019835949,
-0.03313069045543671,
0.023535549640655518,
0.04905048757791519,
0.00020013995526824147,
0.05062098056077957,
-0.01131946500390768,
0.03642165660858154,
0.017139598727226257,
-0.026778988540172577,
-0.0054131727665662766,
0.01750783622264862,
0.018862903118133545,
-0.0459463931620121,
-0.025758709758520126,
0.014014191925525665,
-0.04436105117201805,
0.022021861746907234,
-0.023805709555745125,
-0.009259597398340702,
-0.036482494324445724,
0.0034453351981937885,
0.022070009261369705,
-0.011297750286757946,
-0.04327007755637169,
0.030463088303804398,
-0.037238795310258865,
0.029333006590604782,
-0.05605219677090645,
0.026655025780200958,
-0.02171100303530693,
0.03383301571011543,
-0.013945512473583221,
-0.04511265084147453,
-0.04322103410959244,
0.03484596684575081,
-0.00426450464874506,
-0.023516444489359856,
-0.01084758248180151,
0.03191722556948662,
-0.015569726936519146,
0.03401537612080574,
-0.027931097894906998,
0.03423984721302986,
-0.030380209907889366,
0.04066663980484009,
-0.01984463632106781,
0.011812799610197544,
-0.005166077520698309,
0.051409170031547546,
-0.03835798054933548,
0.031575366854667664,
-0.027387036010622978,
-0.03798671439290047,
0.026224711909890175,
0.08878448605537415,
-0.004024873487651348,
0.03211301565170288,
-0.011055382899940014,
0.01590774953365326,
-0.007938975468277931,
-0.03106563724577427,
-0.03907819464802742,
-0.018200961872935295,
-0.01327266450971365,
-0.006812623701989651,
0.03668298199772835,
0.04641324281692505,
-0.07371865957975388,
-0.039530858397483826,
0.041592687368392944,
0.014461032114923,
0.027638381347060204,
0.00568257924169302,
0.019646845757961273,
0.0439322292804718,
0.04948267713189125,
-0.045115869492292404,
0.01742318645119667,
-0.003575393930077553,
-0.01096984464675188,
0.03479808568954468,
-0.00973445549607277,
0.03530349209904671,
0.011771416291594505,
-0.03932643681764603,
-0.010016145184636116,
0.08138871192932129,
0.04275548830628395,
0.003702197689563036,
-0.03444076329469681,
-0.01111258938908577,
0.036268047988414764,
-0.006738745607435703,
-0.03283504769206047,
0.009504906833171844,
0.02881752699613571,
-0.02080242894589901,
0.06865023821592331,
-0.028943240642547607,
0.013655624352395535,
0.06305249035358429,
0.04183211177587509,
0.00554459635168314,
0.08435425907373428,
-0.012263708747923374,
0.034398939460515976,
0.04483238607645035,
-0.08807652443647385,
-0.0004038827319163829,
-0.03840078413486481,
0.0806112065911293,
-0.09351908415555954,
0.09142019599676132,
0.034923650324344635,
0.01985807903110981,
0.0025764363817870617,
-0.027816323563456535,
-0.05336695909500122,
0.014966960996389389,
-0.04370962083339691,
0.0888049453496933,
0.019122211262583733,
-0.045071449130773544,
0.07421085983514786,
0.025050481781363487,
-0.06073000282049179,
0.057770900428295135,
0.022690780460834503,
0.019227635115385056,
0.023105520755052567,
0.03491026163101196,
-0.04254435375332832,
0.022733192890882492,
-0.06290704756975174,
0.060266222804784775,
-0.046844881027936935,
-0.01090241689234972,
0.014824205078184605,
-0.03714296594262123,
-0.009063180536031723,
0.041087184101343155,
-0.002711961278691888,
-0.025760313495993614,
0.006845888216048479,
-0.0690658763051033,
-0.06184261292219162,
0.006546724122017622,
0.018104244023561478,
-0.0002029289462370798,
0.017906028777360916,
-0.02243725024163723,
0.02931779995560646,
0.029641518369317055,
0.007815161719918251,
-0.03201823681592941,
-0.02012377791106701,
0.03310680761933327,
-0.0644504502415657,
-0.004554687533527613,
0.04364892467856407,
0.006524486932903528,
-0.03843618556857109,
0.02338344231247902,
0.00315832975320518,
-0.011684464290738106,
0.00023409748973790556,
0.007580723613500595,
-0.003945336677134037,
-0.05929805710911751,
-0.029346592724323273,
0.023298943415284157,
0.0060765561647713184,
0.004452552180737257,
-0.009339666925370693,
0.027383854612708092,
0.03454119712114334,
0.040244635194540024,
0.015325010754168034,
-0.03397015109658241,
-0.0056460024788975716,
0.0340641625225544,
-0.06165619194507599,
0.028675932437181473,
-0.002895038342103362,
-0.05091650411486626,
-0.021952040493488312,
-0.026275034993886948,
-0.01836225390434265,
-0.005195633042603731,
-0.028725486248731613,
-0.02930416539311409,
0.02188682183623314,
0.014058242551982403,
-0.0471433661878109,
-0.07975766807794571,
-0.012832836247980595,
-0.03858725354075432,
0.04107820242643356,
0.03752630576491356,
-0.032723087817430496,
-0.006418190896511078,
-0.037294674664735794,
-0.03726528212428093,
0.05613885074853897,
0.02632131613790989,
-0.02301678992807865,
0.04110470041632652,
0.0336289219558239,
-0.018930476158857346,
0.015056298114359379,
0.016081126406788826,
-0.05689973384141922,
0.028707338497042656,
0.009078731760382652,
0.016520613804459572,
0.01271096896380186,
0.006224560085684061,
-0.022651800885796547,
-0.009351330809295177,
-0.036620404571294785,
-0.025944670662283897,
-0.016591694205999374,
0.023040320724248886,
0.05063818767666817
] |
Bagus/wav2vec2-xlsr-japanese-speech-emotion-recognition | [
"pytorch",
"wav2vec2",
"audio-classification",
"ja",
"dataset:jtes",
"transformers",
"audio",
"speech",
"speech-emotion-recognition",
"has_space"
] | audio-classification | {
"architectures": [
"HubertForSequenceClassification"
],
"model_type": "wav2vec2",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 26 | null | ---
tags:
- generated_from_trainer
metrics:
- precision
- recall
- f1
- accuracy
model-index:
- name: tabert-4k-naamapadam
results: []
---
<!-- 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. -->
# tabert-4k-naamapadam
This model is a fine-tuned version of [livinNector/tabert-4k](https://huggingface.co/livinNector/tabert-4k) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 0.2805
- Precision: 0.7758
- Recall: 0.8034
- F1: 0.7894
- Accuracy: 0.9077
## 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: 64
- eval_batch_size: 128
- 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 | Precision | Recall | F1 | Accuracy |
|:-------------:|:-----:|:-----:|:---------------:|:---------:|:------:|:------:|:--------:|
| 0.4467 | 0.05 | 400 | 0.3882 | 0.7144 | 0.6655 | 0.6891 | 0.8755 |
| 0.3775 | 0.1 | 800 | 0.3540 | 0.7122 | 0.7155 | 0.7138 | 0.8845 |
| 0.3571 | 0.15 | 1200 | 0.3432 | 0.7329 | 0.7266 | 0.7297 | 0.8872 |
| 0.3461 | 0.21 | 1600 | 0.3360 | 0.7252 | 0.7368 | 0.7309 | 0.8893 |
| 0.3456 | 0.26 | 2000 | 0.3359 | 0.7388 | 0.7470 | 0.7428 | 0.8896 |
| 0.3318 | 0.31 | 2400 | 0.3298 | 0.7460 | 0.7435 | 0.7447 | 0.8908 |
| 0.326 | 0.36 | 2800 | 0.3255 | 0.7490 | 0.7391 | 0.7440 | 0.8940 |
| 0.3264 | 0.41 | 3200 | 0.3243 | 0.7493 | 0.7605 | 0.7549 | 0.8953 |
| 0.3189 | 0.46 | 3600 | 0.3231 | 0.7305 | 0.7715 | 0.7504 | 0.8936 |
| 0.3119 | 0.51 | 4000 | 0.3125 | 0.7645 | 0.7525 | 0.7584 | 0.8985 |
| 0.3111 | 0.57 | 4400 | 0.3100 | 0.7479 | 0.7729 | 0.7602 | 0.8970 |
| 0.3088 | 0.62 | 4800 | 0.3148 | 0.7510 | 0.7749 | 0.7628 | 0.8966 |
| 0.3047 | 0.67 | 5200 | 0.3089 | 0.7581 | 0.7728 | 0.7654 | 0.8981 |
| 0.3054 | 0.72 | 5600 | 0.3073 | 0.7615 | 0.7709 | 0.7662 | 0.8990 |
| 0.3028 | 0.77 | 6000 | 0.3066 | 0.7466 | 0.7835 | 0.7646 | 0.8984 |
| 0.3007 | 0.82 | 6400 | 0.3035 | 0.7555 | 0.7791 | 0.7671 | 0.8995 |
| 0.2923 | 0.87 | 6800 | 0.3004 | 0.7647 | 0.7829 | 0.7737 | 0.9008 |
| 0.2927 | 0.93 | 7200 | 0.3050 | 0.7700 | 0.7646 | 0.7673 | 0.9002 |
| 0.2949 | 0.98 | 7600 | 0.2979 | 0.7686 | 0.7723 | 0.7704 | 0.9014 |
| 0.2758 | 1.03 | 8000 | 0.3013 | 0.7713 | 0.7783 | 0.7748 | 0.9030 |
| 0.2699 | 1.08 | 8400 | 0.3019 | 0.7503 | 0.7997 | 0.7742 | 0.9017 |
| 0.2688 | 1.13 | 8800 | 0.3002 | 0.7593 | 0.7940 | 0.7762 | 0.9017 |
| 0.2625 | 1.18 | 9200 | 0.2926 | 0.7590 | 0.7941 | 0.7762 | 0.9033 |
| 0.2671 | 1.23 | 9600 | 0.2922 | 0.7640 | 0.8019 | 0.7825 | 0.9043 |
| 0.267 | 1.29 | 10000 | 0.2895 | 0.7719 | 0.7877 | 0.7797 | 0.9044 |
| 0.2611 | 1.34 | 10400 | 0.2897 | 0.7704 | 0.7978 | 0.7839 | 0.9053 |
| 0.2666 | 1.39 | 10800 | 0.2896 | 0.7688 | 0.7887 | 0.7786 | 0.9042 |
| 0.2563 | 1.44 | 11200 | 0.2894 | 0.7672 | 0.7981 | 0.7823 | 0.9045 |
| 0.2598 | 1.49 | 11600 | 0.2841 | 0.7705 | 0.7960 | 0.7831 | 0.9058 |
| 0.2549 | 1.54 | 12000 | 0.2854 | 0.7695 | 0.7975 | 0.7832 | 0.9065 |
| 0.2558 | 1.59 | 12400 | 0.2873 | 0.7619 | 0.8108 | 0.7856 | 0.9045 |
| 0.2564 | 1.65 | 12800 | 0.2863 | 0.7757 | 0.7897 | 0.7826 | 0.9062 |
| 0.2618 | 1.7 | 13200 | 0.2860 | 0.7778 | 0.7899 | 0.7838 | 0.9066 |
| 0.2659 | 1.75 | 13600 | 0.2831 | 0.7748 | 0.8013 | 0.7879 | 0.9073 |
| 0.254 | 1.8 | 14000 | 0.2811 | 0.7761 | 0.7978 | 0.7868 | 0.9079 |
| 0.2628 | 1.85 | 14400 | 0.2807 | 0.7713 | 0.8028 | 0.7868 | 0.9069 |
| 0.2552 | 1.9 | 14800 | 0.2806 | 0.7756 | 0.7990 | 0.7872 | 0.9077 |
| 0.2568 | 1.95 | 15200 | 0.2805 | 0.7758 | 0.8034 | 0.7894 | 0.9077 |
### Framework versions
- Transformers 4.29.2
- Pytorch 2.0.0
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.014903935603797436,
0.00833254773169756,
-0.007130641024559736,
0.03688783198595047,
0.03015773557126522,
0.018814431503415108,
-0.01927994005382061,
-0.02372738905251026,
-0.043825458735227585,
0.059993356466293335,
0.02529156021773815,
-0.04963524267077446,
0.03511835262179375,
0.033605076372623444,
-0.05233299732208252,
-0.022209549322724342,
-0.019129376858472824,
-0.01308458112180233,
-0.04046113044023514,
0.014009309932589531,
-0.0038371069822460413,
-0.0094266626983881,
-0.013435812667012215,
0.016780197620391846,
0.0028998288325965405,
0.013052570633590221,
0.0016321394359692931,
0.01763474941253662,
0.022699153050780296,
-0.0823468342423439,
0.004719915799796581,
-0.051591139286756516,
-0.0541035495698452,
-0.017749693244695663,
-0.022281238809227943,
0.004168270621448755,
-0.0029920083470642567,
0.015431646257638931,
0.03829977661371231,
0.0589473582804203,
-0.005651979707181454,
0.02618982084095478,
-0.03588828071951866,
-0.01893290877342224,
0.053136155009269714,
0.008855177089571953,
-0.03609905019402504,
0.00583992013707757,
0.02775697596371174,
-0.012310054153203964,
-0.06858595460653305,
-0.04666348919272423,
-0.03757265955209732,
0.015532423742115498,
-0.011094692163169384,
-0.010678714141249657,
-0.04533405229449272,
-0.01827770099043846,
0.06978371739387512,
-0.04509594663977623,
-0.04259475693106651,
0.007975175976753235,
-0.07868722826242447,
0.00705384835600853,
0.04557161405682564,
-0.020627187564969063,
0.026873933151364326,
-0.062379006296396255,
0.023121384903788567,
-0.011680862866342068,
0.05129605531692505,
-0.03304484114050865,
0.01175012718886137,
-0.06828811019659042,
-0.010018087923526764,
-0.005809555295854807,
0.040627412497997284,
0.06027952581644058,
-0.03327873721718788,
0.0400579497218132,
0.02144571766257286,
-0.022189809009432793,
0.05151915177702904,
-0.017301278188824654,
0.0053034937009215355,
0.025718772783875465,
-0.037579793483018875,
0.0010554774198681116,
0.02211855724453926,
0.03791132941842079,
-0.032588087022304535,
-0.026176631450653076,
-0.02199801243841648,
-0.018009167164564133,
-0.0208998192101717,
0.017143454402685165,
0.038338612765073776,
0.0142603674903512,
0.03955065459012985,
0.0054069459438323975,
0.0431085005402565,
0.022133149206638336,
-0.0032343596685677767,
0.07877606898546219,
-0.013906543143093586,
-0.01629353128373623,
-0.023203566670417786,
-0.019135331735014915,
-0.030750995501875877,
0.02170551009476185,
0.018725696951150894,
-0.041096679866313934,
-0.030183715745806694,
0.030247889459133148,
0.004868040792644024,
-0.01517275907099247,
0.06334799528121948,
-0.02705448493361473,
-0.046602509915828705,
-0.03942153602838516,
0.045752719044685364,
0.01998438872396946,
-0.0065922001376748085,
-0.013881941325962543,
-0.04869193956255913,
-0.014312144368886948,
-0.022331910207867622,
-0.04141200706362724,
0.008843079209327698,
0.0036419022362679243,
-0.00429078284651041,
0.0534631684422493,
0.0035053167957812548,
-0.08390593528747559,
-0.007034251932054758,
0.010382740758359432,
-0.025279119610786438,
0.03678840398788452,
0.007210136391222477,
0.09299365431070328,
-0.0396476611495018,
-0.08238864690065384,
0.01769433729350567,
-0.002481372794136405,
-0.014274808578193188,
0.0072625926695764065,
0.029014376923441887,
-0.015705471858382225,
-0.01737578958272934,
-0.010806911624968052,
0.054134026169776917,
-0.07963721454143524,
-0.009906075894832611,
0.07374214380979538,
0.023569170385599136,
0.03707308694720268,
-0.05454722046852112,
-0.03145667165517807,
0.027423154562711716,
-0.007715917192399502,
0.00044261274160817266,
0.029033713042736053,
-0.009498030878603458,
-0.01626046560704708,
-0.031855903565883636,
-0.039565518498420715,
0.006881343200802803,
0.0783463791012764,
-0.004543764051049948,
-0.023470574989914894,
-0.011037947610020638,
0.02663521282374859,
0.043419599533081055,
0.025692522525787354,
-0.027412908151745796,
0.03666301816701889,
0.07089532166719437,
0.02096646837890148,
-0.04177771881222725,
0.03910885378718376,
0.014456863515079021,
-0.04399820417165756,
-0.015904363244771957,
0.03010883927345276,
0.00013881444465368986,
-0.05095167085528374,
0.02438773214817047,
0.014936696738004684,
0.01646982878446579,
-0.06125130504369736,
-0.03961288183927536,
0.0520956888794899,
0.001386043382808566,
-0.00478469580411911,
-0.003169940086081624,
0.005030512809753418,
-0.02865089289844036,
0.039015091955661774,
-0.012243377976119518,
0.019766125828027725,
-0.030374983325600624,
-0.013975336216390133,
0.03373686596751213,
-0.004760734271258116,
0.021628979593515396,
0.050911154597997665,
-0.01715710386633873,
0.07766667753458023,
-0.05602651834487915,
0.022037489339709282,
-0.022142570465803146,
-0.04566105082631111,
0.027764467522501945,
0.0754304751753807,
0.043938081711530685,
0.05247319117188454,
0.016856485977768898,
-0.04922545701265335,
0.04689501225948334,
0.05754157155752182,
0.05195717141032219,
-0.002766876481473446,
-0.026848725974559784,
-0.007545822765678167,
0.04470336437225342,
0.034246135503053665,
-0.06840455532073975,
-0.02899562194943428,
0.030336642637848854,
0.052843376994132996,
-0.011932740919291973,
0.010913615114986897,
-0.03630045801401138,
0.04916241392493248,
-0.0721416249871254,
-0.0674128383398056,
0.04640072584152222,
0.026351742446422577,
0.004555358085781336,
0.038904134184122086,
0.012582601979374886,
0.007411586586385965,
0.03758376091718674,
0.011669188737869263,
-0.0030788059812039137,
-0.038090337067842484,
0.01831137202680111,
0.0035053188912570477,
0.04302886500954628,
-0.037938155233860016,
0.04248468205332756,
-0.025275062769651413,
0.0015483844326809049,
0.0381578765809536,
-0.04927899315953255,
0.02884569950401783,
0.034766070544719696,
0.04520339518785477,
-0.03871062025427818,
0.011694894172251225,
-0.00014655165432486683,
0.008802584372460842,
0.03478386998176575,
-0.010955837555229664,
0.06715235114097595,
-0.007156962528824806,
0.031477782875299454,
0.07508896291255951,
0.0063195847906172276,
0.028468936681747437,
0.022329241037368774,
0.08211919665336609,
0.035864003002643585,
-0.01005391776561737,
0.050295766443014145,
-0.04855971038341522,
0.01593451201915741,
-0.05809991806745529,
0.01229855790734291,
-0.014507010579109192,
0.014356874860823154,
0.04089108482003212,
0.02972174808382988,
-0.02503879740834236,
-0.013528887182474136,
0.007064896635711193,
-0.02061309851706028,
0.02758660726249218,
-0.0007900194032117724,
-0.012771186418831348,
-0.006876761093735695,
0.00579433050006628,
0.00011318064207443967,
-0.06925585120916367,
-0.021654663607478142,
-0.028311418369412422,
-0.03201385214924812,
-0.025924354791641235,
-0.09425260126590729,
-0.0031231290195137262,
-0.058221131563186646,
-0.03836403414607048,
0.024676045402884483,
0.010205812752246857,
-0.008910398930311203,
-0.05577386915683746,
0.024635475128889084,
-0.044099293649196625,
-0.04267093911767006,
-0.04825141280889511,
-0.05353110656142235,
-0.03836486116051674,
-0.0853048712015152,
0.025355417281389236,
0.04421168565750122,
0.0012058318825438619,
-0.000592490250710398,
0.006590995471924543,
0.006329597905278206,
-0.025667252019047737,
0.044086407870054245,
0.0648387223482132,
-0.020937563851475716,
-0.031110579147934914,
0.03713163733482361,
-0.009460853412747383,
0.021526452153921127,
-0.013949917629361153,
-0.04767685383558273,
0.10445047914981842,
0.07872875779867172,
0.0028023715130984783,
0.0007041080389171839,
-0.020494909957051277,
-0.05875318497419357,
-0.051380667835474014,
-0.04161091148853302,
-0.049789413809776306,
-0.01797856017947197,
-0.04584367945790291,
-0.04907689243555069,
-0.005403205752372742,
-0.041626933962106705,
-0.0026087365113198757,
-0.0239240825176239,
0.007911095395684242,
0.037551891058683395,
0.04743524640798569,
0.02650543674826622,
0.04546525329351425,
-0.02028258517384529,
-0.055393896996974945,
0.0549527071416378,
0.0010106564732268453,
0.008233948610723019,
-0.07228653877973557,
-0.01108984462916851,
0.03190575912594795,
0.009132742881774902,
0.013651743531227112,
-0.023236701264977455,
0.08428651094436646,
-0.016200195997953415,
-0.030119365081191063,
0.02039184793829918,
-0.0093644754961133,
-0.034780584275722504,
-0.009077019058167934,
-0.005351741798222065,
-0.0050015379674732685,
-0.03332117199897766,
-0.000026830250135390088,
-0.03015165403485298,
0.022060105577111244,
-0.05939392000436783,
-0.0538153238594532,
-0.0105896582826972,
0.038035131990909576,
0.03951193019747734,
-0.0025771320797502995,
-0.051325056701898575,
-0.012780616991221905,
-0.05165146663784981,
0.00481130788102746,
0.036335352808237076,
0.009818951599299908,
0.007279987912625074,
0.043175727128982544,
0.017131421715021133,
-0.022414904087781906,
0.049940891563892365,
0.0439896285533905,
0.06651528179645538,
0.0037911219988018274,
-0.05112585797905922,
-0.005576342809945345,
-0.0112767880782485,
0.026575539261102676,
-0.015884926542639732,
-0.027804458513855934,
-0.035591524094343185,
-0.10889740288257599,
-0.011722049675881863,
0.018501833081245422,
-0.011949071660637856,
-0.013425394892692566,
0.048703037202358246,
0.0077660707756876945,
-0.022854750975966454,
-0.011552779003977776,
0.019213402643799782,
0.016469955444335938,
-0.06596380472183228,
0.0494903065264225,
-0.016033411026000977,
0.012562992982566357,
-0.06198122352361679,
-0.004037578124552965,
-0.058835469186306,
-0.021381700411438942,
-0.004056449979543686,
0.050683971494436264,
-0.025391990318894386,
0.062315862625837326,
0.0590905100107193,
0.02266383171081543,
-0.04010457545518875,
0.04223273694515228,
0.06734073162078857,
-0.03117840178310871,
-0.05193615332245827,
-0.0102780070155859,
0.0056950547732412815,
-0.022523192688822746,
-0.02195323444902897,
-0.0016859632451087236,
0.049368616193532944,
0.043868981301784515,
-0.0052604032680392265,
0.024097736924886703,
-0.008349007926881313,
-0.013378307223320007,
-0.02666890062391758,
-0.059575121849775314,
-0.02267443761229515,
0.01015199813991785,
-0.02505996823310852,
0.028773203492164612,
0.011080213822424412,
0.010533151216804981,
0.062459796667099,
0.04429382458329201,
-0.03681206703186035,
-0.01526546385139227,
0.030017293989658356,
0.004793188069015741,
-0.025030381977558136,
-0.06676647067070007,
-0.021236533299088478,
0.04623427242040634,
0.037379585206508636,
-0.020781386643648148,
-0.05831608176231384,
0.014759772457182407,
0.038791973143815994,
-0.04333766922354698,
0.043139372020959854,
-0.011064361780881882,
0.04615847021341324,
0.0477931872010231,
-0.013996048830449581,
0.04584205895662308,
-0.03689466044306755,
-0.011163479648530483,
-0.011922958306968212,
0.02583690546452999,
-0.011897667311131954,
-0.025375450029969215,
-0.05983513593673706,
0.029320627450942993,
0.0436333566904068,
0.05521806702017784,
0.046379055827856064,
-0.018673328682780266,
-0.03272073343396187,
-0.0016414806013926864,
0.03889607638120651,
-0.05164553225040436,
0.002064160304144025,
0.047758691012859344,
0.0441744402050972,
-0.04922420158982277,
-0.041717756539583206,
-0.010668635368347168,
-0.027926458045840263,
0.02396507002413273,
0.006870806682854891,
-0.04288901388645172,
-0.03124827705323696,
0.02824254147708416,
-0.005327046848833561,
-0.001792023773305118,
-0.06731566041707993,
0.050747036933898926,
-0.022020136937499046,
-0.02965274639427662,
0.028540827333927155,
0.02115899696946144,
0.002011863049119711,
0.05336514860391617,
0.03629787266254425,
0.0034835184924304485,
-0.025463253259658813,
0.059968262910842896,
-0.03009156323969364,
-0.006706906482577324,
-0.0059907808899879456,
-0.06008755415678024,
-0.023655444383621216,
-0.017868442460894585,
-0.03141298145055771,
-0.029653314501047134,
-0.030192906036973,
0.016792817041277885,
-0.002199122216552496,
-0.031611368060112,
-0.01740158535540104,
0.0752173587679863,
-0.032664306461811066,
-0.04127391427755356,
-0.039209287613630295,
-0.03191817179322243,
-0.055255547165870667,
-0.061402056366205215,
0.042109206318855286,
-0.00043283848208375275,
0.04185350239276886,
0.045807141810655594,
0.02988482266664505,
0.018872344866394997,
0.002697363030165434,
-0.047299355268478394,
0.023466113954782486,
-0.019196847453713417,
-0.013563002459704876,
-0.039646610617637634,
0.016099534928798676,
0.012334063649177551,
0.03838104382157326,
-0.028523484244942665,
0.036316655576229095,
0.005224244203418493,
-0.019800327718257904,
-0.009786248207092285,
0.008485285565257072,
0.036506347358226776,
-0.0400766022503376,
-0.025363218039274216,
0.005303721874952316,
-0.047438595443964005,
0.01960485801100731,
-0.022577976807951927,
-0.017484625801444054,
-0.01281838957220316,
-0.002494920277968049,
0.02367357537150383,
-0.01630113460123539,
-0.037603478878736496,
0.024423016235232353,
-0.014625899493694305,
-0.006612053606659174,
-0.053621891885995865,
0.045052990317344666,
-0.027505116537213326,
0.01261829398572445,
-0.03158225864171982,
0.0040445649065077305,
-0.03625442832708359,
0.022074883803725243,
-0.019045183435082436,
-0.019386736676096916,
0.009234568104147911,
0.05627981945872307,
-0.03438236936926842,
0.04044286534190178,
-0.00045058358227834105,
0.03385879099369049,
-0.046926673501729965,
0.07399850338697433,
-0.03226704150438309,
0.02042149379849434,
-0.029072824865579605,
0.01393223088234663,
-0.021913398057222366,
0.015313425101339817,
0.0034027080982923508,
-0.014076323248445988,
0.0350932814180851,
0.05889463424682617,
0.06079387664794922,
0.05219129100441933,
-0.00012749309826176614,
-0.011049519293010235,
0.03199870511889458,
-0.03592374175786972,
-0.017421087250113487,
-0.023366475477814674,
-0.0005162915331311524,
-0.006210694555193186,
0.07388219982385635,
0.03284067660570145,
-0.05227838456630707,
-0.04594112187623978,
0.037029609084129333,
0.009107394143939018,
0.00029645502218045294,
0.0021252757869660854,
0.05204803869128227,
0.03655422851443291,
0.035070907324552536,
-0.018259137868881226,
-0.007016035728156567,
-0.009678241796791553,
-0.04270809143781662,
0.05207721143960953,
-0.008799453265964985,
0.032434795051813126,
-0.00301753799431026,
-0.04733237624168396,
-0.014681418426334858,
0.06657037883996964,
0.04273689538240433,
0.01931023970246315,
-0.01338023692369461,
-0.03977849334478378,
0.028821337968111038,
-0.0032834855373948812,
-0.04574809595942497,
0.014959185384213924,
0.010834956541657448,
-0.024058543145656586,
0.058082833886146545,
-0.011539588682353497,
0.004015142098069191,
0.054140787571668625,
0.0525747649371624,
-0.01480836607515812,
0.07665390521287918,
-0.0311322920024395,
0.005908937193453312,
0.05151994526386261,
-0.07267726212739944,
-0.0013597450451925397,
-0.034145381301641464,
0.0806787833571434,
-0.06432005763053894,
0.04455006867647171,
0.053858183324337006,
0.0026376554742455482,
0.013052655383944511,
-0.03559916466474533,
-0.036618687212467194,
0.00891486182808876,
-0.043720949441194534,
0.08052786439657211,
0.01901867613196373,
-0.04654356464743614,
0.05386354774236679,
0.025299247354269028,
-0.0903123989701271,
0.04178035259246826,
0.029064666479825974,
0.03279166296124458,
0.04072567820549011,
0.04467236250638962,
-0.04704008251428604,
0.010438344441354275,
-0.03043622151017189,
0.03514227271080017,
-0.05006978660821915,
-0.011908031068742275,
0.042811837047338486,
-0.036025673151016235,
-0.02943582646548748,
0.04183754324913025,
-0.0071160742081701756,
-0.01809130795300007,
0.05896800383925438,
-0.03393613174557686,
-0.04395744949579239,
0.01737177185714245,
0.01863023452460766,
-0.028081625699996948,
0.016240930184721947,
-0.03757423907518387,
0.028993641957640648,
-0.001461327075958252,
0.009435957297682762,
-0.03454875200986862,
-0.008161993697285652,
0.02921856939792633,
-0.051660604774951935,
-0.025862516835331917,
0.03232765570282936,
-0.01454136148095131,
-0.019877007231116295,
0.02230856940150261,
0.015550529584288597,
0.03009493090212345,
0.03653673827648163,
-0.013859754428267479,
0.017953233793377876,
-0.04879394546151161,
-0.005696640349924564,
0.007032585330307484,
0.0015422204742208123,
0.03310978040099144,
-0.008470757864415646,
0.03432560712099075,
0.04527060315012932,
0.01807137206196785,
0.0023261650931090117,
-0.03343532606959343,
-0.021770060062408447,
0.028783032670617104,
-0.03010246902704239,
-0.0068901279009878635,
0.0023955614306032658,
-0.041612472385168076,
-0.0398249626159668,
-0.02377147227525711,
-0.04079452157020569,
0.02938268706202507,
-0.060178276151418686,
0.0006885399925522506,
0.0288656298071146,
-0.017234547063708305,
-0.03947002440690994,
-0.11148731410503387,
-0.021580321714282036,
-0.04655403643846512,
-0.0012834426015615463,
0.035890206694602966,
-0.026181219145655632,
0.05259004607796669,
-0.035487331449985504,
-0.04480179771780968,
0.027695808559656143,
0.034671101719141006,
-0.037282202392816544,
0.04110661894083023,
0.05680876225233078,
-0.030002469196915627,
0.027036381885409355,
0.03477037325501442,
-0.0521831288933754,
0.003999118227511644,
0.004759846720844507,
0.01963621750473976,
0.03071754239499569,
0.01822972483932972,
-0.03131229802966118,
-0.023466577753424644,
-0.07639173418283463,
-0.05507974326610565,
-0.04812629893422127,
0.008755707181990147,
0.04565556347370148
] |
Banshee/dialoGPT-luke-small | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | ---
license: apache-2.0
tags:
- Composer
- MosaicML
- llm-foundry
- StreamingDatasets
datasets:
- mc4
- c4
- togethercomputer/RedPajama-Data-1T
- bigcode/the-stack
- allenai/s2orc
inference: false
---
# MPT-7B GGML
This is GGML format quantised 4-bit, 5-bit and 8-bit GGML models of [MosaicML's MPT-7B](https://huggingface.co/mosaicml/mpt-7b).
This repo is the result of converting to GGML and quantising.
Please note that these MPT GGMLs are **not compatbile with llama.cpp**. Please see below for a list of tools known to work with these model files.
## Repositories available
* [MPT-7B: 4-bit, 5-bit and 8-bit GGML models for CPU (+CUDA) inference](https://huggingface.co/TheBloke/MPT-7B-GGML).
* [MPT-7B-Instruct: 4-bit, 5-bit and 8-bit GGML models for CPU (+CUDA) inference](https://huggingface.co/TheBloke/MPT-7B-Instruct-GGML).
* [MPT-7B-Storywriter: 4-bit, 5-bit and 8-bit GGML models for CPU (+CUDA) inference](https://huggingface.co/TheBloke/MPT-7B-Storywriter-GGML).
## Provided files
| Name | Quant method | Bits | Size | RAM required | Use case |
| ---- | ---- | ---- | ---- | ---- | ----- |
`mpt-7b.ggmlv3.q4_0.bin` | q4_0 | 4bit | 4.16GB | 6.2GB | 4-bit. |
`mpt-7b.ggmlv3.q4_1.bin` | q4_0 | 4bit | 4.99GB | 7.2GB | 4-bit. Higher accuracy than q4_0 but not as high as q5_0. However has quicker inference than q5 models. |
`mpt-7b.ggmlv3.q5_0.bin` | q5_0 | 5bit | 4.57GB | 6.8GB | 5-bit. Higher accuracy, higher resource usage and slower inference. |
`mpt-7b.ggmlv3.q5_1.bin` | q5_1 | 5bit | 4,99GB | 7.2GB | 5-bit. Even higher accuracy, and higher resource usage and slower inference. |
`mpt-7b.ggmlv3.q8_0.bin` | q8_0 | 8bit | 7.48GB | 9.6GB | 8-bit. Almost indistinguishable from float16. Huge resource use and slow. Not recommended for normal use. |
`mpt-7b.ggmlv3.fp16.bin` | fp16 | 16bit | 13.3GB | 15.5GB | Full 16-bit. |
## Compatibilty
These files are **not** compatible with llama.cpp.
Currently they can be used with:
* The ctransformers Python library, which includes LangChain support: [ctransformers](https://github.com/marella/ctransformers)
* The GPT4All-UI which uses ctransformers: [GPT4All-UI](https://github.com/ParisNeo/gpt4all-ui)
* [rustformers' llm](https://github.com/rustformers/llm)
* The example `mpt` binary provided with [ggml](https://github.com/ggerganov/ggml)
As other options become available I will endeavour to update them here (do let me know in the Community tab if I've missed something!)
## How to build, and an example of using the ggml `mpt` binary (command line only):
```
git clone https://github.com/ggerganov/ggml
cd ggml
mkdir build
cd build
cmake ..
cmake --build . --config Release
bin/mpt -m /path/to/mpt-7b.ggmlv3.q4_0.bin -t 8 -n 512 -p "Write a story about llamas"
```
Please see the ggml repo for other build options.
# Original model card: MPT-7B
MPT-7B is a decoder-style transformer pretrained from scratch on 1T tokens of English text and code.
This model was trained by [MosaicML](https://www.mosaicml.com).
MPT-7B is part of the family of MosaicPretrainedTransformer (MPT) models, which use a modified transformer architecture optimized for efficient training and inference.
These architectural changes include performance-optimized layer implementations and the elimination of context length limits by replacing
positional embeddings with Attention with Linear Biases ([ALiBi](https://arxiv.org/abs/2108.12409)).
Thanks to these modifications, MPT models can be trained with high throughput efficiency and stable convergence.
MPT models can also be served efficiently with both standard HuggingFace pipelines and NVIDIA's [FasterTransformer](https://github.com/NVIDIA/FasterTransformer).
This model uses the MosaicML LLM codebase, which can be found in the [llm-foundry repository](https://github.com/mosaicml/llm-foundry). It was trained by MosaicML’s NLP team on the [MosaicML platform](https://www.mosaicml.com/training) for LLM pretraining, finetuning, and inference.
### How is this model different?
MPT-7B is
* **Licensed for the possibility of commercial use** (unlike [LLaMA](https://arxiv.org/abs/2302.13971)).
* **Trained on a large amount of data** (1T tokens like [LLaMA](https://arxiv.org/abs/2302.13971) vs. 300B for [Pythia](https://github.com/EleutherAI/pythia), 300B for [OpenLLaMA](https://github.com/openlm-research/open_llama), and 800B for [StableLM](https://github.com/Stability-AI/StableLM)).
* **Prepared to handle extremely long inputs** thanks to [ALiBi](https://arxiv.org/abs/2108.12409) (we finetuned [MPT-7B-StoryWriter-65k+](https://huggingface.co/mosaicml/mpt-7b-storywriter) on up to 65k inputs and can handle up to 84k vs. 2k-4k for other open source models).
* **Capable of fast training and inference** (via [FlashAttention](https://arxiv.org/pdf/2205.14135.pdf) and [FasterTransformer](https://github.com/NVIDIA/FasterTransformer))
* **Equipped with highly efficient open-source training code** via the [llm-foundry repository](https://github.com/mosaicml/llm-foundry)
### Models finetuned off MPT-7B:
The following models are finetuned on MPT-7B:
* [MPT-7B-StoryWriter-65k+](https://huggingface.co/mosaicml/mpt-7b-storywriter): a model designed to read and write fictional stories with super long context lengths.
Built by finetuning MPT-7B with a context length of 65k tokens on a filtered fiction subset of the [books3 dataset](https://huggingface.co/datasets/the_pile_books3).
At inference time, thanks to [ALiBi](https://arxiv.org/abs/2108.12409), MPT-7B-StoryWriter-65k+ can extrapolate even beyond 65k tokens.
We demonstrate generations as long as 80k tokens on a single A100-80GB GPU in our [blogpost](www.mosaicml.com/blog/mpt-7b).
* License: Apache 2.0
* [MPT-7B-Instruct](https://huggingface.co/mosaicml/mpt-7b-instruct): a model for short-form instruction following.
Built by finetuning MPT-7B on a [dataset](https://huggingface.co/datasets/mosaicml/dolly_hhrlhf) we also release, derived from the [Databricks Dolly-15k](https://huggingface.co/datasets/databricks/databricks-dolly-15k) and the [Anthropic Helpful and Harmless (HH-RLHF)](https://huggingface.co/datasets/Anthropic/hh-rlhf) datasets.
* License: _CC-By-SA-3.0_
* [Demo on Hugging Face Spaces](https://huggingface.co/spaces/mosaicml/mpt-7b-instruct)
* [MPT-7B-Chat](https://huggingface.co/mosaicml/mpt-7b-chat): a chatbot-like model for dialogue generation.
Built by finetuning MPT-7B on the [ShareGPT-Vicuna](https://huggingface.co/datasets/jeffwan/sharegpt_vicuna), [HC3](https://huggingface.co/datasets/Hello-SimpleAI/HC3),
[Alpaca](https://huggingface.co/datasets/tatsu-lab/alpaca), [HH-RLHF](https://huggingface.co/datasets/Anthropic/hh-rlhf), and [Evol-Instruct](https://huggingface.co/datasets/victor123/evol_instruct_70k) datasets.
* License: _CC-By-NC-SA-4.0_
* [Demo on Hugging Face Spaces](https://huggingface.co/spaces/mosaicml/mpt-7b-chat)
## Model Date
May 5, 2023
## Model License
Apache-2.0
## Documentation
* [Blog post: Introducing MPT-7B: A New Standard for Open-Source, Commercially Usable LLMs](https://www.mosaicml.com/blog/mpt-7b)
* [Codebase (mosaicml/llm-foundry repo)](https://github.com/mosaicml/llm-foundry/)
* Questions: Feel free to contact us via the [MosaicML Community Slack](https://join.slack.com/t/mosaicml-community/shared_invite/zt-1btms90mc-GipE2ufuPkKY0QBrmF3LSA)!
## How to Use
This model is best used with the MosaicML [llm-foundry repository](https://github.com/mosaicml/llm-foundry) for training and finetuning.
```python
import transformers
model = transformers.AutoModelForCausalLM.from_pretrained(
'mosaicml/mpt-7b',
trust_remote_code=True
)
```
Note: This model requires that `trust_remote_code=True` be passed to the `from_pretrained` method.
This is because we use a custom `MPT` model architecture that is not yet part of the Hugging Face `transformers` package.
`MPT` includes options for many training efficiency features such as [FlashAttention](https://arxiv.org/pdf/2205.14135.pdf), [ALiBi](https://arxiv.org/abs/2108.12409), [QK LayerNorm](https://arxiv.org/abs/2010.04245), and more.
To use the optimized [triton implementation](https://github.com/openai/triton) of FlashAttention, you can load the model with `attn_impl='triton'` and move the model to `bfloat16`:
```python
config = transformers.AutoConfig.from_pretrained(
'mosaicml/mpt-7b',
trust_remote_code=True
)
config.attn_config['attn_impl'] = 'triton'
model = transformers.AutoModelForCausalLM.from_pretrained(
'mosaicml/mpt-7b',
config=config,
torch_dtype=torch.bfloat16,
trust_remote_code=True
)
model.to(device='cuda:0')
```
Although the model was trained with a sequence length of 2048, ALiBi enables users to increase the maximum sequence length during finetuning and/or inference. For example:
```python
config = transformers.AutoConfig.from_pretrained(
'mosaicml/mpt-7b',
trust_remote_code=True
)
config.update({"max_seq_len": 4096})
model = transformers.AutoModelForCausalLM.from_pretrained(
'mosaicml/mpt-7b',
config=config,
trust_remote_code=True
)
```
This model was trained with the [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) tokenizer.
```python
from transformers import AutoTokenizer
tokenizer = AutoTokenizer.from_pretrained("EleutherAI/gpt-neox-20b")
```
## Model Description
The architecture is a modification of a standard decoder-only transformer.
The model has been modified from a standard transformer in the following ways:
* It uses [FlashAttention](https://arxiv.org/pdf/2205.14135.pdf)
* It uses [ALiBi (Attention with Linear Biases)](https://arxiv.org/abs/2108.12409) and does not use positional embeddings
* It does not use biases
| Hyperparameter | Value |
|----------------|-------|
|n_parameters | 6.7B |
|n_layers | 32 |
| n_heads | 32 |
| d_model | 4096 |
| vocab size | 50432 |
| sequence length | 2048 |
## Training Data
### Streaming Datasets
Data was formatted using the MosaicML [StreamingDataset](https://github.com/mosaicml/streaming) library to host our data in object storage and efficiently stream it to our compute cluster during training.
StreamingDataset obviates the need to download the whole dataset before starting training, and allows instant resumption of training from any point in the dataset.
### Data Mix
The model was trained for 1T tokens (with batch size 1760 and sequence length 2048). It was trained on the following data mix:
| Data Source | Number of Tokens in Source | Proportion | Effective Number of Tokens | Epochs |
|-------------|----------------------------|------------|----------------------------|--------|
| mC4 3.1.0 - English | 417.99 B | 0.33 | 330 B | 0.14 |
| C4 - English - SemDedup 80% | 100.42 B | 0.299 | 299 B | 2.98 |
| RedPajama - CommonCrawl | 878.45 B | 0.1 | 100 B | 0.11 |
| The Stack - Selected Languages | 463.78 B | 0.1 | 100 B | 0.22 |
| RedPajama - Wikipedia - En | 4.87 B | 0.04 | 40 B | 8.21 |
| The Stack - Markdown | 107.07 B | 0.035 | 35 B | 0.33 |
| S2ORC | 48.85 B | 0.033 | 33 B | 0.68 |
| RedPajama - Books | 26.02 B | 0.03 | 30B | 1.15 |
| RedPajama - arXiv | 28.10 B | 0.019 | 19 B | 0.68 |
| RedPajama - StackExchange | 20.54 B | 0.014 | 14 B |0.68 |
Samples for each batch were selected from one of the datasets with the probability specified above.
The examples were shuffled within each dataset, and each example was constructed from as many sequences from that dataset as were necessary to fill the 2048 sequence length.
The data was tokenized using the [EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) tokenizer. This BPE tokenizer has a number of desirable characteristics,
most of which are relevant for tokenizing code:
(1) It was trained on a diverse mix of data that includes code (The Pile)
(2) It applies consistent space delimitation, unlike the GPT2 tokenizer which tokenizes inconsistently depending on the presence of prefix spaces
(3) It contains tokens for repeated space characters, which allows superior compression of text with large amounts of repeated space characters.
The model vocabulary size of 50432 was set to be a multiple of 128 (as in [MEGATRON-LM](https://arxiv.org/abs/1909.08053)), model flop utilization (MFU) increased by up to four percentage points.
### Training Configuration
This model was trained on 440 A100-40GBs for about 9.5 days using the [MosaicML Platform](https://www.mosaicml.com/platform).
The model was trained with sharded data parallelism using [FSDP](https://pytorch.org/docs/stable/fsdp.html) and used the [LION](https://arxiv.org/abs/2302.06675) optimizer.
## Limitations and Biases
_The following language is modified from [EleutherAI's GPT-NeoX-20B](https://huggingface.co/EleutherAI/gpt-neox-20b)_
MPT-7B (Base) is **not** intended for deployment without finetuning.
It should not be used for human-facing interactions without further guardrails and user consent.
MPT-7B can produce factually incorrect output, and should not be relied on to produce factually accurate information.
MPT-7B was trained on various public datasets.
While great efforts have been taken to clean the pretraining data, it is possible that this model could generate lewd, biased or otherwise offensive outputs.
## MosaicML Platform
If you're interested in [training](https://www.mosaicml.com/training) and [deploying](https://www.mosaicml.com/inference) your own MPT or LLMs on the MosaicML Platform, [sign up here](https://forms.mosaicml.com/demo?utm_source=huggingface&utm_medium=referral&utm_campaign=mpt-7b).
## Disclaimer
The license on this model does not constitute legal advice. We are not responsible for the actions of third parties who use this model. Please cosult an attorney before using this model for commercial purposes.
## Citation
Please cite this model using the following format:
```
@online{MosaicML2023Introducing,
author = {MosaicML NLP Team},
title = {Introducing MPT-7B: A New Standard for Open-Source,
ly Usable LLMs},
year = {2023},
url = {www.mosaicml.com/blog/mpt-7b},
note = {Accessed: 2023-03-28}, % change this date
urldate = {2023-03-28} % change this date
}
```
| [
-0.039041802287101746,
0.0006059591541998088,
-0.003256299067288637,
0.03450028970837593,
0.03209519013762474,
0.01924949884414673,
-0.00097136344993487,
-0.007687648758292198,
-0.02326912060379982,
0.051641833037137985,
0.04973716661334038,
-0.012018763460218906,
0.0027441391721367836,
0.07053010165691376,
0.007787482347339392,
-0.04074620082974434,
-0.0016623956616967916,
-0.003371264087036252,
-0.028262551873922348,
0.0451987124979496,
0.0069004506804049015,
-0.021316418424248695,
-0.01484415028244257,
0.00812492985278368,
0.0008714259602129459,
0.005259956233203411,
0.019616328179836273,
0.021138334646821022,
0.00029347295640036464,
-0.05058808624744415,
-0.028192833065986633,
-0.04635387286543846,
-0.02531157061457634,
-0.06351431459188461,
-0.03608977794647217,
0.01511192787438631,
0.002262245398014784,
0.0016477936878800392,
-0.006225308869034052,
0.05486755818128586,
0.003622387768700719,
0.01243678666651249,
-0.023633621633052826,
-0.008837420493364334,
0.05058005452156067,
0.016618547961115837,
-0.026267483830451965,
-0.015419477596879005,
0.03146401792764664,
-0.008571160025894642,
-0.06002871319651604,
-0.08505280315876007,
0.008347059600055218,
0.01292174868285656,
-0.025803525000810623,
-0.011842720210552216,
-0.060684334486722946,
-0.027163224294781685,
0.06267727166414261,
-0.06349959224462509,
-0.006882226560264826,
-0.00013208703603595495,
-0.08202653378248215,
0.014543783850967884,
0.020508302375674248,
-0.02105683647096157,
0.0075308894738554955,
-0.047147076576948166,
0.02692338079214096,
-0.02439141273498535,
0.044339194893836975,
-0.03685261309146881,
0.0051780520007014275,
-0.09353090077638626,
0.011755469255149364,
-0.013347912579774857,
0.05103592574596405,
0.03220093250274658,
-0.040723130106925964,
0.06257092207670212,
0.06177873909473419,
-0.010338665917515755,
0.017031805589795113,
0.01009137462824583,
-0.017842791974544525,
0.03425734117627144,
-0.041609734296798706,
0.0012161508202552795,
0.021712148562073708,
0.05597789213061333,
-0.04738656058907509,
-0.04154533892869949,
-0.023434916511178017,
-0.05355723202228546,
-0.013398058712482452,
0.025373244658112526,
0.031109707430005074,
-0.014357726089656353,
0.026347389444708824,
0.028104418888688087,
0.02971051074564457,
0.03694191575050354,
-0.006220790557563305,
0.0638502687215805,
-0.005801581311970949,
-0.005671212915331125,
-0.02293398790061474,
-0.03295987471938133,
-0.038886476308107376,
0.014942754991352558,
0.044816482812166214,
-0.03291003406047821,
-0.03826038911938667,
0.03745787590742111,
0.012499361298978329,
-0.009773354046046734,
0.06901664286851883,
-0.026049155741930008,
-0.031461115926504135,
-0.058668799698352814,
0.050854332745075226,
0.012938310392200947,
-0.02024182491004467,
0.0037307399325072765,
-0.07230009883642197,
0.0036707264371216297,
-0.030193382874131203,
-0.018578946590423584,
-0.008860921487212181,
0.011950227431952953,
-0.01612011343240738,
0.04460253566503525,
0.013115226291120052,
-0.08067022264003754,
0.030146608129143715,
0.005924782250076532,
-0.03913695365190506,
0.02966686524450779,
-0.0001164601999334991,
0.09804241359233856,
-0.06763234734535217,
-0.05987117812037468,
0.04230590537190437,
0.005387939512729645,
-0.0622955784201622,
0.02064645290374756,
0.0013037933968007565,
-0.04331545531749725,
-0.04045228660106659,
-0.03776060417294502,
0.03145909681916237,
-0.06587798148393631,
0.023445352911949158,
0.03593159094452858,
-0.008039087988436222,
0.03259691596031189,
-0.04467354342341423,
-0.036546964198350906,
0.006808434147387743,
0.0007217144011519849,
-0.010102338157594204,
0.044167645275592804,
-0.008942159824073315,
-0.02569994516670704,
-0.007677270099520683,
-0.017397815361618996,
-0.00256504793651402,
0.07424215227365494,
-0.019931644201278687,
-0.014635851606726646,
-0.043983377516269684,
0.03205328807234764,
0.014488516375422478,
0.026540035381913185,
-0.018181707710027695,
0.03206580877304077,
0.04003330320119858,
0.02855485863983631,
-0.013505996204912663,
0.05325201153755188,
0.045522697269916534,
-0.011736060492694378,
-0.03637111559510231,
-0.024499785155057907,
0.025430649518966675,
-0.036139193922281265,
-0.008240574039518833,
0.04079917445778847,
0.02660234272480011,
-0.030577024444937706,
-0.04080188646912575,
0.062060873955488205,
-0.024932974949479103,
-0.0012903036549687386,
-0.005765858571976423,
-0.01854628324508667,
-0.02799302153289318,
0.04689839482307434,
-0.006327995099127293,
-0.0019427119987085462,
-0.027578119188547134,
-0.03449781984090805,
0.0016453737625852227,
0.015654442831873894,
0.026870815083384514,
0.036476679146289825,
-0.0038945951964706182,
0.06191099435091019,
-0.03378294035792351,
0.01372270006686449,
-0.06347538530826569,
-0.056100498884916306,
0.014240256510674953,
0.05007413774728775,
0.010456424206495285,
0.04363806173205376,
-0.009543763473629951,
-0.06517457962036133,
0.04152882099151611,
0.06203300505876541,
0.019015690311789513,
0.021746443584561348,
-0.04017408937215805,
-0.03427865728735924,
0.03705255314707756,
0.04692681506276131,
-0.06276029348373413,
-0.031660046428442,
0.04320789873600006,
0.025339603424072266,
-0.0387730598449707,
0.03384845331311226,
-0.013486177660524845,
0.04362821206450462,
-0.048711273819208145,
-0.07654030621051788,
0.04372773319482803,
0.03380993753671646,
-0.0005678592133335769,
0.01375145185738802,
-0.010720985941588879,
-0.0030436955858021975,
0.004212226253002882,
-0.024254143238067627,
0.009659882634878159,
-0.05100849270820618,
0.027256064116954803,
0.031181473284959793,
0.03830430656671524,
-0.04738940671086311,
0.026369426399469376,
-0.0016532466979697347,
0.0036247572861611843,
0.029957687482237816,
-0.0552777424454689,
0.021238239482045174,
0.05218109115958214,
-0.0003181466308888048,
-0.017640195786952972,
0.038066696375608444,
-0.010941467247903347,
0.01621944084763527,
0.035124655812978745,
-0.01075227465480566,
0.07315545529127121,
-0.02587611973285675,
0.020400790497660637,
0.09100405871868134,
0.007909447886049747,
0.006058563012629747,
0.024810053408145905,
0.08791476488113403,
0.01965794339776039,
0.00099599314853549,
0.05657658725976944,
-0.04790973663330078,
0.014065975323319435,
-0.02807764522731304,
0.012495758011937141,
-0.01468266174197197,
-0.00044561937102116644,
0.05102471634745598,
0.006975180935114622,
0.0035439343191683292,
-0.018494516611099243,
-0.009233213029801846,
-0.013073012232780457,
0.006550195161253214,
-0.04867637902498245,
-0.0309962946921587,
-0.014121930114924908,
-0.005081098526716232,
0.002690801629796624,
-0.08656903356313705,
-0.042643677443265915,
-0.020495176315307617,
-0.014590664766728878,
0.01605258882045746,
-0.09095264971256256,
0.005547473207116127,
-0.05981183797121048,
-0.02563774399459362,
0.039717838168144226,
0.003329887054860592,
-0.01807679608464241,
-0.04004405438899994,
0.015658563002943993,
-0.036242224276065826,
-0.03961247205734253,
-0.05114790424704552,
-0.048405539244413376,
-0.023533493280410767,
-0.07030187547206879,
0.03408055379986763,
0.011787795461714268,
0.018960025161504745,
0.006229868158698082,
-0.0012786815641447902,
0.004773640539497137,
-0.024713795632123947,
0.03544599190354347,
0.03963637351989746,
-0.0375196747481823,
-0.06378667801618576,
0.04453818127512932,
0.013376175425946712,
-0.00859694741666317,
-0.029230250045657158,
-0.025057116523385048,
0.09402314573526382,
0.045520029962062836,
0.008556937798857689,
-0.011847397312521935,
0.004025095142424107,
-0.0634879618883133,
-0.034333713352680206,
-0.05183654651045799,
-0.047317806631326675,
-0.037542928010225296,
-0.023646412417292595,
-0.015308720991015434,
-0.03249146416783333,
-0.012410130351781845,
-0.022243009880185127,
-0.01530508417636156,
0.024957794696092606,
0.025060957297682762,
0.04032870754599571,
0.02564254216849804,
0.04736713692545891,
-0.04262816533446312,
-0.043248601257801056,
0.06682980805635452,
0.04908043518662453,
-0.024301260709762573,
-0.04287627711892128,
-0.03951512649655342,
0.03272334858775139,
0.005994216538965702,
-0.007693648338317871,
-0.007921963930130005,
0.08297222852706909,
0.006451544351875782,
-0.006366860121488571,
0.022909335792064667,
-0.013166705146431923,
-0.0011533746728673577,
-0.01248192973434925,
0.0074374862015247345,
-0.030666392296552658,
-0.02717423066496849,
-0.014663642272353172,
0.0038270961958914995,
0.05073191970586777,
-0.05436881259083748,
-0.055181194096803665,
0.022440413013100624,
0.04653732106089592,
0.035164497792720795,
-0.022710703313350677,
-0.037857137620449066,
0.006371531169861555,
-0.04781940579414368,
-0.009723996743559837,
0.05583662539720535,
-0.02410752885043621,
0.004300481174141169,
0.043551936745643616,
0.02821558155119419,
-0.010692611336708069,
0.06173696368932724,
0.05060240998864174,
0.04916075989603996,
0.008766872808337212,
-0.05295589566230774,
-0.0023804812226444483,
-0.027830341830849648,
0.030941836535930634,
0.00012548232916742563,
-0.023248663172125816,
-0.04218215122818947,
-0.09578133374452591,
0.012445822358131409,
0.04832100868225098,
-0.025850461795926094,
-0.005739504937082529,
0.0667380541563034,
-0.020409321412444115,
-0.017594894394278526,
0.007723771966993809,
0.00852949172258377,
0.03016401268541813,
-0.044253721833229065,
0.04116268455982208,
-0.01734946481883526,
0.013857370242476463,
-0.051901232451200485,
0.002811920363456011,
-0.036826614290475845,
-0.003789157373830676,
0.03429234027862549,
0.040372852236032486,
0.03041985258460045,
0.05896821245551109,
0.06266847997903824,
0.021777944639325142,
-0.025235898792743683,
0.028851589187979698,
0.03767632693052292,
-0.037788499146699905,
-0.04607943817973137,
0.009298590943217278,
-0.026894167065620422,
-0.009289933368563652,
-0.010482992976903915,
-0.0073327189311385155,
0.04059865325689316,
0.02993166632950306,
0.002805630676448345,
0.00512803066521883,
0.0034608151763677597,
-0.015370666980743408,
-0.0012527821818366647,
-0.01797766238451004,
-0.030978964641690254,
0.0021837647072970867,
-0.06066790595650673,
0.02809949591755867,
0.052996501326560974,
0.0194228682667017,
0.04806898534297943,
0.04287072271108627,
-0.027362462133169174,
-0.05088144540786743,
0.024867799133062363,
0.0271778367459774,
-0.04316001012921333,
-0.07619345188140869,
-0.02461913228034973,
0.03529337793588638,
0.034744106233119965,
-0.013459842652082443,
-0.06247284635901451,
-0.0020927402656525373,
0.0552559457719326,
-0.0490385964512825,
0.03346993401646614,
-0.028421839699149132,
0.05386008322238922,
0.05933629348874092,
-0.008754901587963104,
0.022294800728559494,
-0.013941963203251362,
0.026281744241714478,
-0.005372935906052589,
0.044899627566337585,
-0.02636454813182354,
-0.02258748933672905,
-0.06804189831018448,
0.027495162561535835,
0.025931986048817635,
0.03716054558753967,
0.03188729286193848,
-0.010855130851268768,
-0.08327382802963257,
-0.0060839722864329815,
0.0347432941198349,
-0.04951396957039833,
0.05840270221233368,
0.01408516988158226,
0.0135567681863904,
-0.05364534631371498,
-0.018508750945329666,
-0.02050667442381382,
0.01757928729057312,
0.020368073135614395,
0.005651040468364954,
-0.048500385135412216,
-0.02949109859764576,
0.0066828601993620396,
0.002931340830400586,
-0.013555812649428844,
-0.07841865718364716,
0.05801143869757652,
-0.019053122028708458,
-0.02041044272482395,
0.039888136088848114,
0.050059281289577484,
0.03797111660242081,
0.03392108902335167,
0.0005392577731981874,
0.032728854566812515,
-0.03642084077000618,
0.05425170809030533,
-0.017728017643094063,
-0.020952673628926277,
0.007321846671402454,
-0.05747264623641968,
-0.022447995841503143,
-0.0061169876717031,
-0.05641080439090729,
-0.038124777376651764,
-0.04815411940217018,
0.030866654589772224,
0.008196838200092316,
-0.004704824183136225,
0.013611158356070518,
0.04991072043776512,
-0.01588619127869606,
-0.022579260170459747,
-0.05326751992106438,
-0.023631971329450607,
-0.06277703493833542,
-0.05708472058176994,
0.012972681783139706,
0.015910785645246506,
0.036506496369838715,
-0.006544397212564945,
0.03167876973748207,
0.009727870114147663,
0.01601218804717064,
-0.023797795176506042,
0.029544126242399216,
0.0004961814847774804,
-0.0346577949821949,
-0.020443055778741837,
0.009730854071676731,
0.027073083445429802,
0.04177258163690567,
-0.0269243773072958,
0.03217620775103569,
0.012588206678628922,
-0.022244198247790337,
0.011485965922474861,
0.02101823315024376,
0.016523895785212517,
-0.059813085943460464,
-0.048317257314920425,
-0.03433455526828766,
-0.05039549246430397,
0.02531013824045658,
0.017446259036660194,
-0.021113622933626175,
0.004639726132154465,
0.03197572007775307,
0.03904210776090622,
0.014704437926411629,
-0.025052286684513092,
0.025966467335820198,
-0.016957229003310204,
-0.01105379406362772,
-0.06318747252225876,
0.07776594907045364,
-0.04006959870457649,
0.02115689590573311,
-0.0205313041806221,
-0.016320593655109406,
-0.021761374548077583,
0.060066040605306625,
-0.03023509867489338,
-0.022529473528265953,
-0.0036908050533384085,
0.023357169702649117,
-0.03396546095609665,
0.06623828411102295,
-0.006645456422120333,
0.007423654198646545,
-0.02798275649547577,
0.06121329963207245,
-0.03645939752459526,
0.0033480168785899878,
-0.028417687863111496,
0.015215364284813404,
-0.04360765218734741,
-0.02778691239655018,
-0.022687751799821854,
-0.03379069268703461,
0.006682165432721376,
0.04905039444565773,
0.0370914526283741,
0.017503943294286728,
0.0015227125259116292,
-0.006935082376003265,
-0.0025671126786619425,
-0.06913574039936066,
-0.01039661094546318,
0.00010018012835644186,
0.011500959284603596,
-0.012007183395326138,
0.041013289242982864,
0.03622770309448242,
-0.05834822729229927,
-0.05054400861263275,
0.04917849600315094,
0.02143717184662819,
0.0007730431389063597,
0.003991938661783934,
0.04358217865228653,
0.04211198538541794,
0.03687943518161774,
-0.04110363498330116,
-0.004599340725690126,
-0.0004346196656115353,
-0.014617910608649254,
0.027734236791729927,
0.004181765951216221,
0.024309812113642693,
0.028211409226059914,
-0.04137726128101349,
-0.02185136266052723,
0.09130074828863144,
0.034526120871305466,
0.028606969863176346,
-0.006539344787597656,
-0.04927265644073486,
0.017439935356378555,
0.02700626105070114,
-0.008592253550887108,
0.047203272581100464,
0.05175625905394554,
-0.03525213152170181,
0.056525588035583496,
-0.02710770256817341,
0.012699340470135212,
0.03354007378220558,
0.021092712879180908,
-0.03179911524057388,
0.07258591055870056,
-0.027768297120928764,
0.019507823511958122,
0.040552303194999695,
-0.037600234150886536,
0.003945643547922373,
-0.049592696130275726,
0.06094334274530411,
-0.09171339124441147,
0.07626374810934067,
0.034977901726961136,
-0.0038660757709294558,
-0.004569655749946833,
-0.028494376689195633,
-0.050878752022981644,
0.024015041068196297,
-0.040579114109277725,
0.07530791312456131,
0.0063313753344118595,
-0.05816900357604027,
0.07082564383745193,
0.01646401360630989,
-0.06263367086648941,
0.04366924241185188,
0.05953272432088852,
0.031173350289463997,
0.03657030686736107,
0.04895608499646187,
-0.0531420037150383,
0.009790361858904362,
-0.046699099242687225,
0.03821378946304321,
-0.06076064705848694,
-0.03487739711999893,
0.045788154006004333,
-0.03495313227176666,
-0.024106819182634354,
0.028635410591959953,
0.001944695832207799,
-0.01842256635427475,
0.04401358217000961,
-0.050153568387031555,
-0.04150283336639404,
0.01652384363114834,
0.028017984703183174,
-0.018503185361623764,
-0.0057936375960707664,
-0.04159402474761009,
0.019895954057574272,
0.011863433755934238,
0.013695123605430126,
-0.0348329097032547,
-0.0049585518427193165,
0.02999161370098591,
-0.08514426648616791,
-0.016665341332554817,
0.020589690655469894,
0.013977577909827232,
-0.05441317334771156,
0.016581617295742035,
-0.009325103834271431,
0.046610791236162186,
0.000817404012195766,
-0.0015052679227665067,
-0.01424491684883833,
-0.04779171571135521,
-0.028428789228200912,
0.033730439841747284,
-0.015320459380745888,
0.004355524200946093,
-0.014034679159522057,
-0.000584400724619627,
0.030116796493530273,
0.027287403121590614,
0.03162791579961777,
-0.030658340081572533,
-0.0171197559684515,
0.046278659254312515,
-0.04426085576415062,
0.010144163854420185,
-0.00979599542915821,
-0.04867113381624222,
-0.021863004192709923,
-0.004115856718271971,
-0.01833522319793701,
0.03752395510673523,
-0.04213938117027283,
0.0162819791585207,
0.05151235684752464,
-0.030905606225132942,
-0.04312198609113693,
-0.08615992218255997,
-0.036069899797439575,
-0.02284405753016472,
0.0157431960105896,
0.00892696250230074,
-0.030246123671531677,
0.03079821914434433,
-0.07646087557077408,
-0.0690949559211731,
0.033691611140966415,
0.007332415319979191,
-0.03782310336828232,
0.011476526036858559,
0.05577472597360611,
-0.012978632003068924,
0.005650783888995647,
0.028858879581093788,
-0.05006752535700798,
0.023137634620070457,
0.003854485461488366,
0.015552278608083725,
0.017111411318182945,
0.01228790357708931,
-0.012459739111363888,
-0.012019488960504532,
-0.06276439875364304,
-0.030102474614977837,
-0.05496317520737648,
0.006512227933853865,
0.07682637125253677
] |
Barbarameerr/Barbara | [] | null | {
"architectures": null,
"model_type": null,
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 0 | null | Access to model Aryan2003/roberta_job is restricted and you are not in the authorized list. Visit https://huggingface.co/Aryan2003/roberta_job to ask for access. | [
-0.03489037603139877,
0.023511510342359543,
0.003603836754336953,
0.019585220143198967,
0.04907795041799545,
0.024711741134524345,
-0.027325252071022987,
-0.00183462246786803,
-0.05941212549805641,
0.044357780367136,
0.025966782122850418,
0.008083508349955082,
0.0021034395322203636,
0.05060967057943344,
-0.013064190745353699,
-0.024859197437763214,
-0.001993911573663354,
0.011552604846656322,
-0.03471595048904419,
-0.002625362016260624,
0.031735967844724655,
0.007875742390751839,
0.01396198384463787,
0.033905718475580215,
-0.0069397264160215855,
-0.013359809294342995,
-0.04972049221396446,
0.021488312631845474,
0.015171493403613567,
-0.04822080209851265,
-0.018778229132294655,
-0.046250369399785995,
-0.0353202149271965,
-0.02739032916724682,
-0.024870313704013824,
-0.0037154422607272863,
0.03544579818844795,
0.01966712437570095,
0.018539059907197952,
0.027019985020160675,
-0.009945404715836048,
0.012244663201272488,
-0.021887455135583878,
-0.05068330466747284,
0.02396247535943985,
-0.0338730588555336,
-0.029859092086553574,
-0.03546733409166336,
0.05285550281405449,
-0.05286404490470886,
-0.05550636351108551,
-0.07955847680568695,
0.010964623652398586,
-0.0024372281040996313,
-0.01243161503225565,
-0.030914396047592163,
-0.01529494859278202,
-0.007653870154172182,
0.09292811155319214,
-0.06513072550296783,
-0.036854617297649384,
-0.019656309857964516,
-0.09038714319467545,
0.022123312577605247,
0.032686397433280945,
-0.07259520888328552,
0.025496460497379303,
-0.029834691435098648,
0.041344210505485535,
-0.008924882858991623,
0.041147880256175995,
-0.05118606984615326,
0.0073654428124427795,
-0.04889624938368797,
-0.02320416085422039,
-0.0324568897485733,
0.04706130176782608,
0.05811251699924469,
-0.042585860937833786,
0.03760986775159836,
-0.00996397901326418,
-0.019031694158911705,
0.048414431512355804,
-0.010372205637395382,
-0.01891815848648548,
0.02498086541891098,
-0.039427101612091064,
0.0037969285622239113,
-0.009356028400361538,
0.01798611506819725,
-0.025138868018984795,
-0.05327453464269638,
-0.021931588649749756,
-0.026540100574493408,
-0.019643040373921394,
0.02619347907602787,
0.04821520298719406,
-0.03128332644701004,
0.03863510861992836,
0.004006417468190193,
0.0186382457613945,
0.003464504610747099,
-0.0060754017904400826,
0.05338504910469055,
0.0025029017124325037,
-0.022498706355690956,
0.02387460693717003,
-0.024440746754407883,
-0.04996577277779579,
0.020847119390964508,
0.007266189903020859,
-0.03672794625163078,
-0.01628354750573635,
0.028955042362213135,
0.003271758323535323,
0.0022509449627250433,
0.03353263810276985,
-0.03277674317359924,
-0.06476941704750061,
-0.05062089487910271,
0.032542821019887924,
0.04873745143413544,
0.005003454629331827,
0.0011788738192990422,
-0.045405637472867966,
0.039879534393548965,
-0.032642364501953125,
-0.02735326439142227,
0.025717832148075104,
-0.023070545867085457,
-0.0052930740639567375,
0.03125273808836937,
0.001617303118109703,
-0.09586596488952637,
0.00966896116733551,
0.03931649401783943,
-0.05560685694217682,
0.01138240098953247,
-0.010462557896971703,
0.1108691394329071,
-0.06330902129411697,
-0.05888542905449867,
0.015351341105997562,
0.009910587221384048,
-0.008661304600536823,
0.0013848267262801528,
0.026290731504559517,
-0.05690448731184006,
-0.04006800428032875,
-0.02752526104450226,
0.027634914964437485,
-0.03423946723341942,
-0.010372311808168888,
0.08549980074167252,
-0.009163177572190762,
0.0410088486969471,
-0.04420400410890579,
0.01673574559390545,
0.003336756955832243,
0.012569419108331203,
-0.018679939210414886,
0.03506384789943695,
-0.036691758781671524,
-0.03742106258869171,
-0.04863481968641281,
-0.06830959767103195,
0.02693895995616913,
0.10508772730827332,
-0.022519942373037338,
-0.006425786297768354,
-0.04770196974277496,
0.0003430125361774117,
0.04343396797776222,
0.02264854498207569,
-0.025704165920615196,
0.039359282702207565,
0.02600553259253502,
0.03222842514514923,
-0.023292841389775276,
0.028321363031864166,
0.013819482177495956,
-0.019022833555936813,
-0.028322657570242882,
0.038187768310308456,
0.03133628889918327,
-0.035302821546792984,
0.011006610468029976,
0.029239472001791,
-0.007677778601646423,
-0.02503734454512596,
-0.039363183081150055,
0.045483581721782684,
-0.02307242900133133,
-0.007933031767606735,
0.031079955399036407,
0.007264053449034691,
-0.034209899604320526,
0.02040240168571472,
-0.010111697018146515,
-0.008164121769368649,
-0.02953534573316574,
-0.010375605896115303,
0.04655064269900322,
-0.00458447216078639,
-0.0014909107703715563,
0.03778832405805588,
-0.05604611337184906,
0.08363579213619232,
-0.03830539435148239,
0.03964933753013611,
-0.04818189889192581,
-0.04478452354669571,
-0.0023221378214657307,
0.055462416261434555,
0.04312313348054886,
0.029897138476371765,
-0.028580768033862114,
-0.038348712027072906,
0.04700194299221039,
0.023385053500533104,
0.05670076236128807,
0.02830875851213932,
-0.05115486681461334,
-0.014313182793557644,
0.024004822596907616,
0.03621009737253189,
-0.056406885385513306,
-0.058410193771123886,
0.012624343857169151,
0.07316932082176208,
-0.03805551677942276,
0.04134395718574524,
-0.028146175667643547,
0.03332020342350006,
-0.06743844598531723,
-0.08432044088840485,
0.03767678886651993,
0.036095086485147476,
0.021656855940818787,
0.04866312816739082,
-0.014999433420598507,
0.013315272517502308,
-0.00308969896286726,
0.010538130067288876,
0.025050152093172073,
-0.04445020854473114,
0.025869930163025856,
0.015353691764175892,
0.08823533356189728,
-0.06695888936519623,
0.019942572340369225,
0.01361880637705326,
0.0108697060495615,
-0.003524634288623929,
-0.025083348155021667,
0.022062379866838455,
0.06717921793460846,
0.010104969143867493,
-0.033101651817560196,
0.030714966356754303,
0.02361399121582508,
0.024767475202679634,
0.025367531925439835,
0.019818339496850967,
0.06398718059062958,
-0.000689098029397428,
0.05384876951575279,
0.0658678263425827,
-0.009604740887880325,
-0.006962209939956665,
0.02363075502216816,
0.04300691559910774,
0.021057719364762306,
-0.010680374689400196,
0.06873771548271179,
-0.01182717178016901,
0.0313795730471611,
-0.0508173331618309,
-0.0042564282193779945,
-0.03671920672059059,
0.0004894324229098856,
0.06098831072449684,
0.014214375987648964,
-0.017566155642271042,
-0.015415466390550137,
0.008121160790324211,
-0.010121883824467659,
0.04778065159916878,
0.0032869416754692793,
0.003672475926578045,
-0.03997960686683655,
-0.0038087726570665836,
-0.012638780288398266,
-0.05079750716686249,
-0.015230904333293438,
-0.0031650112941861153,
-0.039574816823005676,
-0.00013251449854578823,
-0.08786444365978241,
-0.01529694814234972,
-0.06652644276618958,
-0.024785034358501434,
0.06146877259016037,
0.02604595385491848,
0.02723759599030018,
-0.026804057881236076,
0.022707926109433174,
-0.03320443257689476,
-0.05245504900813103,
-0.03319961950182915,
-0.03324444964528084,
-0.014904765412211418,
-0.0566929429769516,
0.00070833700010553,
0.033178623765707016,
0.050575606524944305,
0.013001942075788975,
-0.009584682062268257,
-0.017016146332025528,
-0.04351258650422096,
0.027358761057257652,
0.04007711261510849,
0.0010279121343046427,
-0.04873158782720566,
0.011928005144000053,
-0.010867581702768803,
-0.0019708042964339256,
0.015710264444351196,
-0.04286768659949303,
0.0793444812297821,
0.07228133827447891,
0.025621961802244186,
0.01660621538758278,
0.0010274775559082627,
-0.037326350808143616,
-0.026768038049340248,
-0.040536269545555115,
-0.035765424370765686,
-0.03625481575727463,
-0.04187898710370064,
-0.02964836359024048,
0.020421834662556648,
-0.038765184581279755,
-0.010831576772034168,
-0.02162545919418335,
-0.022302700206637383,
0.04138895496726036,
0.04270389303565025,
0.021015077829360962,
0.030541935935616493,
-0.025969458743929863,
-0.0486203208565712,
0.041538141667842865,
-0.02871699072420597,
-0.024794334545731544,
-0.08228587359189987,
-0.04015510901808739,
0.0677015632390976,
0.0251007117331028,
0.006416702177375555,
-0.01826886460185051,
0.029902683570981026,
0.02220921590924263,
-0.017145931720733643,
0.004924582317471504,
-0.023125089704990387,
-0.0025468149688094854,
-0.01107222680002451,
-0.026324264705181122,
-0.005155891180038452,
-0.023487243801355362,
-0.042968735098838806,
0.02458690106868744,
0.07675201445817947,
-0.03732199966907501,
-0.012792262248694897,
-0.0076860226690769196,
0.017224211245775223,
0.062081772834062576,
0.0010812802938744426,
-0.026067325845360756,
0.0007869605906307697,
-0.05620405822992325,
-0.03411519527435303,
0.027838721871376038,
-0.0016906989039853215,
0.016355587169528008,
0.051774751394987106,
0.03681943938136101,
-0.016329528763890266,
0.05685405433177948,
0.010021024383604527,
0.03164789825677872,
0.018457215279340744,
-0.041618939489126205,
0.007195564452558756,
-0.0360804945230484,
0.01105717197060585,
-0.01822831854224205,
-0.024675846099853516,
-0.06374270468950272,
-0.09528470784425735,
-0.009812369011342525,
0.035984594374895096,
-0.01223768386989832,
-0.010113409720361233,
0.04654325917363167,
0.020632117986679077,
-0.018896346911787987,
-0.013045689091086388,
0.01444783341139555,
0.021173112094402313,
-0.024726038798689842,
0.07910868525505066,
0.0011603654129430652,
0.01222173124551773,
-0.03185503929853439,
0.007766911759972572,
-0.06503966450691223,
-0.027836164459586143,
-0.0035444169770926237,
0.06136602535843849,
0.01676361821591854,
0.03291892260313034,
0.05544241890311241,
0.003078299341723323,
-0.02267627976834774,
0.027101600542664528,
0.08010878413915634,
-0.019763851538300514,
-0.029189646244049072,
-0.0029770813416689634,
0.002382357371971011,
-0.030960842967033386,
-0.022167546674609184,
-0.0014647875213995576,
0.038124196231365204,
0.04043285548686981,
-0.013402482494711876,
0.0026118720415979624,
0.01933087222278118,
-0.020644167438149452,
-0.04227999597787857,
-0.043417688459157944,
0.046951401978731155,
0.000051595077820820734,
0.0023042061366140842,
-0.037931837141513824,
0.03708573058247566,
0.02064872905611992,
0.03884708136320114,
0.004976991098374128,
-0.03037274070084095,
-0.021662423387169838,
0.024349678307771683,
0.03093155287206173,
-0.04233849421143532,
-0.07035595178604126,
-0.0322413444519043,
0.03336183726787567,
0.059742271900177,
-0.02434663288295269,
-0.060671091079711914,
0.05107523128390312,
0.054484620690345764,
-0.056209173053503036,
0.04120443016290665,
0.010711600072681904,
0.06315527111291885,
0.04457038640975952,
-0.034429363906383514,
0.040707945823669434,
-0.021111778914928436,
-0.010438179597258568,
0.01787823811173439,
0.036105260252952576,
-0.03816767781972885,
-0.037768930196762085,
-0.06653113663196564,
0.004782984033226967,
0.0366482175886631,
0.030336810275912285,
0.05457296222448349,
-0.024446522817015648,
-0.05215682089328766,
0.010925260372459888,
0.04826822131872177,
-0.04400947317481041,
0.06509072333574295,
0.087359219789505,
0.005271377507597208,
-0.027457930147647858,
-0.06848215311765671,
0.008966859430074692,
-0.013462066650390625,
0.028012022376060486,
-0.03208405524492264,
-0.022144939750432968,
-0.0502125583589077,
-0.008340207859873772,
0.027047360315918922,
-0.030357874929904938,
-0.07048864662647247,
0.030932165682315826,
0.00966140441596508,
-0.023056760430336,
0.0320931077003479,
-0.027890991419553757,
0.030105343088507652,
0.07459574937820435,
0.008986142463982105,
0.0309094600379467,
-0.047654300928115845,
0.03226955235004425,
-0.04260704293847084,
-0.02210126258432865,
0.0040343087166547775,
-0.04827466607093811,
-0.030574152246117592,
-0.032768454402685165,
-0.029269052669405937,
-0.03974238783121109,
-0.015471011400222778,
0.02674189582467079,
0.027948927134275436,
0.02627871371805668,
-0.024574510753154755,
0.04468252882361412,
0.008570652455091476,
-0.04807689040899277,
-0.034166283905506134,
-0.036863017827272415,
-0.057206470519304276,
-0.029066743329167366,
0.04374046251177788,
-0.012433959171175957,
-0.014522258192300797,
0.016687259078025818,
0.03290003910660744,
0.04885745793581009,
0.0215480774641037,
-0.03972112759947777,
0.01437364425510168,
0.013602100312709808,
-0.013276295736432076,
-0.038481004536151886,
0.012616031803190708,
0.014626993797719479,
0.04356365278363228,
-0.03008400648832321,
0.03174750879406929,
0.005176162347197533,
-0.0157572440803051,
-0.02548970654606819,
0.02945988066494465,
0.01969354785978794,
-0.05868634581565857,
-0.028919218108057976,
0.006743185687810183,
-0.024099113419651985,
0.0542810894548893,
-0.05808791145682335,
-0.020228730514645576,
0.0474480502307415,
-0.003975553438067436,
0.030778370797634125,
0.03157762810587883,
-0.017730753868818283,
0.005353179760277271,
-0.04452548921108246,
0.014252899214625359,
-0.03918587788939476,
0.035912469029426575,
-0.031280517578125,
0.0011611755471676588,
0.0052850497886538506,
-0.012833939865231514,
-0.06768318265676498,
0.02072850801050663,
-0.0483023077249527,
-0.027928028255701065,
-0.00601948844268918,
0.02247615158557892,
-0.010857137851417065,
0.03883912041783333,
-0.009138572961091995,
0.0014251414686441422,
-0.036147136241197586,
0.07770425081253052,
-0.042238444089889526,
0.011446397751569748,
-0.013400889933109283,
0.0037348747719079256,
-0.027207789942622185,
0.0025654411874711514,
-0.012001436203718185,
-0.04792729392647743,
0.0435461662709713,
0.028401752933859825,
0.032417722046375275,
0.02570999041199684,
-0.026426956057548523,
-0.021708335727453232,
0.0031367309857159853,
-0.05968671292066574,
-0.0062958188354969025,
-0.012409081682562828,
0.011562412604689598,
0.002392766997218132,
0.031987715512514114,
0.03230758011341095,
-0.039590585976839066,
-0.048182908445596695,
0.04071543738245964,
0.04143723472952843,
0.006177905015647411,
-0.007856686599552631,
0.00537143973633647,
0.024956315755844116,
0.04535263776779175,
-0.0437912754714489,
-0.01251980196684599,
-0.011895048432052135,
-0.01089517306536436,
0.03039381094276905,
-0.007003429811447859,
0.02801169641315937,
-0.013254092074930668,
-0.0750100389122963,
-0.05151340365409851,
0.09952402859926224,
0.013367578387260437,
0.015198311768472195,
0.004448283463716507,
-0.02943211980164051,
0.06976055353879929,
-0.0030260172206908464,
-0.03923557326197624,
0.003100355388596654,
0.02690569870173931,
-0.018883002921938896,
0.024564823135733604,
-0.008475261740386486,
0.042084116488695145,
0.03483527526259422,
0.03963998332619667,
-0.033605046570301056,
0.03216453641653061,
-0.013654150068759918,
0.03680817410349846,
0.04783153161406517,
-0.07156768441200256,
0.006721793208271265,
-0.0646725594997406,
0.07196354120969772,
-0.07381761819124222,
0.06790664792060852,
0.034776605665683746,
-0.016585228964686394,
0.022921796888113022,
-0.05379165709018707,
-0.02697255089879036,
-0.005284630227833986,
-0.042859748005867004,
0.04390586540102959,
-0.02960359863936901,
-0.051113177090883255,
0.05713184177875519,
0.013872922398149967,
-0.08856498450040817,
0.021312754601240158,
0.006233666557818651,
0.01973077282309532,
0.031086817383766174,
0.02703259512782097,
-0.03423018008470535,
0.02501501329243183,
-0.06297945231199265,
0.03776124119758606,
-0.021469449624419212,
-0.04363150894641876,
0.03075631521642208,
-0.022624921053647995,
-0.04666488245129585,
0.028603320941329002,
0.00859669130295515,
0.013015497475862503,
0.045994166284799576,
-0.03702085465192795,
-0.05476080998778343,
-0.003291101660579443,
-0.0051095085218548775,
0.009678729809820652,
0.006068239454180002,
-0.05064979940652847,
0.0010956578189507127,
0.0001263077137991786,
-0.005890850909054279,
-0.006335405632853508,
0.0009828205220401287,
0.01582830771803856,
-0.06207207962870598,
-0.06131182983517647,
0.05528845265507698,
0.002055412856861949,
-0.021698644384741783,
0.03331739082932472,
0.014712255448102951,
0.012852560728788376,
0.0048130471259355545,
-0.001848395331762731,
0.01348131988197565,
-0.03903215751051903,
-0.0585399866104126,
0.040800731629133224,
-0.010118362493813038,
0.02821369469165802,
0.01260131411254406,
0.01031425315886736,
0.03494628891348839,
0.03333538770675659,
0.012091310694813728,
-0.030324403196573257,
-0.05543818324804306,
0.03747973591089249,
-0.044301435351371765,
0.014517893083393574,
-0.011656745336949825,
-0.04235254228115082,
-0.02752196229994297,
-0.007816431112587452,
-0.052801087498664856,
0.0360545814037323,
-0.05898518115282059,
0.05038749426603317,
0.027044877409934998,
-0.002237460808828473,
-0.050111670047044754,
-0.05731300637125969,
-0.03603658825159073,
-0.0425928570330143,
0.016289960592985153,
0.029079187661409378,
-0.014471464790403843,
0.03588883951306343,
-0.020889610052108765,
-0.05370789021253586,
0.033685341477394104,
-0.007186872884631157,
-0.041884321719408035,
0.032639194279909134,
0.05458123981952667,
-0.012576938606798649,
0.00042646052315831184,
0.049913518130779266,
-0.03340161219239235,
0.01640339195728302,
0.014417408034205437,
0.00762522965669632,
0.032378729432821274,
0.02342437207698822,
-0.027649706229567528,
-0.023554109036922455,
-0.03959191218018532,
-0.033761028200387955,
-0.03576225787401199,
0.012327784672379494,
0.06668458133935928
] |
Barleysack/AERoberta | [
"pytorch",
"roberta",
"question-answering",
"transformers",
"autotrain_compatible"
] | question-answering | {
"architectures": [
"RobertaForQuestionAnswering"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 7 | null | ---
license: apache-2.0
tags:
- setfit
- sentence-transformers
- text-classification
pipeline_tag: text-classification
---
# /var/folders/cr/k5wjffrn18lf95kf3ffg7r_r0000gn/T/tmpjq7bmyjw/DanielaSaavedraL/saleswiz-baseline_is_positive
This is a [SetFit model](https://github.com/huggingface/setfit) that can be used for text classification. The model has been trained using an efficient few-shot learning technique that involves:
1. Fine-tuning a [Sentence Transformer](https://www.sbert.net) with contrastive learning.
2. Training a classification head with features from the fine-tuned Sentence Transformer.
## Usage
To use this model for inference, first install the SetFit library:
```bash
python -m pip install setfit
```
You can then run inference as follows:
```python
from setfit import SetFitModel
# Download from Hub and run inference
model = SetFitModel.from_pretrained("/var/folders/cr/k5wjffrn18lf95kf3ffg7r_r0000gn/T/tmpjq7bmyjw/DanielaSaavedraL/saleswiz-baseline_is_positive")
# Run inference
preds = model(["i loved the spiderman movie!", "pineapple on pizza is the worst 🤮"])
```
## BibTeX entry and citation info
```bibtex
@article{https://doi.org/10.48550/arxiv.2209.11055,
doi = {10.48550/ARXIV.2209.11055},
url = {https://arxiv.org/abs/2209.11055},
author = {Tunstall, Lewis and Reimers, Nils and Jo, Unso Eun Seo and Bates, Luke and Korat, Daniel and Wasserblat, Moshe and Pereg, Oren},
keywords = {Computation and Language (cs.CL), FOS: Computer and information sciences, FOS: Computer and information sciences},
title = {Efficient Few-Shot Learning Without Prompts},
publisher = {arXiv},
year = {2022},
copyright = {Creative Commons Attribution 4.0 International}
}
```
| [
-0.02314508520066738,
-0.0326920822262764,
-0.010873302817344666,
0.0627397671341896,
0.029303712770342827,
0.031072765588760376,
-0.027209913358092308,
-0.00010683997243177146,
-0.03481534495949745,
0.05767732486128807,
0.01948852464556694,
0.01225599367171526,
0.028868943452835083,
0.01803191937506199,
-0.045013029128313065,
-0.031637147068977356,
-0.006063362117856741,
-0.013726179488003254,
-0.019856862723827362,
-0.01101687178015709,
0.012667091563344002,
0.0021658921614289284,
0.002735160058364272,
0.02253490686416626,
-0.017008181661367416,
0.027808085083961487,
-0.03097301721572876,
0.025736916810274124,
0.0452924482524395,
-0.0666230171918869,
0.008458245545625687,
-0.028588274493813515,
-0.03873591870069504,
-0.0034200213849544525,
-0.008990591391921043,
0.01431724801659584,
-0.01237027533352375,
0.002163494238629937,
-0.0011590627254918218,
0.04289617761969566,
0.008316226303577423,
0.02988872490823269,
-0.007175507955253124,
-0.018208004534244537,
0.040530975908041,
0.011771599762141705,
-0.03156057000160217,
-0.0103777926415205,
0.051337823271751404,
-0.02598951756954193,
-0.06918423622846603,
-0.07937353104352951,
-0.03964497148990631,
0.019307108595967293,
-0.020285630598664284,
0.005413738079369068,
-0.05360992252826691,
0.012232964858412743,
0.06598388403654099,
-0.060567889362573624,
-0.01931869611144066,
0.021348286420106888,
-0.05861710384488106,
0.011728666722774506,
0.013563515618443489,
-0.04637983441352844,
-0.013676769100129604,
-0.047663141041994095,
-0.0009876970434561372,
-0.05557309836149216,
0.0709332823753357,
-0.0007283010054379702,
0.031591810286045074,
-0.08455418795347214,
-0.0005134310922585428,
0.0012727105058729649,
0.047453656792640686,
0.0539371632039547,
-0.027662837877869606,
0.054181911051273346,
0.041832294315099716,
0.001911784871481359,
0.023671898990869522,
0.01863819733262062,
-0.002073014620691538,
0.035968177020549774,
-0.05018452927470207,
0.008952767588198185,
0.004593333695083857,
0.024314898997545242,
-0.03686753287911415,
-0.045466046780347824,
-0.006026621907949448,
-0.03276050463318825,
-0.034228723496198654,
0.021576084196567535,
0.030697893351316452,
-0.011802686378359795,
0.04217197373509407,
0.04214145615696907,
0.035667743533849716,
0.04687698557972908,
-0.02054378017783165,
0.06878877431154251,
-0.01031167060136795,
0.007575837429612875,
-0.00730552151799202,
-0.037197045981884,
-0.054442375898361206,
0.046003494411706924,
0.02622317336499691,
-0.011157616972923279,
-0.042449161410331726,
0.042606648057699203,
0.004505122546106577,
-0.0025608562864363194,
0.05505703017115593,
-0.02483995631337166,
-0.044460710138082504,
-0.04880719259381294,
0.040325626730918884,
-0.019206063821911812,
-0.013352005742490292,
-0.010280278511345387,
-0.038626186549663544,
0.00840610358864069,
-0.054510537534952164,
-0.027703547850251198,
-0.014689799398183823,
0.03411473333835602,
-0.002870056079700589,
0.03835432603955269,
0.026826446875929832,
-0.04686158522963524,
0.008391949348151684,
0.00993365328758955,
-0.06466956436634064,
0.044353920966386795,
0.03638716787099838,
0.11137156188488007,
-0.0937989354133606,
-0.034151218831539154,
0.024530991911888123,
0.023078395053744316,
-0.03764432296156883,
0.011480720713734627,
0.003382581751793623,
-0.06303401291370392,
-0.025413373485207558,
-0.029991736635565758,
0.049860041588544846,
-0.054232269525527954,
-0.01253671757876873,
0.03356710076332092,
-0.024686848744750023,
0.055980365723371506,
-0.06449287384748459,
-0.006668536923825741,
0.0063193622045218945,
0.00012243837409187108,
-0.021573377773165703,
0.03317214176058769,
-0.022015564143657684,
-0.0021970076486468315,
-0.027356013655662537,
-0.03382371738553047,
-0.008617611601948738,
0.06747753918170929,
-0.025475680828094482,
-0.01263716071844101,
-0.020828405395150185,
-0.0006464567268267274,
0.043197862803936005,
0.015452248044312,
-0.005855572409927845,
0.025273410603404045,
0.08305229246616364,
0.033785928040742874,
-0.03153421729803085,
0.04719020053744316,
0.013939814642071724,
-0.030462780967354774,
-0.0161201823502779,
0.011255704797804356,
-0.006385475862771273,
-0.009436440654098988,
0.03528448939323425,
0.04563405364751816,
-0.03514626994729042,
-0.011674318462610245,
-0.022545570507645607,
0.07339933514595032,
0.016798000782728195,
0.004809702280908823,
-0.009014387615025043,
-0.00486246682703495,
-0.020175131037831306,
0.04990525171160698,
-0.010599995031952858,
0.00090905895922333,
-0.026487572118639946,
-0.040662553161382675,
-0.006567828357219696,
0.018734760582447052,
0.005379542242735624,
0.024867847561836243,
-0.005428185220807791,
0.07466032356023788,
-0.04110194370150566,
0.0349896065890789,
-0.04920056834816933,
-0.04463152959942818,
0.004577642772346735,
0.03242575004696846,
0.0277530699968338,
0.06494070589542389,
0.016580594703555107,
-0.039363764226436615,
0.010257181711494923,
0.02506057545542717,
0.01737799681723118,
0.04001206159591675,
-0.00809741485863924,
-0.010903620161116123,
0.02242818847298622,
0.04627765342593193,
-0.03973226249217987,
-0.02929234690964222,
0.021644828841090202,
0.04539196565747261,
-0.005134912207722664,
-0.0008209026418626308,
-0.014462948776781559,
0.03982767090201378,
-0.04644555598497391,
-0.061650075018405914,
0.04246573522686958,
0.03343430161476135,
0.01695222035050392,
0.027195077389478683,
-0.0059482865035533905,
-0.018152328208088875,
0.0363784022629261,
0.00020166111062280834,
-0.012737346813082695,
-0.05011490732431412,
0.0018836903618648648,
0.033988311886787415,
0.03883815556764603,
-0.044373929500579834,
0.03510509058833122,
0.01172479148954153,
0.004938497208058834,
0.03098355606198311,
-0.024932457134127617,
0.04313719645142555,
0.06299538910388947,
0.00457042409107089,
-0.02597115747630596,
0.04286648705601692,
-0.003189777722582221,
0.04091794416308403,
0.042499393224716187,
0.0026781591586768627,
0.06281226128339767,
-0.03132656216621399,
0.04911397397518158,
0.12293459475040436,
0.02508045732975006,
0.017245851457118988,
0.05044161528348923,
0.07230508327484131,
-0.011233392171561718,
-0.019544746726751328,
0.06506813317537308,
-0.06497454643249512,
0.03237432241439819,
-0.055583655834198,
0.026223115622997284,
-0.015134429559111595,
-0.003925748635083437,
0.05399602651596069,
0.017811262980103493,
-0.03728625178337097,
0.015725621953606606,
-0.012843281030654907,
0.01143666822463274,
0.02005854994058609,
-0.02160622552037239,
0.004826417658478022,
0.018055599182844162,
-0.02682984620332718,
0.018603386357426643,
-0.06422612071037292,
-0.0544133335351944,
0.0020539364777505398,
-0.026948651298880577,
-0.00968937762081623,
-0.07520151138305664,
-0.03577785566449165,
-0.04573792219161987,
-0.01754087768495083,
0.036776162683963776,
0.012407474219799042,
0.012125812470912933,
-0.03714843839406967,
0.015260213986039162,
-0.03593633323907852,
-0.035353124141693115,
-0.04038262739777565,
-0.04538758099079132,
-0.04106035456061363,
-0.04618049040436745,
0.04597247391939163,
0.007423953153192997,
0.016566073521971703,
0.01652372255921364,
-0.00014123271103017032,
-0.018024062737822533,
-0.03312945365905762,
0.06681276112794876,
0.025205347687005997,
-0.021121537312865257,
-0.05326811224222183,
0.020125536248087883,
-0.030307471752166748,
0.009785144589841366,
-0.014542651362717152,
-0.041996099054813385,
0.06901142001152039,
0.07352954894304276,
0.020750703290104866,
-0.006146009545773268,
-0.03401011601090431,
-0.06581881642341614,
-0.06598234176635742,
-0.01850396767258644,
-0.0353386290371418,
-0.039491720497608185,
-0.03121909312903881,
-0.048283468931913376,
-0.017028246074914932,
-0.027919955551624298,
-0.02360900305211544,
0.010436479933559895,
0.007247203029692173,
0.04079239442944527,
0.026896605268120766,
0.03881510719656944,
0.025538090616464615,
-0.05503711476922035,
-0.052503567188978195,
0.054498881101608276,
0.02526199072599411,
0.0118127865716815,
-0.09075112640857697,
-0.03315407782793045,
0.02094423398375511,
0.0060926578007638454,
0.017549099400639534,
-0.01438734121620655,
0.09616106748580933,
0.02549705281853676,
-0.008432942442595959,
0.017447883263230324,
0.018358750268816948,
-0.00808514840900898,
-0.005239574704319239,
-0.021503524854779243,
-0.004793806001543999,
-0.05084104463458061,
-0.03377550095319748,
-0.038577139377593994,
0.05857335776090622,
-0.06698117405176163,
-0.05393308401107788,
0.03387615457177162,
0.05002335458993912,
0.02323339134454727,
-0.0174699854105711,
-0.03468537703156471,
-0.01161182951182127,
-0.050912823528051376,
-0.0020782037172466516,
0.024490877985954285,
-0.010403839871287346,
-0.0072294375859200954,
0.040885813534259796,
0.044599421322345734,
-0.024165188893675804,
0.025348814204335213,
0.03695710375905037,
0.05127563700079918,
-0.001085621421225369,
-0.049436055123806,
0.034883733838796616,
-0.02338666096329689,
0.031149208545684814,
0.008745125494897366,
-0.018099350854754448,
-0.04661814868450165,
-0.08494799584150314,
-0.007546799257397652,
0.010123123414814472,
-0.009570756927132607,
-0.01198399718850851,
0.03536685183644295,
-0.03668481484055519,
-0.02389739826321602,
0.013603325933218002,
0.026515744626522064,
0.021831924095749855,
-0.0355144664645195,
0.03992779925465584,
-0.019073495641350746,
0.03461151942610741,
-0.03477347642183304,
0.014869129285216331,
-0.033122822642326355,
-0.039726778864860535,
0.03184407204389572,
0.05993034690618515,
0.00793543178588152,
0.044130440801382065,
0.056585539132356644,
0.04897952452301979,
-0.02820003777742386,
0.04676234349608421,
0.04337851330637932,
-0.016749359667301178,
-0.061917733401060104,
-0.0005519585683941841,
-0.014738027937710285,
-0.01753557100892067,
-0.008372473530471325,
-0.026747379451990128,
0.02134140208363533,
0.01975340209901333,
-0.0005114356172271073,
-0.018929779529571533,
-0.02421843633055687,
-0.024411289021372795,
-0.028389139100909233,
-0.06885676085948944,
-0.01712981052696705,
-0.012046474032104015,
-0.016162486746907234,
0.04563579708337784,
0.03293796628713608,
0.011818096973001957,
0.057381294667720795,
0.04456353560090065,
-0.014009061269462109,
-0.03912735357880592,
0.035137224942445755,
0.04276938736438751,
-0.03465375304222107,
-0.04860211908817291,
-0.06768200546503067,
0.025872696191072464,
0.04759233444929123,
-0.03798789903521538,
-0.0857803001999855,
0.020846856757998466,
0.06557735055685043,
-0.0538676418364048,
0.07304736971855164,
0.01789582148194313,
0.04473398998379707,
0.08179932832717896,
-0.027301792055368423,
0.030360022559762,
-0.003090865444391966,
-0.011626506224274635,
0.006750192027539015,
0.06259036064147949,
-0.04279112443327904,
-0.04079568386077881,
-0.030224468559026718,
0.0552254244685173,
0.026210453361272812,
0.03943606838583946,
0.05060926079750061,
-0.03355802223086357,
-0.059305548667907715,
0.013550466857850552,
0.03258403390645981,
-0.014487448148429394,
-0.007509101647883654,
0.013055603951215744,
0.03891171142458916,
-0.056130968034267426,
-0.033121298998594284,
-0.020738769322633743,
-0.0002172523527406156,
0.03341882303357124,
0.004162146244198084,
-0.03976026922464371,
-0.027065325528383255,
-0.0000010136474202226964,
-0.01811836287379265,
-0.022275332361459732,
-0.07602141052484512,
0.04262165725231171,
-0.011812013573944569,
-0.020830444991588593,
0.05930493026971817,
0.045862775295972824,
0.03529415652155876,
0.035700391978025436,
0.009056925773620605,
0.02310813218355179,
-0.017054898664355278,
0.039711594581604004,
-0.028713680803775787,
-0.03661339730024338,
-0.015086259692907333,
-0.06833110749721527,
-0.009614287875592709,
-0.023220112547278404,
-0.022641004994511604,
-0.05079073831439018,
-0.05014883354306221,
0.0010295623214915395,
-0.0062894863076508045,
-0.016580509021878242,
-0.0038863960653543472,
0.023002076894044876,
-0.029504846781492233,
-0.032465510070323944,
-0.04437340050935745,
-0.03284873813390732,
-0.07475703954696655,
-0.04277019202709198,
0.00024544011102989316,
0.019138159230351448,
0.018468616530299187,
0.022271210327744484,
-0.0014745339285582304,
0.009473823010921478,
0.014249739237129688,
-0.03134828060865402,
0.0394119992852211,
-0.004320577718317509,
-0.044734422117471695,
-0.018465956673026085,
0.0077653792686760426,
0.00791948288679123,
0.00750512583181262,
-0.011565511114895344,
0.02663680911064148,
0.03494507819414139,
-0.021503247320652008,
-0.027069149538874626,
0.047226883471012115,
0.0059364414773881435,
-0.06895188987255096,
-0.026274310424923897,
-0.010201952420175076,
-0.03875477984547615,
0.04127078875899315,
0.010180025361478329,
-0.015566318295896053,
0.00572234857827425,
0.02569965459406376,
0.016055036336183548,
-0.033326152712106705,
-0.031177403405308723,
0.006700505036860704,
-0.02192205935716629,
0.02551206387579441,
-0.0736628845334053,
0.044575322419404984,
-0.056085627526044846,
-0.004882310517132282,
-0.009698654524981976,
-0.002206872683018446,
-0.054382141679525375,
0.058715276420116425,
-0.011095029301941395,
0.0046940753236413,
-0.0237775519490242,
0.00725832674652338,
-0.02430032193660736,
0.025467192754149437,
0.002213072497397661,
0.006939338985830545,
-0.0337509922683239,
0.04064808413386345,
-0.03929116949439049,
-0.0039778403006494045,
-0.012997777201235294,
0.0056305150501430035,
-0.02211960405111313,
-0.019810331985354424,
-0.021023951470851898,
-0.0332142636179924,
0.04619140177965164,
0.01606106199324131,
0.036384217441082,
0.0476929135620594,
-0.005171977449208498,
0.018752608448266983,
0.0224736537784338,
-0.08777811378240585,
-0.036898013204336166,
0.0039639719761908054,
0.0266552921384573,
0.004062871914356947,
0.06932271271944046,
0.03947935253381729,
-0.058783940970897675,
-0.05467045679688454,
0.0642320066690445,
0.02288610115647316,
-0.009076681919395924,
0.00010053480946226045,
0.026430394500494003,
0.050262656062841415,
0.014690890908241272,
-0.02877332642674446,
-0.028547538444399834,
0.004812217783182859,
-0.04186781495809555,
0.020863717421889305,
-0.015300189144909382,
0.05105224624276161,
0.023474590852856636,
-0.034505464136600494,
-0.0041525764390826225,
0.06141630932688713,
0.02799336239695549,
0.014660089276731014,
-0.016026975587010384,
-0.03743112459778786,
0.008428206667304039,
0.0008776055183261633,
-0.05362891033291817,
0.000386132305720821,
0.011799787171185017,
-0.026490051299333572,
0.06314548850059509,
0.008750873617827892,
0.008255846798419952,
0.053355976939201355,
0.008224768564105034,
-0.027563350275158882,
0.044654443860054016,
-0.034125424921512604,
0.019655689597129822,
0.047675956040620804,
-0.05069863796234131,
-0.005569867789745331,
-0.028599489480257034,
0.06341321766376495,
-0.07564156502485275,
0.06052597612142563,
0.04001710191369057,
0.028756631538271904,
0.009635384194552898,
-0.02705926075577736,
-0.054759662598371506,
0.03972504287958145,
-0.04900982975959778,
0.07579131424427032,
0.007996543310582638,
-0.061206139624118805,
0.09487373381853104,
0.018359648063778877,
-0.08802838623523712,
0.035185981541872025,
0.043433789163827896,
0.03753796964883804,
0.03700941428542137,
0.046524837613105774,
-0.05198047682642937,
-0.009709821082651615,
-0.015772860497236252,
0.024232566356658936,
-0.04742170497775078,
-0.015611090697348118,
0.004123928491026163,
-0.044909290969371796,
0.005927250254899263,
0.05418785661458969,
0.006407471839338541,
0.008780046366155148,
0.03325396031141281,
-0.03477650508284569,
-0.036738473922014236,
-0.01166210975497961,
-0.0003705300041474402,
-0.01782854087650776,
0.020132001489400864,
-0.022804120555520058,
0.009710641577839851,
0.021943140774965286,
-0.003391708480194211,
-0.03511132672429085,
-0.013670338317751884,
0.023150835186243057,
-0.05329838767647743,
-0.01689285598695278,
0.04100280627608299,
0.023644031956791878,
-0.03240244835615158,
0.034325119107961655,
0.008240386843681335,
0.028564423322677612,
0.02683500573039055,
-0.025098834186792374,
0.03789146989583969,
-0.07643543928861618,
-0.004794458393007517,
0.031231189146637917,
-0.014961466193199158,
0.037480324506759644,
-0.009681212715804577,
0.04450126737356186,
0.051578767597675323,
0.01977028325200081,
-0.0005955510423518717,
-0.025652136653661728,
-0.01197136752307415,
0.0007717865519225597,
-0.04341239854693413,
0.030102724209427834,
0.009409360587596893,
-0.04376725107431412,
-0.01702364906668663,
-0.031279172748327255,
-0.020458120852708817,
0.04362739622592926,
-0.03779038041830063,
0.005706130526959896,
0.06928300857543945,
-0.02480890229344368,
-0.05109122395515442,
-0.07877690345048904,
-0.02775520458817482,
-0.020620407536625862,
0.031647346913814545,
0.018442761152982712,
-0.010693714953958988,
0.014627372846007347,
-0.01786968857049942,
-0.051243122667074203,
0.023950723931193352,
0.0313774049282074,
-0.039593588560819626,
0.05653861165046692,
0.03402557224035263,
-0.026192259043455124,
0.04273027181625366,
0.036916542798280716,
-0.047849565744400024,
0.0011980514973402023,
0.005910983309149742,
0.024871662259101868,
0.0312367994338274,
0.033860526978969574,
-0.019502300769090652,
-0.030751148238778114,
-0.054314594715833664,
-0.040292318910360336,
-0.06208810582756996,
-0.014973157085478306,
0.05052511766552925
] |
Barleysack/klue-roberta-LSTM | [
"pytorch",
"roberta",
"transformers"
] | null | {
"architectures": [
"QAWithLSTMModel"
],
"model_type": "roberta",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 6 | null | ---
license: apache-2.0
tags:
- generated_from_trainer
metrics:
- accuracy
- f1
- precision
- recall
model-index:
- name: Onlyphish_10K_fromP_BFall_10KGen_topP_0.75
results: []
---
<!-- 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. -->
# Onlyphish_10K_fromP_BFall_10KGen_topP_0.75
This model is a fine-tuned version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on the None dataset.
It achieves the following results on the evaluation set:
- Loss: 0.0759
- Accuracy: 0.9929
- F1: 0.9193
- Precision: 1.0
- Recall: 0.8506
- Roc Auc Score: 0.9253
- Tpr At Fpr 0.01: 0.8776
## 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: 32
- eval_batch_size: 32
- seed: 42
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
- lr_scheduler_type: linear
- num_epochs: 5.0
- mixed_precision_training: Native AMP
### Training results
| Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall | Roc Auc Score | Tpr At Fpr 0.01 |
|:-------------:|:-----:|:-----:|:---------------:|:--------:|:------:|:---------:|:------:|:-------------:|:---------------:|
| 0.0055 | 1.0 | 13125 | 0.0436 | 0.9901 | 0.8844 | 0.9933 | 0.797 | 0.8984 | 0.7488 |
| 0.0032 | 2.0 | 26250 | 0.1145 | 0.9853 | 0.8171 | 0.9994 | 0.691 | 0.8455 | 0.756 |
| 0.0025 | 3.0 | 39375 | 0.0705 | 0.9919 | 0.9076 | 0.9978 | 0.8324 | 0.9162 | 0.8332 |
| 0.0018 | 4.0 | 52500 | 0.0848 | 0.9919 | 0.9065 | 0.9998 | 0.8292 | 0.9146 | 0.8506 |
| 0.0008 | 5.0 | 65625 | 0.0759 | 0.9929 | 0.9193 | 1.0 | 0.8506 | 0.9253 | 0.8776 |
### Framework versions
- Transformers 4.29.1
- Pytorch 1.9.0+cu111
- Datasets 2.10.1
- Tokenizers 0.13.2
| [
-0.022875459864735603,
0.0027781787794083357,
-0.005670372396707535,
0.01134552899748087,
0.014564821496605873,
0.005744267255067825,
-0.013628292828798294,
-0.005802799481898546,
-0.036808080971241,
0.06268851459026337,
0.008937650360167027,
-0.03387349843978882,
0.02547677606344223,
0.026387961581349373,
-0.02846725843846798,
-0.026827415451407433,
-0.019616931676864624,
-0.004218526650220156,
-0.03962768614292145,
0.03125184401869774,
-0.008016087114810944,
-0.0008656426216475666,
-0.008427933789789677,
0.007504120469093323,
0.004472237545996904,
0.031296417117118835,
-0.012213044799864292,
0.03127187490463257,
0.02826201356947422,
-0.06671059876680374,
-0.018568849191069603,
-0.059342656284570694,
-0.05106378719210625,
-0.02261344902217388,
-0.01575440727174282,
-0.004389179404824972,
-0.010173855349421501,
0.015724962577223778,
0.052956998348236084,
0.060104258358478546,
0.00340248248539865,
0.00861715991050005,
-0.012896604835987091,
-0.007629308849573135,
0.04172718524932861,
-0.0018685279646888375,
-0.022746212780475616,
-0.004261432681232691,
0.04619244486093521,
-0.0018199312034994364,
-0.06740370392799377,
-0.03633023425936699,
-0.021846970543265343,
0.010170836001634598,
-0.007102531846612692,
-0.01569637469947338,
-0.07003316283226013,
0.0015538391890004277,
0.06985276937484741,
-0.02250702865421772,
-0.044943906366825104,
0.005990457255393267,
-0.06589943170547485,
0.027461716905236244,
0.05051980912685394,
-0.009737027809023857,
0.03604016453027725,
-0.04430433362722397,
0.01589181460440159,
-0.03084150329232216,
0.04668983444571495,
-0.004664966370910406,
0.01298309676349163,
-0.09291189163923264,
-0.02285272255539894,
0.006067806389182806,
0.03729160130023956,
0.04444083198904991,
-0.029661089181900024,
0.05633411556482315,
0.02351704053580761,
-0.01121011096984148,
0.050356023013591766,
-0.009281876496970654,
0.013164570555090904,
0.042167264968156815,
-0.031777169555425644,
0.008920416235923767,
0.009939580224454403,
0.017920104786753654,
-0.040028661489486694,
-0.03118620067834854,
-0.04042608663439751,
-0.013599715195596218,
-0.019771473482251167,
0.0017146117752417922,
0.024955445900559425,
0.026227056980133057,
0.0434902086853981,
0.005700829904526472,
0.03908378258347511,
0.02677925117313862,
-0.009407015517354012,
0.0862291008234024,
-0.014434676617383957,
-0.031050993129611015,
-0.01592404954135418,
-0.029735002666711807,
-0.040732238441705704,
0.0159828569740057,
0.021498218178749084,
-0.04293547198176384,
-0.04003355652093887,
0.043178558349609375,
0.004291638731956482,
0.016912303864955902,
0.05871676653623581,
-0.025050126016139984,
-0.038298483937978745,
-0.03352450951933861,
0.04382367804646492,
0.009871060959994793,
0.007718431763350964,
-0.011409980244934559,
-0.052955854684114456,
-0.008001584559679031,
-0.035817328840494156,
-0.018537970259785652,
-0.0220944844186306,
0.011059324257075787,
-0.006873020436614752,
0.05513099953532219,
0.031069086864590645,
-0.07299289107322693,
-0.009589477442204952,
0.004492519423365593,
-0.04758250340819359,
0.03472881764173508,
-0.0038656280376017094,
0.09565403312444687,
-0.056441228836774826,
-0.0881461575627327,
0.012091049924492836,
-0.013388278894126415,
-0.03676219657063484,
0.013682043179869652,
0.024310003966093063,
-0.050227195024490356,
-0.005110417027026415,
-0.016814308241009712,
0.05999648943543434,
-0.050063081085681915,
-0.008293847553431988,
0.06100914627313614,
-0.0077086882665753365,
0.02858927473425865,
-0.04590313509106636,
-0.012113114818930626,
0.017265301197767258,
-0.01733626239001751,
0.005778714083135128,
0.02848212607204914,
-0.038276199251413345,
-0.008822333067655563,
-0.04897044971585274,
-0.035436324775218964,
0.0046544428914785385,
0.0750870630145073,
0.008079098537564278,
-0.019302980974316597,
-0.01585731841623783,
0.008004340343177319,
0.05897535756230354,
0.027321774512529373,
-0.02683493122458458,
0.04685511067509651,
0.056501008570194244,
0.022926025092601776,
-0.03625435009598732,
0.044794414192438126,
0.019451942294836044,
-0.04612848162651062,
-0.03259456530213356,
0.03990501910448074,
-0.011788680218160152,
-0.03816337510943413,
0.029134569689631462,
0.026974214240908623,
0.014018094167113304,
-0.05167490988969803,
-0.025278685614466667,
0.03920023888349533,
-0.010148243047297001,
-0.000654385075904429,
0.016894884407520294,
0.016913525760173798,
-0.02070516347885132,
0.020141281187534332,
-0.013175937347114086,
0.010723954997956753,
-0.013936870731413364,
-0.030814383178949356,
0.026335161179304123,
0.00294869439676404,
0.031072081997990608,
0.0485682338476181,
-0.022126711905002594,
0.11695510894060135,
-0.0374687984585762,
0.016293471679091454,
-0.03835199028253555,
-0.018425172194838524,
0.03352368250489235,
0.059968750923871994,
0.0460980050265789,
0.03588749095797539,
0.008139997720718384,
-0.037573639303445816,
0.038191236555576324,
0.06063413619995117,
0.051953889429569244,
0.007180983666330576,
-0.05259395390748978,
-0.00989256240427494,
0.040575381368398666,
0.039888281375169754,
-0.0359521359205246,
-0.037094663828611374,
0.016197780147194862,
0.0495661124587059,
-0.005488625727593899,
0.01722966693341732,
-0.024337563663721085,
0.048296183347702026,
-0.039258912205696106,
-0.05704191327095032,
0.03584027290344238,
0.03317183628678322,
0.005866674240678549,
0.04897213354706764,
0.006169053725898266,
0.0030571045354008675,
0.027060914784669876,
0.01968931406736374,
-0.0034123745281249285,
-0.039835844188928604,
0.024470506235957146,
0.0035633710213005543,
0.03666120395064354,
-0.023530205711722374,
0.03987795487046242,
-0.029511434957385063,
0.01693040318787098,
0.03560643643140793,
-0.03664946183562279,
0.016650816425681114,
0.04173313081264496,
0.019682783633470535,
-0.025559276342391968,
0.02480475790798664,
0.014236883260309696,
0.026711134240031242,
0.05819329619407654,
-0.007881933823227882,
0.07593067735433578,
-0.003869806183502078,
0.03972025215625763,
0.0743880644440651,
0.010182563215494156,
0.044446948915719986,
0.010228210128843784,
0.0778803601861,
0.011643948964774609,
-0.02211129292845726,
0.0477459616959095,
-0.043969668447971344,
0.01560134906321764,
-0.04959343746304512,
-0.002039638813585043,
-0.026411572471261024,
-0.0033019992988556623,
0.03666628524661064,
0.02268998697400093,
-0.026906561106443405,
-0.01433124952018261,
0.024669695645570755,
-0.031211791560053825,
0.02348923124372959,
0.0029778811149299145,
0.012014809064567089,
0.012860316783189774,
0.003082494018599391,
-0.0023628915660083294,
-0.08143327385187149,
-0.020246945321559906,
-0.02460147812962532,
-0.024119723588228226,
-0.01266378816217184,
-0.08383401483297348,
0.006139391101896763,
-0.08168423920869827,
-0.01945476047694683,
0.023693017661571503,
0.0073410761542618275,
-0.00948815606534481,
-0.057384319603443146,
0.027318162843585014,
-0.052031002938747406,
-0.04760422557592392,
-0.025794435292482376,
-0.05539271980524063,
-0.04525788873434067,
-0.09767242521047592,
0.043753355741500854,
0.04236633703112602,
-0.01180631760507822,
-0.004180604126304388,
0.01896415837109089,
0.010437222197651863,
-0.017393091693520546,
0.03177620470523834,
0.07748706638813019,
-0.038007475435733795,
-0.05414992570877075,
0.031632229685783386,
-0.02283923514187336,
0.018061580136418343,
-0.010783086530864239,
-0.029834207147359848,
0.10020802170038223,
0.06467991322278976,
0.023870330303907394,
0.014744702726602554,
-0.03076377883553505,
-0.06953942030668259,
-0.03998187929391861,
-0.029011044651269913,
-0.051163606345653534,
-0.020939921960234642,
-0.047632429748773575,
-0.032878976315259933,
-0.009879536926746368,
-0.03518490120768547,
0.00907067209482193,
-0.0048057870008051395,
0.012993444688618183,
0.02933628112077713,
0.04201784357428551,
0.010392533615231514,
0.05006470903754234,
-0.03149031102657318,
-0.06533554941415787,
0.05576778203248978,
-0.0036741863004863262,
-0.0070257936604321,
-0.0854954645037651,
-0.019413836300373077,
0.043989405035972595,
0.00982993096113205,
0.03828427940607071,
-0.02189565822482109,
0.06851867586374283,
-0.0010834275744855404,
-0.007459741085767746,
0.032341476529836655,
-0.0220290906727314,
-0.039719149470329285,
-0.008946751244366169,
-0.005747203715145588,
-0.014757995493710041,
-0.04494265839457512,
-0.0029497819487005472,
-0.007988018915057182,
0.03437217324972153,
-0.037927865982055664,
-0.046463318169116974,
-0.007711147889494896,
0.034985557198524475,
0.03568384423851967,
-0.006751884240657091,
-0.055922213941812515,
-0.031213099136948586,
-0.07418946921825409,
0.0018837051466107368,
0.03231069818139076,
0.013010990805923939,
0.02296764962375164,
0.030009888112545013,
0.006834272760897875,
0.0047258599661290646,
0.05573331564664841,
0.04136759042739868,
0.08030663430690765,
0.009245318360626698,
-0.057497456669807434,
0.0029253980610519648,
-0.014163834042847157,
0.012147516012191772,
-0.02605460211634636,
-0.018609751015901566,
-0.0427999421954155,
-0.11825279891490936,
-0.027206232771277428,
0.010216040536761284,
-0.007761533837765455,
-0.006149836350232363,
0.04431646317243576,
-0.0073215835727751255,
-0.015020572580397129,
0.0033373821061104536,
-0.0004906596150249243,
0.028078453615307808,
-0.05124442279338837,
0.03888396918773651,
-0.03432375192642212,
0.006309810094535351,
-0.0517900288105011,
0.025776416063308716,
-0.05296073853969574,
-0.029165348038077354,
0.018580010160803795,
0.05433578044176102,
-0.007438476197421551,
0.06074363738298416,
0.06653912365436554,
0.04432528093457222,
-0.055897463113069534,
0.014072845689952374,
0.07073738425970078,
-0.038721490651369095,
-0.04839057847857475,
0.0028978262562304735,
-0.0017509355675429106,
-0.00142385542858392,
0.012253115884959698,
-0.004156129900366068,
0.05572643131017685,
0.03501897677779198,
-0.006531724706292152,
0.020408734679222107,
-0.009799307212233543,
-0.009669597260653973,
-0.02663210593163967,
-0.06433318555355072,
-0.017897870391607285,
0.014753877185285091,
-0.04055668041110039,
0.030176084488630295,
0.024766989052295685,
0.027947526425123215,
0.06778926402330399,
0.022486327216029167,
-0.03873421996831894,
-0.02159031480550766,
-0.003251336980611086,
0.0052278898656368256,
-0.018596038222312927,
-0.07938941568136215,
-0.02232346311211586,
0.04064116254448891,
0.033412281423807144,
-0.013561495579779148,
-0.027735773473978043,
0.010160421021282673,
0.0630037784576416,
-0.05607515200972557,
0.05652832239866257,
0.00045049007167108357,
0.03801839053630829,
0.06912683695554733,
-0.01866821013391018,
0.05016733333468437,
-0.008216505870223045,
-0.014140567742288113,
-0.0011436035856604576,
0.033474527299404144,
-0.011953742243349552,
-0.02281179092824459,
-0.03197791054844856,
0.019002556800842285,
0.043367333710193634,
0.05110633000731468,
0.034532178193330765,
-0.025052092969417572,
-0.015051436610519886,
0.017725415527820587,
0.03265628218650818,
-0.04239984229207039,
0.005813411436975002,
0.03663564473390579,
0.03952706232666969,
-0.054010871797800064,
-0.031124699860811234,
-0.026735959574580193,
-0.01213662140071392,
0.024399586021900177,
-0.007332489360123873,
-0.03573252260684967,
-0.035537343472242355,
0.02570943348109722,
-0.005281328223645687,
-0.005018806084990501,
-0.056973740458488464,
0.04380282014608383,
-0.0211293026804924,
-0.028215207159519196,
0.04041839763522148,
0.03542912006378174,
-0.006893468555063009,
0.045102864503860474,
0.03389902412891388,
-0.0008679020684212446,
-0.04330671951174736,
0.05272560194134712,
-0.05165640264749527,
-0.02549869380891323,
0.0024752826429903507,
-0.05596746876835823,
0.0037065299693495035,
-0.028451984748244286,
-0.0324486568570137,
-0.023395458236336708,
-0.041146863251924515,
0.00487984623759985,
0.002433217829093337,
-0.021549923345446587,
-0.011715923435986042,
0.06179426982998848,
-0.012755664996802807,
-0.056109800934791565,
-0.019857456907629967,
-0.037764765322208405,
-0.05049636587500572,
-0.07500703632831573,
0.013370751403272152,
0.02060692012310028,
0.03851130232214928,
0.03247224912047386,
0.020577913150191307,
0.0021087026689201593,
0.013756913132965565,
-0.03311803191900253,
0.03681093826889992,
0.005164673551917076,
-0.028536329045891762,
-0.026770051568746567,
0.041138406842947006,
0.025855688378214836,
0.03482125326991081,
-0.03699435293674469,
0.03960771858692169,
0.0014806390972808003,
-0.010110846720635891,
-0.020853206515312195,
0.014572246931493282,
0.0040484704077243805,
-0.05956731364130974,
-0.025011887773871422,
-0.010531525127589703,
-0.029991107061505318,
0.021957091987133026,
-0.04730667173862457,
-0.018612107262015343,
-0.000012834642802772578,
0.0038392478600144386,
0.04431736469268799,
-0.02733640745282173,
-0.04615173116326332,
0.01672700233757496,
-0.009548347443342209,
0.030583791434764862,
-0.04596152901649475,
0.04684361815452576,
-0.03390354663133621,
0.021332984790205956,
-0.02930290810763836,
0.013320780359208584,
-0.055073387920856476,
0.025468267500400543,
-0.021829841658473015,
-0.043469756841659546,
-0.024944785982370377,
0.052516840398311615,
-0.03254666551947594,
0.043701957911252975,
-0.011220302432775497,
0.03407084569334984,
-0.0282586757093668,
0.06303876638412476,
-0.019876953214406967,
0.009259498678147793,
-0.029094364494085312,
0.02081012912094593,
-0.04112941026687622,
0.010473119094967842,
-0.01708836667239666,
-0.004259519744664431,
0.03280750289559364,
0.057344336062669754,
0.0518404096364975,
0.039494190365076065,
-0.0033990410156548023,
-0.016848333179950714,
0.01904134638607502,
-0.02947244420647621,
-0.026502778753638268,
-0.004573261830955744,
-0.00541395740583539,
-0.007305808365345001,
0.05662932246923447,
0.04782368242740631,
-0.0627799853682518,
-0.053247518837451935,
0.03644426167011261,
0.011125241406261921,
-0.00521348649635911,
-0.002102541970089078,
0.04610341414809227,
0.042682766914367676,
0.03618789464235306,
-0.03694125637412071,
0.018428239971399307,
-0.00018030637875199318,
-0.04311108961701393,
0.04459676891565323,
-0.014035949483513832,
0.04528038948774338,
0.024453269317746162,
-0.02762555330991745,
-0.024211814627051353,
0.04781445488333702,
0.0317055843770504,
0.02158292941749096,
0.008054876700043678,
-0.026179425418376923,
0.04300377145409584,
-0.008172601461410522,
-0.040108054876327515,
0.0027219257317483425,
-0.002912954892963171,
-0.006875751074403524,
0.047555893659591675,
-0.01900656521320343,
0.021846629679203033,
0.05510365217924118,
0.023552360013127327,
-0.004361852537840605,
0.08174385875463486,
-0.04158291965723038,
0.008455485105514526,
0.05145009979605675,
-0.07580934464931488,
-0.016726037487387657,
-0.018747039139270782,
0.0777307003736496,
-0.05863126367330551,
0.03552064299583435,
0.05383822321891785,
-0.007549150846898556,
0.021532557904720306,
-0.03358937054872513,
-0.06023905798792839,
0.00934166181832552,
-0.046909935772418976,
0.08515144884586334,
0.007785411551594734,
-0.039178911596536636,
0.0316348597407341,
0.035889822989702225,
-0.05932195484638214,
0.03135541453957558,
0.033019617199897766,
0.0208443496376276,
0.03865024819970131,
0.04781574383378029,
-0.04296301677823067,
-0.0031974425073713064,
-0.04851193726062775,
0.037587981671094894,
-0.03861816227436066,
-0.021011266857385635,
0.03788061812520027,
-0.0377543643116951,
-0.011379934847354889,
0.03718162700533867,
-0.007463469170033932,
-0.015863973647356033,
0.06177536025643349,
-0.05721297487616539,
-0.05558574199676514,
0.015854723751544952,
0.0287682693451643,
-0.014598041772842407,
0.004869444295763969,
-0.043881211429834366,
0.021829470992088318,
-0.0033636484295129776,
0.019965389743447304,
-0.009052431210875511,
0.000312252581352368,
0.02761904150247574,
-0.04978411644697189,
-0.01735345460474491,
0.034757453948259354,
-0.002873918041586876,
-0.025652993470430374,
0.03179655596613884,
0.010549863800406456,
0.02608104795217514,
0.03385195881128311,
0.011559735052287579,
0.007979117333889008,
-0.06706006079912186,
-0.031736109405756,
0.03168950229883194,
-0.012059963308274746,
0.03713211417198181,
-0.0051290434785187244,
0.020424477756023407,
0.034497857093811035,
0.012547029182314873,
-0.002505226293578744,
-0.04837774857878685,
-0.043158311396837234,
0.023536043241620064,
-0.035380784422159195,
-0.0015577784506604075,
0.005023538134992123,
-0.04657305032014847,
-0.02961035445332527,
-0.005461073014885187,
-0.026568960398435593,
0.010816436260938644,
-0.05788463354110718,
0.010424457490444183,
0.046488355845212936,
0.007384794298559427,
-0.07489122450351715,
-0.12227839976549149,
-0.018828488886356354,
-0.06763815134763718,
0.01382814534008503,
0.0460759699344635,
-0.026852717623114586,
0.038884133100509644,
-0.06687967479228973,
-0.023094723001122475,
0.0385122187435627,
0.03432655707001686,
-0.020514262840151787,
0.045266445726156235,
0.04621857777237892,
-0.04248940944671631,
0.014451321214437485,
0.013379902578890324,
-0.04373987764120102,
0.007399896625429392,
0.01420374121516943,
0.002898653270676732,
0.025028754025697708,
0.021714704111218452,
-0.0678463876247406,
-0.018161116167902946,
-0.056257329881191254,
-0.035280052572488785,
-0.060573920607566833,
0.03131650388240814,
0.07037627696990967
] |
Barytes/hellohf | [
"tf",
"bert",
"fill-mask",
"en",
"dataset:bookcorpus",
"dataset:wikipedia",
"transformers",
"exbert",
"license:apache-2.0",
"autotrain_compatible"
] | fill-mask | {
"architectures": [
"BertForMaskedLM"
],
"model_type": "bert",
"task_specific_params": {
"conversational": {
"max_length": null
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 2 | null | Access to model lin12343/1111 is restricted and you are not in the authorized list. Visit https://huggingface.co/lin12343/1111 to ask for access. | [
-0.049060579389333725,
0.007501872256398201,
0.00946626253426075,
0.0213913656771183,
0.031200701370835304,
0.006593332625925541,
-0.005567819811403751,
0.011070101521909237,
-0.049961332231760025,
0.045366670936346054,
0.04138510674238205,
-0.008863598108291626,
0.01041815709322691,
0.04229442775249481,
-0.001353217288851738,
-0.01835678145289421,
0.00989170279353857,
0.007923310622572899,
-0.047727324068546295,
0.013828366063535213,
0.030885985121130943,
0.028407998383045197,
0.0019862100016325712,
0.028125055134296417,
-0.004461214412003756,
0.01818261481821537,
-0.026874244213104248,
0.020175445824861526,
0.0292623620480299,
-0.059081144630908966,
-0.01863187365233898,
-0.05320914089679718,
-0.03914356976747513,
-0.04488472267985344,
-0.025539705529808998,
-0.0029237268026918173,
0.03304145485162735,
0.00009605566447135061,
0.026016823947429657,
0.020457999780774117,
-0.0052596451714634895,
0.020300813019275665,
-0.020237434655427933,
-0.026286136358976364,
0.018490251153707504,
-0.0062655191868543625,
-0.020572882145643234,
-0.0411418117582798,
0.05105769261717796,
-0.04333924874663353,
-0.0742722600698471,
-0.07529228925704956,
-0.014646103605628014,
-0.0003232705930713564,
-0.018660666421055794,
-0.011982019059360027,
-0.047761086374521255,
-0.0063958982937037945,
0.10036592185497284,
-0.06336736679077148,
-0.05645332485437393,
-0.008058684878051281,
-0.07975789159536362,
0.03609217330813408,
0.031219126656651497,
-0.06419945508241653,
0.0379176028072834,
-0.030851947143673897,
0.0366503931581974,
-0.01747111976146698,
0.041989002376794815,
-0.027365824207663536,
0.007465254049748182,
-0.04571661353111267,
-0.018633132800459862,
-0.029335327446460724,
0.04643859714269638,
0.03237980604171753,
-0.04845825210213661,
0.045310720801353455,
0.012274947948753834,
-0.02280709519982338,
0.03343132138252258,
-0.0074514346197247505,
-0.0143514946103096,
0.019020458683371544,
-0.06535863876342773,
0.02446233481168747,
-0.006433861330151558,
0.006500754505395889,
-0.028004227206110954,
-0.057460933923721313,
-0.02267094887793064,
-0.04527949169278145,
-0.03683771565556526,
0.015817739069461823,
0.05279657617211342,
-0.016671039164066315,
0.048092857003211975,
0.022493425756692886,
0.03449157997965813,
0.02414734475314617,
0.0075115030631423,
0.05251827463507652,
0.00047155466745607555,
-0.03907326981425285,
0.004575764294713736,
-0.030384305864572525,
-0.06308578699827194,
0.014562024734914303,
0.008554477244615555,
-0.055849261581897736,
-0.020558323711156845,
0.019105568528175354,
-0.0030023972503840923,
-0.010665004141628742,
0.05400765314698219,
-0.04450475051999092,
-0.04192233830690384,
-0.05177149549126625,
0.02267487347126007,
0.03407816216349602,
-0.009302385151386261,
-0.004618482198566198,
-0.049910835921764374,
0.035452716052532196,
-0.022861871868371964,
-0.033566467463970184,
-0.003270196495577693,
-0.001516721211373806,
0.017048437148332596,
0.031562115997076035,
0.026982076466083527,
-0.08583670109510422,
-0.01043139211833477,
0.037289608269929886,
-0.049593713134527206,
0.005555831827223301,
-0.008182812482118607,
0.09497300535440445,
-0.06391137838363647,
-0.055249959230422974,
0.022552737966179848,
-0.014379809610545635,
-0.02722219005227089,
-0.00047202903078868985,
0.015766693279147148,
-0.03852648660540581,
-0.042705997824668884,
-0.034822165966033936,
0.037094444036483765,
-0.04098410904407501,
0.0026592209469527006,
0.07518386840820312,
-0.0230411309748888,
0.0399131141602993,
-0.03495835140347481,
0.009891575202345848,
0.008646098896861076,
0.027233000844717026,
-0.0032146202865988016,
0.04837580397725105,
-0.033057503402233124,
-0.037816986441612244,
-0.03997989371418953,
-0.07292792201042175,
0.02512473240494728,
0.07979962974786758,
-0.0268643107265234,
0.0025710323825478554,
-0.06920015811920166,
0.03529917448759079,
0.0441170297563076,
0.023775478824973106,
-0.0029898283537477255,
0.04564465209841728,
0.03367387503385544,
0.04401388019323349,
-0.006798915099352598,
0.030083179473876953,
0.011584256775677204,
-0.014649225398898125,
-0.01771579496562481,
0.0024406262673437595,
0.040746547281742096,
-0.019278347492218018,
0.017992345616221428,
0.031406477093696594,
0.009920344687998295,
-0.03507019579410553,
-0.012887035496532917,
0.04305516928434372,
-0.03406204655766487,
-0.018392911180853844,
0.02462170273065567,
0.012311937287449837,
-0.04476567357778549,
0.013503113761544228,
0.00007467712566722184,
0.010925369337201118,
-0.0341389998793602,
-0.008259684778749943,
0.028602279722690582,
-0.005649454891681671,
0.014833501540124416,
0.04072998836636543,
-0.04292328655719757,
0.07062802463769913,
-0.03285462036728859,
0.015364393591880798,
-0.025296110659837723,
-0.045153502374887466,
-0.0031129277776926756,
0.055942386388778687,
0.043521277606487274,
0.028100118041038513,
-0.009940617717802525,
-0.03229319676756859,
0.05419483408331871,
0.05471263825893402,
0.03676070272922516,
0.019176600500941277,
-0.04752109944820404,
-0.01493219006806612,
0.04003434628248215,
0.0348234660923481,
-0.06352711468935013,
-0.03660489618778229,
0.002621933352202177,
0.061720848083496094,
-0.04583866894245148,
0.040000446140766144,
-0.005569051019847393,
0.0312669575214386,
-0.05281892418861389,
-0.08598761260509491,
0.02128313109278679,
0.04425889253616333,
0.027716249227523804,
0.023112230002880096,
-0.010906565934419632,
0.01774768717586994,
0.01265238132327795,
0.01401383988559246,
0.010729611851274967,
-0.03614458441734314,
0.03562403470277786,
0.008511384949088097,
0.09156281501054764,
-0.04983550310134888,
0.02646845206618309,
0.009790309704840183,
0.0027587460353970528,
0.00274093821644783,
-0.02349778637290001,
0.025240203365683556,
0.06637056171894073,
0.008191467262804508,
-0.03157470002770424,
0.03566538169980049,
0.008589880540966988,
0.02162628434598446,
0.029032401740550995,
0.016527242958545685,
0.058160584419965744,
-0.014139805920422077,
0.05164075642824173,
0.07184375822544098,
0.01063114870339632,
-0.035131219774484634,
0.02357771061360836,
0.04265555366873741,
-0.0015183717478066683,
-0.0026333013083785772,
0.07869827002286911,
0.002634211676195264,
0.006093882489949465,
-0.04429510980844498,
0.00030936719849705696,
-0.04249769449234009,
-0.0040155500173568726,
0.04746602475643158,
-0.00566977821290493,
-0.0208818931132555,
0.005822804290801287,
-0.0019116136245429516,
-0.011684682220220566,
0.03016470931470394,
-0.0030204113572835922,
-0.015329319052398205,
-0.03617404028773308,
-0.03258104994893074,
0.007331095170229673,
-0.061778921633958817,
-0.020196842029690742,
0.00589382741600275,
-0.04893326014280319,
-0.014100144617259502,
-0.07929465174674988,
0.0034498523455113173,
-0.07172679901123047,
-0.019935470074415207,
0.04683252051472664,
0.03315233439207077,
0.0420236699283123,
-0.035288989543914795,
0.024848736822605133,
-0.033005669713020325,
-0.03297904133796692,
-0.04431856423616409,
-0.04427983984351158,
-0.012131085619330406,
-0.04247552156448364,
0.022453458979725838,
0.022013064473867416,
0.025599941611289978,
0.021143818274140358,
0.0003261456440668553,
-0.04097766429185867,
-0.025995679199695587,
0.046588510274887085,
0.05170025676488876,
-0.010761885903775692,
-0.06482705473899841,
0.021009225398302078,
-0.014173456467688084,
-0.017333071678876877,
-0.011693384498357773,
-0.027785787358880043,
0.0897020474076271,
0.07186286151409149,
0.029099658131599426,
0.015450689010322094,
-0.006982107646763325,
-0.04362938925623894,
-0.033955760300159454,
-0.042787641286849976,
-0.02908908575773239,
-0.0347149521112442,
-0.03356355056166649,
-0.024926435202360153,
0.021626213565468788,
-0.028791185468435287,
-0.010710039176046848,
0.0009149200050160289,
-0.01573881134390831,
0.04319000989198685,
0.056617122143507004,
0.024020692333579063,
0.027909627184271812,
-0.027952220290899277,
-0.06515485793352127,
0.054393984377384186,
-0.023561226204037666,
-0.012721975333988667,
-0.07527701556682587,
-0.05831538513302803,
0.055838800966739655,
0.013448265381157398,
0.023128703236579895,
-0.029747048392891884,
0.026737336069345474,
-0.00038239630521275103,
-0.013023688457906246,
-0.005772742442786694,
-0.018489744514226913,
-0.015353270806372166,
-0.009342634119093418,
-0.03208787739276886,
-0.0072333356365561485,
-0.038326412439346313,
-0.0184304378926754,
0.012454846873879433,
0.08140664547681808,
-0.04148564860224724,
-0.004749792627990246,
-0.021865051239728928,
0.018115321174263954,
0.044374480843544006,
-0.014976381324231625,
-0.03681354224681854,
0.0034116674214601517,
-0.06589680165052414,
-0.0019987993873655796,
0.02621501125395298,
0.0063775693997740746,
0.04030755162239075,
0.06395339220762253,
0.03339315950870514,
-0.01927342638373375,
0.055782582610845566,
0.01850847341120243,
0.045132219791412354,
0.03433398902416229,
-0.04689205437898636,
0.0010722040897235274,
-0.033152710646390915,
0.009153644554316998,
-0.011484230868518353,
-0.023609014227986336,
-0.04517021030187607,
-0.08912136405706406,
-0.020402319729328156,
0.039687804877758026,
-0.01985142007470131,
0.011849808506667614,
0.039712924510240555,
0.00943249836564064,
-0.03937028348445892,
-0.003781800391152501,
0.02243656851351261,
0.012952120043337345,
-0.016357041895389557,
0.0358077771961689,
-0.013476033695042133,
0.009428335353732109,
-0.03621895611286163,
-0.0001349420053884387,
-0.042911503463983536,
-0.00882935430854559,
-0.023047853261232376,
0.05899140611290932,
0.01283595897257328,
0.06521916389465332,
0.042575955390930176,
-0.01757214032113552,
-0.038641609251499176,
0.052351221442222595,
0.07385893166065216,
-0.03162902221083641,
-0.04188903048634529,
0.014520878903567791,
-0.0051344274543225765,
-0.0341394804418087,
-0.028471361845731735,
0.006541443057358265,
0.03832891955971718,
0.048150185495615005,
0.0012549406383186579,
-0.012748186476528645,
0.029363811016082764,
-0.012252532877027988,
-0.026461489498615265,
-0.030669163912534714,
0.02833142690360546,
0.017817847430706024,
-0.0076649910770356655,
-0.032047759741544724,
0.038544345647096634,
0.027205290272831917,
0.04946592450141907,
0.0003728709416463971,
-0.03207811713218689,
-0.05398034304380417,
0.025298599153757095,
0.03221670538187027,
-0.04865577071905136,
-0.0746099129319191,
-0.02706543356180191,
0.046071749180555344,
0.047269437462091446,
-0.007052702363580465,
-0.04739074036478996,
0.038869526237249374,
0.06345468759536743,
-0.0505506694316864,
0.03850329667329788,
0.014391890726983547,
0.04823463782668114,
0.05090510472655296,
-0.017386870458722115,
0.028267551213502884,
-0.021279701963067055,
0.002865603193640709,
0.00955924391746521,
0.053746215999126434,
-0.04940246045589447,
-0.02959613874554634,
-0.045149583369493484,
-0.0027443834114819765,
0.041627489030361176,
0.033527176827192307,
0.054903142154216766,
-0.03539323806762695,
-0.07122190296649933,
0.0228410754352808,
0.057111047208309174,
-0.027583632618188858,
0.032827042043209076,
0.06265047192573547,
0.025103146210312843,
-0.05629311874508858,
-0.05189557746052742,
-0.017591269686818123,
-0.01172944437712431,
0.04489319398999214,
-0.03673485293984413,
-0.021455960348248482,
-0.03835931420326233,
0.01863940991461277,
0.028890671208500862,
-0.02501491829752922,
-0.06439441442489624,
0.04847317934036255,
0.003031827975064516,
-0.039039261639118195,
0.04292489215731621,
0.019235221669077873,
0.029458995908498764,
0.07658141851425171,
0.025529485195875168,
0.02636350505053997,
-0.0416247695684433,
0.036189354956150055,
-0.05915583297610283,
-0.022145487368106842,
0.024110781028866768,
-0.04011475294828415,
-0.014325384050607681,
-0.03559989854693413,
-0.040292054414749146,
-0.042507100850343704,
-0.020726580172777176,
0.024132823571562767,
0.004597903229296207,
0.03455768898129463,
-0.012180108577013016,
0.02509300783276558,
-0.013274090364575386,
-0.05643095821142197,
-0.03641200810670853,
-0.032064709812402725,
-0.0827840194106102,
-0.03578246757388115,
0.03655572235584259,
-0.023782633244991302,
0.009615129791200161,
-0.0036496389657258987,
0.02363504096865654,
0.0474463514983654,
0.020209770649671555,
-0.02930278517305851,
0.03537172079086304,
0.015412618406116962,
-0.042310863733291626,
-0.026375416666269302,
0.01770634762942791,
0.01084971148520708,
0.057741306722164154,
-0.02247418463230133,
0.01715117320418358,
0.0136781707406044,
-0.030971014872193336,
-0.012015719898045063,
0.03575623780488968,
0.00054088921751827,
-0.05875560641288757,
-0.028400151059031487,
0.0025068374816328287,
-0.025045856833457947,
0.048400383442640305,
-0.06400994956493378,
-0.030675865709781647,
0.052442342042922974,
0.015855783596634865,
0.029643574729561806,
0.007843558676540852,
-0.0287308506667614,
-0.0007223787251859903,
-0.03355849161744118,
0.01170982513576746,
-0.029216038063168526,
0.03701872378587723,
-0.05151455104351044,
0.026385800912976265,
0.0005547989276237786,
0.015037447214126587,
-0.0792204737663269,
0.037104882299900055,
-0.042599789798259735,
-0.02353745512664318,
0.0043808892369270325,
0.020988723263144493,
-0.011983300559222698,
0.026359885931015015,
-0.025659535080194473,
0.010321860201656818,
-0.059178709983825684,
0.056880008429288864,
-0.05146251618862152,
0.010300472378730774,
-0.03540284186601639,
0.027939578518271446,
-0.05483600124716759,
-0.00517578050494194,
-0.026574689894914627,
-0.04718612879514694,
0.025259872898459435,
0.042073804885149,
0.025859588757157326,
0.01529727503657341,
-0.030925573781132698,
-0.010540011338889599,
-0.0025423176120966673,
-0.07609488070011139,
0.01268056221306324,
-0.006329887080937624,
-0.005405718460679054,
0.014845699071884155,
0.027946162968873978,
0.022972049191594124,
-0.042926039546728134,
-0.04205205664038658,
0.042062729597091675,
0.03664860501885414,
-0.008256840519607067,
0.002642654115334153,
0.012262476608157158,
-0.004410655703395605,
0.04072762653231621,
-0.03567194193601608,
-0.027718035504221916,
-0.011200573295354843,
-0.020012563094496727,
0.027588022872805595,
-0.015017644502222538,
0.03857853636145592,
-0.0028420821763575077,
-0.044364750385284424,
-0.04295384883880615,
0.08116629719734192,
0.02782892994582653,
0.0162657480686903,
0.006069652736186981,
-0.037879861891269684,
0.056713711470365524,
-0.024089597165584564,
-0.03721368685364723,
0.030610591173171997,
0.036469027400016785,
-0.0357079841196537,
0.04530656337738037,
0.010508366860449314,
0.025234445929527283,
0.04341663047671318,
0.04111963137984276,
-0.03731143847107887,
0.026935666799545288,
-0.034077100455760956,
0.021429849788546562,
0.04943332448601723,
-0.04940974339842796,
-0.007874255999922752,
-0.07132966816425323,
0.05947556719183922,
-0.06606032699346542,
0.07344317436218262,
0.051951609551906586,
-0.02330683171749115,
-0.0007209913455881178,
-0.04546879976987839,
-0.024806426838040352,
-0.006483552511781454,
-0.043443262577056885,
0.07205944508314133,
-0.037596505135297775,
-0.055931150913238525,
0.045057617127895355,
-0.003359599271789193,
-0.07290485501289368,
0.03724431246519089,
0.018425848335027695,
0.034887995570898056,
0.03935246542096138,
0.036748141050338745,
-0.05621131509542465,
0.017643509432673454,
-0.04038617014884949,
0.04671689495444298,
-0.0285269096493721,
-0.018076611682772636,
0.026754043996334076,
-0.034974757581949234,
-0.061890602111816406,
0.013904919847846031,
0.013815569691359997,
0.013903270475566387,
0.02729388326406479,
-0.04767182469367981,
-0.022084210067987442,
0.0012757711810991168,
0.015936579555273056,
0.014648702926933765,
-0.029725149273872375,
-0.04686789959669113,
-0.017731599509716034,
0.004343640524893999,
0.0033114764373749495,
-0.01926569826900959,
0.03234412893652916,
0.01032155193388462,
-0.0791747197508812,
-0.03679921105504036,
0.05566297471523285,
0.010157139971852303,
-0.025182336568832397,
0.02036363072693348,
0.018306294456124306,
0.022135334089398384,
0.016940373927354813,
-0.009016728028655052,
0.019464882090687752,
-0.03975002095103264,
-0.05835802108049393,
0.03507356345653534,
-0.017352581024169922,
0.015732821077108383,
0.003349851118400693,
0.012824160978198051,
0.015810584649443626,
0.03035902976989746,
0.012430308386683464,
-0.04736650735139847,
-0.05237625539302826,
0.033437684178352356,
-0.044658903032541275,
0.016599509865045547,
-0.022229323163628578,
-0.043935246765613556,
-0.02534361183643341,
0.0027714602183550596,
-0.03882983326911926,
0.035706207156181335,
-0.06434863805770874,
0.04874958097934723,
0.03769392520189285,
0.018838249146938324,
-0.06145366281270981,
-0.07164442539215088,
-0.010269815102219582,
-0.038839202374219894,
0.03374620899558067,
0.023403452709317207,
-0.026475952938199043,
0.03420949727296829,
-0.026066701859235764,
-0.06845621019601822,
0.05549240484833717,
0.0016775209223851562,
-0.032350875437259674,
0.03301147744059563,
0.044194113463163376,
-0.02685956284403801,
0.022517014294862747,
0.04110606387257576,
-0.0417366661131382,
0.02749168872833252,
0.012608379125595093,
0.01887081190943718,
0.03644848242402077,
0.010225865058600903,
-0.01841006428003311,
-0.015665531158447266,
-0.053567640483379364,
-0.03810735046863556,
-0.025467507541179657,
0.014636063016951084,
0.07124385237693787
] |
Batsy24/DialoGPT-medium-Twilight_BellaBot | [
"pytorch",
"gpt2",
"text-generation",
"transformers",
"conversational"
] | conversational | {
"architectures": [
"GPT2LMHeadModel"
],
"model_type": "gpt2",
"task_specific_params": {
"conversational": {
"max_length": 1000
},
"summarization": {
"early_stopping": null,
"length_penalty": null,
"max_length": null,
"min_length": null,
"no_repeat_ngram_size": null,
"num_beams": null,
"prefix": null
},
"text-generation": {
"do_sample": null,
"max_length": null
},
"translation_en_to_de": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_fr": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
},
"translation_en_to_ro": {
"early_stopping": null,
"max_length": null,
"num_beams": null,
"prefix": null
}
}
} | 8 | 2023-05-18T15:39:12Z | ---
license: apache-2.0
tags:
- generated_from_trainer
metrics:
- rouge
model-index:
- name: t5-large-qa
results: []
---
<!-- 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. -->
# t5-large-qa
This model is a fine-tuned version of [t5-large](https://huggingface.co/t5-large) on an unknown dataset.
It achieves the following results on the evaluation set:
- Loss: 0.1241
- Rouge1: 77.7328
- Rouge2: 66.0005
- Rougel: 77.1753
- Rougelsum: 77.1453
- Gen Len: 19.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: 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: 5
### Training results
| Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len |
|:-------------:|:-----:|:----:|:---------------:|:-------:|:-------:|:-------:|:---------:|:-------:|
| No log | 1.0 | 306 | 0.1274 | 77.6174 | 66.4422 | 77.0276 | 77.0702 | 19.0 |
| 0.1965 | 2.0 | 612 | 0.1241 | 77.7328 | 66.0005 | 77.1753 | 77.1453 | 19.0 |
| 0.1965 | 3.0 | 918 | 0.1310 | 77.8688 | 67.4016 | 77.5375 | 77.5445 | 19.0 |
| 0.083 | 4.0 | 1224 | 0.1385 | 78.1193 | 67.0951 | 77.5954 | 77.63 | 19.0 |
| 0.0474 | 5.0 | 1530 | 0.1464 | 78.1002 | 67.0309 | 77.5527 | 77.5764 | 19.0 |
### Framework versions
- Transformers 4.28.0
- Pytorch 2.0.0+cu118
- Datasets 2.12.0
- Tokenizers 0.13.3
| [
-0.010824901051819324,
-0.015727432444691658,
0.006004110909998417,
0.04130740091204643,
0.050017666071653366,
-0.015521594323217869,
-0.02456391230225563,
-0.026063397526741028,
-0.0317828543484211,
0.0341189019382,
0.01055079884827137,
-0.024362487718462944,
-0.0010128070134669542,
0.047463495284318924,
-0.02841896004974842,
-0.027452105656266212,
-0.007818547077476978,
-0.007239836268126965,
-0.038446296006441116,
0.00329181388951838,
0.010050985030829906,
0.005498373880982399,
-0.028661657124757767,
0.015100719407200813,
0.0256331916898489,
0.007525672670453787,
0.010265071876347065,
0.030202945694327354,
0.024675041437149048,
-0.08368910104036331,
0.012321223504841328,
-0.04116472601890564,
-0.04654872044920921,
-0.024742895737290382,
0.0015596732264384627,
-0.006926803383976221,
0.004697760101407766,
0.005461777560412884,
0.02979239635169506,
0.03906966373324394,
0.00484158331528306,
0.02505655586719513,
-0.024563007056713104,
-0.02934401109814644,
0.04790984094142914,
-0.018382633104920387,
-0.05740087106823921,
-0.014790627174079418,
0.03188174217939377,
-0.020104210823774338,
-0.06481199711561203,
-0.07190226763486862,
-0.007772956509143114,
0.0045328289270401,
-0.016309279948472977,
-0.005198076367378235,
-0.06244870647788048,
0.013372456654906273,
0.0680326446890831,
-0.049165286123752594,
-0.026875361800193787,
0.00643530348315835,
-0.074924997985363,
0.032476939260959625,
0.04461401328444481,
-0.035741012543439865,
0.0214159544557333,
-0.025998366996645927,
0.03236386924982071,
-0.004731059540063143,
0.04577893763780594,
-0.02533533237874508,
0.015174558386206627,
-0.08789189904928207,
0.011580299586057663,
-0.007104686461389065,
0.017993759363889694,
0.05196104198694229,
-0.047213803976774216,
0.04896843805909157,
0.03930387645959854,
-0.004294928628951311,
0.024829257279634476,
-0.00883303303271532,
-0.003909864462912083,
0.03150627762079239,
-0.03720049560070038,
0.00516708055511117,
0.03666273504495621,
0.031991876661777496,
-0.0380329005420208,
-0.04866185411810875,
-0.03894681856036186,
-0.022150691598653793,
-0.019954295828938484,
0.03444869443774223,
0.03599611297249794,
-0.01857331208884716,
0.032340750098228455,
0.0014014624757692218,
0.036369819194078445,
0.030694004148244858,
-0.018753958866000175,
0.08248978108167648,
-0.02464435249567032,
-0.015137231908738613,
-0.02274979278445244,
-0.01983196660876274,
-0.035411566495895386,
0.03868142142891884,
0.015400007367134094,
-0.060339685529470444,
-0.044346440583467484,
0.031437452882528305,
0.0020371160935610533,
0.011312492191791534,
0.07684096693992615,
-0.028658021241426468,
-0.05942570045590401,
-0.02958034910261631,
0.024103617295622826,
0.023024041205644608,
-0.013284692540764809,
0.00766175938770175,
-0.043521422892808914,
-0.009724444709718227,
-0.028391705825924873,
-0.04414771869778633,
0.0001915665197884664,
0.018916934728622437,
-0.02144339121878147,
0.06610995531082153,
0.013395282439887524,
-0.08137676119804382,
0.0037937082815915346,
0.0033557869028300047,
-0.05214681103825569,
0.03277930989861488,
0.000414577400078997,
0.11524456739425659,
-0.053033679723739624,
-0.0848047062754631,
0.022697927430272102,
-0.00374025059863925,
-0.04237222671508789,
0.023716991767287254,
-0.005078386981040239,
-0.03440109267830849,
-0.016810528934001923,
-0.019558202475309372,
0.06301351636648178,
-0.05788889527320862,
0.0036413883790373802,
0.059090543538331985,
0.002905947621911764,
0.03711428493261337,
-0.04670187830924988,
-0.02065582573413849,
0.01840903051197529,
-0.026572514325380325,
0.010385170578956604,
0.02769780531525612,
-0.010144932195544243,
0.0018600871553644538,
-0.0437980517745018,
-0.03857870772480965,
0.0030270733404904604,
0.08496047556400299,
0.00888960249722004,
-0.011182206682860851,
-0.03447781503200531,
0.03577866777777672,
0.042782191187143326,
0.04831555485725403,
-0.011268218979239464,
0.028225084766745567,
0.03507509455084801,
0.02844415418803692,
-0.011040928773581982,
0.022330036386847496,
0.03658217564225197,
-0.02098599635064602,
-0.029645580798387527,
0.03195485845208168,
0.009567336179316044,
-0.051556799560785294,
0.029208555817604065,
0.017807260155677795,
0.02055216394364834,
-0.048193126916885376,
-0.029839973896741867,
0.05613570660352707,
-0.001224667765200138,
-0.012902878224849701,
-0.0033223165664821863,
0.009343747049570084,
-0.021468253806233406,
0.04390547052025795,
-0.0077409883961081505,
0.015114778652787209,
-0.03168059512972832,
-0.03871886432170868,
0.018663112074136734,
0.00355417188256979,
0.01033330149948597,
0.05682167038321495,
-0.011674532666802406,
0.0686207190155983,
-0.03291333094239235,
0.014853849075734615,
-0.03884098678827286,
-0.037828054279088974,
0.004738441668450832,
0.0529988557100296,
0.04257151857018471,
0.050905849784612656,
-0.0014947790186852217,
-0.058612480759620667,
0.034077972173690796,
0.07333124428987503,
0.05176869407296181,
0.005043413490056992,
-0.027243822813034058,
-0.01733274944126606,
0.02807372435927391,
0.06998597085475922,
-0.05398854985833168,
-0.017365312203764915,
0.025412872433662415,
0.04057583957910538,
-0.0260717011988163,
0.02019495889544487,
-0.0312754362821579,
0.038787588477134705,
-0.07162770628929138,
-0.06237465515732765,
0.03827325627207756,
0.02300707809627056,
0.00923476554453373,
0.02557443454861641,
-0.005607968661934137,
0.007976292632520199,
0.022687913849949837,
0.011147120967507362,
0.003106016432866454,
-0.045262761414051056,
0.01942114531993866,
0.0038948231376707554,
0.03917095810174942,
-0.057170260697603226,
0.03644699603319168,
-0.015296288765966892,
0.012775241397321224,
0.028420912101864815,
-0.03235163912177086,
0.004238054621964693,
0.07350548356771469,
0.020462792366743088,
-0.02022777684032917,
0.0023022673558443785,
0.024288643151521683,
0.025828257203102112,
0.05017770081758499,
-0.0034102974459528923,
0.06254110485315323,
0.0022649243474006653,
0.029655100777745247,
0.07446124404668808,
0.005268990993499756,
0.02731447108089924,
0.019802220165729523,
0.08278287202119827,
0.02488516829907894,
-0.00004580779932439327,
0.03672371804714203,
-0.054109521210193634,
0.01570126786828041,
-0.026701519265770912,
-0.004827702883630991,
-0.03707275167107582,
-0.0011081243865191936,
0.045307327061891556,
0.03134042024612427,
-0.023718150332570076,
-0.008036823011934757,
-0.02608824335038662,
-0.017895210534334183,
0.007912203669548035,
-0.031549494713544846,
-0.004564719740301371,
-0.019933778792619705,
-0.013580146245658398,
-0.011583169922232628,
-0.043302033096551895,
-0.03301146999001503,
-0.020220564678311348,
-0.029740851372480392,
-0.02844744175672531,
-0.09266823530197144,
0.0007295062532648444,
-0.06449488550424576,
-0.01383046992123127,
0.04150296002626419,
0.012803366407752037,
-0.021220296621322632,
-0.059916745871305466,
0.013030793517827988,
-0.025371775031089783,
-0.022459667176008224,
-0.04636933282017708,
-0.04200868308544159,
-0.044892095029354095,
-0.07617026567459106,
0.04092177003622055,
0.043535273522138596,
0.03772621229290962,
0.008942375890910625,
0.01032122503966093,
-0.006628714501857758,
-0.015243069268763065,
0.06330877542495728,
0.04168260842561722,
-0.04141134023666382,
-0.05597398430109024,
0.0236582662910223,
-0.0019859967287629843,
0.006118539720773697,
-0.018321365118026733,
-0.02597019635140896,
0.08875530958175659,
0.0550120510160923,
0.017380330711603165,
0.004013500176370144,
-0.020918743684887886,
-0.06494040042161942,
-0.03859016299247742,
-0.02582143433392048,
-0.02380264177918434,
-0.02274823561310768,
-0.043871037662029266,
-0.03743285685777664,
-0.008442224934697151,
-0.028010910376906395,
0.009713544510304928,
0.01572977937757969,
-0.019604098051786423,
0.037506550550460815,
0.028080666437745094,
0.030607987195253372,
0.035291071981191635,
-0.02702842466533184,
-0.045536790043115616,
0.07118622213602066,
0.022342519834637642,
0.009476236067712307,
-0.059688884764909744,
-0.035129692405462265,
0.031235411763191223,
0.010700209066271782,
0.02355296164751053,
0.009769489988684654,
0.07689431309700012,
-0.0018417317187413573,
-0.01765233837068081,
0.02056967467069626,
-0.019471144303679466,
-0.021405933424830437,
-0.011697090230882168,
0.010201644152402878,
-0.02723967656493187,
-0.05982665345072746,
-0.014214183203876019,
-0.006793351843953133,
0.047084156423807144,
-0.055055562406778336,
-0.06917931139469147,
-0.03202799707651138,
0.017104147002100945,
0.03896142914891243,
-0.02163585089147091,
-0.039185576140880585,
-0.022715188562870026,
-0.06693887710571289,
-0.012025807052850723,
0.061441801488399506,
0.02546333335340023,
0.009823053143918514,
0.06198406592011452,
0.01396238338202238,
-0.006253649480640888,
0.04866610839962959,
0.04379541799426079,
0.06793973594903946,
0.027362626045942307,
-0.06436650454998016,
0.004319433122873306,
-0.00948874931782484,
0.03498208150267601,
0.004988552071154118,
0.0035428430419415236,
-0.03634504973888397,
-0.09528893232345581,
-0.024261251091957092,
0.022466279566287994,
-0.00657531525939703,
-0.0296165868639946,
0.05398256331682205,
0.0028134433086961508,
-0.010655295103788376,
-0.012276891618967056,
-0.003334568813443184,
0.033664271235466,
-0.05665263161063194,
0.02760549634695053,
0.007559904363006353,
0.019289152696728706,
-0.04199155792593956,
0.015570659190416336,
-0.01346301194280386,
-0.0014891104074195027,
0.006367752328515053,
0.05273149535059929,
0.010377609170973301,
0.08911959826946259,
0.06716272979974747,
0.02113819308578968,
-0.04546249657869339,
0.027826732024550438,
0.06877332180738449,
-0.02989695407450199,
-0.03175407648086548,
0.00141622731462121,
0.00009466348274145275,
-0.002380062360316515,
-0.02968215011060238,
-0.011889837682247162,
0.03337507322430611,
0.051003921777009964,
-0.007298338692635298,
0.011143100447952747,
0.016704248264431953,
-0.012422310188412666,
-0.027241384610533714,
-0.02515432797372341,
-0.006070309318602085,
0.0061291358433663845,
-0.028416788205504417,
0.002273258287459612,
0.04704335704445839,
0.027078762650489807,
0.05943562462925911,
0.04377330467104912,
-0.05000636726617813,
-0.034715134650468826,
0.012967690825462341,
0.00854444969445467,
-0.03160732612013817,
-0.06981813162565231,
-0.02173750288784504,
0.04069526493549347,
0.017097370699048042,
-0.0011059135431423783,
-0.048311538994312286,
0.006923578679561615,
0.07571261376142502,
-0.05596379563212395,
0.039498262107372284,
-0.0004755889531224966,
0.02785906195640564,
0.051889240741729736,
-0.006977214943617582,
0.034759584814310074,
-0.02538927085697651,
0.01118055172264576,
-0.013851013034582138,
0.04154757782816887,
-0.00956443790346384,
-0.008354107849299908,
-0.052896250039339066,
0.01802223175764084,
0.03377128019928932,
0.03154097497463226,
0.023279257118701935,
-0.01776919513940811,
-0.03897637128829956,
0.021801240742206573,
0.0471380352973938,
-0.056595057249069214,
0.02603311277925968,
0.007137668319046497,
0.013890785165131092,
-0.04382513836026192,
-0.023647794499993324,
-0.032661061733961105,
-0.006295725237578154,
0.04864208772778511,
-0.003757332218810916,
-0.037959709763526917,
-0.03920859843492508,
0.03369720280170441,
-0.01391527894884348,
-0.027826398611068726,
-0.05309847369790077,
0.05639154464006424,
-0.0081239128485322,
0.003955144435167313,
0.044704556465148926,
0.012746558524668217,
0.020081892609596252,
0.05731545388698578,
0.015501345507800579,
0.008977744728326797,
-0.028704628348350525,
0.057499438524246216,
-0.042265549302101135,
-0.02601899579167366,
-0.002755145076662302,
-0.034444838762283325,
-0.03212897107005119,
-0.022156400606036186,
-0.052939221262931824,
-0.028548061847686768,
-0.027265572920441628,
0.02245207503437996,
0.0006191192660480738,
-0.01042989082634449,
-0.010929507203400135,
0.04464792087674141,
-0.015823617577552795,
-0.024313438683748245,
-0.029295308515429497,
-0.02293040044605732,
-0.066433846950531,
-0.053749389946460724,
0.027577010914683342,
0.02191944420337677,
0.036372434347867966,
0.0376393124461174,
0.02137518860399723,
0.02300710417330265,
0.0018123170593753457,
-0.03760785236954689,
0.018539998680353165,
-0.012300023809075356,
-0.016548117622733116,
-0.03899764269590378,
0.02495930902659893,
0.027835197746753693,
0.0624501071870327,
-0.019877193495631218,
0.03694682568311691,
0.015967221930623055,
-0.0013498639455065131,
-0.003623202908784151,
0.012750113382935524,
0.01853700540959835,
-0.07136119902133942,
-0.037148021161556244,
0.00907051470130682,
-0.01919289492070675,
0.021619537845253944,
-0.03257734328508377,
-0.021809490397572517,
-0.0009517576545476913,
0.015516512095928192,
0.048109788447618484,
-0.00925616268068552,
-0.021525414660573006,
0.016691163182258606,
-0.02444404922425747,
0.003056759014725685,
-0.057265475392341614,
0.043860357254743576,
-0.03335924074053764,
0.009467770345509052,
-0.019931307062506676,
0.003107319585978985,
-0.041970621794462204,
0.037809181958436966,
-0.02553885243833065,
-0.012773292139172554,
-0.00793651957064867,
0.06442281603813171,
-0.011688766069710255,
0.03155137598514557,
-0.023394916206598282,
0.03874509409070015,
-0.03744342550635338,
0.06604567915201187,
-0.03589796647429466,
0.007811708375811577,
-0.02701873704791069,
0.011398294940590858,
-0.03570445999503136,
0.011911730282008648,
-0.025901326909661293,
-0.03324047476053238,
0.008520824834704399,
0.07217911630868912,
0.03499370440840721,
0.028458116576075554,
-0.019712768495082855,
-0.012961050495505333,
0.0044695609249174595,
-0.05628954991698265,
-0.02922983653843403,
0.008330374024808407,
-0.011278185993432999,
-0.021432500332593918,
0.0634845569729805,
0.04687928035855293,
-0.044293925166130066,
-0.05347379669547081,
0.04111279547214508,
-0.009608916938304901,
-0.004239346366375685,
-0.0019055313896387815,
0.01511538214981556,
0.031077103689312935,
0.037255410104990005,
-0.05217467620968819,
0.009419241920113564,
-0.020029041916131973,
-0.024474317207932472,
0.060440268367528915,
-0.016741300001740456,
0.040777888149023056,
0.017521651461720467,
-0.02918538637459278,
-0.019851619377732277,
0.06809961050748825,
0.03638296201825142,
0.02673702873289585,
-0.02057063765823841,
-0.02635994926095009,
0.03569360822439194,
0.002094225026667118,
-0.03028845228254795,
0.01609393209218979,
0.007786865811794996,
-0.03464723005890846,
0.05278420448303223,
-0.0058437008410692215,
0.0028221281245350838,
0.05652935802936554,
0.05574412643909454,
-0.012776312418282032,
0.07339892536401749,
-0.013640981167554855,
0.011424043215811253,
0.05096840858459473,
-0.06529705226421356,
-0.0017759505426511168,
-0.06928743422031403,
0.07314886897802353,
-0.062208592891693115,
0.04398425668478012,
0.04075658693909645,
0.008464175276458263,
0.009248880669474602,
-0.02644321322441101,
-0.04870087653398514,
-0.004721066448837519,
-0.052293773740530014,
0.073305144906044,
0.014550435356795788,
-0.06479527801275253,
0.06425640732049942,
0.023715272545814514,
-0.05962154269218445,
0.04674546793103218,
0.041727907955646515,
0.043062034994363785,
0.03511950746178627,
0.03873419389128685,
-0.06322985887527466,
0.0125200804322958,
-0.02950218692421913,
0.053685273975133896,
-0.04525498300790787,
-0.032759200781583786,
0.03872018679976463,
-0.03377675637602806,
-0.039030592888593674,
0.03962213918566704,
0.0026069332379847765,
-0.015173537656664848,
0.057105060666799545,
-0.062355998903512955,
-0.03721657395362854,
0.022537507116794586,
0.035608384758234024,
-0.04891538619995117,
0.0035306019708514214,
-0.050784267485141754,
0.019090216606855392,
0.02108311653137207,
0.008166986517608166,
-0.0034029162488877773,
0.0032422076910734177,
0.022153886035084724,
-0.07088504731655121,
-0.03910481184720993,
0.01870933547616005,
-0.0076090809889137745,
-0.03085174225270748,
0.0008925978327170014,
-0.012127859517931938,
0.019005469977855682,
0.008838211186230183,
-0.001795656979084015,
0.025740213692188263,
-0.05709858983755112,
-0.014751252718269825,
0.00486940098926425,
-0.0016693336656317115,
0.02421848103404045,
-0.003772194031625986,
0.049112267792224884,
0.036354150623083115,
0.014758738689124584,
-0.019909489899873734,
-0.02165674790740013,
-0.04716090112924576,
0.04937204346060753,
-0.03526518866419792,
0.01827673241496086,
-0.0126184718683362,
-0.04852132499217987,
-0.03652136027812958,
-0.027097009122371674,
-0.053189754486083984,
0.029950419440865517,
-0.059429313987493515,
0.00018758732767309994,
0.02405424974858761,
-0.008407589979469776,
-0.06105300784111023,
-0.12169215828180313,
-0.01936492882668972,
-0.04274376854300499,
0.009532175026834011,
0.03928723931312561,
-0.06869525462388992,
0.02854534424841404,
-0.06017903983592987,
-0.06380103528499603,
0.05865432322025299,
0.024943683296442032,
-0.04210272803902626,
0.045697446912527084,
0.024675443768501282,
-0.04052252322435379,
0.015021889470517635,
0.039317596703767776,
-0.046954624354839325,
0.010690136812627316,
0.021955017000436783,
0.01963615044951439,
0.029713474214076996,
0.0028101473581045866,
-0.008743351325392723,
-0.01640479452908039,
-0.07969457656145096,
-0.04576971009373665,
-0.052198752760887146,
0.023782216012477875,
0.0676136240363121
] |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.