modelId
stringlengths
4
111
lastModified
stringlengths
24
24
tags
list
pipeline_tag
stringlengths
5
30
author
stringlengths
2
34
config
null
securityStatus
null
id
stringlengths
4
111
likes
int64
0
9.53k
downloads
int64
2
73.6M
library_name
stringlengths
2
84
created
timestamp[us]
card
stringlengths
101
901k
card_len
int64
101
901k
embeddings
list
LoneStriker/SynthIA-70B-v1.5-3.0bpw-h6-exl2
2023-10-26T00:53:43.000Z
[ "transformers", "pytorch", "llama", "text-generation", "license:llama2", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
LoneStriker
null
null
LoneStriker/SynthIA-70B-v1.5-3.0bpw-h6-exl2
0
2
transformers
2023-10-26T00:51:43
--- license: llama2 --- ## Example Usage ### Prompt format: ``` SYSTEM: Elaborate on the topic using a Tree of Thoughts and backtrack when necessary to construct a clear, cohesive Chain of Thought reasoning. Always answer without hesitation. USER: How is a rocket launched from the surface of the earth to Low Earth Orbit? ASSISTANT: ``` ### Code example: ```python import torch, json from transformers import AutoModelForCausalLM, AutoTokenizer model_path = "migtissera/Synthia-70B-v1.5" output_file_path = "./Synthia-70B-v1.5-conversations.jsonl" model = AutoModelForCausalLM.from_pretrained( model_path, torch_dtype=torch.float16, device_map="auto", load_in_8bit=False, trust_remote_code=True, ) tokenizer = AutoTokenizer.from_pretrained(model_path, trust_remote_code=True) def generate_text(instruction): tokens = tokenizer.encode(instruction) tokens = torch.LongTensor(tokens).unsqueeze(0) tokens = tokens.to("cuda") instance = { "input_ids": tokens, "top_p": 1.0, "temperature": 0.75, "generate_len": 1024, "top_k": 50, } length = len(tokens[0]) with torch.no_grad(): rest = model.generate( input_ids=tokens, max_length=length + instance["generate_len"], use_cache=True, do_sample=True, top_p=instance["top_p"], temperature=instance["temperature"], top_k=instance["top_k"], num_return_sequences=1, ) output = rest[0][length:] string = tokenizer.decode(output, skip_special_tokens=True) answer = string.split("USER:")[0].strip() return f"{answer}" conversation = f"SYSTEM: Elaborate on the topic using a Tree of Thoughts and backtrack when necessary to construct a clear, cohesive Chain of Thought reasoning. Always answer without hesitation." while True: user_input = input("You: ") llm_prompt = f"{conversation} \nUSER: {user_input} \nASSISTANT: " answer = generate_text(llm_prompt) print(answer) conversation = f"{llm_prompt}{answer}" json_data = {"prompt": user_input, "answer": answer} ## Save your conversation with open(output_file_path, "a") as output_file: output_file.write(json.dumps(json_data) + "\n") ```
2,296
[ [ -0.0238800048828125, -0.07440185546875, 0.0278778076171875, 0.0144500732421875, -0.0128173828125, 0.003204345703125, -0.01519775390625, -0.0038604736328125, -0.00696563720703125, 0.0251007080078125, -0.050872802734375, -0.04327392578125, -0.0224761962890625, 0.0029697418212890625, -0.01381683349609375, 0.08746337890625, -0.01331329345703125, -0.042755126953125, -0.0066680908203125, 0.018890380859375, -0.037017822265625, -0.03662109375, -0.0484619140625, -0.0279541015625, 0.01488494873046875, 0.034759521484375, 0.0308837890625, 0.038818359375, 0.023895263671875, 0.031829833984375, -0.00620269775390625, 0.020050048828125, -0.02484130859375, 0.0190582275390625, -0.01316070556640625, -0.033905029296875, -0.0260009765625, 0.006244659423828125, 0.022125244140625, 0.031951904296875, 0.004062652587890625, 0.03167724609375, -0.001556396484375, 0.018402099609375, -0.037841796875, 0.01331329345703125, -0.044464111328125, -0.003780364990234375, 0.01538848876953125, -0.029296875, -0.033843994140625, -0.028411865234375, 0.023162841796875, -0.056610107421875, 0.0100250244140625, 0.00959014892578125, 0.080078125, 0.0214080810546875, -0.01971435546875, -0.03765869140625, -0.04644775390625, 0.0645751953125, -0.05718994140625, -0.00531768798828125, 0.0197601318359375, 0.005268096923828125, -0.015960693359375, -0.06744384765625, -0.051483154296875, -0.01372528076171875, -0.01309967041015625, 0.0202789306640625, -0.00022840499877929688, 0.006275177001953125, 0.038299560546875, 0.0181884765625, -0.039276123046875, -0.0284576416015625, -0.0298309326171875, -0.01479339599609375, 0.0408935546875, 0.03271484375, 0.01174163818359375, -0.031219482421875, -0.0216064453125, -0.02288818359375, -0.0323486328125, 0.03228759765625, 0.02972412109375, 0.0294189453125, -0.0156707763671875, 0.0526123046875, -0.02703857421875, 0.034698486328125, 0.0275726318359375, 0.002880096435546875, 0.016571044921875, -0.03216552734375, -0.0308837890625, -0.013397216796875, 0.06964111328125, 0.02911376953125, -0.004302978515625, 0.00853729248046875, 0.0099639892578125, -0.0013723373413085938, 0.0028476715087890625, -0.07452392578125, -0.0384521484375, 0.047332763671875, -0.035186767578125, -0.0221099853515625, -0.0102386474609375, -0.052825927734375, -0.007602691650390625, 0.00344085693359375, 0.030059814453125, -0.026275634765625, -0.0140228271484375, 0.01285552978515625, -0.007965087890625, -0.001636505126953125, 0.00835418701171875, -0.070068359375, 0.0255584716796875, 0.037841796875, 0.058624267578125, 0.0272064208984375, -0.036712646484375, -0.0118255615234375, 0.0038013458251953125, -0.00524139404296875, 0.0443115234375, -0.0211334228515625, -0.0252532958984375, -0.02154541015625, 0.003688812255859375, -0.0037994384765625, -0.0228424072265625, 0.025787353515625, -0.0097198486328125, 0.042633056640625, -0.022216796875, -0.042144775390625, -0.026824951171875, 0.025909423828125, -0.00732421875, 0.0831298828125, -0.0031890869140625, -0.07318115234375, 0.01233673095703125, -0.05218505859375, -0.02008056640625, -0.010345458984375, -0.0157318115234375, -0.026031494140625, -0.0156402587890625, 0.0289306640625, 0.032379150390625, -0.004703521728515625, 0.020751953125, -0.0125732421875, -0.011322021484375, 0.0274658203125, -0.0281829833984375, 0.08050537109375, 0.0204620361328125, -0.036041259765625, 0.0247650146484375, -0.04730224609375, 0.0130157470703125, -0.00043773651123046875, -0.030364990234375, -0.005584716796875, -0.0018978118896484375, -0.00850677490234375, 0.009490966796875, 0.03692626953125, -0.042236328125, 0.0300445556640625, -0.05621337890625, 0.0452880859375, 0.045654296875, 0.01509857177734375, 0.020904541015625, -0.0243377685546875, 0.02789306640625, 0.0069427490234375, -0.00751495361328125, -0.0284576416015625, -0.036529541015625, -0.07305908203125, 0.00926971435546875, -0.013519287109375, 0.053070068359375, -0.040924072265625, 0.06243896484375, -0.0014486312866210938, -0.04296875, -0.02264404296875, -0.01129150390625, 0.018707275390625, 0.056488037109375, 0.0308380126953125, 0.009552001953125, -0.06787109375, -0.039093017578125, -0.00766754150390625, -0.033782958984375, 0.01064300537109375, 0.033935546875, 0.0640869140625, 0.0014553070068359375, 0.07928466796875, -0.056365966796875, 0.02471923828125, -0.0180206298828125, 0.03314208984375, 0.052734375, 0.06585693359375, 0.00490570068359375, -0.025146484375, -0.0269012451171875, -0.00846099853515625, -0.0633544921875, 0.008087158203125, -0.03076171875, -0.033447265625, -0.01300048828125, 0.0164947509765625, -0.07342529296875, 0.039398193359375, 0.01141357421875, -0.053802490234375, 0.04119873046875, -0.0231170654296875, 0.0229339599609375, -0.10455322265625, 0.021026611328125, -0.029510498046875, -5.364418029785156e-7, -0.03350830078125, 0.00685882568359375, -0.026397705078125, -0.0001571178436279297, -0.03277587890625, 0.0352783203125, -0.0248565673828125, 0.014312744140625, -0.01311492919921875, 0.002410888671875, 0.007129669189453125, 0.03558349609375, -0.0047454833984375, 0.051666259765625, 0.0430908203125, -0.0556640625, 0.0582275390625, 0.02911376953125, -0.00998687744140625, 0.0197601318359375, -0.055145263671875, 0.029296875, 0.00672149658203125, 0.027008056640625, -0.0928955078125, -0.00850677490234375, 0.037322998046875, -0.0479736328125, -0.0090789794921875, -0.01197052001953125, -0.029296875, -0.050933837890625, -0.01197052001953125, 0.0350341796875, 0.041473388671875, -0.032928466796875, 0.034912109375, 0.00827789306640625, 0.006969451904296875, -0.046539306640625, -0.04833984375, 0.0015163421630859375, -0.02532958984375, -0.060943603515625, 0.0096893310546875, -0.02069091796875, -0.005352020263671875, -0.01025390625, 0.00634765625, 0.0006089210510253906, 0.0137176513671875, 0.0244598388671875, 0.0210418701171875, -0.00974273681640625, 0.00911712646484375, 0.00002372264862060547, -0.0008368492126464844, 0.0296173095703125, -0.0296783447265625, 0.061370849609375, -0.036407470703125, -0.018096923828125, -0.03863525390625, 0.0174407958984375, 0.0179290771484375, 0.010711669921875, 0.046844482421875, 0.031951904296875, -0.03607177734375, -0.00506591796875, -0.0180206298828125, -0.0278778076171875, -0.03961181640625, 0.02520751953125, -0.0390625, -0.033203125, 0.060699462890625, -0.0007328987121582031, 0.03204345703125, 0.0377197265625, 0.060821533203125, -0.01209259033203125, 0.0638427734375, 0.023162841796875, 0.0212554931640625, 0.01348114013671875, -0.056610107421875, 0.0192108154296875, -0.06231689453125, -0.02716064453125, -0.0318603515625, -0.00959014892578125, -0.025390625, -0.0166015625, -0.00656890869140625, 0.02288818359375, -0.03607177734375, 0.035247802734375, -0.0699462890625, 0.0301055908203125, 0.0316162109375, 0.00519561767578125, 0.006061553955078125, -0.0120849609375, -0.01531982421875, 0.00885009765625, -0.04754638671875, -0.0537109375, 0.08447265625, 0.0191192626953125, 0.0665283203125, -0.0194244384765625, 0.0784912109375, -0.019439697265625, 0.01543426513671875, -0.06573486328125, 0.05389404296875, 0.0216522216796875, -0.062225341796875, -0.0276947021484375, -0.025787353515625, -0.08154296875, 0.0191497802734375, 0.0031528472900390625, -0.07208251953125, -0.0036773681640625, 0.01953125, -0.05389404296875, 0.0218658447265625, -0.054473876953125, 0.07000732421875, -0.008544921875, -0.02490234375, -0.0018243789672851562, -0.038238525390625, 0.0194244384765625, 0.034820556640625, 0.00009107589721679688, -0.005096435546875, 0.00620269775390625, 0.08294677734375, -0.03619384765625, 0.06341552734375, -0.01544189453125, -0.001857757568359375, 0.050384521484375, -0.0003788471221923828, 0.03399658203125, 0.01593017578125, 0.006988525390625, -0.0103759765625, -0.0014142990112304688, -0.012115478515625, -0.04840087890625, 0.050384521484375, -0.0703125, -0.06134033203125, -0.03118896484375, -0.05487060546875, 0.01030731201171875, 0.0298309326171875, 0.035552978515625, 0.028656005859375, -0.0102996826171875, 0.004550933837890625, 0.0293426513671875, -0.0199127197265625, 0.04718017578125, 0.0009775161743164062, -0.027557373046875, -0.04315185546875, 0.046630859375, 0.004177093505859375, 0.006023406982421875, 0.01290130615234375, 0.033935546875, -0.030364990234375, -0.027435302734375, -0.0301055908203125, 0.007404327392578125, -0.06353759765625, -0.01629638671875, -0.060791015625, -0.017242431640625, -0.036773681640625, -0.01525115966796875, -0.0228271484375, -0.0298309326171875, -0.041534423828125, -0.012451171875, 0.045379638671875, 0.038177490234375, 0.004581451416015625, 0.0303497314453125, -0.042755126953125, 0.02044677734375, 0.0177764892578125, -0.0088958740234375, 0.01053619384765625, -0.044036865234375, -0.024749755859375, 0.0189208984375, -0.043121337890625, -0.062103271484375, 0.03216552734375, -0.01056671142578125, 0.0229034423828125, 0.0179901123046875, 0.01505279541015625, 0.06689453125, -0.0186309814453125, 0.06964111328125, 0.017242431640625, -0.09039306640625, 0.06585693359375, -0.0278167724609375, 0.0269012451171875, 0.031402587890625, 0.0086669921875, -0.04400634765625, -0.040740966796875, -0.058837890625, -0.07196044921875, 0.0557861328125, 0.03204345703125, 0.01062774658203125, -0.0136260986328125, 0.0205078125, 0.003978729248046875, 0.01123809814453125, -0.066162109375, -0.028717041015625, -0.0404052734375, -0.0226287841796875, 0.0205078125, 0.014739990234375, -0.0284576416015625, -0.03936767578125, 0.045196533203125, -0.0092620849609375, 0.037261962890625, 0.031829833984375, 0.005096435546875, -0.01155853271484375, 0.025238037109375, 0.03741455078125, 0.0540771484375, -0.0294189453125, 0.0219573974609375, 0.024932861328125, -0.030609130859375, 0.0217132568359375, -0.00922393798828125, -0.007694244384765625, -0.0159454345703125, 0.0200958251953125, 0.0452880859375, -0.0212554931640625, -0.015045166015625, 0.0158538818359375, -0.0017404556274414062, -0.02166748046875, -0.01396942138671875, 0.004634857177734375, 0.02716064453125, 0.0166168212890625, 0.0252685546875, 0.016998291015625, 0.0003502368927001953, -0.0390625, 0.00522613525390625, 0.018798828125, 0.01242828369140625, -0.0244293212890625, 0.04345703125, 0.025360107421875, -0.027252197265625, 0.041595458984375, -0.004062652587890625, -0.05059814453125, 0.06134033203125, 0.05511474609375, 0.07562255859375, 0.02044677734375, 0.00749969482421875, 0.04949951171875, 0.026824951171875, 0.0048370361328125, 0.049713134765625, -0.0099334716796875, -0.05389404296875, -0.02435302734375, -0.02362060546875, -0.0162811279296875, 0.0189208984375, -0.03118896484375, 0.004810333251953125, -0.060302734375, -0.0224151611328125, -0.017791748046875, 0.01436614990234375, -0.053924560546875, 0.024627685546875, -0.00016295909881591797, 0.0516357421875, -0.059356689453125, 0.04461669921875, 0.04656982421875, -0.03424072265625, -0.08544921875, -0.00582122802734375, -0.0253448486328125, -0.048797607421875, 0.05706787109375, 0.021087646484375, -0.017486572265625, 0.003574371337890625, -0.06048583984375, -0.06951904296875, 0.074951171875, 0.00627899169921875, -0.018096923828125, -0.011444091796875, -0.00601959228515625, 0.037109375, -0.03607177734375, 0.0513916015625, 0.0298919677734375, 0.033905029296875, 0.005428314208984375, -0.0430908203125, 0.04388427734375, -0.01338958740234375, -0.01412200927734375, -0.00324249267578125, -0.049530029296875, 0.0987548828125, -0.033233642578125, -0.034149169921875, 0.0213775634765625, 0.0655517578125, 0.0325927734375, 0.0195465087890625, 0.0270843505859375, 0.044525146484375, 0.0640869140625, -0.009735107421875, 0.051116943359375, -0.028533935546875, 0.0584716796875, 0.0689697265625, 0.007297515869140625, 0.054718017578125, 0.041778564453125, -0.0177001953125, 0.0594482421875, 0.058502197265625, -0.00830078125, 0.034027099609375, 0.0298309326171875, -0.00482940673828125, -0.00821685791015625, 0.0112762451171875, -0.0321044921875, 0.01641845703125, 0.0267486572265625, -0.012939453125, -0.007488250732421875, -0.0125274658203125, 0.01163482666015625, -0.016143798828125, 0.005382537841796875, 0.03790283203125, -0.00586700439453125, -0.0732421875, 0.06732177734375, -0.0181427001953125, 0.0562744140625, -0.0179290771484375, -0.007472991943359375, -0.0010833740234375, 0.0175323486328125, -0.039093017578125, -0.06842041015625, 0.01403045654296875, 0.00481414794921875, -0.01190185546875, -0.00400543212890625, 0.0299530029296875, -0.031768798828125, -0.034210205078125, -0.005214691162109375, 0.0298309326171875, 0.031158447265625, 0.0264129638671875, -0.062225341796875, -0.00971221923828125, 0.01204681396484375, -0.03607177734375, -0.0176544189453125, 0.032073974609375, 0.0396728515625, 0.04833984375, 0.0633544921875, -0.0036106109619140625, 0.01450347900390625, -0.01393890380859375, 0.0701904296875, -0.061767578125, -0.045166015625, -0.078369140625, 0.043670654296875, -0.006000518798828125, -0.0484619140625, 0.0745849609375, 0.048675537109375, 0.05810546875, 0.00012409687042236328, 0.06396484375, -0.0296783447265625, 0.0246124267578125, -0.038665771484375, 0.03790283203125, -0.0185546875, 0.01473236083984375, -0.0210723876953125, -0.053009033203125, 0.007114410400390625, 0.07635498046875, -0.03076171875, 0.006679534912109375, 0.07623291015625, 0.05670166015625, 0.00015628337860107422, -0.000055909156799316406, -0.0049896240234375, 0.01739501953125, 0.04193115234375, 0.06488037109375, 0.08062744140625, -0.047027587890625, 0.052001953125, -0.0301055908203125, -0.01085662841796875, -0.0005559921264648438, -0.0550537109375, -0.08197021484375, -0.0297698974609375, -0.0261077880859375, -0.053253173828125, -0.0206451416015625, 0.0836181640625, 0.061126708984375, -0.061737060546875, -0.037384033203125, -0.0335693359375, 0.0167999267578125, -0.01027679443359375, -0.0240478515625, 0.03460693359375, -0.0229339599609375, -0.046234130859375, 0.011260986328125, -0.0030670166015625, 0.01088714599609375, -0.01690673828125, -0.003902435302734375, -0.0268096923828125, 0.00952911376953125, 0.0151824951171875, 0.019317626953125, -0.06805419921875, -0.039154052734375, -0.0040740966796875, -0.0196380615234375, 0.0146484375, 0.049285888671875, -0.06439208984375, 0.036529541015625, 0.057037353515625, 0.02490234375, 0.04437255859375, -0.00041961669921875, 0.04443359375, -0.041778564453125, 0.01122283935546875, 0.0222625732421875, 0.026092529296875, 0.0197906494140625, -0.05072021484375, 0.01447296142578125, 0.01971435546875, -0.056854248046875, -0.048797607421875, 0.0127105712890625, -0.0618896484375, -0.01812744140625, 0.07373046875, -0.037139892578125, -0.0225982666015625, -0.0210723876953125, -0.045806884765625, 0.049346923828125, -0.04840087890625, 0.058013916015625, 0.05450439453125, -0.032379150390625, 0.001556396484375, 0.004268646240234375, 0.0338134765625, 0.0284576416015625, -0.07904052734375, 0.0252685546875, 0.01499176025390625, 0.0201873779296875, 0.03179931640625, 0.04412841796875, 0.0287933349609375, 0.01073455810546875, 0.032379150390625, -0.002758026123046875, -0.0107879638671875, -0.01056671142578125, -0.0031280517578125, 0.003261566162109375, -0.0170745849609375, -0.031829833984375 ] ]
syafiqfaray/byt5-base-indocollex-informal-to-formal-wordformation
2023-10-26T03:20:12.000Z
[ "transformers", "pytorch", "t5", "text2text-generation", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
text2text-generation
syafiqfaray
null
null
syafiqfaray/byt5-base-indocollex-informal-to-formal-wordformation
0
2
transformers
2023-10-26T03:18:58
--- license: apache-2.0 base_model: google/byt5-base tags: - generated_from_trainer metrics: - wer model-index: - name: byt5-base-indocollex-informal-to-formal-wordformation 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. --> # byt5-base-indocollex-informal-to-formal-wordformation This model is a fine-tuned version of [google/byt5-base](https://huggingface.co/google/byt5-base) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 0.1413 - Cer: 0.1978 - Wer: 0.4524 - Word Acc: 0.5476 - Gen Len: 7.6457 ## 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: 100 ### Training results | Training Loss | Epoch | Step | Validation Loss | Cer | Wer | Word Acc | Gen Len | |:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:--------:|:-------:| | No log | 0.54 | 50 | 16.1894 | 2.1868 | 2.2905 | -1.2905 | 19.0 | | No log | 1.08 | 100 | 13.7479 | 2.1248 | 1.9333 | -0.9333 | 19.0 | | No log | 1.61 | 150 | 11.6231 | 2.1095 | 1.4238 | -0.4238 | 18.7486 | | No log | 2.15 | 200 | 8.9106 | 1.056 | 0.9857 | 0.0143 | 10.6171 | | No log | 2.69 | 250 | 4.6844 | 0.8523 | 0.9762 | 0.0238 | 9.36 | | No log | 3.23 | 300 | 4.1175 | 0.5756 | 0.9714 | 0.0286 | 7.4114 | | No log | 3.76 | 350 | 3.3688 | 0.5951 | 0.9714 | 0.0286 | 7.8 | | No log | 4.3 | 400 | 2.2287 | 0.6112 | 0.9857 | 0.0143 | 6.7543 | | No log | 4.84 | 450 | 1.5164 | 0.6095 | 0.9571 | 0.0429 | 7.8857 | | 8.4834 | 5.38 | 500 | 1.0363 | 0.5976 | 0.9476 | 0.0524 | 7.8229 | | 8.4834 | 5.91 | 550 | 0.6893 | 0.5976 | 0.9476 | 0.0524 | 7.7943 | | 8.4834 | 6.45 | 600 | 0.5438 | 0.5866 | 0.9381 | 0.0619 | 7.9943 | | 8.4834 | 6.99 | 650 | 0.4720 | 0.5806 | 0.9333 | 0.0667 | 8.0057 | | 8.4834 | 7.53 | 700 | 0.4305 | 0.5764 | 0.9333 | 0.0667 | 8.0057 | | 8.4834 | 8.06 | 750 | 0.3931 | 0.5654 | 0.9333 | 0.0667 | 8.2971 | | 8.4834 | 8.6 | 800 | 0.3450 | 0.4576 | 0.9952 | 0.0048 | 7.7086 | | 8.4834 | 9.14 | 850 | 0.2773 | 0.3226 | 0.8238 | 0.1762 | 7.8743 | | 8.4834 | 9.68 | 900 | 0.2184 | 0.2368 | 0.7286 | 0.2714 | 7.2171 | | 8.4834 | 10.22 | 950 | 0.1992 | 0.2165 | 0.6333 | 0.3667 | 7.4343 | | 0.7362 | 10.75 | 1000 | 0.1887 | 0.2097 | 0.5714 | 0.4286 | 7.5829 | | 0.7362 | 11.29 | 1050 | 0.1815 | 0.2216 | 0.5905 | 0.4095 | 7.6171 | | 0.7362 | 11.83 | 1100 | 0.1688 | 0.2046 | 0.5762 | 0.4238 | 7.4629 | | 0.7362 | 12.37 | 1150 | 0.1679 | 0.2012 | 0.5286 | 0.4714 | 7.7143 | | 0.7362 | 12.9 | 1200 | 0.1579 | 0.1952 | 0.5333 | 0.4667 | 7.5257 | | 0.7362 | 13.44 | 1250 | 0.1531 | 0.1969 | 0.5095 | 0.4905 | 7.5714 | | 0.7362 | 13.98 | 1300 | 0.1484 | 0.1935 | 0.4952 | 0.5048 | 7.5543 | | 0.7362 | 14.52 | 1350 | 0.1481 | 0.1969 | 0.4952 | 0.5048 | 7.5886 | | 0.7362 | 15.05 | 1400 | 0.1417 | 0.191 | 0.481 | 0.519 | 7.5829 | | 0.7362 | 15.59 | 1450 | 0.1429 | 0.1876 | 0.4762 | 0.5238 | 7.5829 | | 0.195 | 16.13 | 1500 | 0.1407 | 0.1834 | 0.481 | 0.519 | 7.48 | | 0.195 | 16.67 | 1550 | 0.1409 | 0.1995 | 0.481 | 0.519 | 7.7086 | | 0.195 | 17.2 | 1600 | 0.1432 | 0.1817 | 0.4762 | 0.5238 | 7.4857 | | 0.195 | 17.74 | 1650 | 0.1439 | 0.1885 | 0.4762 | 0.5238 | 7.5429 | | 0.195 | 18.28 | 1700 | 0.1385 | 0.1766 | 0.4476 | 0.5524 | 7.5143 | | 0.195 | 18.82 | 1750 | 0.1357 | 0.1834 | 0.4762 | 0.5238 | 7.4971 | | 0.195 | 19.35 | 1800 | 0.1349 | 0.1935 | 0.4714 | 0.5286 | 7.4686 | | 0.195 | 19.89 | 1850 | 0.1355 | 0.1842 | 0.4286 | 0.5714 | 7.5371 | | 0.195 | 20.43 | 1900 | 0.1343 | 0.1902 | 0.4619 | 0.5381 | 7.5714 | | 0.195 | 20.97 | 1950 | 0.1348 | 0.1808 | 0.4619 | 0.5381 | 7.4229 | | 0.1287 | 21.51 | 2000 | 0.1341 | 0.1817 | 0.4524 | 0.5476 | 7.4571 | | 0.1287 | 22.04 | 2050 | 0.1324 | 0.1868 | 0.4476 | 0.5524 | 7.5371 | | 0.1287 | 22.58 | 2100 | 0.1329 | 0.1859 | 0.4571 | 0.5429 | 7.4571 | | 0.1287 | 23.12 | 2150 | 0.1367 | 0.1868 | 0.4476 | 0.5524 | 7.56 | | 0.1287 | 23.66 | 2200 | 0.1389 | 0.1919 | 0.4667 | 0.5333 | 7.48 | | 0.1287 | 24.19 | 2250 | 0.1385 | 0.18 | 0.4333 | 0.5667 | 7.5029 | | 0.1287 | 24.73 | 2300 | 0.1429 | 0.1944 | 0.4905 | 0.5095 | 7.4171 | | 0.1287 | 25.27 | 2350 | 0.1414 | 0.1961 | 0.4667 | 0.5333 | 7.6057 | | 0.1287 | 25.81 | 2400 | 0.1419 | 0.1876 | 0.4333 | 0.5667 | 7.5371 | | 0.1287 | 26.34 | 2450 | 0.1433 | 0.1927 | 0.4667 | 0.5333 | 7.5886 | | 0.0977 | 26.88 | 2500 | 0.1433 | 0.1927 | 0.4571 | 0.5429 | 7.5486 | | 0.0977 | 27.42 | 2550 | 0.1413 | 0.1978 | 0.4524 | 0.5476 | 7.6457 | ### Framework versions - Transformers 4.33.0 - Pytorch 2.0.0 - Datasets 2.1.0 - Tokenizers 0.13.3
6,047
[ [ -0.045196533203125, -0.031585693359375, 0.0195465087890625, 0.0124053955078125, -0.007625579833984375, -0.0013246536254882812, -0.00018846988677978516, -0.005748748779296875, 0.043365478515625, 0.0258941650390625, -0.038299560546875, -0.049072265625, -0.048858642578125, -0.006702423095703125, -0.01165771484375, 0.0428466796875, 0.00962066650390625, -0.01497650146484375, -0.004245758056640625, -0.0209808349609375, -0.0187225341796875, 0.0036640167236328125, -0.04742431640625, -0.005458831787109375, 0.01189422607421875, 0.030242919921875, 0.06048583984375, 0.058502197265625, 0.03607177734375, 0.029205322265625, -0.006946563720703125, 0.00659942626953125, -0.0162506103515625, -0.0401611328125, 0.0015888214111328125, -0.035736083984375, -0.023468017578125, -0.00650787353515625, 0.04461669921875, 0.05078125, -0.0067596435546875, 0.0273590087890625, -0.0001245737075805664, 0.0723876953125, -0.03240966796875, 0.0165252685546875, -0.0163726806640625, -0.002002716064453125, -0.022705078125, -0.02935791015625, 0.007080078125, -0.05401611328125, 0.009002685546875, -0.037109375, 0.027374267578125, 0.005374908447265625, 0.1005859375, 0.0145416259765625, -0.0260009765625, -0.0025501251220703125, -0.023345947265625, 0.0479736328125, -0.04693603515625, 0.0246124267578125, 0.0389404296875, 0.009429931640625, -0.01476287841796875, -0.049560546875, -0.050140380859375, 0.0177001953125, -0.0284271240234375, 0.0203857421875, -0.013519287109375, -0.030975341796875, 0.03350830078125, 0.0401611328125, -0.0506591796875, -0.0254974365234375, -0.0482177734375, -0.008758544921875, 0.052642822265625, 0.02349853515625, 0.0250701904296875, -0.057098388671875, -0.053070068359375, -0.0193939208984375, -0.0291748046875, 0.049285888671875, 0.03106689453125, 0.01352691650390625, -0.0273590087890625, 0.039093017578125, -0.01496124267578125, 0.03399658203125, 0.00765228271484375, -0.01120758056640625, 0.05438232421875, -0.0447998046875, -0.0225372314453125, -0.006313323974609375, 0.064208984375, 0.05120849609375, -0.01203155517578125, 0.0168914794921875, -0.0017108917236328125, 0.007518768310546875, 0.004039764404296875, -0.05084228515625, -0.020538330078125, 0.03167724609375, -0.035064697265625, -0.0157012939453125, 0.01473236083984375, -0.066162109375, 0.0018482208251953125, -0.0154266357421875, 0.01558685302734375, -0.0208740234375, -0.033782958984375, 0.0006985664367675781, -0.0123291015625, 0.0194244384765625, 0.0193939208984375, -0.065185546875, 0.0277099609375, 0.02081298828125, 0.0682373046875, -0.00029397010803222656, -0.007579803466796875, 0.007476806640625, 0.031463623046875, -0.0362548828125, 0.0567626953125, -0.0096282958984375, -0.03729248046875, -0.0184478759765625, 0.0211639404296875, -0.019287109375, -0.0247344970703125, 0.046112060546875, -0.0113677978515625, 0.016998291015625, -0.0263671875, -0.020477294921875, -0.01409149169921875, 0.0293426513671875, -0.05316162109375, 0.09320068359375, 0.0235137939453125, -0.080078125, 0.0311126708984375, -0.0462646484375, 0.005542755126953125, -0.001354217529296875, 0.00756072998046875, -0.060546875, -0.0199432373046875, 0.0234527587890625, 0.019805908203125, -0.0301361083984375, 0.024932861328125, 0.0006117820739746094, -0.0108642578125, -0.0274200439453125, -0.02001953125, 0.099853515625, 0.024322509765625, -0.035003662109375, 0.005584716796875, -0.08367919921875, 0.019439697265625, 0.014801025390625, -0.0469970703125, -0.00716400146484375, -0.0199127197265625, 0.008514404296875, 0.008148193359375, 0.02838134765625, -0.0401611328125, 0.0196075439453125, -0.0262603759765625, 0.032470703125, 0.04425048828125, 0.01300048828125, 0.0303497314453125, -0.043548583984375, 0.028656005859375, 0.0241241455078125, 0.02276611328125, 0.00780487060546875, -0.02374267578125, -0.0498046875, -0.036346435546875, 0.0040283203125, 0.039154052734375, -0.0217132568359375, 0.035400390625, -0.02313232421875, -0.051422119140625, -0.03656005859375, -0.00986480712890625, 0.01393890380859375, 0.04901123046875, 0.02301025390625, -0.01131439208984375, -0.04833984375, -0.06591796875, 0.0018634796142578125, 0.0021686553955078125, 0.0238494873046875, 0.035125732421875, 0.067138671875, -0.020782470703125, 0.08544921875, -0.04742431640625, -0.0406494140625, 0.0014886856079101562, -0.00885009765625, 0.051666259765625, 0.04254150390625, 0.063232421875, -0.0496826171875, -0.0667724609375, -0.0006661415100097656, -0.05169677734375, 0.015777587890625, -0.0073089599609375, 0.0004906654357910156, 0.007106781005859375, 0.007080078125, -0.0489501953125, 0.058624267578125, 0.042388916015625, -0.03973388671875, 0.05718994140625, -0.03363037109375, 0.029022216796875, -0.0843505859375, 0.0236663818359375, -0.009857177734375, -0.01165771484375, -0.0127105712890625, -0.01107025146484375, 0.0032329559326171875, -0.0122222900390625, -0.0166778564453125, 0.045562744140625, -0.0499267578125, -0.0011491775512695312, 0.0107879638671875, -0.0029144287109375, -0.0077972412109375, 0.038848876953125, -0.0033283233642578125, 0.07122802734375, 0.06536865234375, -0.0338134765625, 0.0229339599609375, 0.01239013671875, -0.03204345703125, 0.043243408203125, -0.039215087890625, -0.00884246826171875, -0.01113128662109375, 0.01082611083984375, -0.0931396484375, -0.02825927734375, 0.0276336669921875, -0.036773681640625, 0.004634857177734375, -0.0006117820739746094, -0.006313323974609375, -0.0648193359375, -0.0462646484375, -0.00196075439453125, 0.014190673828125, -0.0265350341796875, 0.041290283203125, 0.0242919921875, 0.00027823448181152344, -0.044921875, -0.051605224609375, 0.002399444580078125, -0.0016355514526367188, -0.060272216796875, 0.01346588134765625, -0.006450653076171875, -0.01067352294921875, 0.01114654541015625, 0.002079010009765625, -0.0190887451171875, 0.0035247802734375, 0.0299530029296875, 0.002277374267578125, -0.0183563232421875, -0.0252838134765625, -0.0156097412109375, -0.031463623046875, -0.0030155181884765625, -0.003047943115234375, 0.0311126708984375, -0.015228271484375, -0.035858154296875, -0.0421142578125, 0.008148193359375, 0.047637939453125, -0.0311126708984375, 0.0791015625, 0.030029296875, -0.0244598388671875, 0.00849151611328125, -0.025970458984375, 0.003116607666015625, -0.0302886962890625, 0.00799560546875, -0.040435791015625, -0.05181884765625, 0.05126953125, -0.0216522216796875, 0.01236724853515625, 0.053009033203125, 0.03363037109375, -0.0022735595703125, 0.06121826171875, 0.0167083740234375, -0.00241851806640625, 0.0159759521484375, -0.06683349609375, 0.01349639892578125, -0.0460205078125, -0.044403076171875, -0.050994873046875, -0.024383544921875, -0.035186767578125, -0.0224609375, 0.03387451171875, -0.0004813671112060547, -0.0318603515625, 0.01953125, -0.0626220703125, 0.014404296875, 0.05609130859375, 0.0262908935546875, 0.007175445556640625, -0.0138702392578125, -0.022735595703125, -0.0134735107421875, -0.037506103515625, -0.0408935546875, 0.096435546875, 0.01334381103515625, 0.030029296875, 0.025726318359375, 0.06317138671875, 0.0246124267578125, 0.0037174224853515625, -0.0309295654296875, 0.01215362548828125, 0.0156707763671875, -0.057525634765625, -0.0299072265625, -0.008148193359375, -0.0814208984375, 0.0335693359375, -0.0156097412109375, -0.066650390625, 0.044036865234375, 0.0161895751953125, -0.0307464599609375, 0.041748046875, -0.048919677734375, 0.051422119140625, -0.0016336441040039062, -0.046905517578125, -0.00885009765625, -0.05316162109375, 0.02923583984375, 0.004383087158203125, 0.0278167724609375, -0.006134033203125, 0.00650787353515625, 0.043548583984375, -0.06622314453125, 0.022216796875, -0.016021728515625, 0.0222625732421875, 0.037567138671875, -0.01036834716796875, 0.052001953125, 0.01031494140625, -0.0163421630859375, -0.0113372802734375, 0.0148468017578125, -0.047149658203125, -0.0205078125, 0.068115234375, -0.07513427734375, -0.06005859375, -0.044464111328125, -0.0220184326171875, 0.022491455078125, 0.033416748046875, 0.0249786376953125, 0.036590576171875, 0.004177093505859375, 0.029571533203125, 0.04693603515625, -0.002307891845703125, 0.047271728515625, 0.0138702392578125, -0.007038116455078125, -0.06256103515625, 0.055511474609375, 0.00873565673828125, 0.0153656005859375, 0.00882720947265625, 0.0195159912109375, -0.04534912109375, -0.0270233154296875, -0.0261383056640625, 0.0092620849609375, -0.02093505859375, -0.023468017578125, -0.057830810546875, -0.00403594970703125, -0.052734375, -0.0338134765625, -0.033416748046875, -0.01605224609375, -0.024932861328125, -0.0158538818359375, 0.044342041015625, 0.044891357421875, -0.0226287841796875, 0.02471923828125, -0.03753662109375, 0.01476287841796875, 0.0079345703125, 0.0177001953125, 0.0077667236328125, -0.026641845703125, -0.00909423828125, 0.0030002593994140625, -0.032379150390625, -0.065185546875, 0.054718017578125, -0.0162353515625, 0.023895263671875, 0.04302978515625, -0.0065460205078125, 0.07183837890625, -0.007843017578125, 0.059844970703125, 0.030731201171875, -0.05474853515625, 0.046234130859375, -0.034393310546875, 0.0272216796875, 0.05084228515625, 0.034454345703125, -0.036376953125, -0.01357269287109375, -0.07659912109375, -0.061126708984375, 0.0584716796875, 0.021148681640625, -0.007038116455078125, -0.001506805419921875, 0.005405426025390625, -0.0246429443359375, 0.0146026611328125, -0.0596923828125, -0.062286376953125, -0.01462554931640625, -0.000007092952728271484, 0.006732940673828125, -0.01343536376953125, -0.01708984375, -0.04547119140625, 0.042236328125, 0.021148681640625, 0.0222015380859375, 0.02587890625, 0.01393890380859375, -0.0170440673828125, 0.0145111083984375, 0.049285888671875, 0.06280517578125, -0.038116455078125, 0.016082763671875, 0.0117340087890625, -0.03485107421875, 0.01456451416015625, -0.002010345458984375, -0.031646728515625, 0.00302886962890625, 0.019866943359375, 0.038818359375, 0.00618743896484375, 0.00848388671875, 0.0433349609375, 0.01110076904296875, -0.038726806640625, -0.041778564453125, -0.012664794921875, 0.0204010009765625, 0.0195465087890625, 0.038848876953125, 0.03192138671875, 0.00151824951171875, -0.04669189453125, 0.01473236083984375, 0.03741455078125, -0.040924072265625, 0.0029430389404296875, 0.06878662109375, 0.0064239501953125, -0.0210418701171875, 0.0311431884765625, -0.0031070709228515625, -0.04376220703125, 0.0650634765625, 0.023162841796875, 0.0384521484375, -0.0218505859375, 0.00341033935546875, 0.0821533203125, 0.025543212890625, 0.0086669921875, 0.04217529296875, 0.0029754638671875, -0.0213165283203125, 0.0190887451171875, -0.046234130859375, -0.0029850006103515625, 0.01690673828125, -0.03955078125, 0.031707763671875, -0.037567138671875, -0.031646728515625, -0.016998291015625, 0.035858154296875, -0.05450439453125, 0.0252838134765625, -0.01348876953125, 0.08331298828125, -0.0712890625, 0.04669189453125, 0.053192138671875, -0.05029296875, -0.08447265625, -0.035186767578125, -0.0037689208984375, -0.042938232421875, 0.041534423828125, -0.006557464599609375, 0.00457763671875, 0.0167388916015625, -0.05023193359375, -0.091064453125, 0.1107177734375, -0.01029205322265625, -0.040985107421875, 0.036468505859375, 0.01111602783203125, 0.029876708984375, 0.00640106201171875, 0.041412353515625, 0.032623291015625, 0.056304931640625, 0.01462554931640625, -0.0714111328125, 0.0190887451171875, -0.027374267578125, 0.0006546974182128906, 0.032623291015625, -0.0712890625, 0.0809326171875, -0.0163726806640625, 0.0022907257080078125, -0.0005855560302734375, 0.039306640625, 0.0281219482421875, 0.010528564453125, 0.031524658203125, 0.08074951171875, 0.06036376953125, -0.0246429443359375, 0.0771484375, -0.028656005859375, 0.06390380859375, 0.04345703125, 0.01486968994140625, 0.056396484375, 0.035186767578125, -0.05352783203125, 0.031646728515625, 0.052581787109375, -0.011016845703125, 0.039825439453125, 0.004482269287109375, -0.035797119140625, -0.0027618408203125, 0.0022144317626953125, -0.050994873046875, 0.0108184814453125, 0.01404571533203125, -0.0311737060546875, -0.02935791015625, -0.016510009765625, 0.0045623779296875, 0.0009937286376953125, -0.02923583984375, 0.026123046875, -0.016998291015625, -0.0246124267578125, 0.028656005859375, -0.008209228515625, 0.044281005859375, -0.0462646484375, -0.0044403076171875, -0.0021991729736328125, 0.03460693359375, -0.052520751953125, -0.07763671875, 0.026824951171875, -0.0193939208984375, -0.030426025390625, -0.0015239715576171875, 0.036712646484375, -0.01035308837890625, -0.040008544921875, 0.006679534912109375, 0.0161285400390625, 0.0175933837890625, 0.016204833984375, -0.060577392578125, -0.01137542724609375, 0.0240631103515625, -0.042327880859375, 0.00502777099609375, 0.03814697265625, -0.00994873046875, 0.039306640625, 0.0660400390625, 0.01904296875, 0.019561767578125, -0.0252227783203125, 0.07867431640625, -0.053924560546875, -0.03826904296875, -0.053253173828125, 0.0345458984375, -0.0177459716796875, -0.041107177734375, 0.0567626953125, 0.07012939453125, 0.035430908203125, -0.0140228271484375, 0.055755615234375, -0.040802001953125, 0.04681396484375, -0.0070648193359375, 0.052459716796875, -0.05810546875, -0.017974853515625, -0.0128173828125, -0.05303955078125, -0.035125732421875, 0.057830810546875, -0.044097900390625, -0.00567626953125, 0.04241943359375, 0.0758056640625, 0.0098876953125, 0.001499176025390625, 0.00782012939453125, 0.0004680156707763672, 0.002521514892578125, 0.04461669921875, 0.037139892578125, -0.040191650390625, 0.03369140625, -0.0433349609375, -0.00402069091796875, -0.0174407958984375, -0.056365966796875, -0.039642333984375, -0.03253173828125, -0.0301513671875, -0.0244140625, -0.01061248779296875, 0.07177734375, 0.049896240234375, -0.06329345703125, -0.033355712890625, -0.004283905029296875, 0.00917816162109375, -0.014923095703125, -0.016082763671875, 0.089599609375, 0.012969970703125, -0.05615234375, -0.01120758056640625, 0.022430419921875, 0.01172637939453125, -0.010406494140625, -0.007770538330078125, -0.033721923828125, -0.00838470458984375, 0.0299530029296875, 0.02685546875, -0.054107666015625, -0.01444244384765625, -0.01424407958984375, -0.031585693359375, 0.033447265625, 0.013092041015625, -0.042388916015625, 0.032684326171875, 0.042938232421875, 0.031280517578125, 0.0567626953125, 0.0205230712890625, 0.0006022453308105469, -0.025909423828125, 0.0120849609375, -0.01055145263671875, 0.020263671875, 0.004604339599609375, -0.03851318359375, 0.049072265625, 0.044586181640625, -0.04425048828125, -0.04437255859375, -0.0268707275390625, -0.08770751953125, 0.006725311279296875, 0.060791015625, -0.0082550048828125, -0.0465087890625, -0.00666046142578125, -0.0255279541015625, 0.00823974609375, -0.04388427734375, 0.03564453125, 0.046905517578125, -0.02703857421875, -0.0140380859375, -0.056243896484375, 0.0311126708984375, 0.0036220550537109375, -0.057830810546875, -0.025787353515625, 0.0242462158203125, 0.0328369140625, 0.0318603515625, 0.0699462890625, -0.004772186279296875, 0.0186920166015625, 0.02313232421875, 0.0218658447265625, -0.0029201507568359375, 0.0011920928955078125, 0.00168609619140625, 0.02197265625, -0.003993988037109375, -0.039642333984375 ] ]
kkaung66/meta-chat
2023-10-26T18:14:40.000Z
[ "transformers", "llama", "text-generation", "generated_from_trainer", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
kkaung66
null
null
kkaung66/meta-chat
0
2
transformers
2023-10-26T06:45:42
--- base_model: NousResearch/Llama-2-7b-chat-hf tags: - generated_from_trainer model-index: - name: meta-chat 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. --> [<img src="https://raw.githubusercontent.com/OpenAccess-AI-Collective/axolotl/main/image/axolotl-badge-web.png" alt="Built with Axolotl" width="200" height="32"/>](https://github.com/OpenAccess-AI-Collective/axolotl) # meta-chat This model is a fine-tuned version of [NousResearch/Llama-2-7b-chat-hf](https://huggingface.co/NousResearch/Llama-2-7b-chat-hf) 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.0002 - train_batch_size: 14 - eval_batch_size: 14 - seed: 42 - gradient_accumulation_steps: 8 - total_train_batch_size: 112 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: cosine - lr_scheduler_warmup_steps: 10 - num_epochs: 0.5 ### Framework versions - Transformers 4.34.1 - Pytorch 2.0.1+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,358
[ [ -0.0301971435546875, -0.04510498046875, 0.00849151611328125, 0.0112762451171875, -0.033721923828125, -0.012237548828125, -0.0011320114135742188, -0.040283203125, 0.021240234375, 0.01812744140625, -0.05853271484375, -0.045440673828125, -0.039947509765625, 0.004230499267578125, -0.0203857421875, 0.0982666015625, 0.006992340087890625, 0.0024852752685546875, -0.02447509765625, -0.01448822021484375, -0.0291900634765625, -0.05023193359375, -0.079833984375, -0.045806884765625, 0.036865234375, 0.0107269287109375, 0.056732177734375, 0.06903076171875, 0.03173828125, 0.0184478759765625, -0.032745361328125, 0.0129852294921875, -0.038818359375, -0.0159454345703125, 0.00255584716796875, -0.0273284912109375, -0.07855224609375, 0.0030040740966796875, 0.04376220703125, 0.00798797607421875, -0.018707275390625, 0.042266845703125, 0.01190948486328125, -0.0020313262939453125, -0.038055419921875, 0.048492431640625, -0.039703369140625, 0.01361846923828125, -0.015045166015625, -0.022003173828125, -0.0217742919921875, -0.01268768310546875, -0.00504302978515625, -0.046600341796875, 0.016815185546875, 0.0093994140625, 0.08270263671875, 0.0162811279296875, -0.0182342529296875, 0.004299163818359375, -0.056182861328125, 0.043243408203125, -0.06494140625, 0.0038967132568359375, 0.040008544921875, 0.032501220703125, 0.00556182861328125, -0.061981201171875, -0.04290771484375, -0.00620269775390625, -0.003688812255859375, -0.00406646728515625, -0.016998291015625, 0.001567840576171875, 0.04608154296875, 0.0206298828125, -0.047943115234375, 0.01511383056640625, -0.038482666015625, -0.02447509765625, 0.05194091796875, 0.04632568359375, 0.005764007568359375, -0.0003256797790527344, -0.0218505859375, -0.00567626953125, -0.038818359375, -0.0024814605712890625, 0.03826904296875, 0.018829345703125, -0.032318115234375, 0.033966064453125, -0.022796630859375, 0.041107177734375, -0.0052337646484375, -0.0233917236328125, 0.04693603515625, -0.0016469955444335938, -0.021270751953125, -0.0030155181884765625, 0.0704345703125, 0.041748046875, 0.005084991455078125, 0.002819061279296875, -0.01824951171875, -0.004123687744140625, 0.00798797607421875, -0.0670166015625, -0.01514434814453125, 0.0163726806640625, -0.0330810546875, -0.0560302734375, -0.021881103515625, -0.04168701171875, -0.00604248046875, -0.00811767578125, 0.031951904296875, -0.020660400390625, -0.016998291015625, -0.012908935546875, -0.004116058349609375, 0.0220794677734375, 0.0162353515625, -0.06158447265625, 0.0242156982421875, 0.0274658203125, 0.044189453125, 0.0270843505859375, -0.035430908203125, -0.0102081298828125, 0.007022857666015625, -0.01690673828125, 0.04656982421875, -0.018402099609375, -0.031463623046875, -0.005611419677734375, 0.0048370361328125, -0.0089263916015625, -0.0322265625, 0.0667724609375, -0.035247802734375, 0.0165863037109375, -0.01468658447265625, -0.03643798828125, -0.010467529296875, 0.034942626953125, -0.03961181640625, 0.088134765625, -0.00830078125, -0.06134033203125, 0.024383544921875, -0.05609130859375, -0.01148223876953125, 0.01464080810546875, -0.013824462890625, -0.05340576171875, -0.0240020751953125, 0.0168914794921875, 0.020660400390625, -0.026397705078125, 0.01395416259765625, -0.03485107421875, -0.0394287109375, 0.0171661376953125, -0.038482666015625, 0.061981201171875, 0.01131439208984375, -0.03448486328125, 0.009857177734375, -0.0743408203125, 0.0147857666015625, 0.0316162109375, -0.0301361083984375, -0.0029277801513671875, -0.0064544677734375, 0.0142822265625, 0.020416259765625, 0.03057861328125, -0.0382080078125, 0.0234222412109375, -0.02252197265625, 0.031341552734375, 0.060089111328125, -0.0005750656127929688, 0.0097808837890625, -0.035125732421875, 0.01763916015625, -0.002414703369140625, 0.043182373046875, 0.0072021484375, -0.04736328125, -0.06658935546875, -0.0198516845703125, 0.012542724609375, 0.023773193359375, -0.03179931640625, 0.047149658203125, -0.0131988525390625, -0.05767822265625, -0.025390625, 0.0034847259521484375, 0.0343017578125, 0.036773681640625, 0.0289306640625, -0.02642822265625, -0.038909912109375, -0.060272216796875, 0.0061492919921875, -0.021942138671875, 0.0180816650390625, 0.032012939453125, 0.0543212890625, -0.0298004150390625, 0.05804443359375, -0.0455322265625, -0.01464080810546875, -0.0135955810546875, 0.005523681640625, 0.0220489501953125, 0.061248779296875, 0.060760498046875, -0.024383544921875, -0.017547607421875, -0.01395416259765625, -0.07000732421875, 0.01551055908203125, -0.002651214599609375, -0.0232086181640625, -0.01042938232421875, 0.00968170166015625, -0.05804443359375, 0.0645751953125, 0.01493072509765625, -0.0178070068359375, 0.0404052734375, -0.0226287841796875, -0.01453399658203125, -0.08013916015625, 0.01358795166015625, 0.001987457275390625, 0.0015382766723632812, -0.036865234375, 0.00955963134765625, -0.0002510547637939453, -0.01513671875, -0.033294677734375, 0.06390380859375, -0.01180267333984375, 0.01541900634765625, -0.0284423828125, -0.016021728515625, -0.0020580291748046875, 0.05755615234375, 0.0049285888671875, 0.0386962890625, 0.05242919921875, -0.0506591796875, 0.0400390625, 0.05047607421875, -0.00453948974609375, 0.0296783447265625, -0.06146240234375, 0.0272979736328125, 0.0026531219482421875, 0.012939453125, -0.0709228515625, -0.01776123046875, 0.0621337890625, -0.043304443359375, 0.00873565673828125, -0.0127105712890625, -0.0455322265625, -0.033905029296875, 0.007049560546875, 0.047698974609375, 0.046630859375, -0.053131103515625, 0.037353515625, -0.0020503997802734375, 0.0264739990234375, -0.0516357421875, -0.04400634765625, -0.005786895751953125, -0.006072998046875, -0.035980224609375, 0.013916015625, -0.0157318115234375, 0.00679779052734375, -0.0007996559143066406, -0.0083160400390625, -0.0248870849609375, -0.0010328292846679688, 0.03424072265625, 0.026214599609375, -0.01052093505859375, 0.0031147003173828125, -0.00270843505859375, -0.0118865966796875, 0.027008056640625, -0.005329132080078125, 0.046112060546875, -0.001007080078125, -0.032257080078125, -0.07342529296875, -0.01070404052734375, 0.047576904296875, -0.021636962890625, 0.077392578125, 0.062469482421875, -0.031646728515625, 0.0018711090087890625, -0.033905029296875, -0.0240325927734375, -0.03399658203125, 0.0228729248046875, -0.01277923583984375, -0.019195556640625, 0.055145263671875, 0.0163726806640625, 0.0124969482421875, 0.049896240234375, 0.03472900390625, 0.0096588134765625, 0.0902099609375, 0.022857666015625, -0.016937255859375, 0.03125, -0.050994873046875, 0.0016546249389648438, -0.06561279296875, -0.042022705078125, -0.039093017578125, -0.024566650390625, -0.039581298828125, -0.0056915283203125, -0.002651214599609375, -0.0131988525390625, -0.040374755859375, 0.0312042236328125, -0.036956787109375, 0.0221405029296875, 0.053497314453125, 0.0309295654296875, 0.0007128715515136719, 0.00647735595703125, -0.019927978515625, 0.0055389404296875, -0.056427001953125, -0.0293121337890625, 0.10443115234375, 0.028961181640625, 0.05645751953125, 0.00015854835510253906, 0.05767822265625, -0.006435394287109375, 0.021331787109375, -0.036865234375, 0.047698974609375, 0.034454345703125, -0.07183837890625, -0.0135040283203125, -0.0258636474609375, -0.057220458984375, 0.01323699951171875, -0.037200927734375, -0.048736572265625, 0.015533447265625, 0.01800537109375, -0.022064208984375, 0.039520263671875, -0.0255584716796875, 0.0751953125, -0.0165252685546875, -0.035430908203125, -0.01123809814453125, -0.032196044921875, 0.01117706298828125, 0.0107269287109375, 0.0014801025390625, -0.011749267578125, 0.01373291015625, 0.06781005859375, -0.056427001953125, 0.07867431640625, -0.0150299072265625, 0.02581787109375, 0.031524658203125, -0.0171661376953125, 0.049591064453125, 0.0184783935546875, -0.0103759765625, 0.0184783935546875, -0.007511138916015625, -0.048004150390625, -0.0304718017578125, 0.045928955078125, -0.09576416015625, -0.0293121337890625, -0.04815673828125, -0.027252197265625, 0.0079803466796875, 0.0129852294921875, 0.03369140625, 0.055419921875, -0.01143646240234375, 0.007503509521484375, 0.03009033203125, -0.00015783309936523438, 0.028778076171875, 0.02093505859375, -0.001644134521484375, -0.04095458984375, 0.060455322265625, -0.01282501220703125, 0.00650787353515625, 0.0005731582641601562, 0.004486083984375, -0.022796630859375, -0.04071044921875, -0.0193634033203125, 0.0313720703125, -0.053741455078125, -0.0194549560546875, -0.031829833984375, -0.046295166015625, -0.035888671875, 0.018402099609375, -0.0171356201171875, -0.01186370849609375, -0.056365966796875, -0.0157623291015625, 0.03533935546875, 0.031524658203125, -0.002819061279296875, 0.063720703125, -0.049652099609375, -0.0135040283203125, 0.032562255859375, 0.0194244384765625, 0.0196380615234375, -0.06402587890625, -0.025238037109375, 0.01184844970703125, -0.036956787109375, -0.04913330078125, 0.04736328125, 0.007053375244140625, 0.0704345703125, 0.047698974609375, 0.003810882568359375, 0.06719970703125, -0.0156402587890625, 0.049652099609375, 0.0145111083984375, -0.045928955078125, 0.0293121337890625, -0.02203369140625, 0.0171966552734375, 0.0253448486328125, 0.03204345703125, -0.0228729248046875, -0.0209808349609375, -0.0836181640625, -0.057037353515625, 0.0718994140625, 0.039154052734375, 0.03204345703125, -0.003910064697265625, 0.0430908203125, -0.02716064453125, 0.024993896484375, -0.07354736328125, -0.04498291015625, -0.0207977294921875, -0.0003323554992675781, -0.007122039794921875, -0.0290679931640625, -0.0235748291015625, -0.047454833984375, 0.0689697265625, -0.0027141571044921875, 0.03192138671875, -0.001483917236328125, 0.0090789794921875, -0.00783538818359375, -0.007686614990234375, 0.04669189453125, 0.051513671875, -0.035736083984375, -0.0185089111328125, 0.02587890625, -0.040679931640625, -0.0020618438720703125, 0.007266998291015625, 0.0002340078353881836, 0.006855010986328125, 0.03631591796875, 0.09136962890625, 0.0083465576171875, -0.02105712890625, 0.034576416015625, -0.019317626953125, -0.035003662109375, -0.040679931640625, 0.00858306884765625, -0.0046539306640625, 0.024078369140625, 0.018310546875, 0.033721923828125, -0.007354736328125, -0.0178680419921875, 0.0008873939514160156, 0.02264404296875, -0.035308837890625, -0.029083251953125, 0.07244873046875, 0.01419830322265625, -0.0273284912109375, 0.06304931640625, -0.0157318115234375, -0.015533447265625, 0.055816650390625, 0.037506103515625, 0.06341552734375, -0.0158538818359375, 0.005298614501953125, 0.060760498046875, 0.01399993896484375, -0.006336212158203125, 0.019195556640625, -0.007045745849609375, -0.048553466796875, -0.01137542724609375, -0.040771484375, -0.0185089111328125, 0.0281219482421875, -0.06475830078125, 0.03411865234375, -0.050750732421875, -0.037750244140625, 0.00977325439453125, -0.00026226043701171875, -0.06549072265625, 0.021820068359375, 0.0081634521484375, 0.0673828125, -0.07440185546875, 0.0701904296875, 0.046295166015625, -0.044403076171875, -0.08038330078125, -0.014312744140625, 0.0046539306640625, -0.0811767578125, 0.060546875, -0.00905609130859375, 0.0294952392578125, 0.004718780517578125, -0.050933837890625, -0.058380126953125, 0.09051513671875, 0.0150299072265625, -0.028533935546875, -0.0172271728515625, 0.007511138916015625, 0.053680419921875, -0.0277557373046875, 0.061676025390625, 0.00688934326171875, 0.013214111328125, 0.04095458984375, -0.06927490234375, 0.0003008842468261719, -0.0279388427734375, 0.0006999969482421875, -0.00594329833984375, -0.048583984375, 0.08831787109375, -0.0027065277099609375, 0.01049041748046875, 0.030181884765625, 0.041259765625, 0.015777587890625, 0.0152435302734375, 0.0206298828125, 0.050750732421875, 0.043243408203125, -0.002796173095703125, 0.06097412109375, -0.0367431640625, 0.053680419921875, 0.08270263671875, -0.01165771484375, 0.047821044921875, 0.020111083984375, 0.0023059844970703125, 0.033721923828125, 0.06597900390625, -0.0192413330078125, 0.030303955078125, 0.0033721923828125, -0.0192108154296875, -0.030914306640625, 0.01287078857421875, -0.04766845703125, 0.03338623046875, 0.00939178466796875, -0.057647705078125, -0.0295257568359375, -0.0229644775390625, -0.0013904571533203125, -0.0281219482421875, -0.0202789306640625, 0.054931640625, -0.0174560546875, -0.0213775634765625, 0.07025146484375, -0.00240325927734375, 0.0304107666015625, -0.036773681640625, -0.01080322265625, -0.01763916015625, 0.025604248046875, -0.0216522216796875, -0.0287017822265625, 0.00681304931640625, -0.00963592529296875, 0.01029205322265625, 0.0039825439453125, 0.0285186767578125, -0.010467529296875, -0.043670654296875, 0.0189208984375, 0.034912109375, 0.0229644775390625, 0.009063720703125, -0.07513427734375, 0.00203704833984375, 0.0010528564453125, -0.00896453857421875, 0.02642822265625, 0.016143798828125, -0.0009450912475585938, 0.05426025390625, 0.05865478515625, -0.00022113323211669922, -0.00531005859375, -0.00408935546875, 0.08203125, -0.037139892578125, -0.03753662109375, -0.07196044921875, 0.029022216796875, -0.0203857421875, -0.0531005859375, 0.048583984375, 0.059906005859375, 0.060791015625, -0.00812530517578125, 0.044769287109375, -0.0006923675537109375, 0.027191162109375, -0.0130615234375, 0.062042236328125, -0.04168701171875, 0.0208282470703125, -0.0241241455078125, -0.061614990234375, -0.00360107421875, 0.05419921875, -0.024444580078125, 0.00457763671875, 0.03875732421875, 0.0697021484375, -0.003177642822265625, 0.0018320083618164062, 0.0203857421875, 0.0009145736694335938, 0.025421142578125, 0.029327392578125, 0.062408447265625, -0.06134033203125, 0.06304931640625, -0.0321044921875, -0.01183319091796875, -0.026641845703125, -0.046112060546875, -0.092529296875, -0.025970458984375, -0.0400390625, -0.040496826171875, 0.0111846923828125, 0.07501220703125, 0.064208984375, -0.04510498046875, -0.0382080078125, 0.0098724365234375, -0.00128936767578125, -0.0322265625, -0.01200103759765625, 0.0166473388671875, -0.00911712646484375, -0.05413818359375, -0.0151214599609375, -0.0209503173828125, 0.0295867919921875, -0.00316619873046875, -0.01922607421875, -0.01593017578125, -0.0150909423828125, 0.0184783935546875, 0.03106689453125, -0.0445556640625, -0.02783203125, -0.0015869140625, -0.015228271484375, 0.017730712890625, 0.0145111083984375, -0.0361328125, 0.0198822021484375, 0.018585205078125, 0.0108642578125, 0.057769775390625, -0.01074981689453125, 0.0199127197265625, -0.056182861328125, 0.039581298828125, 0.015716552734375, 0.027740478515625, -0.0035266876220703125, -0.0264739990234375, 0.028961181640625, 0.037506103515625, -0.04278564453125, -0.06427001953125, -0.01885986328125, -0.0648193359375, 0.0101776123046875, 0.08404541015625, -0.0007648468017578125, -0.04071044921875, 0.010772705078125, -0.0321044921875, 0.0237274169921875, -0.035919189453125, 0.047637939453125, 0.036346435546875, -0.01064300537109375, -0.005462646484375, -0.033294677734375, 0.03668212890625, 0.0007309913635253906, -0.05206298828125, -0.022369384765625, 0.0216064453125, 0.038726806640625, 0.012908935546875, 0.04888916015625, -0.0025787353515625, 0.027679443359375, 0.01016998291015625, 0.037750244140625, -0.028717041015625, -0.01026153564453125, -0.01317596435546875, -0.004734039306640625, 0.02166748046875, -0.041351318359375 ] ]
dp011/test2
2023-10-26T07:37:54.000Z
[ "sentence-transformers", "pytorch", "xlm-roberta", "setfit", "text-classification", "arxiv:2209.11055", "license:apache-2.0", "region:us" ]
text-classification
dp011
null
null
dp011/test2
0
2
sentence-transformers
2023-10-26T07:37:06
--- license: apache-2.0 tags: - setfit - sentence-transformers - text-classification pipeline_tag: text-classification --- # dp011/test2 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("dp011/test2") # 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} } ```
1,511
[ [ -0.00402069091796875, -0.060211181640625, 0.029327392578125, -0.01055145263671875, -0.005924224853515625, -0.0164337158203125, -0.01406097412109375, -0.01157379150390625, -0.0028514862060546875, 0.031158447265625, -0.043121337890625, -0.01322174072265625, -0.039764404296875, 0.0204315185546875, -0.0198974609375, 0.09619140625, 0.00856781005859375, 0.0144805908203125, 0.00283050537109375, -0.00450897216796875, -0.005340576171875, -0.01294708251953125, -0.03662109375, -0.041412353515625, 0.038238525390625, 0.0301513671875, 0.048004150390625, 0.042572021484375, 0.036163330078125, 0.02423095703125, -0.0141448974609375, 0.0025844573974609375, -0.03155517578125, -0.005237579345703125, -0.02252197265625, -0.043914794921875, 0.00884246826171875, 0.010223388671875, 0.05511474609375, 0.04278564453125, 0.019805908203125, 0.00421142578125, 0.018829345703125, 0.0335693359375, -0.046295166015625, 0.00701141357421875, -0.035308837890625, 0.01505279541015625, -0.01195526123046875, 0.0011882781982421875, -0.047607421875, -0.0220184326171875, 0.0164947509765625, -0.0390625, 0.0206756591796875, -0.0004930496215820312, 0.093017578125, 0.036346435546875, -0.02777099609375, 0.0009851455688476562, -0.0238189697265625, 0.061370849609375, -0.049957275390625, 0.0144805908203125, 0.038818359375, 0.0169677734375, -0.006305694580078125, -0.07598876953125, -0.070556640625, -0.0017881393432617188, -0.01290130615234375, 0.01107025146484375, -0.018310546875, -0.005954742431640625, 0.031890869140625, 0.021148681640625, -0.04754638671875, 0.0099029541015625, -0.0258026123046875, 0.0032367706298828125, 0.0213623046875, -0.005832672119140625, 0.01485443115234375, -0.035400390625, -0.032684326171875, -0.0219268798828125, -0.0186309814453125, 0.007541656494140625, 0.0028858184814453125, 0.02947998046875, -0.02044677734375, 0.05633544921875, -0.0147247314453125, 0.0491943359375, 0.007083892822265625, -0.0229949951171875, 0.042724609375, -0.006305694580078125, -0.0229949951171875, -0.0198516845703125, 0.06964111328125, 0.01535797119140625, 0.026641845703125, 0.0131378173828125, -0.0015001296997070312, 0.00820159912109375, 0.0201568603515625, -0.07379150390625, -0.0390625, 0.015228271484375, -0.033294677734375, -0.029266357421875, 0.005222320556640625, -0.052490234375, -0.0285797119140625, -0.0006871223449707031, 0.04559326171875, -0.04644775390625, 0.00815582275390625, -0.00603485107421875, -0.0281219482421875, 0.011810302734375, 0.015228271484375, -0.06195068359375, 0.008453369140625, 0.031890869140625, 0.07415771484375, -0.0124359130859375, -0.034576416015625, -0.039794921875, -0.005615234375, -0.0198974609375, 0.07672119140625, -0.0386962890625, 0.0164642333984375, 0.0005984306335449219, 0.002071380615234375, -0.0226287841796875, -0.0179443359375, 0.04425048828125, -0.03350830078125, 0.039947509765625, 0.021759033203125, -0.061279296875, -0.0267181396484375, 0.039703369140625, -0.051849365234375, 0.06854248046875, 0.018585205078125, -0.09619140625, 0.00762176513671875, -0.04736328125, -0.0218963623046875, 0.016265869140625, -0.0200042724609375, -0.04595947265625, -0.015167236328125, 0.0003762245178222656, 0.046295166015625, -0.003955841064453125, -0.0096282958984375, -0.0291290283203125, -0.0264892578125, 0.0279693603515625, -0.0161895751953125, 0.0689697265625, 0.0191192626953125, -0.03350830078125, -0.0118865966796875, -0.0484619140625, 0.006923675537109375, 0.01393890380859375, -0.036834716796875, -0.0110626220703125, -0.01064300537109375, 0.00824737548828125, 0.0114898681640625, 0.0090179443359375, -0.03173828125, 0.027191162109375, -0.042938232421875, 0.0186309814453125, 0.0362548828125, 0.00318145751953125, 0.03369140625, -0.0318603515625, 0.038909912109375, -0.0005054473876953125, -0.0257110595703125, -0.032012939453125, -0.03643798828125, -0.062164306640625, -0.02911376953125, 0.040496826171875, 0.07861328125, -0.08551025390625, 0.037017822265625, -0.01507568359375, -0.040252685546875, -0.0261993408203125, -0.000051081180572509766, 0.037078857421875, 0.04833984375, 0.026641845703125, 0.0160675048828125, -0.03558349609375, -0.059234619140625, -0.0177459716796875, -0.0173797607421875, -0.006076812744140625, 0.0107421875, 0.04937744140625, -0.01715087890625, 0.07159423828125, -0.06976318359375, -0.007366180419921875, -0.033782958984375, 0.005615234375, 0.0284881591796875, 0.04937744140625, 0.040191650390625, -0.06097412109375, -0.043731689453125, -0.00310516357421875, -0.04827880859375, -0.00759124755859375, -0.00409698486328125, 0.0015382766723632812, 0.002437591552734375, 0.01465606689453125, -0.033843994140625, 0.034881591796875, 0.0235137939453125, -0.034515380859375, 0.04339599609375, 0.006763458251953125, 0.0248260498046875, -0.09765625, -0.0038089752197265625, 0.01303863525390625, -0.0290374755859375, -0.05230712890625, 0.00305938720703125, 0.0039215087890625, -0.007472991943359375, -0.046478271484375, 0.05010986328125, -0.00769805908203125, 0.0230255126953125, -0.033721923828125, 0.003955841064453125, 0.003627777099609375, 0.052398681640625, 0.0186004638671875, 0.04400634765625, 0.044219970703125, -0.053375244140625, 0.0177154541015625, 0.048858642578125, -0.0284423828125, 0.03924560546875, -0.036895751953125, 0.004070281982421875, -0.0028896331787109375, 0.020050048828125, -0.0794677734375, -0.023345947265625, 0.0445556640625, -0.041961669921875, 0.0060882568359375, -0.009674072265625, -0.0538330078125, -0.0181884765625, -0.02337646484375, 0.01303863525390625, 0.044097900390625, -0.050384521484375, 0.0190277099609375, 0.00888824462890625, -0.0027561187744140625, -0.03814697265625, -0.0792236328125, -0.02655029296875, -0.028839111328125, -0.02227783203125, 0.01444244384765625, -0.01324462890625, -0.006420135498046875, -0.0130157470703125, 0.0088958740234375, -0.0390625, -0.0014190673828125, 0.0119476318359375, 0.006549835205078125, -0.005390167236328125, 0.036895751953125, 0.01338958740234375, -0.010833740234375, -0.033233642578125, -0.01336669921875, 0.028564453125, -0.01064300537109375, -0.004222869873046875, -0.04473876953125, 0.019256591796875, -0.0035152435302734375, 0.0003097057342529297, 0.047119140625, 0.06365966796875, -0.0408935546875, -0.01971435546875, -0.0229034423828125, -0.02740478515625, -0.030487060546875, 0.0197906494140625, -0.046478271484375, -0.067138671875, 0.018402099609375, -0.009124755859375, 0.0025081634521484375, 0.049560546875, 0.026275634765625, -0.01702880859375, 0.05108642578125, 0.05438232421875, 0.004276275634765625, 0.060302734375, -0.0311737060546875, 0.0006213188171386719, -0.033935546875, 0.00879669189453125, -0.06365966796875, -0.0169219970703125, -0.054718017578125, -0.0235595703125, 0.017120361328125, 0.0243988037109375, -0.037841796875, 0.0391845703125, -0.028961181640625, 0.060028076171875, 0.044677734375, 0.040130615234375, 0.00852203369140625, 0.00820159912109375, -0.0135650634765625, 0.0018625259399414062, -0.062103271484375, -0.061920166015625, 0.056304931640625, 0.033599853515625, 0.05853271484375, 0.007503509521484375, 0.060943603515625, 0.01248931884765625, -0.008270263671875, -0.06097412109375, 0.026641845703125, -0.035308837890625, -0.04449462890625, -0.010528564453125, -0.03228759765625, -0.07611083984375, 0.0208892822265625, -0.025634765625, -0.07037353515625, 0.00467681884765625, 0.018890380859375, -0.031494140625, 0.022796630859375, -0.06524658203125, 0.08343505859375, 0.01145172119140625, -0.0313720703125, -0.00846099853515625, -0.053863525390625, 0.0239105224609375, -0.00008159875869750977, -0.0073699951171875, 0.003154754638671875, -0.00434112548828125, 0.070068359375, -0.0155792236328125, 0.0867919921875, 0.0009207725524902344, 0.0194549560546875, 0.032562255859375, 0.006641387939453125, 0.02886962890625, 0.00506591796875, -0.023193359375, 0.01172637939453125, 0.01666259765625, -0.04034423828125, -0.040130615234375, 0.03753662109375, -0.05682373046875, -0.0138092041015625, -0.050079345703125, -0.03167724609375, 0.012481689453125, 0.042999267578125, 0.039093017578125, 0.0213165283203125, -0.007236480712890625, 0.01080322265625, 0.048797607421875, -0.0017633438110351562, 0.052154541015625, 0.01800537109375, -0.0073699951171875, -0.0264739990234375, 0.044677734375, -0.00923919677734375, 0.01145172119140625, 0.046051025390625, 0.035125732421875, -0.01485443115234375, -0.017486572265625, -0.023345947265625, 0.0169219970703125, -0.06585693359375, -0.0277252197265625, -0.052886962890625, -0.0244903564453125, -0.040802001953125, -0.01444244384765625, -0.01184844970703125, -0.04949951171875, -0.0528564453125, -0.0032501220703125, 0.03106689453125, 0.043914794921875, 0.0088653564453125, 0.057830810546875, -0.05084228515625, 0.03558349609375, 0.00628662109375, 0.0193634033203125, -0.0305328369140625, -0.061676025390625, -0.0238189697265625, -0.005733489990234375, -0.04547119140625, -0.0789794921875, 0.0260162353515625, 0.03289794921875, 0.042633056640625, 0.04119873046875, 0.0091705322265625, 0.0263671875, -0.036102294921875, 0.06756591796875, 0.0126800537109375, -0.06756591796875, 0.051605224609375, -0.00804901123046875, 0.0484619140625, 0.063720703125, 0.05169677734375, -0.0225830078125, -0.0111541748046875, -0.06451416015625, -0.016632080078125, 0.0687255859375, 0.024139404296875, 0.0033512115478515625, -0.01195526123046875, 0.0249481201171875, 0.01299285888671875, 0.0060577392578125, -0.09521484375, -0.009796142578125, -0.0198974609375, -0.0362548828125, -0.015533447265625, -0.008148193359375, 0.0009427070617675781, -0.0220489501953125, 0.06634521484375, -0.032196044921875, 0.020843505859375, 0.01180267333984375, -0.02337646484375, 0.0196380615234375, 0.024139404296875, 0.029205322265625, 0.03173828125, -0.006420135498046875, 0.032012939453125, 0.01235198974609375, -0.0276031494140625, 0.00470733642578125, 0.01006317138671875, -0.0175323486328125, 0.0028476715087890625, 0.04791259765625, 0.06854248046875, 0.007274627685546875, -0.050445556640625, 0.051422119140625, 0.00841522216796875, -0.0133056640625, -0.009033203125, 0.00945281982421875, -0.016754150390625, 0.043182373046875, 0.003726959228515625, 0.0013856887817382812, 0.0194244384765625, -0.02142333984375, 0.025054931640625, 0.0095062255859375, -0.029296875, -0.003387451171875, 0.0211944580078125, 0.005718231201171875, -0.029022216796875, 0.050811767578125, -0.04791259765625, -0.05010986328125, 0.033966064453125, 0.052215576171875, 0.07861328125, -0.01058197021484375, 0.0155181884765625, 0.047637939453125, 0.0162353515625, -0.00894927978515625, 0.014129638671875, -0.01483917236328125, -0.07879638671875, -0.019744873046875, -0.048980712890625, -0.0253143310546875, 0.00666046142578125, -0.0167083740234375, 0.036468505859375, -0.034149169921875, -0.0032215118408203125, 0.020050048828125, 0.0123138427734375, -0.04388427734375, 0.0091705322265625, -0.0028076171875, 0.06793212890625, -0.0869140625, 0.0606689453125, 0.0692138671875, -0.04461669921875, -0.03662109375, 0.01513671875, 0.0028591156005859375, -0.03656005859375, 0.0467529296875, 0.041900634765625, 0.006473541259765625, 0.007709503173828125, -0.05474853515625, -0.032867431640625, 0.061859130859375, 0.0146331787109375, -0.0321044921875, 0.006488800048828125, -0.01873779296875, 0.044036865234375, -0.031402587890625, 0.039642333984375, 0.043731689453125, 0.0291900634765625, 0.01415252685546875, -0.062744140625, -0.016143798828125, -0.019439697265625, 0.0015630722045898438, -0.00196075439453125, -0.03485107421875, 0.061737060546875, -0.0299530029296875, -0.01384735107421875, 0.00566864013671875, 0.050994873046875, 0.0289154052734375, 0.032562255859375, 0.045989990234375, 0.047119140625, 0.052154541015625, 0.0011301040649414062, 0.070068359375, 0.003498077392578125, 0.04290771484375, 0.08935546875, 0.005828857421875, 0.07427978515625, 0.026336669921875, -0.0234375, 0.050628662109375, 0.06231689453125, -0.0186920166015625, 0.049774169921875, 0.017608642578125, -0.0141143798828125, -0.01416778564453125, 0.01277923583984375, 0.00008463859558105469, 0.04034423828125, 0.00862884521484375, -0.02716064453125, -0.01421356201171875, 0.020233154296875, 0.01145172119140625, 0.0162200927734375, -0.007190704345703125, 0.07373046875, 0.0011472702026367188, -0.04833984375, 0.046539306640625, -0.0018310546875, 0.06011962890625, -0.034637451171875, -0.018646240234375, -0.0013818740844726562, 0.025115966796875, -0.031982421875, -0.061737060546875, 0.00942230224609375, 0.0196990966796875, -0.02935791015625, -0.00121307373046875, 0.051788330078125, -0.041046142578125, -0.0472412109375, -0.0015592575073242188, 0.021728515625, 0.047637939453125, 0.0022411346435546875, -0.068603515625, -0.01255035400390625, 0.01537322998046875, -0.02923583984375, -0.0021228790283203125, 0.0203857421875, 0.005374908447265625, 0.046173095703125, 0.018585205078125, -0.016632080078125, -0.0022735595703125, 0.0018148422241210938, 0.05401611328125, -0.053375244140625, -0.05755615234375, -0.06390380859375, 0.044769287109375, -0.00433349609375, -0.0301513671875, 0.045806884765625, 0.053436279296875, 0.06097412109375, -0.019775390625, 0.05517578125, -0.0241241455078125, 0.05126953125, -0.046875, 0.041229248046875, -0.03173828125, -0.0028858184814453125, -0.031280517578125, -0.06414794921875, -0.036956787109375, 0.06805419921875, -0.01219940185546875, 0.012481689453125, 0.08245849609375, 0.060516357421875, -0.016082763671875, -0.01220703125, 0.0120849609375, 0.01139068603515625, 0.01186370849609375, 0.03741455078125, 0.03900146484375, -0.0450439453125, 0.0335693359375, -0.039031982421875, -0.0406494140625, -0.011688232421875, -0.06329345703125, -0.085205078125, -0.054046630859375, -0.044097900390625, -0.0270538330078125, -0.007228851318359375, 0.0748291015625, 0.05413818359375, -0.060211181640625, -0.004772186279296875, -0.002895355224609375, 0.0202178955078125, -0.0269317626953125, -0.019683837890625, 0.0301513671875, -0.03955078125, -0.07037353515625, 0.0207977294921875, -0.01303863525390625, 0.0250396728515625, 0.01312255859375, -0.006488800048828125, -0.052154541015625, -0.00484466552734375, 0.036163330078125, 0.0191497802734375, -0.049560546875, -0.0221099853515625, -0.0255126953125, -0.01163482666015625, 0.00714111328125, 0.034515380859375, -0.060791015625, 0.02630615234375, 0.056060791015625, 0.0626220703125, 0.048126220703125, 0.0019893646240234375, 0.00658416748046875, -0.06634521484375, 0.0136871337890625, 0.0124664306640625, 0.021636962890625, 0.0236968994140625, -0.0296478271484375, 0.053314208984375, 0.0197296142578125, -0.047576904296875, -0.050567626953125, 0.016876220703125, -0.0887451171875, -0.03973388671875, 0.089111328125, -0.0255584716796875, -0.0162200927734375, 0.0190582275390625, -0.020233154296875, 0.035797119140625, -0.020172119140625, 0.0343017578125, 0.04559326171875, -0.02044677734375, -0.046905517578125, -0.018646240234375, 0.032806396484375, 0.0186004638671875, -0.08026123046875, -0.021392822265625, 0.0325927734375, 0.0177154541015625, 0.0282135009765625, 0.031494140625, 0.0207977294921875, 0.0196990966796875, 0.0101165771484375, 0.016143798828125, 0.00878143310546875, -0.0264434814453125, -0.050018310546875, 0.01297760009765625, -0.0086517333984375, -0.036773681640625 ] ]
Nguyens/bert-finetuned-ner-accelerate
2023-10-26T08:47:05.000Z
[ "transformers", "pytorch", "bert", "token-classification", "generated_from_trainer", "dataset:conll2003", "license:apache-2.0", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
token-classification
Nguyens
null
null
Nguyens/bert-finetuned-ner-accelerate
0
2
transformers
2023-10-26T07:39:11
--- license: apache-2.0 base_model: bert-base-cased tags: - generated_from_trainer datasets: - conll2003 metrics: - precision - recall - f1 - accuracy model-index: - name: bert-finetuned-ner-accelerate results: - task: name: Token Classification type: token-classification dataset: name: conll2003 type: conll2003 config: conll2003 split: validation args: conll2003 metrics: - name: Precision type: precision value: 0.9354304635761589 - name: Recall type: recall value: 0.9508582968697409 - name: F1 type: f1 value: 0.9430812885995661 - name: Accuracy type: accuracy value: 0.9866809913463237 --- <!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # bert-finetuned-ner-accelerate This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the conll2003 dataset. It achieves the following results on the evaluation set: - Loss: 0.0797 - Precision: 0.9354 - Recall: 0.9509 - F1: 0.9431 - Accuracy: 0.9867 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:| | 0.0211 | 1.0 | 1756 | 0.0741 | 0.9254 | 0.9443 | 0.9348 | 0.9851 | | 0.0126 | 2.0 | 3512 | 0.0741 | 0.9331 | 0.9485 | 0.9407 | 0.9862 | | 0.0084 | 3.0 | 5268 | 0.0797 | 0.9354 | 0.9509 | 0.9431 | 0.9867 | ### Framework versions - Transformers 4.33.3 - Pytorch 2.0.1+cu117 - Datasets 2.14.5 - Tokenizers 0.13.3
2,244
[ [ -0.04083251953125, -0.047760009765625, 0.013824462890625, 0.016387939453125, -0.0208892822265625, -0.029052734375, -0.013824462890625, -0.0195159912109375, 0.01158905029296875, 0.01427459716796875, -0.061309814453125, -0.03216552734375, -0.055206298828125, -0.01506805419921875, -0.0241546630859375, 0.0911865234375, 0.01459503173828125, 0.03485107421875, -0.0002944469451904297, 0.001361846923828125, -0.032562255859375, -0.040313720703125, -0.061065673828125, -0.051483154296875, 0.0259857177734375, 0.028045654296875, 0.06463623046875, 0.05584716796875, 0.04791259765625, 0.017730712890625, -0.03363037109375, -0.01280975341796875, -0.046234130859375, -0.0283966064453125, 0.013397216796875, -0.021148681640625, -0.05352783203125, -0.01428985595703125, 0.037750244140625, 0.041290283203125, -0.0153045654296875, 0.0261688232421875, 0.002391815185546875, 0.048675537109375, -0.0283966064453125, 0.018157958984375, -0.03607177734375, 0.01080322265625, -0.00693511962890625, -0.01421356201171875, -0.0133819580078125, -0.0175323486328125, 0.01556396484375, -0.049224853515625, 0.039520263671875, -0.0071563720703125, 0.09661865234375, 0.025634765625, -0.01168060302734375, 0.00287628173828125, -0.052337646484375, 0.049041748046875, -0.05548095703125, 0.0257568359375, 0.0189056396484375, 0.0309906005859375, -0.00856781005859375, -0.061859130859375, -0.039581298828125, 0.00662994384765625, -0.00002384185791015625, 0.007625579833984375, -0.00982666015625, 0.00390625, 0.0531005859375, 0.03533935546875, -0.040191650390625, 0.0200958251953125, -0.04638671875, -0.027252197265625, 0.0418701171875, 0.02655029296875, -0.0201873779296875, -0.00952911376953125, -0.037750244140625, -0.0222015380859375, -0.0271148681640625, 0.01611328125, 0.035552978515625, 0.0284881591796875, -0.028656005859375, 0.03167724609375, -0.0248870849609375, 0.05706787109375, 0.0192718505859375, -0.005039215087890625, 0.050048828125, 0.006755828857421875, -0.03045654296875, 0.006717681884765625, 0.046356201171875, 0.04632568359375, 0.0216827392578125, 0.00457000732421875, -0.02618408203125, -0.01094818115234375, 0.0177154541015625, -0.0841064453125, -0.0248260498046875, 0.0152435302734375, -0.04974365234375, -0.0280303955078125, 0.007617950439453125, -0.037628173828125, 0.017242431640625, -0.037109375, 0.051422119140625, -0.041778564453125, 0.0005936622619628906, 0.00867462158203125, -0.0091705322265625, 0.03143310546875, 0.0210418701171875, -0.06982421875, 0.027923583984375, 0.046295166015625, 0.041351318359375, 0.01160430908203125, -0.0141448974609375, -0.0149383544921875, -0.008148193359375, -0.020965576171875, 0.03802490234375, -0.0120849609375, -0.02679443359375, -0.002468109130859375, 0.020721435546875, 0.0022983551025390625, -0.0245819091796875, 0.071533203125, -0.032440185546875, 0.0154266357421875, -0.0206451416015625, -0.055755615234375, -0.0195465087890625, 0.0289306640625, -0.04791259765625, 0.089599609375, 0.0009512901306152344, -0.04583740234375, 0.05133056640625, -0.042144775390625, -0.0199127197265625, -0.00330352783203125, -0.003803253173828125, -0.05999755859375, 0.00040030479431152344, 0.0179595947265625, 0.042694091796875, -0.015533447265625, 0.031524658203125, -0.0208282470703125, -0.047454833984375, -0.01361083984375, -0.037506103515625, 0.062042236328125, 0.0125885009765625, -0.032135009765625, 0.0106048583984375, -0.09344482421875, 0.0205841064453125, 0.01666259765625, -0.03277587890625, 0.0090179443359375, -0.0188751220703125, 0.0229034423828125, 0.0218505859375, 0.037200927734375, -0.041412353515625, 0.003688812255859375, -0.03656005859375, 0.0162506103515625, 0.05767822265625, 0.0021152496337890625, 0.0009479522705078125, -0.040374755859375, 0.0059967041015625, 0.00997161865234375, 0.030914306640625, 0.01242828369140625, -0.04052734375, -0.072021484375, -0.00684356689453125, 0.029144287109375, 0.0270233154296875, -0.01995849609375, 0.06475830078125, -0.0164947509765625, -0.056549072265625, -0.023223876953125, -0.0020160675048828125, 0.0284423828125, 0.051727294921875, 0.03662109375, -0.00835418701171875, -0.030059814453125, -0.09442138671875, 0.00623321533203125, -0.00183868408203125, 0.00603485107421875, 0.021881103515625, 0.0439453125, -0.00872802734375, 0.050689697265625, -0.0364990234375, -0.01163482666015625, 0.00014603137969970703, 0.0167083740234375, 0.0477294921875, 0.067138671875, 0.051971435546875, -0.03350830078125, -0.0194244384765625, -0.0175323486328125, -0.0435791015625, 0.0227813720703125, -0.01213836669921875, -0.0259246826171875, -0.006732940673828125, 0.0201568603515625, -0.037261962890625, 0.04766845703125, 0.021026611328125, -0.021240234375, 0.0482177734375, -0.042205810546875, -0.0087432861328125, -0.074462890625, 0.0222015380859375, 0.00042366981506347656, -0.00939178466796875, -0.028106689453125, -0.006160736083984375, 0.0184173583984375, -0.006389617919921875, -0.0338134765625, 0.04144287109375, -0.007274627685546875, 0.002628326416015625, -0.00787353515625, -0.02545166015625, -0.0089569091796875, 0.062286376953125, 0.0118865966796875, 0.045166015625, 0.049835205078125, -0.04864501953125, 0.01479339599609375, 0.03460693359375, -0.036468505859375, 0.032562255859375, -0.067626953125, 0.0136871337890625, -0.00687408447265625, -0.0102996826171875, -0.05706787109375, -0.016815185546875, 0.0036716461181640625, -0.03778076171875, 0.020263671875, -0.00724029541015625, -0.033050537109375, -0.037200927734375, -0.01050567626953125, 0.00534820556640625, 0.044158935546875, -0.042205810546875, 0.0181121826171875, -0.01519012451171875, 0.0120391845703125, -0.044830322265625, -0.05694580078125, -0.0220184326171875, -0.0005965232849121094, -0.042266845703125, 0.035125732421875, -0.01348114013671875, 0.00846099853515625, -0.00772857666015625, -0.0079803466796875, -0.0222320556640625, 0.0022449493408203125, 0.021759033203125, 0.022796630859375, -0.01055145263671875, 0.00531005859375, 0.0073699951171875, -0.01477813720703125, 0.016632080078125, 0.007022857666015625, 0.052947998046875, -0.013427734375, -0.014739990234375, -0.06036376953125, -0.0021343231201171875, 0.040435791015625, 0.0035800933837890625, 0.058868408203125, 0.0601806640625, -0.044189453125, 0.006927490234375, -0.034576416015625, -0.024078369140625, -0.03436279296875, 0.032257080078125, -0.0294036865234375, -0.02911376953125, 0.0576171875, 0.00946807861328125, 0.0159454345703125, 0.07550048828125, 0.04779052734375, -0.0020122528076171875, 0.08355712890625, 0.02984619140625, -0.00406646728515625, 0.0237884521484375, -0.059234619140625, -0.0174713134765625, -0.048492431640625, -0.0408935546875, -0.0443115234375, -0.04083251953125, -0.04791259765625, 0.00864410400390625, 0.013214111328125, 0.00934600830078125, -0.0682373046875, 0.0224761962890625, -0.04156494140625, 0.0218505859375, 0.06341552734375, 0.0377197265625, -0.00691986083984375, -0.00080108642578125, -0.0248565673828125, -0.00970458984375, -0.056549072265625, -0.0234527587890625, 0.09686279296875, 0.025909423828125, 0.051055908203125, -0.0024814605712890625, 0.052490234375, 0.01010894775390625, 0.0173797607421875, -0.049468994140625, 0.030914306640625, -0.004863739013671875, -0.08203125, -0.019378662109375, -0.018402099609375, -0.059326171875, 0.005706787109375, -0.03277587890625, -0.04107666015625, 0.02972412109375, 0.0199127197265625, -0.04241943359375, 0.0185546875, -0.03997802734375, 0.07745361328125, -0.0282745361328125, -0.0282440185546875, -0.01666259765625, -0.05621337890625, 0.00955963134765625, -0.0020389556884765625, -0.016387939453125, -0.00817108154296875, 0.018951416015625, 0.072509765625, -0.05706787109375, 0.044921875, -0.037322998046875, 0.030792236328125, 0.0113067626953125, -0.00604248046875, 0.053924560546875, 0.004703521728515625, -0.01546478271484375, 0.013275146484375, -0.011260986328125, -0.042144775390625, -0.0297698974609375, 0.058197021484375, -0.0780029296875, -0.01763916015625, -0.034637451171875, -0.041351318359375, -0.00856781005859375, 0.03277587890625, 0.036407470703125, 0.053192138671875, -0.00563812255859375, 0.025909423828125, 0.039215087890625, 0.0030574798583984375, 0.041656494140625, 0.0272979736328125, 0.006481170654296875, -0.0408935546875, 0.05572509765625, -0.0034503936767578125, 0.01824951171875, 0.0024318695068359375, 0.0078887939453125, -0.030303955078125, -0.0413818359375, -0.03155517578125, 0.00988006591796875, -0.05059814453125, -0.0224609375, -0.022857666015625, -0.033172607421875, -0.021453857421875, -0.01419830322265625, -0.032562255859375, -0.038726806640625, -0.042327880859375, -0.0139617919921875, 0.03802490234375, 0.03271484375, 0.0004723072052001953, 0.04925537109375, -0.03948974609375, 0.0023021697998046875, 0.0176849365234375, 0.036773681640625, 0.004482269287109375, -0.06317138671875, -0.022552490234375, -0.0007529258728027344, -0.0343017578125, -0.032684326171875, 0.04083251953125, 0.0138092041015625, 0.053680419921875, 0.0457763671875, -0.01448822021484375, 0.08453369140625, -0.0347900390625, 0.0565185546875, 0.0262298583984375, -0.044921875, 0.0341796875, -0.0184173583984375, 0.0172882080078125, 0.054595947265625, 0.039764404296875, -0.0018243789672851562, -0.0048675537109375, -0.09423828125, -0.062042236328125, 0.06292724609375, 0.027435302734375, 0.00775909423828125, 0.0030078887939453125, 0.03387451171875, -0.0059661865234375, 0.018951416015625, -0.058349609375, -0.043548583984375, -0.0235137939453125, -0.01104736328125, -0.003314971923828125, -0.021636962890625, -0.004947662353515625, -0.047454833984375, 0.07366943359375, 0.0007615089416503906, 0.03729248046875, 0.021331787109375, 0.00525665283203125, -0.007781982421875, -0.00327301025390625, 0.05279541015625, 0.051666259765625, -0.06201171875, -0.0183868408203125, 0.0102081298828125, -0.0305328369140625, -0.00868988037109375, 0.0304107666015625, -0.00632476806640625, 0.00920867919921875, 0.02520751953125, 0.06988525390625, 0.019378662109375, -0.0224761962890625, 0.03515625, 0.002574920654296875, -0.0306854248046875, -0.031585693359375, 0.0025882720947265625, -0.0139923095703125, 0.01386260986328125, 0.0253448486328125, 0.03607177734375, 0.00867462158203125, -0.01172637939453125, 0.019561767578125, 0.024322509765625, -0.048431396484375, -0.01401519775390625, 0.0706787109375, 0.01297760009765625, -0.0223541259765625, 0.06121826171875, -0.006099700927734375, -0.0252227783203125, 0.0714111328125, 0.040008544921875, 0.062744140625, -0.006732940673828125, -0.0177459716796875, 0.0635986328125, 0.0194091796875, -0.012969970703125, 0.04962158203125, 0.01055908203125, -0.049224853515625, -0.019744873046875, -0.051788330078125, -0.0193939208984375, 0.03790283203125, -0.08404541015625, 0.032135009765625, -0.045501708984375, -0.039093017578125, 0.0244903564453125, 0.0081634521484375, -0.0753173828125, 0.047698974609375, 0.003818511962890625, 0.09710693359375, -0.05963134765625, 0.0654296875, 0.03424072265625, -0.0290069580078125, -0.06524658203125, -0.0175018310546875, -0.0237274169921875, -0.0767822265625, 0.060516357421875, 0.0116729736328125, 0.0275421142578125, 0.012664794921875, -0.042205810546875, -0.0626220703125, 0.07879638671875, 0.0137176513671875, -0.05810546875, 0.0062103271484375, 0.006671905517578125, 0.0439453125, -0.0018167495727539062, 0.036163330078125, 0.026763916015625, 0.0275421142578125, 0.00868988037109375, -0.06829833984375, -0.0056915283203125, -0.019989013671875, 0.004810333251953125, 0.01255035400390625, -0.051910400390625, 0.08099365234375, -0.005283355712890625, 0.03350830078125, 0.0184173583984375, 0.049468994140625, 0.0164031982421875, 0.0077667236328125, 0.031036376953125, 0.0723876953125, 0.04327392578125, -0.022064208984375, 0.07183837890625, -0.05126953125, 0.054290771484375, 0.0784912109375, 0.0079193115234375, 0.04730224609375, 0.030426025390625, -0.020782470703125, 0.03204345703125, 0.063232421875, -0.023223876953125, 0.038116455078125, 0.00717926025390625, 0.003826141357421875, -0.03277587890625, 0.02056884765625, -0.04644775390625, 0.014739990234375, 0.0173187255859375, -0.0499267578125, -0.02935791015625, -0.0247344970703125, -0.000934600830078125, -0.0159454345703125, -0.040374755859375, 0.034698486328125, -0.0313720703125, -0.0269012451171875, 0.063232421875, 0.00525665283203125, 0.0338134765625, -0.045257568359375, -0.00762939453125, -0.0112762451171875, 0.0259552001953125, -0.0146942138671875, -0.053375244140625, 0.01519012451171875, -0.00771331787109375, -0.016357421875, 0.00013256072998046875, 0.03704833984375, -0.007022857666015625, -0.0626220703125, 0.00469207763671875, 0.018035888671875, 0.016754150390625, 0.01131439208984375, -0.076171875, -0.00777435302734375, -0.0003116130828857422, -0.0269927978515625, 0.0012035369873046875, 0.02020263671875, 0.003124237060546875, 0.044464111328125, 0.050323486328125, -0.0089569091796875, 0.00815582275390625, 0.015899658203125, 0.07513427734375, -0.0499267578125, -0.04327392578125, -0.048553466796875, 0.03753662109375, -0.019622802734375, -0.05841064453125, 0.042755126953125, 0.0848388671875, 0.060455322265625, -0.0129547119140625, 0.033050537109375, -0.00771331787109375, 0.03948974609375, -0.039154052734375, 0.048492431640625, -0.038177490234375, -0.01186370849609375, -0.021148681640625, -0.0572509765625, -0.016326904296875, 0.05499267578125, -0.01904296875, 0.013641357421875, 0.022674560546875, 0.054595947265625, 0.0029144287109375, 0.0032978057861328125, 0.01102447509765625, 0.01178741455078125, 0.01396942138671875, 0.037811279296875, 0.0284576416015625, -0.061859130859375, 0.035491943359375, -0.05462646484375, -0.002948760986328125, -0.012725830078125, -0.05633544921875, -0.06500244140625, -0.0232086181640625, -0.0301971435546875, -0.0261993408203125, 0.0030803680419921875, 0.07421875, 0.0628662109375, -0.06280517578125, -0.01641845703125, -0.01666259765625, -0.023681640625, -0.0258026123046875, -0.01806640625, 0.043609619140625, -0.0223846435546875, -0.062744140625, 0.0003237724304199219, -0.027984619140625, 0.0269927978515625, -0.0097198486328125, -0.019134521484375, -0.01690673828125, -0.016754150390625, 0.016998291015625, 0.003772735595703125, -0.037689208984375, -0.03253173828125, -0.007114410400390625, 0.003204345703125, 0.0211944580078125, 0.0192718505859375, -0.051177978515625, 0.03717041015625, 0.0217132568359375, 0.0258636474609375, 0.065185546875, -0.0009708404541015625, 0.01560211181640625, -0.062408447265625, 0.036468505859375, 0.0170745849609375, 0.029754638671875, 0.0029850006103515625, -0.0254974365234375, 0.0297393798828125, 0.0252838134765625, -0.046844482421875, -0.05535888671875, -0.025726318359375, -0.08978271484375, 0.00551605224609375, 0.0684814453125, 0.0079193115234375, -0.0259246826171875, 0.02008056640625, -0.00865936279296875, 0.01837158203125, -0.0335693359375, 0.040374755859375, 0.05242919921875, -0.0182342529296875, 0.014556884765625, -0.0390625, 0.043609619140625, 0.02685546875, -0.0341796875, -0.0164031982421875, 0.0286712646484375, 0.035064697265625, 0.0114593505859375, 0.015838623046875, -0.0114898681640625, 0.032135009765625, 0.0017833709716796875, 0.03009033203125, -0.0229339599609375, -0.0189056396484375, -0.0277862548828125, 0.0004024505615234375, 0.0034637451171875, -0.037567138671875 ] ]
sugiv/Spoonbill-GarudaOtterFlamingoAreFriends-7B-Chat
2023-10-26T08:47:35.000Z
[ "transformers", "pytorch", "flamingo", "text2text-generation", "dataset:pufanyi/MIMICIT", "arxiv:2306.05425", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
text2text-generation
sugiv
null
null
sugiv/Spoonbill-GarudaOtterFlamingoAreFriends-7B-Chat
0
2
transformers
2023-10-26T08:32:03
--- license: mit datasets: - pufanyi/MIMICIT --- Dubbed Spoonbill Garuda version used instruction tuned sugiv/garuda-from-llama2-7B-chat as languade model. The above said Spoonbill Garuda is also vision-language model which was also trained on visual instruction datasets (limited from Otter). - Please refer to license of Llama2 from which Garuda was derived with Alpaca dataset. - The above is also fine-tuned on visual instruction tuning datasets derived from Otter's datasets. - https://ai.meta.com/llama/license/ - @software{anas_awadalla_2023_7733589, author = {Awadalla, Anas and Gao, Irena and Gardner, Joshua and Hessel, Jack and Hanafy, Yusuf and Zhu, Wanrong and Marathe, Kalyani and Bitton, Yonatan and Gadre, Samir and Jitsev, Jenia and Kornblith, Simon and Koh, Pang Wei and Ilharco, Gabriel and Wortsman, Mitchell and Schmidt, Ludwig}, title = {OpenFlamingo}, month = mar, year = 2023, publisher = {Zenodo}, version = {v0.1.1}, doi = {10.5281/zenodo.7733589}, url = {https://doi.org/10.5281/zenodo.7733589} } - @article{li2023otter, title={Otter: A Multi-Modal Model with In-Context Instruction Tuning}, author={Li, Bo and Zhang, Yuanhan and Chen, Liangyu and Wang, Jinghao and Yang, Jingkang and Liu, Ziwei}, journal={arXiv preprint arXiv:2305.03726}, year={2023} } @article{li2023mimicit, title={MIMIC-IT: Multi-Modal In-Context Instruction Tuning}, author={Bo Li and Yuanhan Zhang and Liangyu Chen and Jinghao Wang and Fanyi Pu and Jingkang Yang and Chunyuan Li and Ziwei Liu}, year={2023}, eprint={2306.05425}, archivePrefix={arXiv}, primaryClass={cs.CV} }
1,671
[ [ -0.0188140869140625, -0.06011962890625, 0.006961822509765625, 0.0298309326171875, -0.0140838623046875, -0.004425048828125, -0.00681304931640625, -0.041168212890625, 0.0187530517578125, 0.044097900390625, -0.04095458984375, -0.015899658203125, -0.025390625, -0.01004791259765625, -0.0120391845703125, 0.07293701171875, 0.00737762451171875, 0.0178070068359375, -0.005664825439453125, -0.0120086669921875, -0.051910400390625, -0.0191497802734375, -0.053924560546875, -0.0220184326171875, 0.017822265625, 0.022369384765625, 0.035919189453125, 0.064453125, 0.00809478759765625, 0.0226593017578125, -0.019378662109375, 0.0209197998046875, -0.022674560546875, -0.03314208984375, -0.0009589195251464844, -0.0419921875, -0.049102783203125, 0.005619049072265625, 0.054473876953125, 0.027374267578125, -0.01134490966796875, 0.0243682861328125, 0.0216217041015625, 0.00803375244140625, -0.02288818359375, 0.0250091552734375, -0.02484130859375, 0.006374359130859375, -0.02099609375, -0.0211334228515625, -0.03082275390625, -0.006504058837890625, 0.0004591941833496094, -0.0633544921875, 0.00091552734375, 0.026580810546875, 0.0966796875, 0.019195556640625, -0.04412841796875, -0.03497314453125, -0.018096923828125, 0.0855712890625, -0.052978515625, 0.0181121826171875, 0.0234222412109375, 0.01971435546875, -0.0341796875, -0.059783935546875, -0.0439453125, -0.00513458251953125, -0.007129669189453125, 0.01267242431640625, 0.002593994140625, 0.0198516845703125, 0.0224609375, 0.02337646484375, -0.031829833984375, 0.0174713134765625, -0.05859375, -0.0155181884765625, 0.0279083251953125, 0.01409149169921875, 0.03387451171875, -0.022216796875, -0.05560302734375, -0.019500732421875, -0.041656494140625, 0.054931640625, 0.03448486328125, 0.0070037841796875, -0.037139892578125, 0.0187225341796875, 0.01006317138671875, 0.07623291015625, 0.007617950439453125, -0.045135498046875, 0.037017822265625, -0.0015993118286132812, -0.0328369140625, 0.001064300537109375, 0.038116455078125, 0.0290985107421875, 0.0008993148803710938, 0.017486572265625, -0.0129241943359375, -0.0223236083984375, 0.021148681640625, -0.05242919921875, 0.003604888916015625, 0.004947662353515625, -0.035919189453125, -0.0141754150390625, -0.003002166748046875, -0.06488037109375, -0.018096923828125, -0.0294036865234375, 0.03192138671875, -0.027374267578125, -0.026611328125, 0.01067352294921875, 0.0130767822265625, 0.051177978515625, 0.01415252685546875, -0.08746337890625, 0.0240325927734375, 0.0545654296875, 0.059356689453125, 0.00136566162109375, -0.0498046875, -0.0347900390625, 0.01123046875, -0.0350341796875, 0.034271240234375, -0.062744140625, -0.027862548828125, -0.0077056884765625, 0.0308990478515625, -0.0180206298828125, -0.021514892578125, 0.0263824462890625, -0.03363037109375, 0.031494140625, -0.031829833984375, -0.036651611328125, -0.0670166015625, -0.00498199462890625, -0.051177978515625, 0.06695556640625, 0.0037174224853515625, -0.036865234375, 0.04022216796875, -0.045501708984375, -0.0242156982421875, -0.0171966552734375, -0.0158233642578125, -0.027801513671875, -0.014373779296875, 0.0267333984375, 0.0260162353515625, -0.02691650390625, 0.01136016845703125, -0.020599365234375, -0.058563232421875, -0.0003066062927246094, -0.021514892578125, 0.086181640625, 0.005367279052734375, -0.035980224609375, 0.0030155181884765625, -0.055694580078125, 0.010772705078125, -0.005352020263671875, -0.027069091796875, -0.0256500244140625, -0.0140228271484375, -0.0185546875, 0.01082611083984375, 0.01678466796875, -0.0265045166015625, 0.0304718017578125, -0.028045654296875, 0.026214599609375, 0.05859375, 0.011138916015625, 0.0305023193359375, -0.02972412109375, 0.047607421875, -0.00847625732421875, 0.044830322265625, -0.0294342041015625, -0.055145263671875, -0.0810546875, -0.0310516357421875, 0.0140838623046875, 0.04888916015625, -0.0394287109375, 0.000713348388671875, 0.00380706787109375, -0.0215911865234375, -0.0538330078125, 0.0099945068359375, 0.05126953125, 0.049468994140625, 0.0364990234375, -0.0193328857421875, -0.035186767578125, -0.06304931640625, -0.004322052001953125, 0.0013132095336914062, 0.014007568359375, 0.041168212890625, 0.026214599609375, 0.00765228271484375, 0.033721923828125, -0.01132965087890625, -0.028656005859375, -0.00992584228515625, 0.01513671875, 0.0202789306640625, 0.037628173828125, 0.0645751953125, -0.032684326171875, -0.037200927734375, 0.005542755126953125, -0.06512451171875, -0.01546478271484375, -0.0228424072265625, -0.014984130859375, 0.02874755859375, 0.02777099609375, -0.0155181884765625, 0.034637451171875, 0.043792724609375, -0.01033782958984375, 0.031768798828125, -0.018157958984375, 0.0186614990234375, -0.07952880859375, -0.0022220611572265625, -0.01560211181640625, 0.01129150390625, -0.0430908203125, 0.0221405029296875, 0.0159759521484375, 0.006938934326171875, -0.03070068359375, 0.05377197265625, -0.06585693359375, -0.0158538818359375, -0.0199737548828125, -0.003551483154296875, -0.0077056884765625, 0.0673828125, -0.00847625732421875, 0.07110595703125, 0.0633544921875, -0.043792724609375, 0.0311431884765625, 0.01389312744140625, -0.0255584716796875, 0.043792724609375, -0.06787109375, 0.01277923583984375, -0.0006775856018066406, 0.01763916015625, -0.048553466796875, -0.02471923828125, 0.038818359375, 0.000888824462890625, 0.033905029296875, -0.015838623046875, -0.0147552490234375, -0.0226898193359375, -0.025848388671875, 0.0214385986328125, 0.02545166015625, -0.0604248046875, 0.0504150390625, 0.026824951171875, -0.00890350341796875, -0.06683349609375, -0.0419921875, -0.0023651123046875, -0.02337646484375, -0.043670654296875, 0.0169525146484375, 0.00019562244415283203, 0.004909515380859375, -0.0111846923828125, 0.0016298294067382812, -0.00408172607421875, -0.0192413330078125, 0.0198822021484375, 0.04736328125, -0.020477294921875, 0.0116424560546875, 0.032623291015625, 0.004398345947265625, -0.001293182373046875, 0.01016998291015625, 0.04595947265625, -0.037567138671875, -0.03009033203125, -0.035491943359375, 0.0186309814453125, 0.038909912109375, -0.034454345703125, 0.031768798828125, 0.05621337890625, -0.0088653564453125, -0.0178070068359375, -0.03131103515625, -0.01123809814453125, -0.0423583984375, 0.02691650390625, -0.0224151611328125, -0.046661376953125, 0.048492431640625, -0.0052947998046875, 0.004486083984375, 0.0033168792724609375, 0.00951385498046875, 0.014984130859375, 0.06329345703125, 0.063232421875, -0.004009246826171875, 0.053131103515625, -0.037567138671875, -0.007843017578125, -0.09185791015625, -0.0435791015625, -0.01139068603515625, -0.045013427734375, -0.024200439453125, -0.02923583984375, 0.038116455078125, 0.015899658203125, -0.034942626953125, 0.019256591796875, -0.0472412109375, 0.03973388671875, 0.0589599609375, 0.0150146484375, 0.01044464111328125, 0.01045989990234375, -0.01995849609375, -0.0034656524658203125, -0.04266357421875, -0.024139404296875, 0.09100341796875, 0.0145263671875, 0.0523681640625, 0.00922393798828125, 0.042327880859375, 0.0007925033569335938, -0.0014467239379882812, -0.045989990234375, 0.0576171875, -0.0039825439453125, -0.03851318359375, -0.01526641845703125, -0.0017681121826171875, -0.0726318359375, 0.0218505859375, -0.00039505958557128906, -0.07086181640625, 0.0247344970703125, -0.0018329620361328125, -0.022308349609375, 0.01479339599609375, -0.05963134765625, 0.0657958984375, -0.0382080078125, -0.025634765625, -0.0249786376953125, -0.0533447265625, 0.05902099609375, 0.0131988525390625, 0.0008649826049804688, 0.01174163818359375, -0.0204925537109375, 0.05841064453125, -0.0399169921875, 0.0841064453125, -0.0239410400390625, -0.017120361328125, 0.03369140625, -0.00453948974609375, 0.042327880859375, 0.012939453125, 0.01197052001953125, 0.0193634033203125, -0.00762176513671875, -0.029937744140625, -0.035186767578125, 0.061920166015625, -0.0654296875, -0.0518798828125, -0.032806396484375, -0.037506103515625, 0.00637054443359375, 0.034942626953125, 0.005779266357421875, 0.05133056640625, 0.02044677734375, 0.0131072998046875, 0.043365478515625, -0.01904296875, 0.0504150390625, 0.06158447265625, -0.0247344970703125, -0.035858154296875, 0.08160400390625, 0.0174713134765625, 0.01445770263671875, 0.00420379638671875, 0.003284454345703125, -0.01377105712890625, -0.0024242401123046875, -0.060882568359375, 0.02880859375, -0.04656982421875, -0.0017414093017578125, -0.0210113525390625, -0.01468658447265625, 0.017059326171875, -0.022857666015625, -0.00948333740234375, -0.0125579833984375, -0.047149658203125, 0.0054931640625, 0.0225677490234375, 0.04827880859375, 0.006252288818359375, 0.0221710205078125, -0.031982421875, 0.0162200927734375, 0.045989990234375, 0.01194000244140625, 0.01517486572265625, -0.047210693359375, -0.007617950439453125, 0.0234222412109375, -0.0216827392578125, -0.06732177734375, 0.01508331298828125, 0.0413818359375, 0.064208984375, 0.024078369140625, -0.0186004638671875, 0.07159423828125, -0.019256591796875, 0.0709228515625, 0.0051727294921875, -0.0697021484375, 0.036041259765625, -0.0177459716796875, 0.0029888153076171875, -0.003139495849609375, 0.01206207275390625, -0.034820556640625, -0.010467529296875, -0.02703857421875, -0.05084228515625, 0.084716796875, -0.04461669921875, 0.0188446044921875, 0.0118255615234375, 0.00677490234375, 0.0261077880859375, 0.01447296142578125, -0.04168701171875, -0.01059722900390625, -0.0548095703125, -0.0013856887817382812, 0.0243682861328125, -0.00777435302734375, -0.0211334228515625, -0.03985595703125, 0.05426025390625, -0.0212249755859375, 0.01708984375, -0.0158843994140625, -0.01666259765625, -0.003753662109375, 0.00646209716796875, 0.08074951171875, 0.038177490234375, 0.00848388671875, -0.014495849609375, 0.0251312255859375, -0.0513916015625, 0.0037479400634765625, -0.00982666015625, -0.0276031494140625, -0.0165252685546875, 0.0309600830078125, 0.09619140625, 0.043121337890625, -0.037628173828125, 0.057373046875, 0.025543212890625, 0.0003566741943359375, -0.0167236328125, 0.021392822265625, -0.005039215087890625, 0.03594970703125, 0.020416259765625, 0.0142669677734375, -0.001438140869140625, -0.02215576171875, -0.00782012939453125, 0.0235595703125, -0.01107025146484375, -0.0309906005859375, 0.07196044921875, 0.01483917236328125, -0.01065826416015625, 0.03631591796875, -0.012359619140625, -0.0114288330078125, 0.055450439453125, 0.07220458984375, 0.05816650390625, -0.0301513671875, 0.0285186767578125, 0.031707763671875, 0.0206756591796875, 0.007598876953125, 0.047637939453125, -0.0009241104125976562, -0.027374267578125, -0.0227203369140625, -0.04461669921875, -0.028961181640625, 0.032958984375, -0.0489501953125, 0.0309906005859375, -0.053466796875, 0.0003955364227294922, -0.0186309814453125, 0.00421905517578125, -0.0338134765625, 0.0007443428039550781, -0.007427215576171875, 0.061248779296875, -0.049041748046875, 0.0640869140625, 0.06341552734375, -0.048583984375, -0.08233642578125, -0.0007925033569335938, 0.01392364501953125, -0.092041015625, 0.03631591796875, 0.004314422607421875, -0.016082763671875, 0.006549835205078125, -0.0413818359375, -0.07623291015625, 0.1048583984375, 0.032958984375, -0.0189971923828125, 0.0020809173583984375, 0.00196075439453125, 0.0307464599609375, -0.022552490234375, 0.019927978515625, 0.0245208740234375, 0.042083740234375, 0.002655029296875, -0.09210205078125, 0.005870819091796875, -0.03619384765625, 0.0138397216796875, -0.0193023681640625, -0.10479736328125, 0.0916748046875, -0.0233306884765625, -0.0130157470703125, 0.004329681396484375, 0.0516357421875, 0.005504608154296875, 0.010345458984375, 0.02813720703125, 0.03271484375, 0.064453125, 0.00402069091796875, 0.052978515625, -0.0377197265625, 0.006679534912109375, 0.069580078125, -0.00020325183868408203, 0.05322265625, 0.032073974609375, -0.01456451416015625, 0.05792236328125, 0.04425048828125, -0.010528564453125, 0.04803466796875, -0.012359619140625, -0.01129150390625, -0.0023822784423828125, -0.00720977783203125, -0.038970947265625, 0.048126220703125, 0.033660888671875, -0.025848388671875, 0.0009527206420898438, 0.017120361328125, 0.0174407958984375, -0.01447296142578125, -0.035247802734375, 0.04388427734375, -0.004840850830078125, -0.04937744140625, 0.08917236328125, -0.01039886474609375, 0.052978515625, -0.052642822265625, -0.0193634033203125, -0.02734375, -0.0021953582763671875, -0.0171661376953125, -0.040802001953125, -0.0171661376953125, -0.015960693359375, 0.001949310302734375, 0.00823974609375, 0.040313720703125, -0.034515380859375, -0.0274200439453125, 0.0037174224853515625, 0.00685882568359375, 0.022003173828125, 0.0489501953125, -0.041168212890625, 0.01282501220703125, 0.01085662841796875, -0.0325927734375, 0.0211334228515625, 0.01148223876953125, -0.03192138671875, 0.0653076171875, 0.026092529296875, 0.00272369384765625, 0.039642333984375, -0.003925323486328125, 0.0731201171875, -0.027374267578125, -0.04150390625, -0.0247802734375, 0.033905029296875, -0.016082763671875, -0.0595703125, 0.05389404296875, 0.032379150390625, 0.059539794921875, -0.031463623046875, 0.04608154296875, -0.0102081298828125, 0.025543212890625, -0.0513916015625, 0.045318603515625, -0.06317138671875, 0.0217437744140625, -0.013916015625, -0.05841064453125, 0.0131378173828125, 0.051605224609375, -0.0189971923828125, 0.01385498046875, 0.04473876953125, 0.08526611328125, -0.029876708984375, 0.0014944076538085938, 0.00505828857421875, 0.00907135009765625, 0.011932373046875, 0.043609619140625, 0.03802490234375, -0.03302001953125, 0.04052734375, -0.024078369140625, -0.0276336669921875, -0.0421142578125, -0.048248291015625, -0.07830810546875, -0.04583740234375, 0.0092315673828125, 0.01430511474609375, 0.0035190582275390625, 0.05535888671875, 0.0504150390625, -0.05194091796875, -0.026763916015625, 0.00737762451171875, 0.005046844482421875, -0.059814453125, -0.0189208984375, 0.03814697265625, -0.024139404296875, -0.0733642578125, 0.055755615234375, 0.01477813720703125, 0.010528564453125, -0.0301513671875, -0.0247802734375, 0.007572174072265625, 0.0168914794921875, 0.01654052734375, 0.046630859375, -0.078125, -0.04571533203125, 0.0137176513671875, -0.01221466064453125, -0.01209259033203125, 0.0160369873046875, -0.0546875, 0.045440673828125, 0.014129638671875, 0.01788330078125, 0.0340576171875, -0.005428314208984375, 0.020263671875, -0.061279296875, 0.035797119140625, -0.0117950439453125, 0.0223541259765625, 0.01006317138671875, -0.00992584228515625, 0.027313232421875, 0.01020050048828125, -0.044891357421875, -0.06365966796875, 0.0123291015625, -0.089599609375, 0.00832366943359375, 0.08172607421875, -0.00766754150390625, -0.040252685546875, -0.00281524658203125, -0.0546875, 0.0115203857421875, -0.0283660888671875, 0.061065673828125, 0.03240966796875, -0.001781463623046875, -0.0296173095703125, -0.054229736328125, 0.033660888671875, 0.0219268798828125, -0.041656494140625, -0.022552490234375, 0.0244293212890625, 0.023345947265625, -0.003993988037109375, 0.0357666015625, 0.0016107559204101562, 0.038543701171875, 0.02154541015625, 0.0103607177734375, -0.04931640625, -0.033477783203125, -0.005397796630859375, -0.01160430908203125, -0.0209503173828125, -0.040191650390625 ] ]
che111/spanish_mlm-mix
2023-10-26T18:18:43.000Z
[ "transformers", "pytorch", "bert", "fill-mask", "generated_from_trainer", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
fill-mask
che111
null
null
che111/spanish_mlm-mix
0
2
transformers
2023-10-26T09:48:26
--- license: mit tags: - generated_from_trainer model-index: - name: spanish_mlm-mix 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. --> # spanish_mlm-mix This model is a fine-tuned version of [che111/spanish_mlm](https://huggingface.co/che111/spanish_mlm) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 1.0613 ## 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: 256 - eval_batch_size: 256 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 300 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:-----:|:---------------:| | No log | 1.0 | 42 | 5.9500 | | No log | 2.0 | 84 | 4.7513 | | No log | 3.0 | 126 | 4.0794 | | 5.3419 | 4.0 | 168 | 3.5736 | | 5.3419 | 5.0 | 210 | 3.2749 | | 5.3419 | 6.0 | 252 | 3.0658 | | 5.3419 | 7.0 | 294 | 2.8606 | | 3.278 | 8.0 | 336 | 2.7112 | | 3.278 | 9.0 | 378 | 2.5546 | | 3.278 | 10.0 | 420 | 2.4961 | | 3.278 | 11.0 | 462 | 2.4307 | | 2.6895 | 12.0 | 504 | 2.3194 | | 2.6895 | 13.0 | 546 | 2.2815 | | 2.6895 | 14.0 | 588 | 2.2136 | | 2.6895 | 15.0 | 630 | 2.1758 | | 2.3782 | 16.0 | 672 | 2.1187 | | 2.3782 | 17.0 | 714 | 2.0608 | | 2.3782 | 18.0 | 756 | 2.0388 | | 2.3782 | 19.0 | 798 | 2.0160 | | 2.186 | 20.0 | 840 | 1.9685 | | 2.186 | 21.0 | 882 | 1.9444 | | 2.186 | 22.0 | 924 | 1.9054 | | 2.186 | 23.0 | 966 | 1.8580 | | 2.0439 | 24.0 | 1008 | 1.8534 | | 2.0439 | 25.0 | 1050 | 1.8177 | | 2.0439 | 26.0 | 1092 | 1.8268 | | 2.0439 | 27.0 | 1134 | 1.7650 | | 1.9344 | 28.0 | 1176 | 1.7497 | | 1.9344 | 29.0 | 1218 | 1.7341 | | 1.9344 | 30.0 | 1260 | 1.7258 | | 1.9344 | 31.0 | 1302 | 1.7173 | | 1.8419 | 32.0 | 1344 | 1.6928 | | 1.8419 | 33.0 | 1386 | 1.6886 | | 1.8419 | 34.0 | 1428 | 1.6449 | | 1.8419 | 35.0 | 1470 | 1.6714 | | 1.7739 | 36.0 | 1512 | 1.6572 | | 1.7739 | 37.0 | 1554 | 1.6197 | | 1.7739 | 38.0 | 1596 | 1.6021 | | 1.7739 | 39.0 | 1638 | 1.5920 | | 1.7081 | 40.0 | 1680 | 1.5883 | | 1.7081 | 41.0 | 1722 | 1.5790 | | 1.7081 | 42.0 | 1764 | 1.5516 | | 1.7081 | 43.0 | 1806 | 1.5335 | | 1.6567 | 44.0 | 1848 | 1.5363 | | 1.6567 | 45.0 | 1890 | 1.5222 | | 1.6567 | 46.0 | 1932 | 1.5366 | | 1.6567 | 47.0 | 1974 | 1.5192 | | 1.6096 | 48.0 | 2016 | 1.5261 | | 1.6096 | 49.0 | 2058 | 1.5103 | | 1.6096 | 50.0 | 2100 | 1.4700 | | 1.6096 | 51.0 | 2142 | 1.5236 | | 1.5683 | 52.0 | 2184 | 1.4769 | | 1.5683 | 53.0 | 2226 | 1.4812 | | 1.5683 | 54.0 | 2268 | 1.4569 | | 1.5683 | 55.0 | 2310 | 1.4486 | | 1.5298 | 56.0 | 2352 | 1.4268 | | 1.5298 | 57.0 | 2394 | 1.4462 | | 1.5298 | 58.0 | 2436 | 1.4322 | | 1.5298 | 59.0 | 2478 | 1.4285 | | 1.4985 | 60.0 | 2520 | 1.4244 | | 1.4985 | 61.0 | 2562 | 1.4169 | | 1.4985 | 62.0 | 2604 | 1.4175 | | 1.4985 | 63.0 | 2646 | 1.4138 | | 1.466 | 64.0 | 2688 | 1.3719 | | 1.466 | 65.0 | 2730 | 1.3681 | | 1.466 | 66.0 | 2772 | 1.3770 | | 1.466 | 67.0 | 2814 | 1.3715 | | 1.4392 | 68.0 | 2856 | 1.3871 | | 1.4392 | 69.0 | 2898 | 1.3667 | | 1.4392 | 70.0 | 2940 | 1.3694 | | 1.4392 | 71.0 | 2982 | 1.3551 | | 1.4138 | 72.0 | 3024 | 1.3607 | | 1.4138 | 73.0 | 3066 | 1.3565 | | 1.4138 | 74.0 | 3108 | 1.3428 | | 1.4138 | 75.0 | 3150 | 1.3335 | | 1.388 | 76.0 | 3192 | 1.3509 | | 1.388 | 77.0 | 3234 | 1.3153 | | 1.388 | 78.0 | 3276 | 1.3231 | | 1.388 | 79.0 | 3318 | 1.2944 | | 1.3723 | 80.0 | 3360 | 1.3176 | | 1.3723 | 81.0 | 3402 | 1.3244 | | 1.3723 | 82.0 | 3444 | 1.3017 | | 1.3496 | 83.0 | 3486 | 1.3050 | | 1.3496 | 84.0 | 3528 | 1.3079 | | 1.3496 | 85.0 | 3570 | 1.2923 | | 1.3496 | 86.0 | 3612 | 1.3047 | | 1.3312 | 87.0 | 3654 | 1.2832 | | 1.3312 | 88.0 | 3696 | 1.2729 | | 1.3312 | 89.0 | 3738 | 1.2600 | | 1.3312 | 90.0 | 3780 | 1.2604 | | 1.313 | 91.0 | 3822 | 1.3075 | | 1.313 | 92.0 | 3864 | 1.2712 | | 1.313 | 93.0 | 3906 | 1.2681 | | 1.313 | 94.0 | 3948 | 1.2699 | | 1.2979 | 95.0 | 3990 | 1.2800 | | 1.2979 | 96.0 | 4032 | 1.2604 | | 1.2979 | 97.0 | 4074 | 1.2444 | | 1.2979 | 98.0 | 4116 | 1.2730 | | 1.2811 | 99.0 | 4158 | 1.2571 | | 1.2811 | 100.0 | 4200 | 1.2459 | | 1.2811 | 101.0 | 4242 | 1.2524 | | 1.2811 | 102.0 | 4284 | 1.2556 | | 1.2663 | 103.0 | 4326 | 1.2384 | | 1.2663 | 104.0 | 4368 | 1.2216 | | 1.2663 | 105.0 | 4410 | 1.2529 | | 1.2663 | 106.0 | 4452 | 1.2171 | | 1.2507 | 107.0 | 4494 | 1.2323 | | 1.2507 | 108.0 | 4536 | 1.2152 | | 1.2507 | 109.0 | 4578 | 1.2108 | | 1.2507 | 110.0 | 4620 | 1.2110 | | 1.2379 | 111.0 | 4662 | 1.1962 | | 1.2379 | 112.0 | 4704 | 1.2161 | | 1.2379 | 113.0 | 4746 | 1.2215 | | 1.2379 | 114.0 | 4788 | 1.2114 | | 1.2227 | 115.0 | 4830 | 1.2251 | | 1.2227 | 116.0 | 4872 | 1.2069 | | 1.2227 | 117.0 | 4914 | 1.2084 | | 1.2227 | 118.0 | 4956 | 1.1883 | | 1.2116 | 119.0 | 4998 | 1.2315 | | 1.2116 | 120.0 | 5040 | 1.1973 | | 1.2116 | 121.0 | 5082 | 1.1830 | | 1.2116 | 122.0 | 5124 | 1.1748 | | 1.2029 | 123.0 | 5166 | 1.1850 | | 1.2029 | 124.0 | 5208 | 1.2040 | | 1.2029 | 125.0 | 5250 | 1.1948 | | 1.2029 | 126.0 | 5292 | 1.1992 | | 1.1938 | 127.0 | 5334 | 1.1996 | | 1.1938 | 128.0 | 5376 | 1.1886 | | 1.1938 | 129.0 | 5418 | 1.1774 | | 1.1938 | 130.0 | 5460 | 1.1844 | | 1.181 | 131.0 | 5502 | 1.2097 | | 1.181 | 132.0 | 5544 | 1.1771 | | 1.181 | 133.0 | 5586 | 1.1672 | | 1.181 | 134.0 | 5628 | 1.1708 | | 1.1734 | 135.0 | 5670 | 1.1659 | | 1.1734 | 136.0 | 5712 | 1.1655 | | 1.1734 | 137.0 | 5754 | 1.1470 | | 1.1734 | 138.0 | 5796 | 1.1508 | | 1.1634 | 139.0 | 5838 | 1.1509 | | 1.1634 | 140.0 | 5880 | 1.1546 | | 1.1634 | 141.0 | 5922 | 1.1689 | | 1.1634 | 142.0 | 5964 | 1.1536 | | 1.1512 | 143.0 | 6006 | 1.1574 | | 1.1512 | 144.0 | 6048 | 1.1369 | | 1.1512 | 145.0 | 6090 | 1.1491 | | 1.1512 | 146.0 | 6132 | 1.1581 | | 1.1438 | 147.0 | 6174 | 1.1517 | | 1.1438 | 148.0 | 6216 | 1.1560 | | 1.1438 | 149.0 | 6258 | 1.1433 | | 1.1438 | 150.0 | 6300 | 1.1408 | | 1.1364 | 151.0 | 6342 | 1.1565 | | 1.1364 | 152.0 | 6384 | 1.1478 | | 1.1364 | 153.0 | 6426 | 1.1287 | | 1.1364 | 154.0 | 6468 | 1.1287 | | 1.1296 | 155.0 | 6510 | 1.1319 | | 1.1296 | 156.0 | 6552 | 1.1347 | | 1.1296 | 157.0 | 6594 | 1.1125 | | 1.1296 | 158.0 | 6636 | 1.1241 | | 1.1203 | 159.0 | 6678 | 1.1393 | | 1.1203 | 160.0 | 6720 | 1.1201 | | 1.1203 | 161.0 | 6762 | 1.1432 | | 1.1203 | 162.0 | 6804 | 1.1386 | | 1.1109 | 163.0 | 6846 | 1.1266 | | 1.1109 | 164.0 | 6888 | 1.1344 | | 1.1109 | 165.0 | 6930 | 1.1305 | | 1.1054 | 166.0 | 6972 | 1.1269 | | 1.1054 | 167.0 | 7014 | 1.1268 | | 1.1054 | 168.0 | 7056 | 1.1252 | | 1.1054 | 169.0 | 7098 | 1.1220 | | 1.0987 | 170.0 | 7140 | 1.1327 | | 1.0987 | 171.0 | 7182 | 1.1277 | | 1.0987 | 172.0 | 7224 | 1.1152 | | 1.0987 | 173.0 | 7266 | 1.1059 | | 1.0925 | 174.0 | 7308 | 1.1138 | | 1.0925 | 175.0 | 7350 | 1.1110 | | 1.0925 | 176.0 | 7392 | 1.1282 | | 1.0925 | 177.0 | 7434 | 1.1002 | | 1.0895 | 178.0 | 7476 | 1.1103 | | 1.0895 | 179.0 | 7518 | 1.1033 | | 1.0895 | 180.0 | 7560 | 1.1181 | | 1.0895 | 181.0 | 7602 | 1.0851 | | 1.0827 | 182.0 | 7644 | 1.1038 | | 1.0827 | 183.0 | 7686 | 1.1133 | | 1.0827 | 184.0 | 7728 | 1.1104 | | 1.0827 | 185.0 | 7770 | 1.1150 | | 1.0747 | 186.0 | 7812 | 1.0945 | | 1.0747 | 187.0 | 7854 | 1.1055 | | 1.0747 | 188.0 | 7896 | 1.1056 | | 1.0747 | 189.0 | 7938 | 1.1010 | | 1.0733 | 190.0 | 7980 | 1.0929 | | 1.0733 | 191.0 | 8022 | 1.1085 | | 1.0733 | 192.0 | 8064 | 1.0827 | | 1.0733 | 193.0 | 8106 | 1.1026 | | 1.0656 | 194.0 | 8148 | 1.0983 | | 1.0656 | 195.0 | 8190 | 1.0766 | | 1.0656 | 196.0 | 8232 | 1.0864 | | 1.0656 | 197.0 | 8274 | 1.0967 | | 1.0598 | 198.0 | 8316 | 1.0998 | | 1.0598 | 199.0 | 8358 | 1.1029 | | 1.0598 | 200.0 | 8400 | 1.1155 | | 1.0598 | 201.0 | 8442 | 1.0716 | | 1.0582 | 202.0 | 8484 | 1.0981 | | 1.0582 | 203.0 | 8526 | 1.0785 | | 1.0582 | 204.0 | 8568 | 1.0903 | | 1.0582 | 205.0 | 8610 | 1.0936 | | 1.0519 | 206.0 | 8652 | 1.0909 | | 1.0519 | 207.0 | 8694 | 1.0815 | | 1.0519 | 208.0 | 8736 | 1.0837 | | 1.0519 | 209.0 | 8778 | 1.1162 | | 1.0474 | 210.0 | 8820 | 1.0747 | | 1.0474 | 211.0 | 8862 | 1.0972 | | 1.0474 | 212.0 | 8904 | 1.0827 | | 1.0474 | 213.0 | 8946 | 1.0908 | | 1.0439 | 214.0 | 8988 | 1.0716 | | 1.0439 | 215.0 | 9030 | 1.0713 | | 1.0439 | 216.0 | 9072 | 1.0787 | | 1.0439 | 217.0 | 9114 | 1.0749 | | 1.0406 | 218.0 | 9156 | 1.0843 | | 1.0406 | 219.0 | 9198 | 1.0794 | | 1.0406 | 220.0 | 9240 | 1.0822 | | 1.0406 | 221.0 | 9282 | 1.0782 | | 1.0387 | 222.0 | 9324 | 1.0710 | | 1.0387 | 223.0 | 9366 | 1.0572 | | 1.0387 | 224.0 | 9408 | 1.0498 | | 1.0387 | 225.0 | 9450 | 1.0916 | | 1.034 | 226.0 | 9492 | 1.0890 | | 1.034 | 227.0 | 9534 | 1.0613 | | 1.034 | 228.0 | 9576 | 1.0822 | | 1.034 | 229.0 | 9618 | 1.0644 | | 1.0296 | 230.0 | 9660 | 1.0578 | | 1.0296 | 231.0 | 9702 | 1.0716 | | 1.0296 | 232.0 | 9744 | 1.0647 | | 1.0296 | 233.0 | 9786 | 1.0886 | | 1.0289 | 234.0 | 9828 | 1.0633 | | 1.0289 | 235.0 | 9870 | 1.0626 | | 1.0289 | 236.0 | 9912 | 1.0711 | | 1.0289 | 237.0 | 9954 | 1.0780 | | 1.0242 | 238.0 | 9996 | 1.0731 | | 1.0242 | 239.0 | 10038 | 1.0643 | | 1.0242 | 240.0 | 10080 | 1.0705 | | 1.0242 | 241.0 | 10122 | 1.0668 | | 1.0215 | 242.0 | 10164 | 1.0696 | | 1.0215 | 243.0 | 10206 | 1.0767 | | 1.0215 | 244.0 | 10248 | 1.0614 | | 1.0215 | 245.0 | 10290 | 1.0608 | | 1.0212 | 246.0 | 10332 | 1.0547 | | 1.0212 | 247.0 | 10374 | 1.0738 | | 1.0212 | 248.0 | 10416 | 1.0688 | | 1.0187 | 249.0 | 10458 | 1.0582 | | 1.0187 | 250.0 | 10500 | 1.0479 | | 1.0187 | 251.0 | 10542 | 1.0658 | | 1.0187 | 252.0 | 10584 | 1.0610 | | 1.015 | 253.0 | 10626 | 1.0524 | | 1.015 | 254.0 | 10668 | 1.0507 | | 1.015 | 255.0 | 10710 | 1.0573 | | 1.015 | 256.0 | 10752 | 1.0611 | | 1.0136 | 257.0 | 10794 | 1.0618 | | 1.0136 | 258.0 | 10836 | 1.0712 | | 1.0136 | 259.0 | 10878 | 1.0605 | | 1.0136 | 260.0 | 10920 | 1.0842 | | 1.0093 | 261.0 | 10962 | 1.0524 | | 1.0093 | 262.0 | 11004 | 1.0243 | | 1.0093 | 263.0 | 11046 | 1.0607 | | 1.0093 | 264.0 | 11088 | 1.0584 | | 1.009 | 265.0 | 11130 | 1.0593 | | 1.009 | 266.0 | 11172 | 1.0652 | | 1.009 | 267.0 | 11214 | 1.0512 | | 1.009 | 268.0 | 11256 | 1.0392 | | 1.0088 | 269.0 | 11298 | 1.0663 | | 1.0088 | 270.0 | 11340 | 1.0705 | | 1.0088 | 271.0 | 11382 | 1.0431 | | 1.0088 | 272.0 | 11424 | 1.0629 | | 1.0044 | 273.0 | 11466 | 1.0588 | | 1.0044 | 274.0 | 11508 | 1.0501 | | 1.0044 | 275.0 | 11550 | 1.0704 | | 1.0044 | 276.0 | 11592 | 1.0768 | | 1.0084 | 277.0 | 11634 | 1.0532 | | 1.0084 | 278.0 | 11676 | 1.0556 | | 1.0084 | 279.0 | 11718 | 1.0741 | | 1.0084 | 280.0 | 11760 | 1.0717 | | 1.0017 | 281.0 | 11802 | 1.0755 | | 1.0017 | 282.0 | 11844 | 1.0776 | | 1.0017 | 283.0 | 11886 | 1.0700 | | 1.0017 | 284.0 | 11928 | 1.0579 | | 1.0043 | 285.0 | 11970 | 1.0414 | | 1.0043 | 286.0 | 12012 | 1.0447 | | 1.0043 | 287.0 | 12054 | 1.0595 | | 1.0043 | 288.0 | 12096 | 1.0523 | | 1.0026 | 289.0 | 12138 | 1.0540 | | 1.0026 | 290.0 | 12180 | 1.0591 | | 1.0026 | 291.0 | 12222 | 1.0622 | | 1.0026 | 292.0 | 12264 | 1.0584 | | 1.0008 | 293.0 | 12306 | 1.0349 | | 1.0008 | 294.0 | 12348 | 1.0472 | | 1.0008 | 295.0 | 12390 | 1.0552 | | 1.0008 | 296.0 | 12432 | 1.0614 | | 1.002 | 297.0 | 12474 | 1.0770 | | 1.002 | 298.0 | 12516 | 1.0712 | | 1.002 | 299.0 | 12558 | 1.0773 | | 1.002 | 300.0 | 12600 | 1.0570 | ### Framework versions - Transformers 4.26.1 - Pytorch 2.1.0+cu121 - Datasets 2.14.6 - Tokenizers 0.13.3
16,841
[ [ -0.048187255859375, -0.02850341796875, 0.0198822021484375, 0.0186767578125, 0.006473541259765625, 0.012481689453125, 0.01015472412109375, -0.0009241104125976562, 0.05572509765625, 0.02899169921875, -0.043182373046875, -0.04345703125, -0.03411865234375, -0.007965087890625, 0.01007080078125, 0.032623291015625, 0.005451202392578125, -0.00836944580078125, 0.0018434524536132812, -0.01873779296875, -0.01343536376953125, 0.016387939453125, -0.044189453125, 0.004085540771484375, 0.0120849609375, 0.039642333984375, 0.055267333984375, 0.05126953125, 0.0230560302734375, 0.0257720947265625, -0.0123138427734375, 0.017181396484375, -0.016143798828125, -0.049285888671875, -0.0030117034912109375, -0.0345458984375, -0.0224456787109375, -0.00424957275390625, 0.0311279296875, 0.052459716796875, -0.008758544921875, 0.0261383056640625, 0.007236480712890625, 0.08270263671875, -0.0299530029296875, 0.013519287109375, -0.0202484130859375, -0.0106353759765625, -0.01479339599609375, -0.028167724609375, 0.015716552734375, -0.060516357421875, 0.00812530517578125, -0.0300750732421875, 0.021331787109375, 0.00901031494140625, 0.1021728515625, 0.0155181884765625, -0.0294036865234375, -0.0063629150390625, -0.01806640625, 0.038330078125, -0.03692626953125, 0.0166778564453125, 0.0418701171875, 0.01013946533203125, -0.020294189453125, -0.0406494140625, -0.050994873046875, 0.02069091796875, -0.032684326171875, 0.0249176025390625, -0.012115478515625, -0.03656005859375, 0.0162506103515625, 0.034210205078125, -0.043426513671875, -0.0299835205078125, -0.05291748046875, -0.006046295166015625, 0.043975830078125, 0.0186004638671875, 0.0273590087890625, -0.0546875, -0.0633544921875, -0.0018091201782226562, -0.031158447265625, 0.0626220703125, 0.02984619140625, 0.00252532958984375, -0.031036376953125, 0.03521728515625, -0.0038604736328125, 0.0237579345703125, 0.0111236572265625, -0.00603485107421875, 0.054718017578125, -0.04443359375, -0.0215911865234375, -0.01255035400390625, 0.04888916015625, 0.0484619140625, -0.015716552734375, 0.01111602783203125, 0.007534027099609375, 0.0084381103515625, 0.00337982177734375, -0.037841796875, -0.0182037353515625, 0.049346923828125, -0.0285797119140625, -0.00986480712890625, 0.0136566162109375, -0.0660400390625, 0.0026874542236328125, -0.01537322998046875, 0.011016845703125, -0.00934600830078125, -0.035888671875, 0.00995635986328125, -0.01480865478515625, 0.0205078125, 0.0261383056640625, -0.06658935546875, 0.0262298583984375, 0.01541900634765625, 0.06396484375, -0.006011962890625, -0.005649566650390625, 0.01206207275390625, 0.034027099609375, -0.042572021484375, 0.0484619140625, -0.0016193389892578125, -0.025543212890625, -0.021514892578125, 0.03363037109375, -0.029541015625, -0.0241851806640625, 0.03955078125, -0.0169525146484375, 0.0107574462890625, -0.03411865234375, -0.004611968994140625, -0.0044403076171875, 0.031097412109375, -0.050994873046875, 0.08929443359375, 0.030487060546875, -0.071044921875, 0.0240936279296875, -0.034576416015625, 0.002166748046875, -0.01320648193359375, 0.01029205322265625, -0.05035400390625, -0.020355224609375, 0.0221710205078125, 0.015960693359375, -0.0255279541015625, 0.01262664794921875, 0.0143585205078125, -0.006702423095703125, -0.03363037109375, -0.008758544921875, 0.10235595703125, 0.0328369140625, -0.036834716796875, 0.003170013427734375, -0.075439453125, 0.009552001953125, 0.010589599609375, -0.0491943359375, 0.0014181137084960938, -0.02459716796875, 0.003963470458984375, 0.0148162841796875, 0.033843994140625, -0.04266357421875, 0.01702880859375, -0.0240936279296875, 0.02423095703125, 0.040283203125, 0.013427734375, 0.036895751953125, -0.0582275390625, 0.0335693359375, 0.031951904296875, 0.027862548828125, 0.005344390869140625, -0.0256805419921875, -0.05487060546875, -0.041046142578125, -0.005138397216796875, 0.04901123046875, -0.0301361083984375, 0.03546142578125, -0.0087127685546875, -0.04339599609375, -0.035919189453125, -0.01038360595703125, 0.0079803466796875, 0.045928955078125, 0.01493072509765625, -0.00872802734375, -0.045654296875, -0.058135986328125, 0.008758544921875, 0.006450653076171875, 0.0286712646484375, 0.046844482421875, 0.07183837890625, -0.025848388671875, 0.08612060546875, -0.034210205078125, -0.05767822265625, -0.0041046142578125, -0.0289459228515625, 0.05804443359375, 0.0303955078125, 0.0638427734375, -0.05517578125, -0.07476806640625, 0.003993988037109375, -0.041839599609375, 0.013427734375, -0.0102691650390625, -0.0013446807861328125, 0.003681182861328125, 0.010650634765625, -0.032501220703125, 0.0548095703125, 0.052276611328125, -0.038970947265625, 0.049102783203125, -0.037384033203125, 0.043792724609375, -0.07977294921875, 0.016693115234375, -0.01123046875, -0.00830078125, -0.00972747802734375, -0.01531219482421875, 0.00014519691467285156, -0.00812530517578125, -0.0222320556640625, 0.0343017578125, -0.04638671875, 0.002353668212890625, 0.0080718994140625, 0.0010890960693359375, 0.004550933837890625, 0.046844482421875, -0.01172637939453125, 0.0718994140625, 0.06524658203125, -0.042266845703125, 0.01654052734375, 0.0110015869140625, -0.040191650390625, 0.046661376953125, -0.035858154296875, -0.0166168212890625, -0.0212249755859375, 0.01168060302734375, -0.10198974609375, -0.022674560546875, 0.0233306884765625, -0.034393310546875, 0.0028972625732421875, 0.005523681640625, -0.00791168212890625, -0.07391357421875, -0.04888916015625, -0.01386260986328125, 0.01093292236328125, -0.031280517578125, 0.042938232421875, 0.036224365234375, 0.01232147216796875, -0.047821044921875, -0.04937744140625, 0.0020732879638671875, -0.0014581680297851562, -0.0576171875, 0.01678466796875, -0.00789642333984375, -0.00902557373046875, 0.01033782958984375, -0.0001964569091796875, -0.0212860107421875, 0.01458740234375, 0.023223876953125, -0.0052032470703125, -0.0151519775390625, -0.03759765625, -0.0203857421875, -0.021759033203125, -0.01483917236328125, 0.00936126708984375, 0.034881591796875, -0.01236724853515625, -0.035552978515625, -0.045654296875, 0.003902435302734375, 0.051239013671875, -0.03802490234375, 0.0887451171875, 0.028411865234375, -0.0171966552734375, 0.00833892822265625, -0.028411865234375, 0.002902984619140625, -0.029449462890625, 0.0017557144165039062, -0.04010009765625, -0.051910400390625, 0.050201416015625, -0.02459716796875, 0.01336669921875, 0.042510986328125, 0.03741455078125, -0.0166015625, 0.047637939453125, 0.014373779296875, -0.003749847412109375, 0.01399993896484375, -0.060791015625, 0.00757598876953125, -0.048736572265625, -0.05029296875, -0.05169677734375, -0.0279083251953125, -0.02044677734375, -0.02386474609375, 0.03631591796875, 0.010406494140625, -0.031463623046875, 0.0234832763671875, -0.056732177734375, 0.0241241455078125, 0.053436279296875, 0.035491943359375, 0.00848388671875, -0.01335906982421875, -0.025543212890625, -0.015777587890625, -0.03521728515625, -0.04437255859375, 0.08367919921875, 0.0155181884765625, 0.0240020751953125, 0.04119873046875, 0.05908203125, 0.0308990478515625, -0.0014743804931640625, -0.025390625, 0.00548553466796875, 0.017730712890625, -0.053558349609375, -0.024322509765625, -0.0022411346435546875, -0.0931396484375, 0.038787841796875, -0.02117919921875, -0.07159423828125, 0.0546875, 0.01204681396484375, -0.031402587890625, 0.041473388671875, -0.0504150390625, 0.045196533203125, -0.00524139404296875, -0.047637939453125, -0.009979248046875, -0.04833984375, 0.0279388427734375, 0.0041961669921875, 0.046661376953125, -0.0159759521484375, 0.0025272369384765625, 0.0263671875, -0.0655517578125, 0.019683837890625, -0.01532745361328125, 0.0180206298828125, 0.0401611328125, -0.0169677734375, 0.04608154296875, 0.006755828857421875, -0.0215606689453125, -0.0188751220703125, 0.00850677490234375, -0.045257568359375, -0.00775146484375, 0.0716552734375, -0.0753173828125, -0.06365966796875, -0.034912109375, -0.0208892822265625, 0.020599365234375, 0.0205535888671875, 0.0191802978515625, 0.0252685546875, 0.005107879638671875, 0.0196533203125, 0.045166015625, -0.004924774169921875, 0.04791259765625, 0.0226593017578125, -0.00943756103515625, -0.06805419921875, 0.046722412109375, 0.00836944580078125, 0.018035888671875, 0.0083465576171875, 0.02349853515625, -0.036041259765625, -0.023223876953125, -0.0221099853515625, 0.007419586181640625, -0.0112762451171875, -0.014862060546875, -0.061126708984375, 0.0078887939453125, -0.06103515625, -0.03411865234375, -0.0244903564453125, -0.01293182373046875, -0.0182342529296875, -0.0186004638671875, 0.035552978515625, 0.059539794921875, -0.0215606689453125, 0.02813720703125, -0.03131103515625, 0.0232696533203125, 0.004741668701171875, 0.00826263427734375, 0.007396697998046875, -0.018157958984375, -0.0202178955078125, -0.00014209747314453125, -0.03680419921875, -0.06787109375, 0.060546875, -0.01043701171875, 0.033843994140625, 0.033172607421875, -0.003955841064453125, 0.067138671875, -0.00687408447265625, 0.059967041015625, 0.0343017578125, -0.051177978515625, 0.049102783203125, -0.033935546875, 0.0211029052734375, 0.0543212890625, 0.042083740234375, -0.02593994140625, -0.01140594482421875, -0.06439208984375, -0.06365966796875, 0.05572509765625, 0.0196990966796875, -0.003284454345703125, -0.00717926025390625, -0.00020587444305419922, -0.0294036865234375, 0.023681640625, -0.07037353515625, -0.07568359375, -0.0019626617431640625, 0.00579833984375, 0.00646209716796875, -0.0128631591796875, -0.0174560546875, -0.0445556640625, 0.0341796875, 0.030853271484375, 0.01369476318359375, 0.0281829833984375, 0.011383056640625, -0.0263671875, 0.021148681640625, 0.048980712890625, 0.0634765625, -0.03662109375, 0.01126861572265625, 0.0055694580078125, -0.02752685546875, 0.018951416015625, -0.01788330078125, -0.0281829833984375, -0.00018322467803955078, 0.01178741455078125, 0.022674560546875, 0.00948333740234375, 0.01363372802734375, 0.044921875, 0.0169525146484375, -0.044921875, -0.038909912109375, -0.01427459716796875, 0.023406982421875, 0.034210205078125, 0.0469970703125, 0.03680419921875, -0.006465911865234375, -0.05596923828125, 0.0157012939453125, 0.038116455078125, -0.038848876953125, 0.0115203857421875, 0.067138671875, 0.0126800537109375, -0.0190887451171875, 0.01218414306640625, -0.002658843994140625, -0.05499267578125, 0.0672607421875, 0.0276336669921875, 0.023956298828125, -0.0263519287109375, 0.0108489990234375, 0.08074951171875, 0.037628173828125, 0.01242828369140625, 0.048736572265625, 0.0062408447265625, -0.0241241455078125, 0.0276336669921875, -0.0419921875, -0.005161285400390625, 0.01149749755859375, -0.03900146484375, 0.035400390625, -0.039642333984375, -0.03411865234375, -0.035125732421875, 0.0367431640625, -0.050018310546875, 0.024139404296875, -0.0140838623046875, 0.08148193359375, -0.074951171875, 0.048065185546875, 0.042938232421875, -0.054412841796875, -0.08599853515625, -0.03448486328125, -0.00777435302734375, -0.046112060546875, 0.039764404296875, -0.00360107421875, -0.00010830163955688477, 0.01084136962890625, -0.04119873046875, -0.09124755859375, 0.1043701171875, -0.00957489013671875, -0.04351806640625, 0.0283966064453125, 0.0014162063598632812, 0.0301666259765625, 0.0023365020751953125, 0.0303497314453125, 0.048095703125, 0.050994873046875, 0.0175628662109375, -0.06988525390625, 0.00254058837890625, -0.02490234375, -0.004917144775390625, 0.021697998046875, -0.070068359375, 0.08782958984375, -0.028900146484375, -0.00164794921875, 0.0047149658203125, 0.037872314453125, 0.0307464599609375, 0.0156402587890625, 0.025726318359375, 0.076904296875, 0.067138671875, -0.023773193359375, 0.0809326171875, -0.02618408203125, 0.06036376953125, 0.047088623046875, 0.0191497802734375, 0.054901123046875, 0.03619384765625, -0.057891845703125, 0.0275726318359375, 0.0557861328125, -0.00811767578125, 0.05096435546875, 0.01010894775390625, -0.0340576171875, 0.0111541748046875, -0.0098724365234375, -0.0491943359375, 0.002239227294921875, 0.01367950439453125, -0.03057861328125, -0.0234832763671875, -0.01195526123046875, 0.0130615234375, 0.0154266357421875, -0.038818359375, 0.022552490234375, -0.015960693359375, -0.018096923828125, 0.0270233154296875, -0.0186004638671875, 0.060089111328125, -0.04364013671875, 0.0041961669921875, -0.0012140274047851562, 0.036895751953125, -0.0601806640625, -0.07769775390625, 0.024505615234375, -0.0298614501953125, -0.033660888671875, -0.0038051605224609375, 0.0195159912109375, -0.0158843994140625, -0.0297088623046875, 0.01515960693359375, 0.019073486328125, 0.015594482421875, 0.0203704833984375, -0.061248779296875, -0.0178985595703125, 0.0286712646484375, -0.03936767578125, 0.005126953125, 0.037872314453125, -0.002285003662109375, 0.02691650390625, 0.059906005859375, 0.0268096923828125, 0.023406982421875, -0.0223541259765625, 0.075439453125, -0.051239013671875, -0.030303955078125, -0.0565185546875, 0.0264129638671875, -0.01329803466796875, -0.039642333984375, 0.0731201171875, 0.059722900390625, 0.0286407470703125, -0.0240478515625, 0.041351318359375, -0.039581298828125, 0.0477294921875, 0.0003933906555175781, 0.048919677734375, -0.0546875, -0.006999969482421875, -0.0161590576171875, -0.052978515625, -0.03302001953125, 0.0579833984375, -0.04345703125, -0.006328582763671875, 0.041656494140625, 0.07952880859375, 0.0157012939453125, -0.003192901611328125, 0.01218414306640625, -0.006580352783203125, -0.003925323486328125, 0.05291748046875, 0.041168212890625, -0.041015625, 0.0241241455078125, -0.042266845703125, -0.002178192138671875, -0.0182342529296875, -0.052459716796875, -0.041107177734375, -0.03277587890625, -0.036651611328125, -0.0328369140625, -0.01488494873046875, 0.07232666015625, 0.051513671875, -0.065673828125, -0.03863525390625, -0.0057220458984375, 0.0164337158203125, -0.00508880615234375, -0.0134124755859375, 0.08868408203125, 0.0097808837890625, -0.053558349609375, -0.00029206275939941406, 0.03155517578125, 0.016571044921875, -0.0036468505859375, -0.00974273681640625, -0.0338134765625, 0.0004687309265136719, 0.030426025390625, 0.033294677734375, -0.050506591796875, 0.0006852149963378906, -0.01038360595703125, -0.040802001953125, 0.040252685546875, 0.01519775390625, -0.041107177734375, 0.0233154296875, 0.034393310546875, 0.0284423828125, 0.043212890625, 0.01404571533203125, -0.00019466876983642578, -0.019775390625, 0.00823974609375, -0.015472412109375, 0.0286407470703125, 0.0015001296997070312, -0.03375244140625, 0.054046630859375, 0.03863525390625, -0.040618896484375, -0.038360595703125, -0.02618408203125, -0.09124755859375, 0.0030670166015625, 0.0640869140625, -0.0052642822265625, -0.051727294921875, -0.0216064453125, -0.032562255859375, 0.0002644062042236328, -0.04144287109375, 0.0224456787109375, 0.03155517578125, -0.02716064453125, -0.01201629638671875, -0.054718017578125, 0.0269012451171875, 0.00412750244140625, -0.059722900390625, -0.0345458984375, 0.023773193359375, 0.0271759033203125, 0.0289459228515625, 0.07183837890625, -0.01027679443359375, 0.0134735107421875, 0.017730712890625, 0.01345062255859375, 0.00447845458984375, -0.0017919540405273438, 0.011749267578125, 0.029754638671875, -0.00994110107421875, -0.045989990234375 ] ]
LoneStriker/lzlv_70b_fp16_hf-5.0bpw-h6-exl2
2023-10-26T12:09:42.000Z
[ "transformers", "safetensors", "llama", "text-generation", "license:cc-by-nc-2.0", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
LoneStriker
null
null
LoneStriker/lzlv_70b_fp16_hf-5.0bpw-h6-exl2
0
2
transformers
2023-10-26T12:06:48
--- license: cc-by-nc-2.0 --- # lzlv_70B ## A Mythomax/MLewd_13B-style merge of selected 70B models A multi-model merge of several LLaMA2 70B finetunes for roleplaying and creative work. The goal was to create a model that combines creativity with intelligence for an enhanced experience. Did it work? Probably, maybe. It seemed subjectively better than each of the individual models in my tests. GGUF 4_K_M + 5_K_M can be found here: https://huggingface.co/lizpreciatior/lzlv_70b_fp16_hf/settings ## Procedure: Models used: - **NousResearch/Nous-Hermes-Llama2-70b** - A great model for roleplaying, but not the best at following complex instructions. - **Xwin-LM/Xwin-LM-7B-V0.1** - Excellent at following instructions and quite creative out of the box, so it seemed like the best available model to act as the base for the merge. - **Doctor-Shotgun/Mythospice-70b** - The wildcard of the three. I was looking for a creative, NSFW-oriented model and came across this while digging through hf. I hadn't heard of it before and apparently no one had bothered to release a quantized version of this model. So I downloaded it and did it myself to test it. It turned out to be more or less what I was looking for as my third component, so I used it here. A big thank you to the creators of the models above. If you look up Mythospice, you will notice that it also includes Nous-Hermes so it's technically present twice in this mix. This is apparently common practice amongst the cool kids who do 13B models so I don't think this hurts the model. The merging process was heavily inspired by Undi95's approach in Undi95/MXLewdMini-L2-13B. To be specific, the ratios are: Component 1: Merge of Mythospice x Xwin with SLERP gradient [0.25, 0.3, 0.5]. Component 2: Merge Xwin x Hermes with SLERP gradient [0.4, 0.3, 0.25]. Finally, both Component 1 and Component 2 were merged with SLERP using weight 0.5. ## Peformance I tested this model for a few days before publishing it. It seems to more or less retain the instruction-following capabilities of Xwin-70B, while seeming to have adopted a lot of the creativity of the other two models. It handled my more complex scenarios that creative models otherwise tend to struggle with quite well. At the same time, its outputs felt more creative and possibly a bit more nsfw-inclined than Xwin-70b. So, is it better? Feels like it to me, subjectively. Is it really better? No clue, test it. ## Prompt format: Vicuna USER: [Prompt] ASSISTANT:
2,502
[ [ -0.0399169921875, -0.02508544921875, 0.047637939453125, 0.0199127197265625, -0.035064697265625, 0.00420379638671875, 0.006977081298828125, -0.06475830078125, 0.0253753662109375, 0.036712646484375, -0.062744140625, -0.03961181640625, -0.035430908203125, -0.000347137451171875, -0.031463623046875, 0.08099365234375, 0.0059967041015625, -0.0045166015625, -0.007152557373046875, -0.01458740234375, -0.023895263671875, -0.029937744140625, -0.047698974609375, -0.0274505615234375, 0.047454833984375, 0.014312744140625, 0.06500244140625, 0.0537109375, 0.05523681640625, 0.0214385986328125, -0.0187835693359375, 0.0302886962890625, -0.035003662109375, 0.0079345703125, -0.0144195556640625, -0.0298309326171875, -0.0802001953125, 0.01947021484375, 0.032135009765625, 0.0229644775390625, -0.01348114013671875, 0.0221405029296875, 0.00031828880310058594, 0.03289794921875, -0.031494140625, -0.0016889572143554688, -0.0005474090576171875, 0.0187530517578125, -0.0222015380859375, -0.0090484619140625, -0.016510009765625, -0.032623291015625, 0.004180908203125, -0.0654296875, 0.0129852294921875, 0.01082611083984375, 0.06524658203125, 0.01045989990234375, -0.042144775390625, 0.00007581710815429688, -0.06292724609375, 0.05987548828125, -0.07318115234375, 0.0153656005859375, 0.0034503936767578125, 0.0200347900390625, -0.0079498291015625, -0.050384521484375, -0.04595947265625, -0.0160675048828125, 0.004283905029296875, 0.01367950439453125, -0.04254150390625, -0.003116607666015625, 0.0300750732421875, 0.043243408203125, -0.050933837890625, 0.01263427734375, -0.056060791015625, -0.01003265380859375, 0.05572509765625, 0.0246734619140625, 0.020416259765625, -0.0220794677734375, -0.052703857421875, -0.0284271240234375, -0.04547119140625, -0.0051727294921875, 0.04205322265625, 0.0014810562133789062, -0.025421142578125, 0.05902099609375, -0.0090179443359375, 0.050994873046875, 0.018798828125, -0.037200927734375, 0.0247344970703125, -0.011932373046875, -0.0174102783203125, -0.022979736328125, 0.050994873046875, 0.046539306640625, -0.0078582763671875, -0.0035915374755859375, -0.01538848876953125, 0.0163116455078125, 0.02655029296875, -0.0504150390625, -0.01090240478515625, 0.006572723388671875, -0.040985107421875, -0.05706787109375, 0.0035533905029296875, -0.01165008544921875, -0.0250244140625, -0.0247955322265625, 0.03143310546875, -0.04046630859375, -0.032745361328125, 0.01313018798828125, -0.03448486328125, 0.0023937225341796875, 0.0362548828125, -0.03436279296875, 0.0157318115234375, 0.042327880859375, 0.043975830078125, -0.0196380615234375, -0.01470947265625, -0.01459503173828125, 0.007488250732421875, -0.056854248046875, 0.04150390625, -0.019744873046875, -0.025543212890625, -0.035247802734375, 0.0033054351806640625, 0.02734375, -0.03338623046875, 0.05572509765625, -0.047637939453125, 0.03802490234375, -0.04241943359375, -0.038970947265625, -0.0380859375, 0.0078887939453125, -0.0687255859375, 0.07781982421875, 0.016876220703125, -0.0482177734375, 0.0360107421875, -0.0472412109375, -0.0018644332885742188, 0.01541900634765625, 0.0007333755493164062, -0.0139312744140625, 0.0281829833984375, -0.0183868408203125, 0.024810791015625, -0.035064697265625, 0.019805908203125, -0.055877685546875, -0.0323486328125, 0.0138397216796875, -0.03094482421875, 0.0667724609375, 0.01788330078125, -0.034698486328125, 0.0013103485107421875, -0.0455322265625, 0.00528717041015625, 0.0160064697265625, -0.005222320556640625, -0.02099609375, -0.034210205078125, 0.0226287841796875, 0.0321044921875, 0.0135498046875, -0.03094482421875, 0.023956298828125, -0.01375579833984375, 0.00885772705078125, 0.04693603515625, -0.0121917724609375, 0.048919677734375, -0.062164306640625, 0.051422119140625, -0.01161956787109375, 0.01245880126953125, 0.0309295654296875, -0.060455322265625, -0.0572509765625, -0.0214385986328125, 0.0068817138671875, 0.037841796875, -0.044891357421875, 0.0213165283203125, 0.02520751953125, -0.0672607421875, -0.027496337890625, -0.0004763603210449219, 0.046783447265625, 0.017730712890625, 0.0106353759765625, -0.0360107421875, -0.03656005859375, -0.06805419921875, 0.0125274658203125, -0.0191802978515625, -0.0127716064453125, 0.03338623046875, 0.0157928466796875, -0.01085662841796875, 0.054534912109375, -0.03851318359375, -0.021209716796875, -0.022247314453125, 0.015625, 0.033172607421875, 0.04736328125, 0.086669921875, -0.04254150390625, -0.015594482421875, -0.0029449462890625, -0.0762939453125, -0.007556915283203125, 0.0166473388671875, -0.0273590087890625, 0.020721435546875, 0.0031528472900390625, -0.072998046875, 0.034759521484375, 0.050872802734375, -0.0246124267578125, 0.05194091796875, -0.021942138671875, 0.032196044921875, -0.0946044921875, 0.007747650146484375, 0.0011749267578125, -0.0136871337890625, -0.04364013671875, 0.035614013671875, 0.0094146728515625, 0.00016629695892333984, -0.045135498046875, 0.047760009765625, -0.05059814453125, -0.00196075439453125, -0.0283203125, -0.005084991455078125, 0.00620269775390625, 0.024688720703125, -0.0025768280029296875, 0.028045654296875, 0.043731689453125, -0.029449462890625, 0.043609619140625, 0.0089111328125, -0.0010538101196289062, 0.043121337890625, -0.04901123046875, 0.02838134765625, -0.0205078125, 0.0191802978515625, -0.0687255859375, -0.021331787109375, 0.0361328125, -0.01312255859375, 0.02734375, 0.00504302978515625, -0.0214996337890625, -0.0533447265625, -0.033294677734375, 0.034271240234375, 0.0360107421875, -0.0304412841796875, 0.055511474609375, 0.009124755859375, -0.00649261474609375, -0.05072021484375, -0.05169677734375, 0.0019779205322265625, -0.031585693359375, -0.06463623046875, 0.05731201171875, -0.0301666259765625, -0.02203369140625, 0.009857177734375, -0.0221405029296875, 0.009857177734375, -0.018218994140625, 0.0305023193359375, 0.0606689453125, -0.033294677734375, -0.0241546630859375, 0.021270751953125, -0.006317138671875, -0.01030731201171875, -0.00806427001953125, 0.03179931640625, -0.0174713134765625, -0.013458251953125, -0.041473388671875, 0.0321044921875, 0.0640869140625, -0.00012624263763427734, 0.04205322265625, 0.0548095703125, -0.03253173828125, -0.001373291015625, -0.060028076171875, -0.0184326171875, -0.034759521484375, 0.01078033447265625, -0.0254669189453125, -0.06622314453125, 0.0379638671875, 0.024444580078125, 0.0221405029296875, 0.041839599609375, 0.027374267578125, -0.02105712890625, 0.06427001953125, 0.07830810546875, 0.0079803466796875, 0.01020050048828125, -0.03448486328125, 0.0223236083984375, -0.047088623046875, -0.0237579345703125, -0.01404571533203125, -0.034149169921875, -0.05010986328125, -0.047515869140625, 0.029693603515625, 0.0035610198974609375, 0.00008976459503173828, 0.0458984375, -0.027862548828125, 0.02862548828125, 0.04486083984375, 0.0200347900390625, 0.032745361328125, 0.00262451171875, 0.01396942138671875, -0.01470947265625, -0.057830810546875, -0.039886474609375, 0.07281494140625, 0.020782470703125, 0.0654296875, 0.0305633544921875, 0.06719970703125, 0.0110931396484375, 0.0305633544921875, -0.036773681640625, 0.047149658203125, -0.026611328125, -0.0753173828125, -0.0186004638671875, -0.0272216796875, -0.0335693359375, 0.0183258056640625, -0.040985107421875, -0.05108642578125, 0.026092529296875, 0.0175933837890625, -0.060546875, 0.0258331298828125, -0.045867919921875, 0.051910400390625, -0.0115509033203125, -0.02984619140625, -0.0266876220703125, -0.045318603515625, 0.0687255859375, -0.0038928985595703125, 0.006359100341796875, -0.00933074951171875, 0.0018548965454101562, 0.057647705078125, -0.00836181640625, 0.042724609375, 0.0228118896484375, -0.01064300537109375, 0.01528167724609375, 0.0282745361328125, 0.0199737548828125, 0.00789642333984375, 0.01525115966796875, 0.00701904296875, 0.007610321044921875, -0.012603759765625, -0.034820556640625, 0.0614013671875, -0.0667724609375, -0.0517578125, -0.043792724609375, -0.06011962890625, 0.00525665283203125, 0.0036029815673828125, 0.040740966796875, 0.056915283203125, -0.00910186767578125, 0.01335906982421875, 0.05194091796875, -0.00885772705078125, 0.039794921875, 0.045135498046875, -0.029022216796875, -0.0303955078125, 0.035797119140625, 0.0014438629150390625, 0.022369384765625, 0.0093994140625, 0.00742340087890625, -0.01076507568359375, 0.004032135009765625, -0.035797119140625, 0.0421142578125, -0.038482666015625, -0.020904541015625, -0.0482177734375, -0.0223236083984375, -0.0310516357421875, -0.01131439208984375, -0.032684326171875, -0.054443359375, -0.0258941650390625, -0.01151275634765625, 0.03076171875, 0.067626953125, -0.038665771484375, 0.02099609375, -0.051727294921875, 0.0286865234375, 0.0202484130859375, 0.00965118408203125, -0.005825042724609375, -0.04205322265625, 0.0211181640625, -0.01363372802734375, -0.024200439453125, -0.10870361328125, 0.03204345703125, -0.010955810546875, 0.033050537109375, 0.053436279296875, 0.006977081298828125, 0.040283203125, -0.0033893585205078125, 0.04559326171875, 0.03448486328125, -0.051513671875, 0.007568359375, -0.03594970703125, 0.013275146484375, 0.0086212158203125, 0.043060302734375, -0.027618408203125, -0.036865234375, -0.0706787109375, -0.054534912109375, 0.0723876953125, 0.0268402099609375, 0.0011205673217773438, 0.0240325927734375, 0.010498046875, 0.0153656005859375, 0.026519775390625, -0.05584716796875, -0.042999267578125, 0.0073089599609375, 0.0176239013671875, -0.0002980232238769531, -0.035919189453125, -0.0308685302734375, -0.020965576171875, 0.06622314453125, 0.00891876220703125, 0.0219879150390625, -0.0160675048828125, 0.0198822021484375, -0.0239410400390625, 0.004581451416015625, 0.02899169921875, 0.046295166015625, -0.0362548828125, 0.0102081298828125, 0.007171630859375, -0.02679443359375, 0.009246826171875, 0.0191802978515625, -0.005649566650390625, 0.005001068115234375, 0.029144287109375, 0.0614013671875, 0.00598907470703125, -0.0174102783203125, 0.0235748291015625, -0.005199432373046875, -0.023712158203125, -0.001155853271484375, 0.023193359375, 0.015167236328125, 0.044891357421875, 0.01806640625, 0.0345458984375, 0.0306549072265625, -0.048736572265625, 0.00569915771484375, 0.0275421142578125, -0.00873565673828125, -0.00803375244140625, 0.06353759765625, 0.00339508056640625, -0.0156402587890625, 0.039093017578125, -0.040740966796875, -0.0228271484375, 0.049468994140625, 0.040740966796875, 0.060882568359375, -0.01428985595703125, 0.0452880859375, 0.02886962890625, 0.0296478271484375, -0.01435089111328125, 0.033111572265625, -0.01763916015625, -0.042999267578125, -0.034942626953125, -0.031982421875, -0.026458740234375, 0.006755828857421875, -0.054443359375, 0.034332275390625, -0.020172119140625, -0.049285888671875, 0.0007691383361816406, 0.0014553070068359375, -0.0537109375, 0.0231781005859375, 0.0243988037109375, 0.0628662109375, -0.08331298828125, 0.051910400390625, 0.06329345703125, -0.0254364013671875, -0.08795166015625, -0.0241546630859375, 0.0252532958984375, -0.040985107421875, 0.0213165283203125, -0.00012409687042236328, 0.006130218505859375, -0.0280914306640625, -0.046295166015625, -0.09674072265625, 0.09381103515625, 0.035675048828125, -0.048797607421875, -0.0240631103515625, -0.0182647705078125, 0.039276123046875, -0.026336669921875, 0.0234527587890625, 0.040069580078125, 0.03302001953125, 0.036712646484375, -0.078857421875, 0.0165557861328125, -0.03778076171875, 0.00444793701171875, -0.003910064697265625, -0.04681396484375, 0.082275390625, -0.0443115234375, -0.005405426025390625, 0.03912353515625, 0.0550537109375, 0.0606689453125, 0.032318115234375, 0.04229736328125, 0.061004638671875, 0.051849365234375, -0.0107421875, 0.07208251953125, -0.0216064453125, 0.02740478515625, 0.06427001953125, -0.01331329345703125, 0.03271484375, 0.0271148681640625, -0.0010709762573242188, 0.02288818359375, 0.050384521484375, 0.0122528076171875, 0.035125732421875, -0.012359619140625, -0.005016326904296875, -0.034881591796875, 0.00389862060546875, -0.06048583984375, 0.01348114013671875, -0.01178741455078125, -0.0257568359375, -0.0172119140625, -0.00554656982421875, 0.024017333984375, -0.025604248046875, 0.00954437255859375, 0.02978515625, 0.02020263671875, -0.036041259765625, 0.0265045166015625, 0.01293182373046875, 0.05682373046875, -0.051422119140625, -0.0046234130859375, -0.031951904296875, 0.00823974609375, -0.0188446044921875, -0.06329345703125, 0.01177978515625, -0.01265716552734375, -0.0256805419921875, -0.0253143310546875, 0.047882080078125, -0.0285797119140625, -0.0509033203125, 0.0247955322265625, 0.04144287109375, 0.01380157470703125, 0.0021209716796875, -0.04345703125, 0.02471923828125, -0.0016040802001953125, -0.0139617919921875, 0.01366424560546875, 0.0308380126953125, -0.005016326904296875, 0.041778564453125, 0.043731689453125, -0.003997802734375, -0.0140533447265625, -0.0019102096557617188, 0.06353759765625, -0.033935546875, -0.04669189453125, -0.038177490234375, 0.038421630859375, -0.00592803955078125, -0.04510498046875, 0.059051513671875, 0.03875732421875, 0.050079345703125, -0.0214691162109375, 0.043121337890625, -0.0208587646484375, 0.00960540771484375, -0.018035888671875, 0.05010986328125, -0.0750732421875, 0.01174163818359375, -0.049560546875, -0.09344482421875, -0.0019159317016601562, 0.037322998046875, 0.002437591552734375, 0.005123138427734375, 0.054931640625, 0.06982421875, -0.00959014892578125, 0.0114288330078125, 0.0284271240234375, 0.005573272705078125, -0.0011053085327148438, 0.048553466796875, 0.073486328125, -0.029510498046875, 0.021453857421875, -0.048675537109375, -0.043487548828125, -0.0031948089599609375, -0.06903076171875, -0.060546875, -0.0328369140625, -0.02685546875, -0.03594970703125, 0.014892578125, 0.07012939453125, 0.066650390625, -0.0307769775390625, -0.028961181640625, 0.0272064208984375, -0.0116729736328125, -0.03350830078125, -0.0139312744140625, -0.000522613525390625, 0.022491455078125, -0.05438232421875, 0.02978515625, 0.0276641845703125, 0.02410888671875, -0.0251007080078125, -0.00052642822265625, 0.0188446044921875, 0.00848388671875, 0.044647216796875, 0.00359344482421875, -0.057464599609375, 0.002384185791015625, 0.032012939453125, -0.01306915283203125, -0.0284576416015625, 0.0396728515625, -0.046142578125, 0.00444793701171875, 0.0413818359375, -0.003711700439453125, 0.061065673828125, -0.01024627685546875, 0.05157470703125, -0.02008056640625, -0.0029430389404296875, 0.005340576171875, 0.031097412109375, 0.021331787109375, -0.033935546875, 0.041290283203125, 0.0278778076171875, -0.0218505859375, -0.0655517578125, 0.0055694580078125, -0.11102294921875, -0.0141448974609375, 0.09478759765625, 0.0207366943359375, -0.0094757080078125, 0.042724609375, -0.0416259765625, 0.00891876220703125, -0.0290679931640625, 0.05523681640625, 0.042755126953125, -0.01093292236328125, -0.00576019287109375, -0.0277862548828125, 0.02252197265625, 0.0264434814453125, -0.040435791015625, -0.031524658203125, 0.043212890625, 0.029083251953125, 0.025634765625, 0.040496826171875, -0.01158905029296875, 0.05029296875, -0.0150909423828125, 0.01552581787109375, -0.00891876220703125, -0.04144287109375, -0.002777099609375, 0.0246429443359375, -0.00030159950256347656, 0.0032749176025390625 ] ]
sainteye/ifoodie-detail-rating-v15
2023-10-26T12:36:29.000Z
[ "transformers", "pytorch", "tensorboard", "swin", "image-classification", "huggingpics", "model-index", "autotrain_compatible", "endpoints_compatible", "region:us" ]
image-classification
sainteye
null
null
sainteye/ifoodie-detail-rating-v15
0
2
transformers
2023-10-26T12:36:25
--- tags: - image-classification - pytorch - huggingpics metrics: - accuracy model-index: - name: ifoodie-detail-rating-v15 results: - task: name: Image Classification type: image-classification metrics: - name: Accuracy type: accuracy value: 0.9673202633857727 --- # ifoodie-detail-rating-v15 ['中間', '偏壞', '偏好'] ## Example Images # #### 中間 # ![中間](images/0) # # #### 偏壞 # ![偏壞](images/1) # # #### 偏好 # ![偏好](images/2) #
475
[ [ -0.01396942138671875, -0.0248260498046875, 0.0160675048828125, 0.078125, -0.05279541015625, -0.002788543701171875, 0.00373077392578125, -0.0223236083984375, 0.04559326171875, 0.0275421142578125, -0.046234130859375, -0.0299530029296875, -0.046875, 0.0286865234375, -0.0260772705078125, 0.051788330078125, -0.006793975830078125, 0.00855255126953125, 0.004741668701171875, -0.00010669231414794922, -0.0280303955078125, -0.0056915283203125, -0.06500244140625, -0.0166015625, 0.033538818359375, 0.050445556640625, 0.051116943359375, 0.0234527587890625, 0.041595458984375, 0.03436279296875, 0.01050567626953125, -0.0019073486328125, -0.032806396484375, -0.0279083251953125, -0.0022449493408203125, 0.0006070137023925781, -0.050750732421875, 0.022369384765625, 0.068359375, 0.0491943359375, -0.001979827880859375, 0.01068115234375, -0.00717926025390625, 0.0269927978515625, -0.0093536376953125, 0.033294677734375, -0.01538848876953125, 0.009552001953125, -0.0164337158203125, -0.0090789794921875, -0.013336181640625, -0.03759765625, -0.046600341796875, -0.08209228515625, -0.00865936279296875, 0.0186920166015625, 0.10931396484375, -0.01788330078125, -0.04522705078125, 0.007205963134765625, -0.01436614990234375, 0.051513671875, -0.032958984375, 0.0103912353515625, 0.04132080078125, 0.01103973388671875, -0.0177154541015625, -0.062347412109375, -0.040924072265625, -0.01995849609375, -0.0269927978515625, 0.0078277587890625, -0.0245819091796875, -0.0050506591796875, 0.0271148681640625, 0.043914794921875, -0.010650634765625, -0.00844573974609375, -0.05389404296875, -0.0071563720703125, 0.057586669921875, 0.007778167724609375, 0.056488037109375, -0.00786590576171875, -0.037445068359375, -0.01557159423828125, -0.019500732421875, 0.0177764892578125, 0.00615692138671875, 0.0157928466796875, -0.03399658203125, 0.03826904296875, -0.0265350341796875, 0.02838134765625, 0.05743408203125, -0.01922607421875, 0.036468505859375, -0.0162506103515625, -0.040740966796875, -0.03509521484375, 0.051300048828125, 0.0633544921875, -0.017578125, 0.00499725341796875, -0.032623291015625, 0.005035400390625, 0.0009131431579589844, -0.06195068359375, -0.0404052734375, 0.004314422607421875, -0.04754638671875, -0.036865234375, 0.03289794921875, -0.038177490234375, -0.0036296844482421875, 0.01102447509765625, 0.0389404296875, -0.032501220703125, -0.042816162109375, 0.0011644363403320312, -0.035125732421875, 0.0267181396484375, 0.01482391357421875, -0.03607177734375, 0.037353515625, -0.008819580078125, 0.0171966552734375, 0.053558349609375, -0.0298004150390625, 0.002918243408203125, 0.0257110595703125, -0.0458984375, 0.044952392578125, 0.0002033710479736328, -0.06195068359375, -0.0406494140625, 0.03948974609375, -0.00007748603820800781, -0.049041748046875, 0.06353759765625, -0.00672149658203125, 0.03424072265625, -0.034820556640625, -0.0185699462890625, -0.034698486328125, 0.003993988037109375, -0.051239013671875, 0.05279541015625, 0.046356201171875, -0.03399658203125, 0.041839599609375, -0.06317138671875, -0.04052734375, 0.032440185546875, -0.033050537109375, -0.010498046875, -0.0079498291015625, -0.00824737548828125, 0.0247344970703125, -0.006031036376953125, -0.0052642822265625, -0.0166473388671875, -0.018341064453125, 0.0245208740234375, -0.024261474609375, 0.07733154296875, 0.026031494140625, -0.01922607421875, 0.034698486328125, -0.052703857421875, 0.0177459716796875, 0.043426513671875, -0.0096435546875, 0.0011425018310546875, -0.0294036865234375, 0.0460205078125, 0.0217742919921875, 0.051025390625, -0.04925537109375, 0.02081298828125, 0.0202178955078125, 0.0294036865234375, 0.05889892578125, 0.002918243408203125, 0.0100860595703125, -0.056671142578125, 0.040130615234375, 0.00641632080078125, 0.0279083251953125, 0.0201416015625, -0.0357666015625, -0.046539306640625, -0.049713134765625, -0.0078277587890625, 0.0291748046875, -0.04217529296875, 0.055206298828125, 0.01198577880859375, -0.059814453125, -0.0083465576171875, 0.01322174072265625, 0.031646728515625, -0.0148773193359375, 0.018310546875, -0.023773193359375, -0.0443115234375, -0.0606689453125, 0.0017747879028320312, -0.0416259765625, -0.0035552978515625, 0.032135009765625, 0.0147247314453125, -0.038909912109375, 0.006275177001953125, -0.0264434814453125, -0.0235595703125, -0.00909423828125, -0.017852783203125, 0.043365478515625, 0.04083251953125, 0.06707763671875, -0.061126708984375, -0.046142578125, -0.0224761962890625, -0.07598876953125, -0.0194091796875, -0.00514984130859375, -0.0258026123046875, -0.006317138671875, 0.0311431884765625, -0.051025390625, 0.037506103515625, 0.0264434814453125, -0.0706787109375, 0.0271759033203125, -0.00943756103515625, 0.04656982421875, -0.051971435546875, -0.02020263671875, -0.0095062255859375, -0.0166473388671875, -0.005474090576171875, 0.03594970703125, 0.008270263671875, 0.0016536712646484375, -0.0233917236328125, 0.048919677734375, -0.047149658203125, 0.0224456787109375, -0.006916046142578125, 0.00965118408203125, 0.0215301513671875, 0.007293701171875, -0.00537872314453125, 0.033416748046875, 0.0299530029296875, -0.01381683349609375, 0.04644775390625, 0.047088623046875, -0.035797119140625, 0.023773193359375, -0.03924560546875, -0.00914764404296875, 0.01143646240234375, 0.03070068359375, -0.07977294921875, -0.058258056640625, 0.0288238525390625, -0.0352783203125, 0.016845703125, 0.0117034912109375, -0.034637451171875, -0.034698486328125, -0.041595458984375, 0.05487060546875, 0.046661376953125, -0.0316162109375, 0.00811767578125, 0.0269012451171875, 0.0178985595703125, -0.032135009765625, -0.04351806640625, 0.023101806640625, -0.021392822265625, -0.049591064453125, 0.0301361083984375, -0.0049896240234375, -0.0173492431640625, 0.0015420913696289062, 0.00891876220703125, -0.0196533203125, -0.01387786865234375, 0.03173828125, -0.007843017578125, -0.03619384765625, -0.031890869140625, 0.01025390625, 0.01136016845703125, 0.0019588470458984375, 0.0271759033203125, 0.016815185546875, -0.01268768310546875, 0.0000928044319152832, -0.052825927734375, 0.04595947265625, 0.0271148681640625, 0.0406494140625, 0.018646240234375, 0.049591064453125, -0.040985107421875, 0.005184173583984375, -0.0194549560546875, -0.0155487060546875, -0.045806884765625, 0.01474761962890625, -0.042816162109375, -0.0302734375, 0.0253753662109375, 0.0019235610961914062, -0.0312042236328125, 0.060150146484375, 0.00601959228515625, -0.02490234375, 0.0572509765625, 0.052886962890625, -0.0224456787109375, 0.0181732177734375, -0.0273895263671875, 0.033538818359375, -0.0204315185546875, -0.027435302734375, -0.0089263916015625, -0.01922607421875, -0.047607421875, -0.0224609375, 0.01690673828125, 0.04815673828125, -0.009002685546875, 0.0562744140625, -0.01470947265625, 0.04913330078125, 0.0265655517578125, 0.04193115234375, -0.008575439453125, -0.0267181396484375, 0.020477294921875, 0.01226043701171875, -0.0394287109375, -0.017547607421875, 0.01194000244140625, 0.0243072509765625, 0.051788330078125, 0.032806396484375, 0.053253173828125, 0.0313720703125, -0.0025787353515625, -0.0183563232421875, 0.08056640625, -0.03167724609375, -0.050201416015625, -0.04266357421875, 0.005657196044921875, -0.10345458984375, -0.00537872314453125, -0.01348114013671875, -0.042694091796875, -0.00037550926208496094, -0.00884246826171875, -0.011077880859375, 0.036468505859375, -0.031036376953125, 0.0687255859375, -0.01171875, -0.0064849853515625, -0.01479339599609375, -0.0439453125, 0.01837158203125, 0.03485107421875, 0.0235443115234375, -0.0253143310546875, -0.00592803955078125, 0.04510498046875, -0.046356201171875, 0.054779052734375, -0.0196685791015625, 0.00901031494140625, 0.0257568359375, 0.005985260009765625, 0.0028362274169921875, 0.016357421875, 0.03125, 0.0118560791015625, -0.007549285888671875, -0.06524658203125, 0.0012578964233398438, 0.06903076171875, -0.06878662109375, -0.03668212890625, -0.040374755859375, -0.00826263427734375, 0.0185699462890625, 0.0199127197265625, 0.052886962890625, 0.027923583984375, -0.011474609375, 0.0136566162109375, 0.0101318359375, -0.0276641845703125, 0.032989501953125, 0.0228424072265625, -0.06329345703125, -0.052734375, 0.077392578125, 0.01366424560546875, -0.0123748779296875, 0.01331329345703125, 0.0032482147216796875, -0.02691650390625, -0.0189361572265625, -0.0258941650390625, 0.034820556640625, -0.050537109375, -0.01788330078125, -0.0222625732421875, -0.03131103515625, -0.0640869140625, -0.0210113525390625, 0.0174560546875, -0.0249481201171875, -0.03802490234375, -0.036285400390625, 0.0380859375, 0.05511474609375, -0.042724609375, 0.01666259765625, -0.054718017578125, 0.050048828125, 0.0297088623046875, 0.03277587890625, -0.0210113525390625, -0.038177490234375, -0.0286712646484375, -0.029541015625, -0.042816162109375, -0.06390380859375, 0.028900146484375, 0.017120361328125, 0.037994384765625, 0.047088623046875, 0.005733489990234375, 0.061859130859375, -0.00859832763671875, 0.07855224609375, 0.04144287109375, -0.0714111328125, 0.031341552734375, -0.044830322265625, -0.0039215087890625, 0.032623291015625, 0.0298614501953125, -0.020660400390625, -0.02630615234375, -0.07720947265625, -0.0831298828125, 0.023712158203125, 0.03057861328125, 0.03607177734375, -0.0211639404296875, 0.0135345458984375, 0.008087158203125, 0.0160369873046875, -0.090576171875, -0.0279388427734375, -0.01259613037109375, -0.0009059906005859375, -0.002758026123046875, -0.0258941650390625, 0.0036602020263671875, -0.05413818359375, 0.057373046875, 0.0258026123046875, 0.04449462890625, 0.00629425048828125, 0.005126953125, -0.050048828125, -0.01922607421875, 0.04168701171875, 0.03857421875, -0.0333251953125, -0.01479339599609375, -0.01401519775390625, -0.0288543701171875, 0.017791748046875, -0.0170135498046875, 0.006237030029296875, 0.0219879150390625, 0.0242156982421875, 0.04278564453125, 0.0018463134765625, -0.0305633544921875, 0.049896240234375, -0.007503509521484375, 0.001209259033203125, -0.05975341796875, 0.009674072265625, -0.029815673828125, 0.0258026123046875, 0.01422119140625, -0.0005373954772949219, 0.036834716796875, -0.05462646484375, 0.0276336669921875, 0.0169525146484375, -0.03228759765625, -0.006107330322265625, 0.054107666015625, 0.0185394287109375, -0.039093017578125, 0.049560546875, -0.0204620361328125, -0.00522613525390625, 0.06146240234375, 0.0626220703125, 0.0675048828125, -0.0278167724609375, 0.033935546875, 0.039581298828125, 0.0295867919921875, 0.005519866943359375, 0.07806396484375, 0.003108978271484375, -0.05889892578125, 0.005329132080078125, -0.021270751953125, -0.02667236328125, 0.048431396484375, -0.04315185546875, 0.043548583984375, -0.0701904296875, -0.01690673828125, 0.0113525390625, -0.021240234375, -0.007678985595703125, 0.05413818359375, 0.01739501953125, 0.0968017578125, -0.06060791015625, 0.0633544921875, 0.04547119140625, -0.039642333984375, -0.062744140625, 0.0034923553466796875, -0.01922607421875, -0.04937744140625, 0.0309906005859375, 0.0386962890625, -0.022491455078125, -0.021820068359375, -0.0714111328125, -0.041046142578125, 0.068603515625, -0.01064300537109375, -0.01293182373046875, 0.0185394287109375, -0.032318115234375, 0.0307769775390625, -0.017425537109375, 0.00775146484375, 0.0023479461669921875, 0.054534912109375, -0.031158447265625, -0.061798095703125, 0.010345458984375, -0.0655517578125, -0.0112457275390625, 0.005062103271484375, -0.09051513671875, 0.08056640625, -0.0230712890625, -0.0198211669921875, 0.049163818359375, 0.05389404296875, 0.033203125, 0.0498046875, 0.07000732421875, 0.0264129638671875, 0.00780487060546875, -0.01078033447265625, 0.06829833984375, -0.00119781494140625, 0.01690673828125, 0.044769287109375, -0.00446319580078125, 0.0360107421875, 0.027099609375, -0.048858642578125, 0.064697265625, 0.08135986328125, -0.017547607421875, 0.058349609375, 0.0164794921875, -0.0221405029296875, -0.010833740234375, 0.0014200210571289062, -0.019989013671875, 0.01422119140625, 0.032073974609375, -0.0167694091796875, 0.006885528564453125, 0.004848480224609375, 0.01558685302734375, 0.01294708251953125, -0.0293121337890625, 0.05694580078125, 0.0022144317626953125, -0.019256591796875, 0.047515869140625, 0.0238037109375, 0.04742431640625, -0.032470703125, -0.014312744140625, -0.0110015869140625, 0.006267547607421875, -0.0276641845703125, -0.07281494140625, -0.01363372802734375, -0.019683837890625, -0.011383056640625, -0.006160736083984375, 0.044281005859375, -0.0301971435546875, -0.060150146484375, 0.04925537109375, -0.005451202392578125, 0.041290283203125, 0.02166748046875, -0.07257080078125, -0.012237548828125, 0.0197296142578125, 0.002685546875, 0.00942230224609375, 0.0300140380859375, -0.0223541259765625, 0.02716064453125, 0.0102081298828125, -0.017547607421875, 0.01197052001953125, -0.012451171875, 0.054351806640625, -0.06060791015625, -0.0379638671875, -0.03851318359375, 0.0308837890625, -0.0308990478515625, -0.0440673828125, 0.06463623046875, 0.040283203125, 0.06988525390625, -0.03179931640625, 0.0570068359375, -0.03546142578125, 0.0276641845703125, -0.0222625732421875, 0.040283203125, -0.05792236328125, -0.0338134765625, -0.040069580078125, -0.0189666748046875, -0.032012939453125, 0.059967041015625, 0.02490234375, 0.01461029052734375, 0.044647216796875, 0.040863037109375, -0.0009717941284179688, -0.01313018798828125, 0.04766845703125, 0.027313232421875, -0.006305694580078125, 0.0225067138671875, 0.07550048828125, -0.051300048828125, -0.006114959716796875, -0.054962158203125, -0.028350830078125, -0.0280609130859375, -0.056365966796875, -0.045135498046875, -0.047088623046875, -0.0369873046875, -0.0472412109375, -0.0258026123046875, 0.06219482421875, 0.033172607421875, -0.06640625, -0.0535888671875, 0.033355712890625, 0.01152801513671875, -0.00777435302734375, -0.016448974609375, 0.00525665283203125, 0.003894805908203125, -0.034942626953125, 0.025054931640625, 0.0280609130859375, 0.0204315185546875, -0.0025806427001953125, 0.0013599395751953125, -0.007152557373046875, 0.031585693359375, 0.030303955078125, 0.0207672119140625, -0.0703125, -0.0207672119140625, -0.002910614013671875, -0.00939178466796875, 0.005603790283203125, 0.0254364013671875, -0.00030040740966796875, -0.00601959228515625, 0.04083251953125, -0.032318115234375, 0.016357421875, -0.0017004013061523438, 0.01180267333984375, -0.05242919921875, 0.046142578125, 0.00006902217864990234, 0.041015625, 0.0150146484375, -0.04302978515625, 0.03936767578125, 0.038177490234375, -0.04852294921875, -0.06683349609375, -0.0108795166015625, -0.10516357421875, -0.026885986328125, 0.07208251953125, -0.014495849609375, -0.0197906494140625, 0.018951416015625, -0.0379638671875, 0.00817108154296875, -0.0271148681640625, 0.054534912109375, 0.0343017578125, -0.0165557861328125, -0.0092315673828125, 0.011993408203125, 0.0292205810546875, 0.004886627197265625, -0.04449462890625, -0.04266357421875, 0.02935791015625, 0.0244293212890625, 0.020599365234375, 0.0711669921875, -0.0189361572265625, 0.0288238525390625, 0.039825439453125, 0.0020618438720703125, 0.039215087890625, -0.0219268798828125, -0.0037994384765625, -0.01177215576171875, 0.0271148681640625, -0.059356689453125 ] ]
joseluhf11/phi-1_5-finetuned-dxrare_symptom_extractor_v1
2023-10-26T13:13:15.000Z
[ "transformers", "pytorch", "mixformer-sequential", "text-generation", "generated_from_trainer", "custom_code", "license:other", "region:us" ]
text-generation
joseluhf11
null
null
joseluhf11/phi-1_5-finetuned-dxrare_symptom_extractor_v1
0
2
transformers
2023-10-26T12:56:39
--- license: other base_model: microsoft/phi-1_5 tags: - generated_from_trainer model-index: - name: phi-1_5-finetuned-dxrare_symptom_extractor_v1 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. --> # phi-1_5-finetuned-dxrare_symptom_extractor_v1 This model is a fine-tuned version of [microsoft/phi-1_5](https://huggingface.co/microsoft/phi-1_5) 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: 0.0002 - train_batch_size: 4 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: cosine - training_steps: 1000 ### Training results ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,116
[ [ -0.022003173828125, -0.038909912109375, 0.01220703125, 0.0165863037109375, -0.0243377685546875, -0.04180908203125, 0.0116424560546875, -0.027984619140625, 0.014068603515625, 0.02215576171875, -0.060150146484375, -0.039093017578125, -0.050323486328125, 0.00687408447265625, -0.03277587890625, 0.09197998046875, 0.00713348388671875, 0.021148681640625, 0.0015039443969726562, 0.004253387451171875, -0.0236053466796875, -0.04351806640625, -0.060821533203125, -0.050933837890625, 0.038604736328125, 0.0288848876953125, 0.04791259765625, 0.055267333984375, 0.061553955078125, 0.015167236328125, -0.01163482666015625, -0.0254669189453125, -0.040985107421875, -0.015655517578125, -0.004749298095703125, -0.03094482421875, -0.0772705078125, 0.0138397216796875, 0.03692626953125, 0.02337646484375, -0.0196533203125, 0.043548583984375, 0.0196990966796875, 0.0271759033203125, -0.04217529296875, 0.0306549072265625, -0.0290069580078125, 0.037261962890625, -0.01049041748046875, -0.0289306640625, -0.012908935546875, -0.004047393798828125, 0.006290435791015625, -0.049713134765625, 0.033935546875, -0.0087738037109375, 0.0843505859375, 0.035614013671875, -0.0198516845703125, 0.00974273681640625, -0.046051025390625, 0.041656494140625, -0.05352783203125, 0.01560211181640625, 0.0308074951171875, 0.04522705078125, 0.00017786026000976562, -0.06561279296875, -0.026824951171875, -0.01043701171875, 0.00218963623046875, 0.01275634765625, -0.04132080078125, 0.01317596435546875, 0.0576171875, 0.043182373046875, -0.053009033203125, 0.02008056640625, -0.056304931640625, -0.0193939208984375, 0.044158935546875, 0.032196044921875, -0.00030803680419921875, -0.00933837890625, -0.033660888671875, 0.000012099742889404297, -0.0211029052734375, -0.005779266357421875, 0.01031494140625, 0.0176849365234375, -0.0273590087890625, 0.041046142578125, -0.0155487060546875, 0.04901123046875, 0.011749267578125, -0.0217132568359375, 0.034515380859375, 0.0236968994140625, -0.04681396484375, 0.01493072509765625, 0.056121826171875, 0.031463623046875, 0.01131439208984375, -0.0090484619140625, -0.0182952880859375, 0.000579833984375, 0.0206756591796875, -0.062286376953125, -0.04534912109375, 0.0220489501953125, -0.0516357421875, -0.05364990234375, 0.0078887939453125, -0.05767822265625, -0.0054473876953125, -0.039825439453125, 0.032196044921875, -0.03326416015625, -0.0302581787109375, 0.003810882568359375, -0.01250457763671875, 0.01320648193359375, 0.01442718505859375, -0.054290771484375, 0.040679931640625, 0.031890869140625, 0.037017822265625, -0.013916015625, -0.035888671875, -0.039398193359375, -0.0008540153503417969, -0.01526641845703125, 0.03131103515625, -0.002826690673828125, -0.0228424072265625, -0.0181732177734375, 0.0159912109375, -0.0072784423828125, -0.04608154296875, 0.06768798828125, -0.0239410400390625, 0.0167236328125, -0.0200958251953125, -0.057220458984375, -0.020172119140625, 0.02716064453125, -0.06005859375, 0.0806884765625, 0.032012939453125, -0.068115234375, 0.0374755859375, -0.05950927734375, -0.0037631988525390625, 0.00997161865234375, -0.003387451171875, -0.046295166015625, 0.00921630859375, -0.001094818115234375, 0.033294677734375, -0.01397705078125, 0.0124664306640625, -0.0340576171875, -0.0335693359375, 0.003208160400390625, -0.046905517578125, 0.062255859375, 0.02935791015625, -0.03253173828125, 0.0139312744140625, -0.1021728515625, 0.0148468017578125, 0.0230712890625, -0.0296173095703125, 0.004993438720703125, -0.039886474609375, 0.035614013671875, 0.0372314453125, 0.0224609375, -0.042572021484375, 0.019012451171875, -0.028350830078125, 0.00475311279296875, 0.04241943359375, 0.0064544677734375, 0.0005040168762207031, -0.0350341796875, 0.046234130859375, 0.0340576171875, 0.032073974609375, 0.0256195068359375, -0.0248565673828125, -0.0516357421875, -0.030426025390625, 0.00437164306640625, 0.037322998046875, -0.0217132568359375, 0.048858642578125, -0.00746917724609375, -0.0531005859375, -0.017059326171875, 0.00516510009765625, 0.022918701171875, 0.042205810546875, 0.03826904296875, 0.00115966796875, -0.0401611328125, -0.06689453125, 0.00004649162292480469, 0.01186370849609375, 0.008941650390625, -0.00556182861328125, 0.04571533203125, -0.0120697021484375, 0.05938720703125, -0.0404052734375, -0.022125244140625, -0.0231475830078125, -0.007904052734375, 0.0216827392578125, 0.0670166015625, 0.0531005859375, -0.0217742919921875, -0.0204620361328125, -0.022918701171875, -0.05780029296875, 0.01093292236328125, -0.010833740234375, -0.00933837890625, 0.0017261505126953125, 0.020294189453125, -0.038330078125, 0.06512451171875, 0.02288818359375, -0.01611328125, 0.039764404296875, -0.03485107421875, -0.01180267333984375, -0.088623046875, 0.0199737548828125, 0.016571044921875, -0.00395965576171875, -0.02178955078125, 0.002056121826171875, -0.00091552734375, -0.0225677490234375, -0.0277557373046875, 0.046478271484375, -0.01071929931640625, 0.0148162841796875, -0.0236968994140625, -0.0254669189453125, 0.007442474365234375, 0.05047607421875, -0.003711700439453125, 0.035400390625, 0.06256103515625, -0.050933837890625, 0.03594970703125, 0.025787353515625, -0.0081329345703125, 0.02996826171875, -0.07244873046875, 0.0010900497436523438, -0.0016851425170898438, -0.01629638671875, -0.05438232421875, -0.019927978515625, 0.052001953125, -0.0195465087890625, 0.032623291015625, -0.00200653076171875, -0.0303497314453125, -0.0302276611328125, 0.0015535354614257812, 0.0259246826171875, 0.0430908203125, -0.052032470703125, 0.02703857421875, -0.008453369140625, 0.0274505615234375, -0.0203857421875, -0.060150146484375, -0.0228424072265625, -0.0308074951171875, -0.0170135498046875, 0.01432037353515625, 0.00885772705078125, 0.0015687942504882812, -0.01312255859375, -0.018524169921875, -0.028656005859375, 0.003345489501953125, 0.027099609375, 0.020599365234375, -0.01021575927734375, 0.006481170654296875, 0.0084686279296875, -0.031494140625, 0.022247314453125, -0.007022857666015625, 0.0238037109375, 0.00743865966796875, -0.0296783447265625, -0.06451416015625, 0.0195159912109375, 0.0469970703125, -0.0187530517578125, 0.044647216796875, 0.05926513671875, -0.04150390625, 0.003658294677734375, -0.022369384765625, -0.030609130859375, -0.0299530029296875, 0.042022705078125, -0.037567138671875, -0.01036834716796875, 0.0399169921875, -0.00305938720703125, -0.00397491455078125, 0.05841064453125, 0.0244140625, 0.0243377685546875, 0.09130859375, 0.045166015625, -0.005130767822265625, 0.029693603515625, -0.055206298828125, 0.0008940696716308594, -0.05047607421875, -0.0166168212890625, -0.029205322265625, -0.0193023681640625, -0.053741455078125, 0.0215301513671875, 0.0229034423828125, 0.01406097412109375, -0.04608154296875, 0.020050048828125, -0.048309326171875, 0.00516510009765625, 0.060211181640625, 0.038604736328125, -0.01064300537109375, 0.025299072265625, -0.01271820068359375, -0.0097503662109375, -0.080810546875, -0.026824951171875, 0.09197998046875, 0.04461669921875, 0.048553466796875, -0.0111541748046875, 0.063232421875, -0.0004968643188476562, 0.004764556884765625, -0.04449462890625, 0.0308380126953125, -0.0031642913818359375, -0.048553466796875, -0.0012159347534179688, -0.0243377685546875, -0.06878662109375, -0.0040740966796875, -0.031707763671875, -0.06109619140625, 0.026123046875, 0.0245513916015625, -0.0389404296875, 0.0204620361328125, -0.03558349609375, 0.09765625, -0.017974853515625, -0.0293121337890625, -0.0157470703125, -0.0307769775390625, 0.0155181884765625, 0.01010894775390625, -0.025390625, -0.0026683807373046875, 0.019012451171875, 0.06695556640625, -0.052642822265625, 0.048828125, -0.02557373046875, 0.020904541015625, 0.01505279541015625, -0.00849151611328125, 0.026702880859375, 0.0010585784912109375, -0.01529693603515625, 0.01739501953125, 0.031280517578125, -0.052764892578125, -0.03900146484375, 0.047607421875, -0.08203125, -0.0090179443359375, -0.052490234375, -0.042205810546875, -0.0026092529296875, 0.0088348388671875, 0.052093505859375, 0.062744140625, -0.005138397216796875, -0.005115509033203125, 0.0309295654296875, -0.005340576171875, 0.01446533203125, 0.03143310546875, -0.0109100341796875, -0.02899169921875, 0.0650634765625, 0.006168365478515625, 0.00530242919921875, -0.0006971359252929688, 0.023468017578125, -0.0111083984375, -0.030975341796875, -0.006908416748046875, 0.00677490234375, -0.0576171875, -0.0231475830078125, -0.0255889892578125, -0.033477783203125, -0.032073974609375, 0.021484375, -0.0225067138671875, -0.021331787109375, -0.04888916015625, -0.01514434814453125, 0.040740966796875, 0.040435791015625, -0.01611328125, 0.0526123046875, -0.06805419921875, 0.0008211135864257812, 0.0054779052734375, 0.03277587890625, 0.0019931793212890625, -0.05108642578125, -0.028411865234375, 0.011962890625, -0.042205810546875, -0.0662841796875, 0.044097900390625, 0.00836944580078125, 0.057098388671875, 0.0433349609375, 0.00922393798828125, 0.059967041015625, -0.002918243408203125, 0.054443359375, 0.0228424072265625, -0.039306640625, 0.04034423828125, -0.0084228515625, 0.026092529296875, 0.03436279296875, 0.043548583984375, 0.009307861328125, -0.00867462158203125, -0.0838623046875, -0.048858642578125, 0.058380126953125, 0.023681640625, -0.007129669189453125, -0.005584716796875, 0.048553466796875, 0.0008020401000976562, 0.003269195556640625, -0.0528564453125, -0.041748046875, -0.0210723876953125, -0.01511383056640625, -0.0039043426513671875, -0.031402587890625, -0.01212310791015625, -0.059783935546875, 0.074951171875, 0.0037555694580078125, 0.0201416015625, 0.027740478515625, 0.00775909423828125, -0.0104522705078125, -0.0018463134765625, 0.031982421875, 0.05419921875, -0.038818359375, -0.01467132568359375, 0.00545501708984375, -0.043121337890625, -0.0127105712890625, 0.0338134765625, -0.004940032958984375, 0.0178375244140625, 0.0262451171875, 0.07965087890625, 0.0079803466796875, -0.01264190673828125, 0.02239990234375, -0.007328033447265625, -0.02557373046875, -0.03173828125, 0.023040771484375, -0.038543701171875, 0.0165557861328125, 0.0025691986083984375, 0.0208282470703125, 0.026763916015625, -0.00788116455078125, 0.019500732421875, 0.00824737548828125, -0.04364013671875, -0.019500732421875, 0.060821533203125, -0.0007381439208984375, -0.018890380859375, 0.0694580078125, -0.01422119140625, -0.01678466796875, 0.051513671875, 0.038848876953125, 0.0723876953125, -0.008514404296875, -0.006683349609375, 0.055511474609375, -0.0015697479248046875, -0.0016946792602539062, 0.048553466796875, 0.00426483154296875, -0.0291595458984375, -0.003307342529296875, -0.0438232421875, 0.0009679794311523438, 0.029571533203125, -0.09942626953125, 0.03692626953125, -0.026611328125, -0.033447265625, 0.01806640625, 0.026336669921875, -0.06890869140625, 0.039520263671875, 0.0032024383544921875, 0.0997314453125, -0.07244873046875, 0.07708740234375, 0.047210693359375, -0.059783935546875, -0.08978271484375, -0.006732940673828125, -0.002033233642578125, -0.05047607421875, 0.048797607421875, -0.0015392303466796875, 0.038055419921875, 0.0232391357421875, -0.035888671875, -0.04827880859375, 0.0802001953125, 0.035369873046875, -0.047607421875, 0.0020389556884765625, 0.01364898681640625, 0.03741455078125, -0.01385498046875, 0.0318603515625, 0.03582763671875, 0.011993408203125, 0.01381683349609375, -0.08160400390625, -0.00524139404296875, -0.034393310546875, -0.0026073455810546875, -0.004734039306640625, -0.013580322265625, 0.07745361328125, 0.000015139579772949219, 0.0170745849609375, 0.0190582275390625, 0.033905029296875, 0.019622802734375, 0.0196990966796875, 0.020599365234375, 0.05328369140625, 0.05511474609375, 0.002105712890625, 0.08343505859375, -0.06829833984375, 0.049713134765625, 0.1044921875, -0.0012426376342773438, 0.0423583984375, 0.04083251953125, -0.01873779296875, 0.01690673828125, 0.060455322265625, -0.0249481201171875, 0.0280914306640625, 0.014404296875, -0.00270843505859375, -0.026580810546875, 0.025787353515625, -0.052093505859375, 0.0404052734375, -0.0026397705078125, -0.059051513671875, -0.0421142578125, 0.00390625, -0.00458526611328125, -0.024566650390625, -0.032623291015625, 0.057464599609375, -0.01325225830078125, -0.030364990234375, 0.057281494140625, -0.004184722900390625, 0.016632080078125, -0.05419921875, -0.0226593017578125, -0.0044403076171875, 0.0458984375, -0.03302001953125, -0.02838134765625, 0.0300140380859375, -0.0162200927734375, -0.0269927978515625, 0.01018524169921875, 0.036224365234375, -0.017791748046875, -0.06597900390625, 0.012237548828125, 0.03424072265625, 0.033966064453125, -0.019927978515625, -0.0806884765625, 0.0007333755493164062, -0.016204833984375, -0.0177154541015625, 0.0281524658203125, 0.022247314453125, 0.0009217262268066406, 0.041473388671875, 0.0272369384765625, 0.0028171539306640625, 0.0047607421875, 0.006839752197265625, 0.06768798828125, -0.0238494873046875, -0.040191650390625, -0.057281494140625, 0.040191650390625, -0.017425537109375, -0.0577392578125, 0.060760498046875, 0.06982421875, 0.041351318359375, -0.0137481689453125, 0.041900634765625, 0.01190948486328125, 0.039306640625, -0.0179901123046875, 0.05078125, -0.041961669921875, 0.00968170166015625, -0.021820068359375, -0.052764892578125, -0.0013446807861328125, 0.055908203125, -0.0129547119140625, 0.006397247314453125, 0.039642333984375, 0.06231689453125, -0.0225677490234375, 0.0153350830078125, 0.0207977294921875, 0.010772705078125, 0.01387786865234375, 0.0296478271484375, 0.0194091796875, -0.0704345703125, 0.027099609375, -0.0614013671875, -0.026031494140625, 0.00435638427734375, -0.054473876953125, -0.061614990234375, -0.027557373046875, -0.055145263671875, -0.049774169921875, 0.0021514892578125, 0.09722900390625, 0.06292724609375, -0.0662841796875, -0.02191162109375, -0.0212860107421875, -0.022857666015625, -0.03900146484375, -0.0160675048828125, 0.03668212890625, -0.026885986328125, -0.04296875, -0.01418304443359375, -0.0168304443359375, 0.0273895263671875, -0.0170135498046875, -0.0136260986328125, -0.00403594970703125, -0.0301513671875, 0.0224456787109375, 0.0131683349609375, -0.04083251953125, -0.01299285888671875, -0.0013332366943359375, -0.00882720947265625, 0.0086517333984375, 0.0244293212890625, -0.044921875, 0.02117919921875, 0.0180511474609375, 0.0032062530517578125, 0.035400390625, -0.018035888671875, 0.032684326171875, -0.035186767578125, 0.036773681640625, 0.01226806640625, 0.038360595703125, -0.0061492919921875, -0.0361328125, 0.0237579345703125, 0.0245513916015625, -0.036102294921875, -0.0509033203125, -0.01204681396484375, -0.08868408203125, 0.0002994537353515625, 0.08526611328125, -0.013671875, -0.03289794921875, 0.009429931640625, -0.03204345703125, 0.029693603515625, -0.006168365478515625, 0.046966552734375, 0.02276611328125, -0.0163726806640625, -0.007904052734375, -0.0421142578125, 0.044097900390625, 0.004528045654296875, -0.049591064453125, -0.0148162841796875, 0.027801513671875, 0.039764404296875, -0.00556182861328125, 0.03228759765625, -0.0023822784423828125, 0.042877197265625, 0.0220184326171875, 0.0283203125, -0.031524658203125, -0.006473541259765625, -0.04449462890625, 0.00975799560546875, 0.01031494140625, -0.045135498046875 ] ]
igig98/ppo_
2023-10-26T13:22:03.000Z
[ "peft", "region:us" ]
null
igig98
null
null
igig98/ppo_
0
2
peft
2023-10-26T13:21:32
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 ### Framework versions - PEFT 0.5.0
464
[ [ -0.045074462890625, -0.05615234375, 0.033416748046875, 0.035247802734375, -0.038543701171875, 0.007015228271484375, 0.01175689697265625, -0.01403045654296875, -0.0122222900390625, 0.031280517578125, -0.041595458984375, -0.00951385498046875, -0.033355712890625, 0.0113983154296875, 0.0008702278137207031, 0.067138671875, -0.007160186767578125, 0.032928466796875, -0.0066680908203125, 0.0019779205322265625, -0.023529052734375, -0.0247802734375, -0.07763671875, -0.0280609130859375, -0.0247039794921875, 0.0285186767578125, 0.031951904296875, 0.008544921875, 0.055267333984375, 0.019500732421875, -0.0019426345825195312, -0.023529052734375, -0.0140533447265625, -0.0293121337890625, 0.004863739013671875, -0.03973388671875, -0.057586669921875, -0.007770538330078125, 0.07269287109375, 0.01473236083984375, -0.00786590576171875, 0.01163482666015625, -0.0173797607421875, 0.06439208984375, -0.0491943359375, 0.006687164306640625, -0.03564453125, 0.03826904296875, -0.00405120849609375, -0.007160186767578125, -0.01253509521484375, -0.016845703125, 0.00445556640625, -0.0369873046875, 0.02911376953125, 0.0018444061279296875, 0.0682373046875, 0.00917816162109375, -0.05133056640625, 0.0082855224609375, -0.03448486328125, 0.050079345703125, -0.046539306640625, 0.038299560546875, 0.04638671875, 0.00848388671875, 0.00954437255859375, -0.052886962890625, -0.029571533203125, 0.01392364501953125, 0.0192718505859375, -0.01480865478515625, -0.0036907196044921875, 0.035003662109375, 0.05633544921875, 0.04150390625, -0.02606201171875, -0.0224456787109375, -0.043365478515625, -0.0369873046875, 0.050506591796875, 0.007526397705078125, -0.0212554931640625, 0.0249786376953125, -0.057769775390625, -0.00521087646484375, -0.047119140625, 0.01528167724609375, 0.0258636474609375, -0.01044464111328125, -0.041473388671875, 0.02008056640625, -0.023193359375, 0.039947509765625, 0.061431884765625, 0.0013818740844726562, 0.06890869140625, -0.03265380859375, -0.042816162109375, 0.026702880859375, 0.061676025390625, 0.0159759521484375, 0.0071563720703125, 0.00572967529296875, -0.03826904296875, -0.02935791015625, 0.029327392578125, -0.08892822265625, -0.0270233154296875, 0.030029296875, -0.00830078125, -0.02972412109375, 0.01361846923828125, -0.036102294921875, 0.011749267578125, 0.0120697021484375, 0.058197021484375, -0.06121826171875, -0.0313720703125, 0.021942138671875, -0.0221405029296875, 0.038970947265625, 0.007221221923828125, -0.08441162109375, 0.043548583984375, 0.041473388671875, 0.04180908203125, 0.01488494873046875, -0.01262664794921875, -0.0270843505859375, -0.0091552734375, -0.0156097412109375, 0.030731201171875, 0.0216827392578125, -0.0196075439453125, -0.0145721435546875, 0.0093841552734375, -0.00693511962890625, -0.0433349609375, 0.050689697265625, -0.03814697265625, -0.00649261474609375, -0.01535797119140625, -0.037139892578125, -0.0252227783203125, 0.019073486328125, -0.0406494140625, 0.08148193359375, 0.03009033203125, -0.04913330078125, 0.0219268798828125, -0.034637451171875, -0.0240478515625, 0.01641845703125, -0.030242919921875, -0.053192138671875, 0.03900146484375, -0.021881103515625, 0.029876708984375, 0.01099395751953125, 0.0204925537109375, -0.0140533447265625, -0.05810546875, 0.0261383056640625, -0.027862548828125, 0.0732421875, 0.0118865966796875, -0.0540771484375, -0.00571441650390625, -0.06304931640625, 0.021240234375, 0.0011854171752929688, -0.047149658203125, 0.035064697265625, -0.0330810546875, 0.00969696044921875, 0.000583648681640625, 0.040252685546875, -0.0601806640625, -0.01215362548828125, -0.039215087890625, 0.04376220703125, 0.053497314453125, -0.0030307769775390625, 0.0221099853515625, -0.01580810546875, 0.0291748046875, 0.005218505859375, 0.0278472900390625, 0.045257568359375, -0.035888671875, -0.05853271484375, -0.0028533935546875, 0.01444244384765625, 0.033233642578125, -0.050140380859375, 0.0526123046875, 0.00803375244140625, -0.0166015625, -0.00788116455078125, -0.00902557373046875, 0.03521728515625, 0.0089111328125, 0.01491546630859375, -0.00893402099609375, -0.03570556640625, -0.06982421875, 0.032196044921875, 0.00606536865234375, 0.006313323974609375, -0.002765655517578125, 0.058197021484375, 0.0131378173828125, 0.03955078125, -0.0293121337890625, 0.00043511390686035156, 0.003753662109375, 0.004825592041015625, 0.0330810546875, 0.0533447265625, 0.057281494140625, -0.0689697265625, -0.028167724609375, -0.045074462890625, -0.0093536376953125, 0.01358795166015625, -0.01102447509765625, -0.0198974609375, 0.029052734375, 0.017425537109375, -0.0255889892578125, 0.039215087890625, 0.03533935546875, -0.05572509765625, 0.061431884765625, -0.015899658203125, 0.0210418701171875, -0.059539794921875, 0.0022945404052734375, 0.0006356239318847656, -0.0347900390625, 0.00968170166015625, 0.0007076263427734375, 0.029937744140625, 0.004070281982421875, -0.05511474609375, 0.0165557861328125, -0.022369384765625, -0.007015228271484375, -0.009185791015625, -0.042724609375, 0.022857666015625, 0.037445068359375, 0.00634765625, 0.071533203125, 0.0491943359375, -0.043670654296875, 0.0304718017578125, 0.00540924072265625, 0.0087738037109375, 0.047882080078125, -0.04443359375, 0.01009368896484375, 0.0341796875, 0.0014867782592773438, -0.057037353515625, 0.00371551513671875, 0.021148681640625, -0.027374267578125, 0.02734375, -0.01018524169921875, -0.036163330078125, -0.005840301513671875, -0.052886962890625, 0.041717529296875, 0.0338134765625, -0.0164337158203125, 0.020782470703125, 0.0091552734375, 0.041717529296875, -0.0167236328125, -0.0643310546875, -0.03076171875, -0.0081024169921875, -0.036041259765625, 0.055816650390625, -0.03131103515625, 0.003185272216796875, -0.023529052734375, -0.038665771484375, -0.031585693359375, 0.0115509033203125, 0.0242767333984375, 0.01788330078125, -0.0157318115234375, -0.004848480224609375, 0.018707275390625, -0.006954193115234375, 0.033599853515625, -0.01031494140625, 0.044525146484375, -0.045196533203125, -0.002109527587890625, -0.0280609130859375, 0.007442474365234375, 0.0094146728515625, 0.01507568359375, 0.055419921875, 0.0799560546875, -0.039459228515625, 0.01035308837890625, -0.03131103515625, -0.020599365234375, -0.038909912109375, 0.0220947265625, -0.04302978515625, -0.07489013671875, 0.0159759521484375, -0.003753662109375, -0.00243377685546875, 0.05560302734375, 0.01971435546875, -0.024383544921875, 0.0499267578125, 0.0333251953125, 0.0288543701171875, 0.048187255859375, -0.039306640625, -0.002689361572265625, -0.07574462890625, -0.0022678375244140625, -0.030609130859375, -0.02880859375, -0.054962158203125, -0.0046234130859375, 0.037750244140625, 0.04388427734375, -0.060791015625, 0.0108184814453125, -0.040191650390625, 0.03564453125, 0.042236328125, 0.0299835205078125, -0.0165252685546875, 0.014373779296875, -0.013671875, 0.0103759765625, -0.038055419921875, -0.001312255859375, 0.09930419921875, 0.0177459716796875, 0.032867431640625, -0.0049896240234375, 0.0587158203125, 0.005947113037109375, -0.034912109375, -0.038177490234375, 0.044189453125, -0.01175689697265625, -0.067626953125, -0.01343536376953125, -0.03167724609375, -0.041748046875, -0.01151275634765625, -0.02740478515625, -0.053314208984375, 0.0162811279296875, 0.0259246826171875, -0.047271728515625, 0.00748443603515625, -0.039581298828125, 0.07073974609375, -0.035980224609375, -0.0108642578125, -0.02459716796875, -0.054168701171875, 0.009307861328125, 0.0015506744384765625, -0.005764007568359375, -0.005031585693359375, -0.00585174560546875, 0.07177734375, -0.0271759033203125, 0.04736328125, -0.02398681640625, 0.022216796875, 0.0264739990234375, -0.0184326171875, 0.0271759033203125, 0.013458251953125, -0.002834320068359375, 0.045562744140625, 0.03363037109375, -0.0450439453125, 0.0018281936645507812, 0.03936767578125, -0.07342529296875, 0.002071380615234375, -0.0531005859375, -0.0182037353515625, -0.0150146484375, 0.0081024169921875, 0.0443115234375, 0.0203857421875, 0.00441741943359375, 0.02685546875, 0.0821533203125, 0.0167083740234375, 0.042327880859375, 0.03155517578125, -0.0097198486328125, -0.06927490234375, 0.0560302734375, 0.00588226318359375, 0.038116455078125, 0.030029296875, 0.0231475830078125, -0.0201416015625, -0.061676025390625, -0.02630615234375, 0.010589599609375, -0.025177001953125, -0.033447265625, -0.0141448974609375, -0.038970947265625, -0.051422119140625, 0.00435638427734375, -0.039276123046875, -0.052703857421875, -0.0305023193359375, -0.0127410888671875, 0.049407958984375, -0.004619598388671875, -0.02294921875, 0.060821533203125, -0.0748291015625, 0.0113372802734375, 0.0038013458251953125, 0.02545166015625, -0.023895263671875, -0.04638671875, -0.06451416015625, -0.001796722412109375, -0.06304931640625, -0.06195068359375, -0.0021877288818359375, 0.0217742919921875, 0.0267181396484375, 0.0389404296875, -0.00440216064453125, 0.0228271484375, -0.013427734375, 0.0445556640625, 0.01090240478515625, -0.078857421875, 0.040679931640625, -0.00806427001953125, 0.02569580078125, 0.058197021484375, 0.036956787109375, 0.0026035308837890625, 0.01421356201171875, -0.078857421875, -0.0692138671875, 0.050506591796875, 0.0193939208984375, -0.00742340087890625, 0.01165008544921875, 0.03485107421875, -0.0009450912475585938, 0.055419921875, -0.052978515625, -0.006649017333984375, -0.01259613037109375, -0.0024166107177734375, 0.031585693359375, -0.02191162109375, -0.00003325939178466797, -0.02606201171875, 0.08001708984375, -0.01134490966796875, 0.03912353515625, 0.01898193359375, -0.004608154296875, -0.0282135009765625, 0.0036258697509765625, 0.0245513916015625, 0.050872802734375, -0.0635986328125, 0.01081085205078125, 0.0009031295776367188, -0.0703125, 0.006137847900390625, 0.014404296875, -0.0182342529296875, -0.0216217041015625, 0.0013751983642578125, 0.0770263671875, 0.01076507568359375, -0.0213775634765625, 0.020263671875, -0.006076812744140625, -0.044342041015625, -0.04547119140625, 0.0345458984375, -0.0058441162109375, 0.032318115234375, 0.006591796875, 0.005619049072265625, 0.01267242431640625, -0.01275634765625, 0.009552001953125, 0.0283203125, -0.0233154296875, -0.0247039794921875, 0.0298309326171875, 0.03082275390625, -0.01605224609375, 0.0626220703125, -0.050872802734375, -0.027740478515625, 0.05718994140625, 0.0372314453125, 0.0780029296875, -0.0008416175842285156, 0.0030422210693359375, 0.0235748291015625, 0.014495849609375, -0.0021915435791015625, 0.07269287109375, -0.0216217041015625, -0.0765380859375, -0.020477294921875, -0.07440185546875, -0.016326904296875, 0.01479339599609375, -0.058807373046875, 0.016387939453125, -0.06610107421875, -0.03521728515625, 0.01226043701171875, 0.045867919921875, -0.05242919921875, 0.031158447265625, 0.0241546630859375, 0.08154296875, -0.05999755859375, 0.08697509765625, 0.06781005859375, -0.027435302734375, -0.05242919921875, -0.0166473388671875, -0.008697509765625, -0.050750732421875, 0.037445068359375, 0.004093170166015625, 0.019317626953125, 0.033294677734375, -0.0426025390625, -0.041290283203125, 0.09423828125, 0.02294921875, -0.05316162109375, 0.0122528076171875, 0.018463134765625, 0.0004968643188476562, -0.01073455810546875, 0.0169830322265625, 0.042236328125, 0.0233154296875, 0.01462554931640625, -0.06463623046875, 0.0065460205078125, 0.00133514404296875, -0.0139007568359375, 0.0479736328125, -0.0587158203125, 0.09161376953125, 0.0005502700805664062, 0.0299835205078125, -0.00616455078125, 0.034332275390625, 0.042816162109375, 0.0159454345703125, 0.05096435546875, 0.060577392578125, 0.0284881591796875, -0.00466156005859375, 0.029144287109375, -0.035125732421875, 0.052337646484375, 0.0689697265625, -0.006427764892578125, 0.052734375, 0.06793212890625, -0.048614501953125, 0.00907135009765625, 0.06304931640625, -0.019439697265625, 0.034393310546875, 0.0036373138427734375, -0.033355712890625, -0.0282135009765625, 0.022369384765625, -0.0268096923828125, 0.004421234130859375, 0.036834716796875, -0.019561767578125, -0.0029048919677734375, -0.0107574462890625, 0.007080078125, -0.05615234375, -0.0260162353515625, 0.0421142578125, 0.00397491455078125, -0.0121002197265625, 0.04461669921875, 0.005001068115234375, 0.06304931640625, -0.060272216796875, -0.0212860107421875, -0.0013427734375, 0.02215576171875, -0.0180206298828125, -0.052459716796875, 0.029144287109375, -0.01873779296875, -0.0323486328125, -0.01131439208984375, 0.0452880859375, -0.005870819091796875, -0.053558349609375, -0.00283050537109375, -0.00907135009765625, 0.0159149169921875, -0.049896240234375, -0.06646728515625, 0.0088348388671875, 0.0293121337890625, -0.036041259765625, 0.044830322265625, 0.05316162109375, 0.015655517578125, 0.01491546630859375, 0.0225372314453125, 0.00830078125, 0.01088714599609375, -0.0125885009765625, 0.04962158203125, -0.056243896484375, -0.043853759765625, -0.064208984375, 0.0364990234375, 0.00493621826171875, -0.042755126953125, 0.0255889892578125, 0.056854248046875, 0.08465576171875, 0.00865936279296875, 0.0278472900390625, -0.017974853515625, -0.0145263671875, -0.06005859375, 0.038818359375, -0.0140533447265625, 0.0007510185241699219, 0.0159454345703125, -0.04095458984375, 0.02490234375, 0.0655517578125, -0.0039520263671875, 0.005096435546875, 0.075927734375, 0.0285797119140625, -0.0093841552734375, 0.0211029052734375, 0.01416015625, 0.0147552490234375, 0.0017547607421875, 0.048797607421875, 0.00882720947265625, -0.064697265625, 0.0259246826171875, -0.06048583984375, -0.0252532958984375, -0.01052093505859375, -0.060272216796875, -0.03411865234375, -0.015838623046875, -0.051727294921875, -0.030914306640625, -0.006542205810546875, 0.060821533203125, 0.06292724609375, -0.057464599609375, -0.03167724609375, -0.0255279541015625, -0.00928497314453125, -0.0130157470703125, -0.0217132568359375, 0.0251007080078125, -0.00841522216796875, -0.0296783447265625, 0.0087890625, 0.007305145263671875, 0.02685546875, -0.0224456787109375, -0.0156097412109375, -0.033660888671875, -0.0052490234375, 0.0113067626953125, -0.0161590576171875, -0.003421783447265625, -0.01016998291015625, -0.0262603759765625, 0.0067138671875, 0.040008544921875, 0.037200927734375, -0.06256103515625, 0.0036983489990234375, 0.046112060546875, 0.0174560546875, 0.050567626953125, -0.02569580078125, 0.0229339599609375, -0.07080078125, 0.0250701904296875, 0.024810791015625, 0.02801513671875, -0.00740814208984375, -0.049041748046875, 0.031158447265625, 0.039215087890625, -0.05987548828125, -0.039520263671875, -0.0085296630859375, -0.08355712890625, -0.0033893585205078125, 0.052581787109375, -0.01029205322265625, -0.04095458984375, 0.0270233154296875, -0.01055145263671875, 0.0167236328125, -0.048187255859375, 0.02972412109375, 0.03778076171875, -0.04046630859375, -0.004329681396484375, -0.050506591796875, 0.0303955078125, 0.0183563232421875, -0.0479736328125, -0.054229736328125, 0.030364990234375, 0.035064697265625, 0.005855560302734375, 0.056854248046875, -0.005764007568359375, 0.024200439453125, 0.029266357421875, 0.0251312255859375, -0.01690673828125, -0.00592803955078125, -0.034759521484375, -0.0012416839599609375, 0.0025463104248046875, -0.06304931640625 ] ]
joseluhf11/disease_encoder_v3
2023-10-26T14:00:32.000Z
[ "sentence-transformers", "pytorch", "bert", "feature-extraction", "sentence-similarity", "transformers", "endpoints_compatible", "region:us" ]
sentence-similarity
joseluhf11
null
null
joseluhf11/disease_encoder_v3
0
2
sentence-transformers
2023-10-26T13:55:36
--- pipeline_tag: sentence-similarity tags: - sentence-transformers - feature-extraction - sentence-similarity - transformers --- # {MODEL_NAME} 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 sentences = ["This is an example sentence", "Each sentence is converted"] model = SentenceTransformer('{MODEL_NAME}') 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 = ['This is an example sentence', 'Each sentence is converted'] # Load model from HuggingFace Hub tokenizer = AutoTokenizer.from_pretrained('{MODEL_NAME}') model = AutoModel.from_pretrained('{MODEL_NAME}') # 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 --> 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 1863 with parameters: ``` {'batch_size': 32, '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": 0, "evaluator": "NoneType", "max_grad_norm": 1, "optimizer_class": "<class 'torch.optim.adamw.AdamW'>", "optimizer_params": { "lr": 2e-05 }, "scheduler": "WarmupLinear", "steps_per_epoch": null, "warmup_steps": 1863, "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 -->
3,789
[ [ -0.0193634033203125, -0.061248779296875, 0.022979736328125, 0.0232391357421875, -0.0193023681640625, -0.031646728515625, -0.0172882080078125, -0.00016772747039794922, 0.016082763671875, 0.02655029296875, -0.0472412109375, -0.047637939453125, -0.050079345703125, -0.0018491744995117188, -0.03082275390625, 0.06854248046875, -0.0131072998046875, -0.0048828125, -0.01141357421875, -0.0091094970703125, -0.02496337890625, -0.019927978515625, -0.0335693359375, -0.0252685546875, 0.01580810546875, 0.01340484619140625, 0.042755126953125, 0.041229248046875, 0.020233154296875, 0.0302276611328125, 0.0013113021850585938, 0.00818634033203125, -0.030609130859375, -0.0084075927734375, 0.005771636962890625, -0.031829833984375, -0.005344390869140625, 0.0240631103515625, 0.043731689453125, 0.0258941650390625, -0.01100921630859375, 0.0163726806640625, 0.00022995471954345703, 0.031280517578125, -0.0297393798828125, 0.0259857177734375, -0.038604736328125, 0.01122283935546875, 0.004302978515625, 0.0040435791015625, -0.0338134765625, -0.0168304443359375, 0.02545166015625, -0.031768798828125, 0.02691650390625, 0.02362060546875, 0.0897216796875, 0.033599853515625, -0.016754150390625, -0.0299530029296875, -0.01849365234375, 0.060272216796875, -0.069091796875, 0.016632080078125, 0.025238037109375, -0.0029354095458984375, -0.004100799560546875, -0.07373046875, -0.05682373046875, -0.006870269775390625, -0.036529541015625, 0.01544952392578125, -0.0284271240234375, 0.0023593902587890625, 0.01325225830078125, 0.0211334228515625, -0.05877685546875, -0.0062255859375, -0.036285400390625, -0.0203704833984375, 0.048583984375, 0.00910186767578125, 0.031829833984375, -0.043914794921875, -0.0310211181640625, -0.0265045166015625, -0.0017328262329101562, -0.00001722574234008789, 0.01262664794921875, 0.00913238525390625, -0.0201873779296875, 0.059661865234375, -0.007297515869140625, 0.050811767578125, -0.0009007453918457031, 0.0159759521484375, 0.050018310546875, -0.01544952392578125, -0.0287017822265625, -0.001430511474609375, 0.0858154296875, 0.0303802490234375, 0.0186614990234375, -0.002368927001953125, -0.0086822509765625, 0.0053558349609375, 0.01300811767578125, -0.0635986328125, -0.034332275390625, 0.02471923828125, -0.0340576171875, -0.0269012451171875, 0.0146484375, -0.0552978515625, -0.0003757476806640625, 0.006717681884765625, 0.062469482421875, -0.0501708984375, 0.00467681884765625, 0.0268707275390625, -0.0232391357421875, 0.0191192626953125, -0.0207672119140625, -0.053985595703125, 0.0170745849609375, 0.016265869140625, 0.0787353515625, 0.0009632110595703125, -0.0408935546875, -0.0236358642578125, -0.00782012939453125, 0.00609588623046875, 0.049835205078125, -0.0224761962890625, -0.00795745849609375, 0.0008273124694824219, 0.0186614990234375, -0.052764892578125, -0.0178680419921875, 0.046600341796875, -0.020904541015625, 0.06304931640625, 0.01007843017578125, -0.06561279296875, -0.0229949951171875, 0.013885498046875, -0.044403076171875, 0.09539794921875, 0.0235137939453125, -0.0751953125, 0.0135955810546875, -0.05975341796875, -0.0172882080078125, -0.006298065185546875, -0.0008983612060546875, -0.0587158203125, 0.00634002685546875, 0.038604736328125, 0.0567626953125, 0.003879547119140625, 0.01560211181640625, -0.0172576904296875, -0.036407470703125, 0.0227813720703125, -0.02178955078125, 0.08062744140625, 0.006984710693359375, -0.038330078125, 0.021881103515625, -0.046478271484375, 0.00001823902130126953, 0.027374267578125, -0.014190673828125, -0.0099639892578125, -0.006984710693359375, 0.0303955078125, 0.022857666015625, 0.0138092041015625, -0.04852294921875, 0.0123138427734375, -0.044189453125, 0.06103515625, 0.041534423828125, 0.0020656585693359375, 0.0292205810546875, -0.0274658203125, 0.0181121826171875, 0.0114288330078125, -0.004970550537109375, -0.003696441650390625, -0.0311431884765625, -0.07464599609375, -0.0244293212890625, 0.02410888671875, 0.040130615234375, -0.045989990234375, 0.077880859375, -0.0265655517578125, -0.04364013671875, -0.06463623046875, -0.0019369125366210938, 0.007671356201171875, 0.034637451171875, 0.04534912109375, -0.0002090930938720703, -0.039459228515625, -0.065185546875, -0.006725311279296875, 0.0006995201110839844, -0.0029582977294921875, 0.02044677734375, 0.05596923828125, -0.036285400390625, 0.07647705078125, -0.05718994140625, -0.0396728515625, -0.033294677734375, 0.0169525146484375, 0.0212249755859375, 0.043060302734375, 0.040679931640625, -0.0489501953125, -0.0286407470703125, -0.042236328125, -0.052764892578125, -0.0026302337646484375, -0.01325225830078125, -0.0156402587890625, 0.01316070556640625, 0.04107666015625, -0.06103515625, 0.032257080078125, 0.046417236328125, -0.05010986328125, 0.034515380859375, -0.020538330078125, -0.0097808837890625, -0.10089111328125, 0.00847625732421875, 0.0023021697998046875, -0.0142059326171875, -0.02606201171875, -0.0007734298706054688, 0.00734710693359375, -0.0084381103515625, -0.0302276611328125, 0.043487548828125, -0.03192138671875, 0.0139923095703125, -0.0081939697265625, 0.030517578125, 0.0046539306640625, 0.0499267578125, -0.0084381103515625, 0.0501708984375, 0.043975830078125, -0.040924072265625, 0.032073974609375, 0.04705810546875, -0.035369873046875, 0.008544921875, -0.0635986328125, 0.0028553009033203125, -0.006591796875, 0.0247955322265625, -0.09075927734375, -0.01763916015625, 0.0198211669921875, -0.043914794921875, 0.0020198822021484375, 0.0228271484375, -0.04913330078125, -0.0509033203125, -0.0316162109375, 0.007030487060546875, 0.037628173828125, -0.03961181640625, 0.04986572265625, 0.0160064697265625, 0.003421783447265625, -0.034576416015625, -0.06915283203125, -0.011749267578125, -0.021881103515625, -0.0577392578125, 0.042327880859375, -0.01116180419921875, 0.01629638671875, 0.01934814453125, 0.01454925537109375, 0.003574371337890625, -0.0012445449829101562, 0.0007596015930175781, 0.0229339599609375, 0.0019989013671875, 0.0112152099609375, 0.007312774658203125, -0.010040283203125, 0.00983428955078125, -0.0129241943359375, 0.0638427734375, -0.0137939453125, -0.00646209716796875, -0.035797119140625, 0.005992889404296875, 0.0292816162109375, -0.01849365234375, 0.08184814453125, 0.0848388671875, -0.033050537109375, -0.01453399658203125, -0.04656982421875, -0.019378662109375, -0.0355224609375, 0.047088623046875, -0.0134429931640625, -0.0675048828125, 0.03350830078125, 0.01861572265625, 0.0037384033203125, 0.0548095703125, 0.047027587890625, -0.00839996337890625, 0.0640869140625, 0.042877197265625, -0.016510009765625, 0.03924560546875, -0.0421142578125, 0.013885498046875, -0.06927490234375, -0.01009368896484375, -0.01806640625, -0.0290374755859375, -0.0469970703125, -0.029144287109375, 0.018768310546875, -0.0060272216796875, -0.0201568603515625, 0.045989990234375, -0.054901123046875, 0.018096923828125, 0.047760009765625, 0.0186004638671875, -0.006977081298828125, -0.005161285400390625, -0.0244293212890625, -0.003162384033203125, -0.0552978515625, -0.0325927734375, 0.0626220703125, 0.0306854248046875, 0.032867431640625, -0.016815185546875, 0.0526123046875, -9.5367431640625e-7, 0.0034809112548828125, -0.05877685546875, 0.038330078125, -0.00664520263671875, -0.035369873046875, -0.0277557373046875, -0.029541015625, -0.07073974609375, 0.037322998046875, -0.0171966552734375, -0.0609130859375, -0.00463104248046875, -0.01323699951171875, -0.0279693603515625, 0.0183868408203125, -0.059417724609375, 0.08538818359375, 0.003963470458984375, -0.002410888671875, -0.006244659423828125, -0.052703857421875, 0.0149383544921875, 0.01444244384765625, 0.006855010986328125, -0.0107269287109375, 0.003322601318359375, 0.07843017578125, -0.01549530029296875, 0.05963134765625, -0.0090179443359375, 0.02459716796875, 0.021881103515625, -0.017822265625, 0.022552490234375, -0.007808685302734375, -0.00902557373046875, 0.006259918212890625, -0.0025043487548828125, -0.02679443359375, -0.03900146484375, 0.0509033203125, -0.07379150390625, -0.02276611328125, -0.035980224609375, -0.052703857421875, -0.0022068023681640625, 0.021514892578125, 0.040435791015625, 0.0230865478515625, -0.01245880126953125, 0.0289306640625, 0.03961181640625, -0.0250091552734375, 0.05316162109375, 0.01197052001953125, -0.00896453857421875, -0.043243408203125, 0.04547119140625, 0.0005717277526855469, -0.005367279052734375, 0.01861572265625, 0.01947021484375, -0.0338134765625, -0.0191192626953125, -0.0275726318359375, 0.03759765625, -0.036346435546875, -0.01427459716796875, -0.0743408203125, -0.03753662109375, -0.0474853515625, -0.00677490234375, -0.0184478759765625, -0.019683837890625, -0.03753662109375, -0.0232086181640625, 0.0257720947265625, 0.032440185546875, 0.0090789794921875, 0.03631591796875, -0.05157470703125, 0.01056671142578125, 0.007110595703125, 0.01296234130859375, -0.01128387451171875, -0.05731201171875, -0.0250701904296875, -0.0066986083984375, -0.027801513671875, -0.06634521484375, 0.056121826171875, 0.01357269287109375, 0.0369873046875, 0.0095367431640625, 0.00501251220703125, 0.044219970703125, -0.038482666015625, 0.060546875, 0.0028438568115234375, -0.07757568359375, 0.04132080078125, -0.01012420654296875, 0.032806396484375, 0.032867431640625, 0.0212554931640625, -0.038818359375, -0.02410888671875, -0.060882568359375, -0.07568359375, 0.05828857421875, 0.043914794921875, 0.02410888671875, -0.010162353515625, 0.0267791748046875, -0.0234527587890625, 0.01221466064453125, -0.079345703125, -0.0308380126953125, -0.0248260498046875, -0.0479736328125, -0.0166015625, -0.011322021484375, 0.002368927001953125, -0.0300140380859375, 0.062408447265625, -0.0010557174682617188, 0.047943115234375, 0.0255126953125, -0.02789306640625, 0.01177215576171875, 0.007022857666015625, 0.028533935546875, 0.0143890380859375, -0.01444244384765625, 0.00322723388671875, 0.0211639404296875, -0.0308380126953125, -0.00368499755859375, 0.038116455078125, -0.00675201416015625, 0.01549530029296875, 0.028228759765625, 0.07269287109375, 0.0292816162109375, -0.033905029296875, 0.05462646484375, -0.006099700927734375, -0.0220947265625, -0.033050537109375, 0.00476837158203125, 0.015960693359375, 0.0220184326171875, 0.0158843994140625, -0.005413055419921875, 0.003612518310546875, -0.01971435546875, 0.0251617431640625, 0.0219879150390625, -0.0259552001953125, -0.0027713775634765625, 0.0577392578125, -0.0007276535034179688, -0.0143585205078125, 0.07220458984375, -0.0115966796875, -0.053070068359375, 0.03759765625, 0.044219970703125, 0.07159423828125, -0.001811981201171875, 0.0189361572265625, 0.039031982421875, 0.0271453857421875, -0.002681732177734375, 0.0023403167724609375, 0.01219940185546875, -0.0672607421875, -0.01186370849609375, -0.05426025390625, 0.0071868896484375, 0.0076141357421875, -0.05401611328125, 0.029388427734375, -0.0090484619140625, -0.0049285888671875, -0.00933074951171875, 0.010955810546875, -0.0587158203125, 0.0174407958984375, 0.00373077392578125, 0.0640869140625, -0.07330322265625, 0.06060791015625, 0.049957275390625, -0.050079345703125, -0.06573486328125, 0.0002453327178955078, -0.0147857666015625, -0.0703125, 0.0260162353515625, 0.04302978515625, 0.01412200927734375, 0.02667236328125, -0.044708251953125, -0.06915283203125, 0.10858154296875, 0.0181427001953125, -0.02667236328125, -0.021881103515625, -0.002780914306640625, 0.034637451171875, -0.0297088623046875, 0.0284271240234375, 0.04351806640625, 0.0242156982421875, -0.000027060508728027344, -0.05230712890625, 0.0179901123046875, -0.020843505859375, 0.01125335693359375, -0.00467681884765625, -0.0496826171875, 0.06396484375, -0.0037860870361328125, -0.01253509521484375, 0.0026226043701171875, 0.066650390625, 0.030120849609375, 0.0030078887939453125, 0.03472900390625, 0.060302734375, 0.05047607421875, -0.00913238525390625, 0.07000732421875, -0.0260162353515625, 0.06866455078125, 0.0670166015625, 0.0135650634765625, 0.07257080078125, 0.028167724609375, -0.00638580322265625, 0.05377197265625, 0.045135498046875, -0.0301971435546875, 0.042633056640625, 0.0122833251953125, 0.0038738250732421875, 0.001285552978515625, 0.020721435546875, -0.01348114013671875, 0.03631591796875, 0.01763916015625, -0.04937744140625, -0.0045166015625, 0.0095367431640625, 0.01415252685546875, -0.007633209228515625, 0.0031719207763671875, 0.046417236328125, 0.0026493072509765625, -0.033905029296875, 0.026123046875, 0.0135498046875, 0.0706787109375, -0.034393310546875, 0.016754150390625, 0.0071868896484375, 0.0272064208984375, -0.01155853271484375, -0.044189453125, 0.0281219482421875, -0.0179443359375, -0.006557464599609375, -0.00919342041015625, 0.045166015625, -0.047943115234375, -0.052215576171875, 0.024383544921875, 0.0335693359375, 0.00916290283203125, -0.003978729248046875, -0.07965087890625, 0.00814056396484375, 0.008636474609375, -0.05072021484375, 0.00612640380859375, 0.0201568603515625, 0.033203125, 0.04168701171875, 0.02899169921875, -0.009918212890625, 0.00791168212890625, 0.00518035888671875, 0.06561279296875, -0.05328369140625, -0.040496826171875, -0.07489013671875, 0.04864501953125, -0.016021728515625, -0.034454345703125, 0.056427001953125, 0.040496826171875, 0.06610107421875, -0.007808685302734375, 0.04339599609375, -0.02264404296875, 0.0219879150390625, -0.04510498046875, 0.072265625, -0.033447265625, -0.0062713623046875, -0.0240631103515625, -0.07257080078125, -0.01922607421875, 0.08233642578125, -0.0277557373046875, 0.010833740234375, 0.06829833984375, 0.058135986328125, -0.00864410400390625, -0.00017404556274414062, 0.01111602783203125, 0.028656005859375, 0.0220794677734375, 0.033203125, 0.01959228515625, -0.06549072265625, 0.046630859375, -0.03564453125, -0.013458251953125, -0.00719451904296875, -0.049835205078125, -0.0782470703125, -0.058135986328125, -0.0311126708984375, -0.0311126708984375, -0.01555633544921875, 0.083251953125, 0.0494384765625, -0.05169677734375, -0.006969451904296875, -0.0178070068359375, -0.0222320556640625, -0.010345458984375, -0.0278778076171875, 0.048553466796875, -0.039459228515625, -0.061859130859375, 0.01262664794921875, -0.0107269287109375, 0.0035915374755859375, -0.0215911865234375, 0.01247406005859375, -0.03564453125, 0.00914764404296875, 0.0379638671875, -0.0230712890625, -0.05474853515625, -0.01934814453125, 0.0017442703247070312, -0.0229949951171875, -0.005886077880859375, 0.02642822265625, -0.053741455078125, 0.02392578125, 0.0260467529296875, 0.039581298828125, 0.064697265625, -0.0100250244140625, 0.031951904296875, -0.056610107421875, 0.0127410888671875, 0.01078033447265625, 0.0496826171875, 0.029144287109375, -0.0306854248046875, 0.04205322265625, 0.022064208984375, -0.04742431640625, -0.044464111328125, -0.01171875, -0.07855224609375, -0.01947021484375, 0.08367919921875, -0.0204925537109375, -0.03204345703125, 0.0146331787109375, -0.025665283203125, 0.04022216796875, -0.022186279296875, 0.0643310546875, 0.068115234375, -0.014190673828125, -0.0164642333984375, -0.033782958984375, 0.0225067138671875, 0.035980224609375, -0.049560546875, -0.0132904052734375, 0.0217132568359375, 0.037322998046875, 0.0113677978515625, 0.0362548828125, -0.0000674128532409668, -0.0020427703857421875, 0.00023663043975830078, 0.007564544677734375, -0.00905609130859375, 0.00499725341796875, -0.026763916015625, 0.010986328125, -0.03680419921875, -0.03375244140625 ] ]
DanZter/finetuning-sentiment-model-3000-samples
2023-10-26T14:57:45.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-classification
DanZter
null
null
DanZter/finetuning-sentiment-model-3000-samples
0
2
transformers
2023-10-26T14:10:51
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer metrics: - accuracy - f1 model-index: - name: finetuning-sentiment-model-3000-samples 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. --> # finetuning-sentiment-model-3000-samples 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.0541 - Accuracy: 0.9886 - F1: 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: 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: 2 ### Training results ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,249
[ [ -0.046844482421875, -0.049774169921875, 0.0180511474609375, 0.0270538330078125, -0.0362548828125, -0.0196685791015625, -0.0247955322265625, 0.0025234222412109375, 0.01073455810546875, 0.016204833984375, -0.05804443359375, -0.05523681640625, -0.061553955078125, -0.004302978515625, -0.01418304443359375, 0.10894775390625, 0.017547607421875, 0.039520263671875, -0.00846099853515625, -0.0034275054931640625, -0.0221099853515625, -0.045501708984375, -0.059417724609375, -0.0384521484375, 0.030670166015625, 0.019317626953125, 0.05267333984375, 0.038726806640625, 0.04681396484375, 0.0229644775390625, -0.039093017578125, -0.0222320556640625, -0.051849365234375, -0.0266265869140625, -0.011810302734375, -0.04119873046875, -0.0626220703125, 0.02105712890625, 0.032470703125, 0.0404052734375, -0.022979736328125, 0.04180908203125, 0.0220489501953125, 0.04534912109375, -0.03759765625, 0.02825927734375, -0.04437255859375, 0.022186279296875, -0.006839752197265625, -0.0083770751953125, -0.0277099609375, -0.016937255859375, 0.012847900390625, -0.0311279296875, 0.037445068359375, -0.005695343017578125, 0.0794677734375, 0.02581787109375, -0.00936126708984375, -0.006801605224609375, -0.0416259765625, 0.04901123046875, -0.0672607421875, 0.004878997802734375, 0.0180511474609375, 0.0299224853515625, 0.0052642822265625, -0.044464111328125, -0.04449462890625, -0.005146026611328125, -0.00009989738464355469, 0.03009033203125, -0.0160369873046875, 0.01219940185546875, 0.0501708984375, 0.055877685546875, -0.01396942138671875, -0.0046539306640625, -0.0297088623046875, -0.01055908203125, 0.043731689453125, 0.0276641845703125, -0.025238037109375, -0.031219482421875, -0.0248870849609375, -0.01465606689453125, -0.00727081298828125, 0.01763916015625, 0.046417236328125, 0.034881591796875, -0.0256500244140625, 0.051910400390625, -0.031097412109375, 0.03900146484375, 0.0241546630859375, 0.0027027130126953125, 0.045135498046875, 0.01126861572265625, -0.03857421875, -0.006988525390625, 0.07403564453125, 0.056976318359375, 0.0284423828125, 0.015838623046875, -0.03350830078125, 0.0113372802734375, 0.01641845703125, -0.060791015625, -0.0345458984375, 0.00679779052734375, -0.04766845703125, -0.066162109375, 0.019500732421875, -0.049896240234375, -0.006282806396484375, -0.039276123046875, 0.037628173828125, -0.024688720703125, -0.0226287841796875, 0.0193939208984375, -0.01776123046875, 0.0076141357421875, 0.011077880859375, -0.047119140625, 0.02642822265625, 0.033355712890625, 0.04034423828125, 0.0097198486328125, -0.0112152099609375, -0.01352691650390625, -0.031982421875, -0.0156707763671875, 0.031494140625, -0.005191802978515625, -0.0360107421875, -0.002346038818359375, 0.0160369873046875, 0.01230621337890625, -0.0367431640625, 0.0751953125, -0.02178955078125, 0.02313232421875, -0.0222015380859375, -0.04010009765625, -0.0170745849609375, 0.04010009765625, -0.05291748046875, 0.0780029296875, 0.01715087890625, -0.06787109375, 0.026397705078125, -0.0458984375, -0.0171966552734375, -0.01276397705078125, 0.00787353515625, -0.046844482421875, 0.0243988037109375, -0.00380706787109375, 0.047882080078125, -0.01378631591796875, 0.0227508544921875, -0.0399169921875, -0.03582763671875, 0.0113372802734375, -0.048583984375, 0.0643310546875, 0.022186279296875, -0.030609130859375, -0.005573272705078125, -0.08282470703125, 0.01052093505859375, 0.0113067626953125, -0.039581298828125, -0.0146026611328125, -0.026519775390625, 0.03106689453125, 0.0267791748046875, 0.028350830078125, -0.053436279296875, 0.01183319091796875, -0.043609619140625, 0.01019287109375, 0.052642822265625, -0.0007195472717285156, 0.0155029296875, -0.01506805419921875, 0.0252227783203125, 0.043670654296875, 0.03173828125, 0.03125, -0.00621795654296875, -0.0833740234375, -0.00936126708984375, 0.0280609130859375, 0.03350830078125, -0.0239105224609375, 0.06060791015625, -0.0098114013671875, -0.05224609375, -0.039215087890625, 0.00836181640625, 0.031463623046875, 0.048736572265625, 0.036163330078125, -0.0227203369140625, -0.039764404296875, -0.07855224609375, -0.008514404296875, 0.006259918212890625, 0.015777587890625, -0.00421142578125, 0.0322265625, -0.0194549560546875, 0.066650390625, -0.05517578125, -0.02197265625, -0.0161285400390625, 0.010986328125, 0.045562744140625, 0.048828125, 0.044586181640625, -0.02728271484375, -0.0283660888671875, -0.027496337890625, -0.05389404296875, 0.0222320556640625, 0.0010700225830078125, -0.0212860107421875, -0.00518035888671875, 0.0183563232421875, -0.051483154296875, 0.038482666015625, 0.0232086181640625, -0.01123809814453125, 0.0361328125, -0.0093841552734375, -0.0185546875, -0.09393310546875, -0.0020885467529296875, 0.04351806640625, -0.01309967041015625, -0.01763916015625, -0.01438140869140625, -0.004302978515625, -0.0011720657348632812, -0.029083251953125, 0.0216522216796875, -0.006114959716796875, 0.025146484375, -0.01824951171875, -0.018341064453125, 0.013092041015625, 0.0579833984375, -0.0013246536254882812, 0.02423095703125, 0.0550537109375, -0.03759765625, 0.03436279296875, 0.0311737060546875, -0.0172271728515625, 0.0540771484375, -0.0692138671875, 0.0031585693359375, -0.0178680419921875, -0.002696990966796875, -0.06298828125, -0.00154876708984375, 0.03924560546875, -0.034210205078125, 0.023834228515625, -0.0093994140625, -0.027374267578125, -0.0355224609375, -0.0177001953125, -0.0011034011840820312, 0.045440673828125, -0.03546142578125, 0.029449462890625, 0.0002589225769042969, 0.01006317138671875, -0.05224609375, -0.0594482421875, -0.0214996337890625, -0.0164794921875, -0.0103759765625, 0.0007190704345703125, -0.01198577880859375, -0.007602691650390625, -0.005977630615234375, -0.00684356689453125, 0.00026035308837890625, -0.0038299560546875, 0.03338623046875, 0.0260772705078125, -0.009063720703125, -0.003753662109375, 0.01328277587890625, -0.018707275390625, 0.0330810546875, 0.0092315673828125, 0.03302001953125, -0.029144287109375, -0.0086517333984375, -0.05975341796875, -0.0000985264778137207, 0.037322998046875, -0.006420135498046875, 0.057281494140625, 0.05169677734375, -0.031036376953125, -0.00656890869140625, -0.03204345703125, -0.016845703125, -0.033660888671875, 0.04315185546875, -0.03631591796875, -0.0205230712890625, 0.041168212890625, -0.01099395751953125, -0.0025424957275390625, 0.07073974609375, 0.042144775390625, -0.01329803466796875, 0.102294921875, 0.0343017578125, -0.020721435546875, 0.0255584716796875, -0.05975341796875, 0.0017385482788085938, -0.05413818359375, -0.0233917236328125, -0.028564453125, -0.0260009765625, -0.053192138671875, 0.0176544189453125, 0.00351715087890625, 0.026214599609375, -0.041961669921875, 0.0177459716796875, -0.046417236328125, 0.02532958984375, 0.055419921875, 0.029022216796875, 0.00662994384765625, 0.01110076904296875, -0.0197906494140625, 0.0004525184631347656, -0.047210693359375, -0.045013427734375, 0.08111572265625, 0.054901123046875, 0.06414794921875, -0.0187225341796875, 0.052398681640625, 0.01171112060546875, 0.01910400390625, -0.06622314453125, 0.039703369140625, -0.01384735107421875, -0.050628662109375, -0.004650115966796875, -0.0221099853515625, -0.031829833984375, -0.0009584426879882812, -0.033538818359375, -0.016571044921875, 0.00804901123046875, 0.018463134765625, -0.036163330078125, 0.01140594482421875, -0.0394287109375, 0.08001708984375, -0.0155181884765625, -0.01708984375, -0.0161285400390625, -0.045318603515625, 0.006317138671875, 0.0212554931640625, -0.01328277587890625, -0.01739501953125, 0.03369140625, 0.054412841796875, -0.035308837890625, 0.064697265625, -0.046478271484375, 0.019561767578125, 0.0271453857421875, -0.0068817138671875, 0.0294189453125, 0.0228424072265625, -0.0208587646484375, 0.021026611328125, 0.003513336181640625, -0.030517578125, -0.0260772705078125, 0.05413818359375, -0.08514404296875, -0.015106201171875, -0.045318603515625, -0.027679443359375, -0.01558685302734375, 0.00884246826171875, 0.047332763671875, 0.050079345703125, -0.026763916015625, 0.017120361328125, 0.03900146484375, 0.0035610198974609375, 0.0202178955078125, 0.0160064697265625, -0.0008249282836914062, -0.040374755859375, 0.056976318359375, -0.01035308837890625, 0.011077880859375, -0.004299163818359375, 0.0202789306640625, -0.033447265625, -0.0267181396484375, -0.030181884765625, 0.01456451416015625, -0.07061767578125, -0.029205322265625, -0.02960205078125, -0.0328369140625, -0.0232696533203125, 0.0159912109375, -0.0390625, -0.017425537109375, -0.04876708984375, -0.03302001953125, 0.0362548828125, 0.0440673828125, -0.0017108917236328125, 0.05889892578125, -0.046478271484375, -0.0006957054138183594, 0.01195526123046875, 0.042266845703125, 0.004238128662109375, -0.055389404296875, -0.030059814453125, 0.02825927734375, -0.0355224609375, -0.044403076171875, 0.029541015625, 0.0038299560546875, 0.0360107421875, 0.0408935546875, 0.002170562744140625, 0.057708740234375, -0.01448822021484375, 0.050811767578125, 0.0240325927734375, -0.0582275390625, 0.031890869140625, -0.0228424072265625, 0.018402099609375, 0.069091796875, 0.0418701171875, -0.01174163818359375, -0.0245513916015625, -0.07861328125, -0.054107666015625, 0.05413818359375, 0.00673675537109375, 0.03485107421875, -0.005390167236328125, 0.0355224609375, -0.0021839141845703125, 0.033935546875, -0.07147216796875, -0.040679931640625, -0.039886474609375, -0.03668212890625, -0.01531982421875, -0.03192138671875, -0.0187835693359375, -0.050872802734375, 0.07379150390625, 0.0017290115356445312, 0.01320648193359375, 0.010345458984375, 0.00611114501953125, -0.009185791015625, 0.01093292236328125, 0.0282440185546875, 0.022247314453125, -0.0462646484375, -0.001605987548828125, 0.0176544189453125, -0.03399658203125, -0.00789642333984375, 0.01885986328125, -0.007534027099609375, 0.0171966552734375, 0.002292633056640625, 0.08367919921875, -0.005931854248046875, -0.0015974044799804688, 0.049224853515625, -0.014373779296875, -0.0272979736328125, -0.045379638671875, 0.00592803955078125, -0.00362396240234375, 0.018585205078125, 0.0080718994140625, 0.047760009765625, 0.0167236328125, -0.0142974853515625, 0.0037689208984375, 0.0246124267578125, -0.0645751953125, -0.0235137939453125, 0.044708251953125, 0.01514434814453125, -0.007781982421875, 0.05560302734375, -0.0214080810546875, -0.0235137939453125, 0.038482666015625, 0.02435302734375, 0.06646728515625, 0.00655364990234375, 0.0094451904296875, 0.053924560546875, -0.000576019287109375, -0.024688720703125, 0.045440673828125, 0.02081298828125, -0.050201416015625, -0.01093292236328125, -0.0697021484375, -0.00901031494140625, 0.03192138671875, -0.08935546875, 0.036224365234375, -0.047210693359375, -0.046112060546875, 0.009979248046875, 0.0024261474609375, -0.07464599609375, 0.05389404296875, 0.01265716552734375, 0.08673095703125, -0.07940673828125, 0.04754638671875, 0.04901123046875, -0.045013427734375, -0.0849609375, -0.01271820068359375, -0.00780487060546875, -0.0413818359375, 0.043792724609375, 0.016998291015625, 0.00572967529296875, 0.025146484375, -0.049591064453125, -0.0262908935546875, 0.0648193359375, 0.012786865234375, -0.058349609375, 0.00704193115234375, 0.0200958251953125, 0.056884765625, -0.0211944580078125, 0.037872314453125, 0.03228759765625, 0.0073394775390625, 0.00814056396484375, -0.05157470703125, -0.01299285888671875, -0.031341552734375, 0.007427215576171875, -0.005207061767578125, -0.045989990234375, 0.07855224609375, 0.01305389404296875, 0.0258941650390625, 0.01142120361328125, 0.050689697265625, 0.004970550537109375, 0.01175689697265625, 0.040374755859375, 0.07183837890625, 0.0305023193359375, -0.0149078369140625, 0.0670166015625, -0.03558349609375, 0.06658935546875, 0.08367919921875, 0.00424957275390625, 0.054718017578125, 0.0355224609375, -0.0146026611328125, 0.032928466796875, 0.0556640625, -0.023345947265625, 0.048614501953125, 0.01971435546875, -0.00925445556640625, -0.024810791015625, 0.009002685546875, -0.0318603515625, 0.037628173828125, 0.0016565322875976562, -0.059356689453125, -0.016876220703125, -0.006557464599609375, 0.006839752197265625, -0.0028820037841796875, -0.040771484375, 0.052337646484375, -0.0005259513854980469, -0.033935546875, 0.045257568359375, 0.010406494140625, 0.05963134765625, -0.030853271484375, 0.003131866455078125, -0.00960540771484375, 0.046051025390625, -0.021881103515625, -0.05474853515625, 0.0192413330078125, -0.0032634735107421875, -0.025054931640625, -0.0022869110107421875, 0.03521728515625, -0.02850341796875, -0.0694580078125, 0.005519866943359375, 0.0330810546875, 0.00469207763671875, -0.014251708984375, -0.0823974609375, -0.00977325439453125, -0.0007119178771972656, -0.043731689453125, 0.0007066726684570312, 0.03369140625, 0.017608642578125, 0.0211334228515625, 0.03594970703125, 0.003955841064453125, -0.0160369873046875, 0.03155517578125, 0.0784912109375, -0.03955078125, -0.03802490234375, -0.07763671875, 0.0567626953125, -0.02752685546875, -0.050811767578125, 0.054046630859375, 0.0631103515625, 0.0743408203125, -0.0309600830078125, 0.05682373046875, 0.0019435882568359375, 0.044281005859375, -0.0202178955078125, 0.059326171875, -0.031951904296875, -0.007171630859375, -0.03369140625, -0.06890869140625, 0.0014581680297851562, 0.064453125, -0.0190277099609375, 0.00872039794921875, 0.03424072265625, 0.055633544921875, -0.00966644287109375, 0.00894927978515625, 0.007114410400390625, 0.0134735107421875, -0.003757476806640625, 0.01519775390625, 0.051361083984375, -0.06121826171875, 0.0239715576171875, -0.056976318359375, -0.01385498046875, -0.0029544830322265625, -0.0616455078125, -0.08160400390625, -0.02508544921875, -0.0308380126953125, -0.046844482421875, -0.0183868408203125, 0.0789794921875, 0.048919677734375, -0.058837890625, -0.0176544189453125, -0.0079803466796875, -0.039154052734375, -0.0108795166015625, -0.0188140869140625, 0.016693115234375, -0.01470947265625, -0.05987548828125, -0.019683837890625, -0.022552490234375, 0.0234832763671875, -0.023712158203125, -0.00923919677734375, 0.0009050369262695312, -0.016998291015625, 0.030731201171875, -0.0118865966796875, -0.040618896484375, -0.0215911865234375, 0.0049285888671875, -0.022918701171875, 0.01201629638671875, 0.0160369873046875, -0.038360595703125, 0.0199737548828125, 0.0203399658203125, 0.014984130859375, 0.03594970703125, 0.01009368896484375, 0.025299072265625, -0.06689453125, 0.029998779296875, 0.016998291015625, 0.036529541015625, 0.021453857421875, -0.03460693359375, 0.0215911865234375, 0.026763916015625, -0.03106689453125, -0.046478271484375, -0.01036834716796875, -0.09112548828125, 0.0129241943359375, 0.08428955078125, 0.003009796142578125, -0.02630615234375, 0.035308837890625, -0.0382080078125, 0.04119873046875, -0.0283203125, 0.0511474609375, 0.058990478515625, 0.0042724609375, 0.002216339111328125, -0.03289794921875, 0.046173095703125, 0.029815673828125, -0.0390625, -0.0145416259765625, 0.034820556640625, 0.041412353515625, 0.0040283203125, 0.024383544921875, -0.0068206787109375, 0.0098114013671875, -0.0029697418212890625, 0.03466796875, -0.0237579345703125, -0.0157928466796875, -0.034881591796875, 0.0018301010131835938, 0.0252227783203125, -0.037506103515625 ] ]
MFedor/distilbert-base-uncased-finetuned-cola
2023-10-26T15:18:13.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:glue", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
text-classification
MFedor
null
null
MFedor/distilbert-base-uncased-finetuned-cola
0
2
transformers
2023-10-26T15:04:02
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - glue metrics: - matthews_correlation model-index: - name: distilbert-base-uncased-finetuned-cola results: - task: name: Text Classification type: text-classification dataset: name: glue type: glue config: cola split: validation args: cola metrics: - name: Matthews Correlation type: matthews_correlation value: 0.5366931756163555 --- <!-- 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-cola This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the glue dataset. It achieves the following results on the evaluation set: - Loss: 0.7682 - Matthews Correlation: 0.5367 ## 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 ### Training results | Training Loss | Epoch | Step | Validation Loss | Matthews Correlation | |:-------------:|:-----:|:----:|:---------------:|:--------------------:| | 0.5205 | 1.0 | 535 | 0.4616 | 0.4935 | | 0.3458 | 2.0 | 1070 | 0.4893 | 0.5162 | | 0.225 | 3.0 | 1605 | 0.6210 | 0.5177 | | 0.1758 | 4.0 | 2140 | 0.7682 | 0.5367 | | 0.1224 | 5.0 | 2675 | 0.8429 | 0.5354 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
2,078
[ [ -0.022003173828125, -0.048736572265625, 0.0109100341796875, 0.0169677734375, -0.022247314453125, -0.00926971435546875, -0.006687164306640625, -0.003574371337890625, 0.0226287841796875, 0.01031494140625, -0.046630859375, -0.036956787109375, -0.06207275390625, -0.005565643310546875, -0.007106781005859375, 0.0875244140625, 0.01338958740234375, 0.026153564453125, -0.019683837890625, 0.01104736328125, -0.04034423828125, -0.042816162109375, -0.04022216796875, -0.050933837890625, 0.0084075927734375, 0.024261474609375, 0.0736083984375, 0.06658935546875, 0.04931640625, 0.016937255859375, -0.040313720703125, -0.006252288818359375, -0.05999755859375, -0.03619384765625, 0.0099945068359375, -0.031982421875, -0.056427001953125, 0.00582122802734375, 0.03564453125, 0.050079345703125, -0.0204620361328125, 0.0302581787109375, 0.0157470703125, 0.04412841796875, -0.04632568359375, 0.0343017578125, -0.041839599609375, 0.017333984375, -0.0098724365234375, -0.026641845703125, -0.037445068359375, 0.0010957717895507812, 0.007213592529296875, -0.04644775390625, 0.032958984375, 0.00246429443359375, 0.09210205078125, 0.027618408203125, -0.032257080078125, -0.0053863525390625, -0.049468994140625, 0.049957275390625, -0.03704833984375, 0.02301025390625, 0.0263671875, 0.0271148681640625, -0.0135650634765625, -0.061492919921875, -0.0238494873046875, -0.0035457611083984375, -0.01197052001953125, 0.0180206298828125, -0.018280029296875, 0.004184722900390625, 0.0452880859375, 0.044281005859375, -0.046173095703125, 0.002025604248046875, -0.05084228515625, -0.0185089111328125, 0.044952392578125, 0.033966064453125, -0.0202789306640625, 0.00013053417205810547, -0.05194091796875, -0.0152587890625, -0.022857666015625, 0.021331787109375, 0.030029296875, 0.0255126953125, -0.025238037109375, 0.04180908203125, -0.0203857421875, 0.05859375, 0.0292205810546875, -0.026336669921875, 0.048919677734375, 0.01113128662109375, -0.041839599609375, 0.009124755859375, 0.057891845703125, 0.04046630859375, 0.0195770263671875, 0.0039005279541015625, -0.01558685302734375, -0.00615692138671875, 0.0093841552734375, -0.0775146484375, -0.04327392578125, 0.00914764404296875, -0.03765869140625, -0.037261962890625, 0.02227783203125, -0.032928466796875, 0.005962371826171875, -0.03704833984375, 0.0251617431640625, -0.026702880859375, -0.00620269775390625, 0.02203369140625, -0.0118255615234375, 0.00994110107421875, 0.00818634033203125, -0.07220458984375, 0.03271484375, 0.0367431640625, 0.042144775390625, -0.001636505126953125, -0.01776123046875, -0.02105712890625, 0.0036716461181640625, -0.0233306884765625, 0.0394287109375, -0.01392364501953125, -0.030242919921875, -0.01290130615234375, 0.01922607421875, -0.01140594482421875, -0.037017822265625, 0.0506591796875, -0.025238037109375, 0.01227569580078125, -0.016357421875, -0.04852294921875, -0.009674072265625, 0.0251617431640625, -0.047821044921875, 0.0848388671875, 0.0140533447265625, -0.062042236328125, 0.04736328125, -0.0229034423828125, -0.01250457763671875, -0.0011091232299804688, -0.00836181640625, -0.061859130859375, 0.0027618408203125, 0.00476837158203125, 0.0335693359375, -0.030975341796875, 0.038330078125, -0.040924072265625, -0.04217529296875, 0.0008702278137207031, -0.04022216796875, 0.07989501953125, 0.0171356201171875, -0.02325439453125, 0.0007219314575195312, -0.08837890625, 0.01448822021484375, 0.02655029296875, -0.0367431640625, 0.0088653564453125, -0.045166015625, 0.022064208984375, 0.01312255859375, 0.027862548828125, -0.03363037109375, 0.017425537109375, -0.016082763671875, 0.016693115234375, 0.04547119140625, 0.00494384765625, 0.01019287109375, -0.02337646484375, 0.0234832763671875, 0.0307769775390625, 0.035003662109375, 0.01541900634765625, -0.041290283203125, -0.06011962890625, -0.0246429443359375, 0.0214080810546875, 0.031707763671875, -0.021942138671875, 0.055511474609375, -0.00592803955078125, -0.055755615234375, -0.0163726806640625, 0.006923675537109375, 0.037200927734375, 0.0611572265625, 0.0303192138671875, -0.00798797607421875, -0.033477783203125, -0.08770751953125, 0.0118255615234375, -0.0036106109619140625, 0.0147247314453125, 0.0007200241088867188, 0.0465087890625, -0.005645751953125, 0.0780029296875, -0.068115234375, -0.0178985595703125, 0.00319671630859375, 0.00641632080078125, 0.048004150390625, 0.04913330078125, 0.06005859375, -0.043304443359375, -0.0389404296875, -0.0182342529296875, -0.05975341796875, 0.0211181640625, 0.0007390975952148438, -0.01406097412109375, -0.01055908203125, 0.0193634033203125, -0.04608154296875, 0.050445556640625, 0.0248260498046875, -0.0289459228515625, 0.05322265625, -0.03082275390625, -0.00567626953125, -0.08331298828125, 0.0186614990234375, 0.007568359375, -0.0032253265380859375, -0.0316162109375, -0.01507568359375, 0.0090179443359375, -0.0186767578125, -0.040679931640625, 0.031036376953125, -0.0355224609375, 0.01519775390625, -0.0124359130859375, -0.033477783203125, 0.010955810546875, 0.0628662109375, 0.01171112060546875, 0.04205322265625, 0.059295654296875, -0.0281982421875, 0.0311737060546875, 0.033905029296875, -0.0159454345703125, 0.032928466796875, -0.067626953125, 0.0086669921875, -0.008270263671875, 0.005481719970703125, -0.06463623046875, -0.01091766357421875, 0.0194854736328125, -0.03173828125, 0.030120849609375, -0.0253753662109375, -0.017852783203125, -0.03179931640625, -0.01538848876953125, 0.0135345458984375, 0.039764404296875, -0.037750244140625, 0.0208740234375, 0.0066375732421875, 0.0211639404296875, -0.051849365234375, -0.058380126953125, -0.0267486572265625, -0.0252532958984375, -0.037933349609375, 0.0199737548828125, -0.01512908935546875, 0.00592803955078125, -0.0106201171875, -0.01084136962890625, -0.03173828125, -0.004749298095703125, 0.03350830078125, 0.0278778076171875, -0.01189422607421875, -0.0122833251953125, -0.0006222724914550781, -0.025634765625, 0.018280029296875, 0.005954742431640625, 0.038116455078125, -0.023284912109375, -0.0183868408203125, -0.05694580078125, -0.0055389404296875, 0.040313720703125, -0.0043182373046875, 0.06732177734375, 0.041839599609375, -0.03759765625, 0.004634857177734375, -0.0292205810546875, -0.0147705078125, -0.034027099609375, 0.0286712646484375, -0.04339599609375, -0.0260467529296875, 0.05072021484375, 0.0002722740173339844, -0.0082550048828125, 0.06683349609375, 0.045806884765625, 0.0035572052001953125, 0.07586669921875, 0.0212554931640625, 0.00014090538024902344, 0.00811767578125, -0.0645751953125, -0.005706787109375, -0.043121337890625, -0.03851318359375, -0.03302001953125, -0.018280029296875, -0.0374755859375, -0.0021648406982421875, 0.01512908935546875, 0.0288238525390625, -0.04815673828125, 0.033660888671875, -0.0430908203125, 0.033172607421875, 0.05047607421875, 0.028472900390625, 0.009063720703125, 0.0095672607421875, -0.0213623046875, -0.0084075927734375, -0.06494140625, -0.031982421875, 0.0843505859375, 0.04193115234375, 0.06866455078125, -0.0156097412109375, 0.050140380859375, 0.005382537841796875, 0.011260986328125, -0.046661376953125, 0.0215606689453125, 0.005084991455078125, -0.068603515625, -0.006061553955078125, -0.0263671875, -0.0531005859375, 0.0107574462890625, -0.03265380859375, -0.04443359375, 0.0249786376953125, 0.035064697265625, -0.0288238525390625, 0.021087646484375, -0.047576904296875, 0.08038330078125, -0.0257110595703125, -0.0311431884765625, 0.00844573974609375, -0.041900634765625, 0.01434326171875, 0.006610870361328125, -0.0243682861328125, -0.001148223876953125, 0.0292510986328125, 0.05780029296875, -0.041656494140625, 0.04925537109375, -0.022735595703125, 0.025115966796875, 0.037750244140625, -0.006778717041015625, 0.045318603515625, 0.0206298828125, -0.005374908447265625, 0.02191162109375, -0.0013036727905273438, -0.036651611328125, -0.03485107421875, 0.046661376953125, -0.0697021484375, -0.01995849609375, -0.052825927734375, -0.042816162109375, -0.0065460205078125, 0.0185699462890625, 0.046173095703125, 0.040771484375, -0.00806427001953125, 0.0333251953125, 0.036102294921875, 0.01090240478515625, 0.0186767578125, 0.02105712890625, 0.004276275634765625, -0.04156494140625, 0.055816650390625, -0.0042266845703125, 0.01377105712890625, 0.00799560546875, 0.015960693359375, -0.032958984375, -0.038330078125, -0.032440185546875, 0.01629638671875, -0.06048583984375, -0.023590087890625, -0.0209808349609375, -0.0325927734375, -0.034332275390625, -0.004001617431640625, -0.044403076171875, -0.0289459228515625, -0.055938720703125, -0.01560211181640625, 0.025177001953125, 0.038726806640625, 0.00988006591796875, 0.04608154296875, -0.041656494140625, -0.01093292236328125, 0.01145172119140625, 0.03253173828125, -0.0004761219024658203, -0.057403564453125, -0.025665283203125, 0.0126800537109375, -0.045684814453125, -0.052215576171875, 0.032470703125, 0.0081024169921875, 0.047088623046875, 0.0543212890625, -0.0035877227783203125, 0.080810546875, -0.023956298828125, 0.047210693359375, 0.037139892578125, -0.0406494140625, 0.0321044921875, -0.0184326171875, 0.013336181640625, 0.0540771484375, 0.05548095703125, 0.007717132568359375, 0.0024318695068359375, -0.0828857421875, -0.047576904296875, 0.058502197265625, 0.03118896484375, -0.01345062255859375, -0.005146026611328125, 0.01812744140625, -0.00885009765625, 0.018951416015625, -0.060272216796875, -0.045745849609375, -0.0167694091796875, -0.00635528564453125, -0.004364013671875, -0.03106689453125, -0.0147857666015625, -0.043731689453125, 0.07061767578125, -0.0030231475830078125, 0.01416778564453125, 0.00395965576171875, 0.003387451171875, -0.00749969482421875, -0.01145172119140625, 0.039306640625, 0.0633544921875, -0.06329345703125, -0.00868988037109375, 0.0143280029296875, -0.036895751953125, -0.002231597900390625, 0.0173492431640625, -0.0015106201171875, 0.007801055908203125, 0.0265350341796875, 0.0748291015625, 0.0090179443359375, -0.01491546630859375, 0.041259765625, -0.00428009033203125, -0.031707763671875, -0.036224365234375, 0.0031490325927734375, -0.0030574798583984375, 0.01474761962890625, 0.022979736328125, 0.02227783203125, 0.01273345947265625, -0.02081298828125, 0.020050048828125, 0.0191650390625, -0.054901123046875, -0.0179290771484375, 0.06097412109375, 0.0034351348876953125, -0.015838623046875, 0.06488037109375, -0.01242828369140625, -0.01552581787109375, 0.06439208984375, 0.048309326171875, 0.052520751953125, -0.005970001220703125, -0.00865936279296875, 0.057159423828125, 0.006725311279296875, -0.008270263671875, 0.0250091552734375, 0.01910400390625, -0.02752685546875, -0.0031890869140625, -0.05584716796875, -0.00711822509765625, 0.0355224609375, -0.08966064453125, 0.04351806640625, -0.032684326171875, -0.037567138671875, 0.0171966552734375, 0.0063629150390625, -0.069091796875, 0.037261962890625, 0.005863189697265625, 0.08526611328125, -0.08697509765625, 0.057281494140625, 0.045257568359375, -0.039154052734375, -0.069580078125, -0.0299224853515625, -0.0008134841918945312, -0.06536865234375, 0.06304931640625, 0.005229949951171875, 0.021881103515625, -0.0052642822265625, -0.0271148681640625, -0.06494140625, 0.09112548828125, 0.037811279296875, -0.052886962890625, 0.0018892288208007812, 0.034088134765625, 0.047027587890625, -0.0189361572265625, 0.052276611328125, 0.02947998046875, 0.0090484619140625, 0.035186767578125, -0.0799560546875, -0.01009368896484375, -0.0228424072265625, 0.01139068603515625, 0.0059967041015625, -0.055816650390625, 0.0888671875, -0.00392913818359375, 0.0214996337890625, -0.0004417896270751953, 0.05108642578125, 0.028106689453125, 0.0188140869140625, 0.033966064453125, 0.07269287109375, 0.039154052734375, -0.0113067626953125, 0.06256103515625, -0.044281005859375, 0.0750732421875, 0.0875244140625, 0.0023136138916015625, 0.03204345703125, 0.03424072265625, -0.0224456787109375, 0.0157470703125, 0.06195068359375, -0.0232696533203125, 0.038177490234375, 0.018890380859375, 0.00955963134765625, -0.027618408203125, 0.0157318115234375, -0.048095703125, 0.034271240234375, 0.0014190673828125, -0.042724609375, -0.0234527587890625, -0.0169830322265625, 0.00836181640625, -0.0130615234375, -0.0189666748046875, 0.037200927734375, -0.01529693603515625, -0.028472900390625, 0.07647705078125, -0.0108642578125, 0.028594970703125, -0.0450439453125, -0.0177001953125, -0.01026153564453125, 0.038543701171875, -0.0249786376953125, -0.052764892578125, 0.0194091796875, -0.0101776123046875, -0.0234222412109375, 0.0003848075866699219, 0.03216552734375, -0.0249176025390625, -0.06329345703125, 0.011505126953125, 0.011505126953125, 0.017852783203125, 0.003131866455078125, -0.07354736328125, 0.0010099411010742188, 0.00321197509765625, -0.036590576171875, 0.01102447509765625, 0.0169677734375, 0.00531768798828125, 0.044189453125, 0.04229736328125, -0.007083892822265625, 0.003070831298828125, 0.00015473365783691406, 0.0828857421875, -0.030487060546875, -0.044281005859375, -0.05517578125, 0.048980712890625, -0.017120361328125, -0.061859130859375, 0.047088623046875, 0.09552001953125, 0.06329345703125, -0.0304412841796875, 0.0235595703125, 0.00012385845184326172, 0.0198974609375, -0.03289794921875, 0.049072265625, -0.03338623046875, -0.006717681884765625, -0.0254974365234375, -0.072509765625, -0.00530242919921875, 0.04608154296875, -0.01418304443359375, 0.00836944580078125, 0.036590576171875, 0.055450439453125, -0.01971435546875, -0.00023984909057617188, 0.01226806640625, 0.0014028549194335938, 0.0175018310546875, 0.041961669921875, 0.02825927734375, -0.062347412109375, 0.03851318359375, -0.054534912109375, -0.02459716796875, -0.01187896728515625, -0.061187744140625, -0.08038330078125, -0.035247802734375, -0.03558349609375, -0.0294342041015625, 0.00026345252990722656, 0.0667724609375, 0.07275390625, -0.05816650390625, -0.032135009765625, 0.00397491455078125, -0.033721923828125, -0.020782470703125, -0.0179290771484375, 0.041900634765625, -0.006450653076171875, -0.05633544921875, 0.0012073516845703125, -0.015716552734375, 0.02203369140625, -0.004032135009765625, -0.018157958984375, -0.0214080810546875, -0.032470703125, 0.02020263671875, 0.003509521484375, -0.027801513671875, -0.01470947265625, -0.001796722412109375, 0.0021953582763671875, 0.0223236083984375, 0.0218048095703125, -0.034698486328125, 0.035400390625, 0.02557373046875, 0.01837158203125, 0.06146240234375, 0.006755828857421875, 0.0117950439453125, -0.06451416015625, 0.04229736328125, 0.0191650390625, 0.03826904296875, -0.00040340423583984375, -0.03643798828125, 0.03564453125, 0.031982421875, -0.0426025390625, -0.060516357421875, -0.0177764892578125, -0.093505859375, 0.0038280487060546875, 0.073486328125, -0.005893707275390625, -0.031890869140625, 0.02398681640625, -0.0082855224609375, 0.02130126953125, -0.02520751953125, 0.04632568359375, 0.05023193359375, -0.0173797607421875, 0.013641357421875, -0.0224761962890625, 0.034759521484375, 0.013824462890625, -0.0386962890625, -0.005771636962890625, 0.0254058837890625, 0.04034423828125, 0.0193634033203125, 0.0273284912109375, -0.00818634033203125, 0.01517486572265625, 0.016387939453125, 0.0105133056640625, -0.04168701171875, -0.03863525390625, -0.0201568603515625, 0.00429534912109375, 0.007335662841796875, -0.034912109375 ] ]
sniperyyc/NetFID-PCAP-IP-Header
2023-10-26T17:41:08.000Z
[ "transformers", "pytorch", "bert", "fill-mask", "generated_from_trainer", "autotrain_compatible", "endpoints_compatible", "region:us" ]
fill-mask
sniperyyc
null
null
sniperyyc/NetFID-PCAP-IP-Header
0
2
transformers
2023-10-26T15:13:50
--- tags: - generated_from_trainer metrics: - accuracy model-index: - name: NetFID-PCAP-IP-Header 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. --> # NetFID-PCAP-IP-Header This model is a train-from-scratch version of [bert-base-uncased](https://huggingface.co/bert-base-uncased) on a mixed-source PCAP dataset. It achieves the following results on the evaluation set: - Loss: 0.8973 - Accuracy: 0.7592 ## Model description Pretrained model with [bert-base-uncased](https://huggingface.co/bert-base-uncased) (110M parameters) as the base architecture. ## Intended uses & limitations This model is mainly used to get embeddings for PCAP IPv4 header data, which can be further used for ML-based tasks e.g., classification, clustering, etc. ## How to use The usage is almost the same as regular BERT models, except that the input data is PCAP traces. ## Training and evaluation data TBD. ## Training procedure TBD. ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-05 - train_batch_size: 32 - eval_batch_size: 32 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results ### Framework versions - Transformers 4.31.0.dev0 - Pytorch 2.0.1+cu117 - Datasets 2.13.0 - Tokenizers 0.13.3
1,483
[ [ -0.0367431640625, -0.03704833984375, -0.0011167526245117188, 0.0245819091796875, -0.0389404296875, -0.021270751953125, -0.00450897216796875, -0.02911376953125, 0.027740478515625, 0.033477783203125, -0.041351318359375, -0.0235443115234375, -0.048370361328125, -0.013702392578125, -0.01355743408203125, 0.09051513671875, 0.00560760498046875, 0.01861572265625, -0.01081085205078125, 0.0196990966796875, -0.038726806640625, -0.06768798828125, -0.05389404296875, -0.039581298828125, 0.021240234375, 0.0152587890625, 0.028594970703125, 0.0382080078125, 0.056640625, 0.018218994140625, -0.0167236328125, -0.007205963134765625, -0.037506103515625, -0.04437255859375, 0.004917144775390625, -0.0286712646484375, -0.07177734375, 0.0197296142578125, 0.05322265625, 0.04461669921875, -0.01454925537109375, 0.0206756591796875, 0.0053558349609375, 0.0220184326171875, -0.0298614501953125, 0.0203094482421875, -0.060211181640625, 0.030670166015625, -0.0146331787109375, -0.028167724609375, -0.043670654296875, 0.0005388259887695312, 0.0249481201171875, -0.033477783203125, 0.028045654296875, -0.0120697021484375, 0.09454345703125, 0.0115966796875, -0.01953125, 0.0133819580078125, -0.036407470703125, 0.0487060546875, -0.06622314453125, 0.0185546875, 0.03802490234375, 0.040374755859375, -0.00612640380859375, -0.064697265625, -0.040557861328125, -0.018829345703125, 0.0070648193359375, 0.0183868408203125, -0.0047760009765625, 0.008087158203125, 0.03521728515625, 0.0110015869140625, -0.030670166015625, 0.014312744140625, -0.0491943359375, -0.01812744140625, 0.03790283203125, 0.00731658935546875, -0.0073394775390625, -0.006153106689453125, -0.055633544921875, -0.00909423828125, -0.041778564453125, 0.01328277587890625, 0.04595947265625, 0.038177490234375, -0.0308685302734375, 0.04681396484375, -0.00572967529296875, 0.052520751953125, 0.012115478515625, -0.0070343017578125, 0.05242919921875, 0.0079498291015625, -0.03790283203125, -0.003692626953125, 0.042999267578125, 0.03338623046875, 0.01270294189453125, -0.0052947998046875, -0.011260986328125, -0.0140228271484375, 0.0390625, -0.06170654296875, -0.034423828125, 0.01099395751953125, -0.06329345703125, -0.044189453125, 0.00823211669921875, -0.03765869140625, 0.019927978515625, -0.0306243896484375, 0.0338134765625, -0.025115966796875, -0.0169525146484375, 0.0024166107177734375, -0.0230712890625, 0.04522705078125, 0.025909423828125, -0.0445556640625, 0.0250396728515625, 0.032073974609375, 0.03759765625, -0.008575439453125, -0.031219482421875, -0.0093536376953125, -0.006320953369140625, -0.01226043701171875, 0.054931640625, -0.01226806640625, -0.01910400390625, -0.0189208984375, 0.022918701171875, -0.013458251953125, -0.0249481201171875, 0.0552978515625, -0.038421630859375, 0.017608642578125, -0.02099609375, -0.04815673828125, -0.0135955810546875, 0.027557373046875, -0.038726806640625, 0.06634521484375, -0.0059967041015625, -0.0660400390625, 0.0361328125, -0.06298828125, -0.00882720947265625, 0.01204681396484375, 0.0021648406982421875, -0.04888916015625, -0.0014333724975585938, -0.004974365234375, 0.03717041015625, -0.00337982177734375, 0.035003662109375, -0.040802001953125, -0.03656005859375, -0.0012083053588867188, -0.04803466796875, 0.0919189453125, 0.010711669921875, -0.0304107666015625, -0.00687408447265625, -0.07354736328125, 0.016387939453125, 0.0156707763671875, -0.0438232421875, 0.01232147216796875, -0.0033168792724609375, 0.031707763671875, 0.0177154541015625, 0.0272979736328125, -0.06268310546875, 0.0122222900390625, -0.0088348388671875, 0.01512908935546875, 0.06207275390625, -0.00922393798828125, -0.01129150390625, -0.0183258056640625, 0.01134490966796875, 0.0037670135498046875, 0.026947021484375, 0.02197265625, -0.06103515625, -0.044891357421875, -0.0292816162109375, 0.033355712890625, 0.03369140625, -0.0301666259765625, 0.0726318359375, -0.0082244873046875, -0.052825927734375, -0.008270263671875, -0.01715087890625, 0.0189208984375, 0.049774169921875, 0.03466796875, -0.04180908203125, -0.032684326171875, -0.072509765625, 0.0217742919921875, -0.01172637939453125, -0.00002658367156982422, 0.022491455078125, 0.0462646484375, -0.0232086181640625, 0.059661865234375, -0.032501220703125, -0.010467529296875, -0.0204010009765625, 0.0228729248046875, 0.022491455078125, 0.07159423828125, 0.0657958984375, -0.033477783203125, -0.0234527587890625, -0.0140380859375, -0.04656982421875, 0.006496429443359375, -0.014129638671875, -0.020660400390625, -0.01373291015625, 0.014556884765625, -0.04046630859375, 0.06561279296875, 0.021087646484375, -0.03277587890625, 0.054534912109375, -0.029266357421875, -0.0171661376953125, -0.06951904296875, 0.031463623046875, -0.004161834716796875, -0.0049896240234375, -0.03704833984375, 0.0147857666015625, -0.0028057098388671875, -0.0245361328125, -0.039520263671875, 0.0253143310546875, -0.00885772705078125, 0.0023708343505859375, -0.0316162109375, -0.043731689453125, 3.5762786865234375e-7, 0.062286376953125, 0.0299072265625, 0.033782958984375, 0.034088134765625, -0.037506103515625, 0.01520538330078125, 0.031402587890625, -0.007259368896484375, 0.038177490234375, -0.07342529296875, 0.006557464599609375, -0.0101318359375, 0.016387939453125, -0.0682373046875, -0.006374359130859375, 0.03399658203125, -0.03631591796875, 0.02825927734375, -0.0168609619140625, -0.032257080078125, -0.033843994140625, -0.004947662353515625, 0.0302581787109375, 0.03704833984375, -0.059051513671875, 0.035125732421875, 0.017822265625, 0.02484130859375, -0.048095703125, -0.062744140625, -0.0016450881958007812, 0.001239776611328125, -0.027618408203125, 0.048492431640625, -0.0239105224609375, 0.022918701171875, -0.005001068115234375, 0.0083465576171875, -0.054718017578125, 0.00028324127197265625, 0.017303466796875, 0.023834228515625, -0.0029296875, -0.0094146728515625, 0.0014247894287109375, -0.0029430389404296875, 0.0276336669921875, 0.0022258758544921875, 0.03509521484375, -0.0018892288208007812, -0.0291748046875, -0.0594482421875, 0.0153350830078125, 0.0237884521484375, -0.01165771484375, 0.0548095703125, 0.05908203125, -0.03411865234375, -0.004665374755859375, -0.0341796875, -0.015716552734375, -0.0335693359375, 0.0204620361328125, -0.0287322998046875, -0.0251617431640625, 0.04583740234375, 0.01010894775390625, 0.014129638671875, 0.053009033203125, 0.027435302734375, -0.024444580078125, 0.054718017578125, 0.041412353515625, -0.0019073486328125, 0.0277252197265625, -0.048095703125, -0.0012445449829101562, -0.0615234375, -0.0251007080078125, -0.03570556640625, -0.0272064208984375, -0.055633544921875, -0.01036834716796875, 0.004581451416015625, -0.0033016204833984375, -0.034088134765625, 0.034088134765625, -0.039459228515625, 0.021484375, 0.06243896484375, 0.038970947265625, -0.02777099609375, 0.017364501953125, -0.0220184326171875, 0.0031299591064453125, -0.06707763671875, -0.01885986328125, 0.11328125, 0.0487060546875, 0.034332275390625, -0.01361083984375, 0.04644775390625, 0.0157012939453125, 0.0189971923828125, -0.022308349609375, 0.0390625, -0.00527191162109375, -0.06866455078125, 0.0056610107421875, -0.0299530029296875, -0.06353759765625, 0.0018892288208007812, -0.030914306640625, -0.048370361328125, 0.04119873046875, 0.0241546630859375, -0.01001739501953125, 0.047576904296875, -0.047576904296875, 0.07672119140625, -0.0226898193359375, -0.0186614990234375, -0.00988006591796875, -0.0589599609375, 0.02117919921875, 0.00583648681640625, -0.0384521484375, 0.005329132080078125, 0.028167724609375, 0.06304931640625, -0.055084228515625, 0.07958984375, -0.04443359375, 0.034423828125, 0.03656005859375, -0.038421630859375, 0.0355224609375, -0.01184844970703125, -0.0042877197265625, 0.049896240234375, -0.007228851318359375, -0.056854248046875, -0.002033233642578125, 0.041534423828125, -0.09320068359375, -0.00644683837890625, -0.043243408203125, -0.0264434814453125, 0.0002677440643310547, 0.01306915283203125, 0.033538818359375, 0.044769287109375, -0.0085296630859375, 0.0293426513671875, 0.0467529296875, -0.0213165283203125, 0.036529541015625, 0.0162506103515625, 0.01259613037109375, -0.033599853515625, 0.062744140625, -0.004047393798828125, 0.0097808837890625, 0.0156402587890625, -0.005863189697265625, -0.01247406005859375, -0.05120849609375, -0.01184844970703125, 0.010467529296875, -0.042449951171875, -0.0201873779296875, -0.033477783203125, -0.046600341796875, -0.0188140869140625, 0.0128173828125, -0.0338134765625, -0.0247802734375, -0.040985107421875, -0.0140533447265625, 0.008270263671875, 0.0265350341796875, -0.0168914794921875, 0.06982421875, -0.03240966796875, 0.01029205322265625, 0.0201263427734375, 0.041839599609375, 0.00600433349609375, -0.054779052734375, -0.016632080078125, 0.0029144287109375, -0.03424072265625, -0.05401611328125, 0.040985107421875, 0.0037326812744140625, 0.060882568359375, 0.0377197265625, -0.01361083984375, 0.0589599609375, -0.0384521484375, 0.062103271484375, 0.015472412109375, -0.048095703125, 0.01416015625, -0.017425537109375, 0.01517486572265625, 0.043975830078125, 0.034210205078125, 0.0187835693359375, 0.00547027587890625, -0.0750732421875, -0.05426025390625, 0.0458984375, 0.024688720703125, 0.01451873779296875, -0.005802154541015625, 0.036956787109375, -0.0018787384033203125, 0.0260467529296875, -0.0831298828125, -0.031890869140625, -0.0396728515625, 0.0110931396484375, 0.0107574462890625, -0.03228759765625, -0.0018663406372070312, -0.054229736328125, 0.071044921875, 0.00034165382385253906, 0.076416015625, 0.015838623046875, 0.01235198974609375, 0.0013513565063476562, -0.0221405029296875, 0.046630859375, 0.059814453125, -0.067626953125, -0.017669677734375, -0.0034885406494140625, -0.046356201171875, -0.0149078369140625, 0.0244140625, 0.00705718994140625, 0.018951416015625, 0.0275421142578125, 0.0670166015625, -0.01020050048828125, -0.0228729248046875, 0.046142578125, -0.0189208984375, -0.041229248046875, -0.038970947265625, -0.0159912109375, -0.011138916015625, -0.00923919677734375, 0.018524169921875, 0.033233642578125, -0.0032405853271484375, -0.01004791259765625, 0.0299530029296875, 0.03717041015625, -0.0163421630859375, -0.0289459228515625, 0.048309326171875, 0.0218353271484375, -0.00905609130859375, 0.065673828125, -0.01971435546875, -0.02691650390625, 0.06463623046875, 0.047637939453125, 0.0701904296875, -0.00666046142578125, 0.0092010498046875, 0.03564453125, 0.031524658203125, 0.017669677734375, 0.04498291015625, -0.0019292831420898438, -0.06134033203125, -0.03631591796875, -0.0379638671875, -0.015716552734375, 0.040191650390625, -0.068115234375, 0.0249176025390625, -0.057830810546875, -0.0303192138671875, 0.01558685302734375, 0.006275177001953125, -0.07867431640625, 0.03778076171875, 0.0087127685546875, 0.0980224609375, -0.0743408203125, 0.078125, 0.045166015625, -0.0181121826171875, -0.06622314453125, -0.0086669921875, -0.0249176025390625, -0.060882568359375, 0.06866455078125, 0.0020847320556640625, 0.040374755859375, -0.00583648681640625, -0.055084228515625, -0.053070068359375, 0.0648193359375, 0.0156707763671875, -0.0273590087890625, 0.00519561767578125, 0.0163421630859375, 0.0433349609375, -0.0311431884765625, 0.053192138671875, 0.000732421875, 0.0130767822265625, 0.013397216796875, -0.07122802734375, -0.025634765625, -0.03118896484375, 0.0015974044799804688, -0.00634765625, -0.0469970703125, 0.0892333984375, 0.012420654296875, 0.03216552734375, 0.0005474090576171875, 0.034423828125, 0.0201568603515625, 0.0107574462890625, 0.026824951171875, 0.06866455078125, 0.03338623046875, 0.00307464599609375, 0.06390380859375, -0.032135009765625, 0.03125, 0.09246826171875, -0.004413604736328125, 0.06732177734375, 0.039459228515625, -0.01189422607421875, 0.03912353515625, 0.060882568359375, -0.027496337890625, 0.052642822265625, 0.00972747802734375, 0.005706787109375, -0.016510009765625, 0.0158233642578125, -0.046417236328125, 0.04595947265625, 0.00392913818359375, -0.0560302734375, -0.034759521484375, -0.01499176025390625, -0.0174102783203125, -0.02874755859375, -0.020294189453125, 0.037841796875, -0.0259246826171875, -0.022430419921875, 0.045166015625, 0.0162811279296875, 0.03509521484375, -0.048004150390625, -0.0288543701171875, -0.0018568038940429688, 0.00820159912109375, -0.002696990966796875, -0.028533935546875, 0.025115966796875, -0.0045318603515625, -0.0113525390625, -0.01276397705078125, 0.045806884765625, -0.007328033447265625, -0.058502197265625, 0.01096343994140625, 0.016448974609375, 0.03265380859375, 0.0111846923828125, -0.08343505859375, -0.00010353326797485352, 0.0108184814453125, -0.0036411285400390625, 0.0204010009765625, 0.01154327392578125, 0.01503753662109375, 0.036834716796875, 0.055999755859375, 0.01230621337890625, 0.0081329345703125, -0.0166778564453125, 0.0728759765625, -0.0362548828125, -0.046356201171875, -0.038787841796875, 0.047576904296875, -0.01885986328125, -0.05218505859375, 0.0279998779296875, 0.0528564453125, 0.0740966796875, -0.0232086181640625, 0.043426513671875, -0.0108642578125, 0.028076171875, -0.01666259765625, 0.047454833984375, -0.0213165283203125, 0.01206207275390625, -0.0189666748046875, -0.06317138671875, -0.006687164306640625, 0.0615234375, -0.0109100341796875, 0.006862640380859375, 0.0303192138671875, 0.036346435546875, -0.0288238525390625, 0.00363922119140625, 0.0090179443359375, 0.0011720657348632812, 0.0247802734375, 0.031494140625, 0.032135009765625, -0.053314208984375, 0.01300048828125, -0.038726806640625, -0.029571533203125, -0.00836181640625, -0.0782470703125, -0.08837890625, -0.01593017578125, -0.033538818359375, -0.00830078125, 0.00946044921875, 0.07720947265625, 0.07647705078125, -0.057708740234375, -0.034820556640625, -0.01953125, -0.0206298828125, -0.0245208740234375, -0.016387939453125, 0.031768798828125, -0.02093505859375, -0.0306243896484375, 0.00675201416015625, -0.0293121337890625, 0.02813720703125, -0.008544921875, 0.001712799072265625, -0.03564453125, -0.01503753662109375, 0.0291748046875, 0.017852783203125, -0.040740966796875, -0.0291290283203125, -0.020416259765625, 0.013214111328125, 0.01329803466796875, 0.020233154296875, -0.05694580078125, 0.0361328125, 0.0277099609375, 0.048004150390625, 0.044830322265625, -0.0007219314575195312, 0.043426513671875, -0.07000732421875, 0.0300445556640625, 0.0139007568359375, 0.032135009765625, -0.00292205810546875, -0.032684326171875, 0.0247955322265625, 0.034912109375, -0.0426025390625, -0.06866455078125, -0.0208282470703125, -0.08612060546875, -0.009063720703125, 0.049560546875, -0.02569580078125, -0.0243377685546875, 0.021209716796875, -0.002674102783203125, 0.002758026123046875, -0.0126953125, 0.051910400390625, 0.03704833984375, -0.01030731201171875, 0.0003857612609863281, -0.03271484375, 0.029632568359375, 0.0201873779296875, -0.060638427734375, -0.0217132568359375, 0.0173492431640625, 0.034027099609375, 0.004505157470703125, 0.03399658203125, 0.00037360191345214844, 0.027313232421875, 0.002346038818359375, 0.044219970703125, -0.0204620361328125, -0.03790283203125, -0.0137481689453125, 0.01502227783203125, -0.0031108856201171875, -0.0487060546875 ] ]
Nguyens/fine-tuning-distilbert
2023-10-28T04:31:27.000Z
[ "transformers", "pytorch", "distilbert", "fill-mask", "generated_from_trainer", "dataset:imdb", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
fill-mask
Nguyens
null
null
Nguyens/fine-tuning-distilbert
0
2
transformers
2023-10-26T15:31:31
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - imdb model-index: - name: fine-tuning-distilbert 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. --> # fine-tuning-distilbert This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the imdb dataset. It achieves the following results on the evaluation set: - Loss: 2.0806 ## 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: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 2.2831 | 1.0 | 157 | 2.0897 | | 2.1738 | 2.0 | 314 | 1.9164 | | 2.1779 | 3.0 | 471 | 2.0064 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,433
[ [ -0.043701171875, -0.044219970703125, 0.01032257080078125, 0.0027904510498046875, -0.0328369140625, -0.0111846923828125, -0.0023956298828125, -0.001239776611328125, 0.004669189453125, 0.023406982421875, -0.0626220703125, -0.035858154296875, -0.0645751953125, -0.006103515625, -0.02740478515625, 0.09857177734375, 0.006130218505859375, 0.0303955078125, -0.0017795562744140625, -0.0004074573516845703, -0.026123046875, -0.04632568359375, -0.0482177734375, -0.041900634765625, 0.0225067138671875, 0.031982421875, 0.0615234375, 0.07354736328125, 0.05853271484375, 0.015167236328125, -0.0280914306640625, 0.00095367431640625, -0.058074951171875, -0.035247802734375, -0.0236663818359375, -0.015472412109375, -0.044189453125, 0.0016489028930664062, 0.04754638671875, 0.037689208984375, -0.0254669189453125, 0.040924072265625, 0.01126861572265625, 0.05419921875, -0.043792724609375, 0.023162841796875, -0.052398681640625, 0.01227569580078125, -0.0189056396484375, -0.0241546630859375, -0.011962890625, 0.006443023681640625, -0.004913330078125, -0.032867431640625, 0.04193115234375, 0.014862060546875, 0.08843994140625, 0.04132080078125, -0.0270843505859375, 0.00362396240234375, -0.05914306640625, 0.04010009765625, -0.047760009765625, 0.0131683349609375, 0.03155517578125, 0.03790283203125, -0.00548553466796875, -0.04791259765625, -0.039215087890625, -0.013336181640625, -0.005199432373046875, -0.0002760887145996094, -0.01335906982421875, 0.015655517578125, 0.0673828125, 0.054046630859375, -0.0262603759765625, 0.01505279541015625, -0.05328369140625, -0.015655517578125, 0.041748046875, 0.038726806640625, -0.0322265625, -0.00827789306640625, -0.0275421142578125, -0.016876220703125, -0.0206146240234375, 0.0176544189453125, 0.045166015625, 0.01020050048828125, -0.0182647705078125, 0.049835205078125, -0.0293426513671875, 0.048828125, 0.0243072509765625, -0.007328033447265625, 0.0288848876953125, -0.00185394287109375, -0.0288848876953125, 0.01100921630859375, 0.0484619140625, 0.0643310546875, 0.0261993408203125, 0.0176239013671875, -0.0235748291015625, -0.003032684326171875, 0.023162841796875, -0.0853271484375, -0.033477783203125, 0.007808685302734375, -0.034271240234375, -0.03851318359375, 0.01611328125, -0.033477783203125, -0.005382537841796875, -0.03741455078125, 0.033416748046875, -0.031280517578125, -0.0140838623046875, 0.00952911376953125, -0.016357421875, 0.0164794921875, 0.0114593505859375, -0.07696533203125, 0.02520751953125, 0.0274810791015625, 0.0455322265625, 0.0142974853515625, -0.023101806640625, -0.024322509765625, 0.004795074462890625, -0.00843048095703125, 0.0235595703125, -0.004688262939453125, -0.030792236328125, -0.01477813720703125, 0.0221099853515625, 0.004100799560546875, -0.0419921875, 0.06451416015625, -0.01531219482421875, -0.0018682479858398438, -0.0106201171875, -0.036468505859375, -0.0103302001953125, 0.031097412109375, -0.05419921875, 0.08001708984375, 0.015899658203125, -0.05816650390625, 0.044189453125, -0.034942626953125, -0.00801849365234375, -0.0166473388671875, -0.002838134765625, -0.05718994140625, 0.0163726806640625, 0.0122833251953125, 0.04205322265625, -0.032257080078125, 0.037445068359375, -0.034271240234375, -0.052734375, -0.005352020263671875, -0.0408935546875, 0.05426025390625, 0.0224609375, -0.02911376953125, -0.0074310302734375, -0.093994140625, 0.01251220703125, 0.016998291015625, -0.036773681640625, 0.0015811920166015625, -0.0233612060546875, 0.02215576171875, 0.0165557861328125, 0.01690673828125, -0.037109375, 0.00957489013671875, -0.0160980224609375, 0.023529052734375, 0.045379638671875, 0.00711822509765625, 0.000980377197265625, -0.0312347412109375, 0.01299285888671875, 0.038604736328125, 0.038177490234375, 0.007732391357421875, -0.014373779296875, -0.067626953125, -0.01727294921875, 0.01554107666015625, 0.027191162109375, -0.0159912109375, 0.0552978515625, -0.0058746337890625, -0.049102783203125, -0.0293731689453125, 0.0103912353515625, 0.03363037109375, 0.055572509765625, 0.034576416015625, -0.0168609619140625, -0.039337158203125, -0.0970458984375, 0.0040130615234375, -0.0013837814331054688, 0.018035888671875, -0.001728057861328125, 0.043853759765625, -0.0210113525390625, 0.05841064453125, -0.039093017578125, -0.016845703125, -0.0006427764892578125, -0.0048980712890625, 0.051055908203125, 0.0633544921875, 0.048858642578125, -0.0296478271484375, -0.023223876953125, -0.015625, -0.054779052734375, 0.0244598388671875, -0.0027294158935546875, -0.0216064453125, -0.026031494140625, 0.031982421875, -0.0293426513671875, 0.05230712890625, 0.0173187255859375, -0.0183868408203125, 0.04547119140625, -0.03375244140625, 0.0065155029296875, -0.08526611328125, 0.00843048095703125, 0.0185546875, -0.0049591064453125, -0.011871337890625, -0.0137176513671875, 0.013519287109375, -0.008331298828125, -0.0304107666015625, 0.02740478515625, -0.01800537109375, 0.0176544189453125, -0.012969970703125, -0.03436279296875, 0.0146331787109375, 0.061309814453125, -0.00531768798828125, 0.033416748046875, 0.05230712890625, -0.049224853515625, 0.033782958984375, 0.02606201171875, -0.033416748046875, 0.049285888671875, -0.06817626953125, -0.0014772415161132812, -0.0243072509765625, -0.008331298828125, -0.05291748046875, -0.0138092041015625, 0.01654052734375, -0.015289306640625, 0.035858154296875, -0.03363037109375, -0.026580810546875, -0.02996826171875, -0.01239776611328125, 0.01273345947265625, 0.032501220703125, -0.038360595703125, 0.0127716064453125, 0.0030765533447265625, 0.0189208984375, -0.0506591796875, -0.052459716796875, -0.0187835693359375, -0.030059814453125, -0.0264892578125, 0.0271759033203125, -0.005367279052734375, -0.00919342041015625, -0.00835418701171875, -0.0124664306640625, -0.0238189697265625, 0.0007534027099609375, 0.03485107421875, 0.024169921875, -0.00525665283203125, -0.011962890625, 0.024993896484375, -0.01995849609375, 0.01311492919921875, 0.00475311279296875, 0.026031494140625, -0.01226043701171875, -0.02130126953125, -0.052734375, 0.0087127685546875, 0.049102783203125, -0.01111602783203125, 0.06396484375, 0.05450439453125, -0.0380859375, 0.00420379638671875, -0.032440185546875, -0.016845703125, -0.032135009765625, 0.052734375, -0.039520263671875, -0.0217132568359375, 0.0465087890625, -0.01168060302734375, 0.0092315673828125, 0.0743408203125, 0.04168701171875, -0.008209228515625, 0.08282470703125, 0.0280609130859375, -0.00024056434631347656, 0.0290374755859375, -0.07080078125, -0.0114898681640625, -0.05816650390625, -0.02996826171875, -0.035308837890625, -0.033416748046875, -0.04681396484375, 0.0060272216796875, 0.02642822265625, 0.0367431640625, -0.0562744140625, 0.027435302734375, -0.047943115234375, 0.044708251953125, 0.054931640625, 0.0261993408203125, 0.01340484619140625, 0.005786895751953125, -0.0230712890625, -0.00567626953125, -0.04473876953125, -0.037811279296875, 0.08807373046875, 0.035552978515625, 0.07867431640625, -0.0037631988525390625, 0.049285888671875, 0.017913818359375, 0.0016679763793945312, -0.03875732421875, 0.0189208984375, -0.00041747093200683594, -0.07513427734375, -0.0164337158203125, -0.015777587890625, -0.036529541015625, 0.01131439208984375, -0.0310821533203125, -0.043365478515625, 0.0286865234375, 0.029296875, -0.0294647216796875, 0.022369384765625, -0.048858642578125, 0.08038330078125, -0.0285186767578125, -0.036376953125, -0.022705078125, -0.04180908203125, 0.01800537109375, -0.00015234947204589844, -0.0202484130859375, -0.016845703125, 0.030670166015625, 0.04937744140625, -0.05267333984375, 0.04083251953125, -0.033111572265625, 0.034332275390625, 0.0216064453125, -0.01010894775390625, 0.04681396484375, 0.032745361328125, -0.0217132568359375, 0.0253143310546875, 0.013671875, -0.032806396484375, -0.032257080078125, 0.06170654296875, -0.07598876953125, -0.022369384765625, -0.04705810546875, -0.0335693359375, -0.0069122314453125, 0.011627197265625, 0.05035400390625, 0.054229736328125, -0.01404571533203125, 0.0239715576171875, 0.035888671875, 0.00885009765625, 0.0253143310546875, 0.0226898193359375, 0.00605010986328125, -0.0367431640625, 0.04364013671875, 0.00034356117248535156, 0.012115478515625, 0.003582000732421875, 0.0028438568115234375, -0.037445068359375, -0.0521240234375, -0.05230712890625, 0.01256561279296875, -0.061920166015625, -0.019073486328125, -0.023590087890625, -0.032958984375, -0.01367950439453125, 0.01117706298828125, -0.0325927734375, -0.0293731689453125, -0.042999267578125, -0.02960205078125, 0.034637451171875, 0.036651611328125, 0.0028133392333984375, 0.0489501953125, -0.046539306640625, -0.0009074211120605469, 0.00732421875, 0.037567138671875, -0.00502777099609375, -0.06781005859375, -0.049835205078125, 0.01160430908203125, -0.043426513671875, -0.039215087890625, 0.0221710205078125, 0.0268096923828125, 0.052734375, 0.040435791015625, 0.00040602684020996094, 0.0787353515625, -0.0299530029296875, 0.037261962890625, 0.0233612060546875, -0.04290771484375, 0.0367431640625, -0.01373291015625, 0.0169219970703125, 0.0709228515625, 0.041900634765625, 0.00792694091796875, 0.0004012584686279297, -0.07122802734375, -0.048614501953125, 0.06951904296875, 0.0243377685546875, 0.006114959716796875, 0.00826263427734375, 0.03350830078125, 0.00037384033203125, 0.0293426513671875, -0.053436279296875, -0.041168212890625, -0.026336669921875, -0.004840850830078125, -0.01361846923828125, -0.030059814453125, -0.0164794921875, -0.058319091796875, 0.0718994140625, -0.00012373924255371094, 0.007904052734375, 0.00786590576171875, -0.0012912750244140625, -0.010498046875, -0.005458831787109375, 0.031402587890625, 0.0521240234375, -0.0665283203125, -0.0038394927978515625, 0.0091400146484375, -0.0328369140625, 0.004985809326171875, 0.0275726318359375, 0.004425048828125, 0.01024627685546875, 0.01329803466796875, 0.08843994140625, 0.0013322830200195312, -0.024169921875, 0.025390625, -0.00960540771484375, -0.0229034423828125, -0.034881591796875, 0.0183868408203125, -0.0194549560546875, 0.0231475830078125, 0.021484375, 0.0274810791015625, 0.0174407958984375, -0.0241546630859375, 0.0165557861328125, 0.01441192626953125, -0.044219970703125, -0.01100921630859375, 0.0650634765625, 0.00370025634765625, -0.01446533203125, 0.06488037109375, -0.01123809814453125, -0.0011701583862304688, 0.055419921875, 0.0274200439453125, 0.0634765625, 0.00013172626495361328, -0.0158538818359375, 0.0654296875, 0.0187530517578125, -0.0071868896484375, 0.0228271484375, 0.007625579833984375, -0.03436279296875, -0.00765228271484375, -0.06927490234375, -0.0181884765625, 0.03131103515625, -0.0865478515625, 0.04840087890625, -0.050506591796875, -0.03802490234375, 0.0272064208984375, 0.0031185150146484375, -0.0736083984375, 0.0377197265625, 0.00107574462890625, 0.07891845703125, -0.06280517578125, 0.0736083984375, 0.041168212890625, -0.0423583984375, -0.0631103515625, -0.027313232421875, -0.01125335693359375, -0.054046630859375, 0.047119140625, 0.0132293701171875, 0.0182342529296875, 0.0189056396484375, -0.031280517578125, -0.062042236328125, 0.0859375, 0.039154052734375, -0.07635498046875, -0.00614166259765625, 0.01727294921875, 0.040863037109375, -0.0170440673828125, 0.05108642578125, 0.038360595703125, 0.01450347900390625, 0.021270751953125, -0.078125, -0.019622802734375, -0.0265960693359375, 0.0098419189453125, 0.01473236083984375, -0.04296875, 0.07867431640625, -0.014373779296875, 0.0225982666015625, 0.0034236907958984375, 0.032440185546875, 0.01666259765625, 0.0248870849609375, 0.035980224609375, 0.06414794921875, 0.03741455078125, -0.0152435302734375, 0.06829833984375, -0.043365478515625, 0.058929443359375, 0.08447265625, 0.004795074462890625, 0.0250091552734375, 0.0399169921875, -0.0228118896484375, 0.024200439453125, 0.06488037109375, -0.024688720703125, 0.05035400390625, 0.0228424072265625, 0.00775146484375, -0.0200958251953125, 0.01104736328125, -0.043060302734375, 0.0302581787109375, 0.01236724853515625, -0.055084228515625, -0.030792236328125, -0.01100921630859375, -0.0076904296875, -0.0120086669921875, -0.033721923828125, 0.04083251953125, -0.0160675048828125, -0.0288848876953125, 0.07989501953125, 0.011749267578125, 0.03045654296875, -0.04669189453125, -0.01415252685546875, -0.0100250244140625, 0.039031982421875, -0.0228118896484375, -0.039520263671875, 0.024017333984375, 0.00018846988677978516, -0.037841796875, 0.0118865966796875, 0.01404571533203125, -0.0274200439453125, -0.061309814453125, 0.0011138916015625, 0.012603759765625, 0.018402099609375, -0.012115478515625, -0.0802001953125, -0.00009274482727050781, 0.0045013427734375, -0.016998291015625, 0.011505126953125, 0.0242767333984375, -0.00614166259765625, 0.031524658203125, 0.043060302734375, -0.01251220703125, 0.0057220458984375, 0.007965087890625, 0.07818603515625, -0.04705810546875, -0.035858154296875, -0.06927490234375, 0.053436279296875, -0.02197265625, -0.058624267578125, 0.043670654296875, 0.07916259765625, 0.06964111328125, -0.0233154296875, 0.030792236328125, -0.00428009033203125, 0.029205322265625, -0.036376953125, 0.04327392578125, -0.037078857421875, 0.00484466552734375, -0.0283203125, -0.07940673828125, 0.007904052734375, 0.04339599609375, -0.008331298828125, 0.0040435791015625, 0.038360595703125, 0.06610107421875, -0.018463134765625, -0.0094757080078125, 0.021087646484375, -0.0006570816040039062, 0.0188751220703125, 0.0288543701171875, 0.04052734375, -0.06268310546875, 0.0283966064453125, -0.056610107421875, -0.02178955078125, -0.01502227783203125, -0.05950927734375, -0.07305908203125, -0.0362548828125, -0.0318603515625, -0.032806396484375, -0.0030498504638671875, 0.0765380859375, 0.06536865234375, -0.058746337890625, -0.0256805419921875, 0.004772186279296875, -0.027435302734375, -0.023529052734375, -0.014556884765625, 0.0251007080078125, 0.00439453125, -0.07000732421875, 0.002269744873046875, -0.00957489013671875, 0.0189971923828125, -0.02532958984375, -0.01551055908203125, -0.01861572265625, -0.0262298583984375, 0.0138702392578125, -0.00356292724609375, -0.03155517578125, -0.01000213623046875, -0.0205230712890625, 0.0033206939697265625, 0.007526397705078125, 0.0286102294921875, -0.0390625, 0.0406494140625, 0.010223388671875, 0.0155029296875, 0.0682373046875, 0.005657196044921875, 0.0187835693359375, -0.05755615234375, 0.04150390625, 0.01483917236328125, 0.04534912109375, 0.0105743408203125, -0.03594970703125, 0.036590576171875, 0.0229949951171875, -0.04058837890625, -0.063720703125, -0.01678466796875, -0.08233642578125, 0.019805908203125, 0.07080078125, 0.0103912353515625, -0.0203094482421875, 0.0179595947265625, -0.0301361083984375, 0.0231170654296875, -0.02740478515625, 0.045379638671875, 0.05120849609375, -0.0030536651611328125, 0.00455474853515625, -0.0313720703125, 0.03948974609375, 0.011444091796875, -0.0309295654296875, -0.01336669921875, 0.036529541015625, 0.034088134765625, -0.0004642009735107422, 0.020172119140625, -0.01009368896484375, 0.0120086669921875, 0.0037746429443359375, 0.01605224609375, -0.04534912109375, -0.0257720947265625, -0.0252532958984375, -0.0104522705078125, 0.0187530517578125, -0.038299560546875 ] ]
s-man2099/gpl-1500
2023-10-26T17:21:21.000Z
[ "transformers", "tf", "pegasus", "text2text-generation", "generated_from_keras_callback", "autotrain_compatible", "endpoints_compatible", "region:us" ]
text2text-generation
s-man2099
null
null
s-man2099/gpl-1500
0
2
transformers
2023-10-26T16:18:04
--- base_model: google/pegasus-large tags: - generated_from_keras_callback model-index: - name: s-man2099/gpl-1500 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. --> # s-man2099/gpl-1500 This model is a fine-tuned version of [google/pegasus-large](https://huggingface.co/google/pegasus-large) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 3.1674 - Validation Loss: 3.4953 - Epoch: 9 ## 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': 'Adafactor', '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': 6e-06, 'beta_2_decay': -0.8, 'epsilon_1': 1e-30, 'epsilon_2': 0.001, 'clip_threshold': 1.0, 'relative_step': True} - training_precision: mixed_float16 ### Training results | Train Loss | Validation Loss | Epoch | |:----------:|:---------------:|:-----:| | 3.9497 | 3.5189 | 0 | | 3.6923 | 3.4731 | 1 | | 3.5513 | 3.4603 | 2 | | 3.4677 | 3.4661 | 3 | | 3.3892 | 3.4678 | 4 | | 3.3222 | 3.4794 | 5 | | 3.2575 | 3.4887 | 6 | | 3.1904 | 3.4914 | 7 | | 3.1848 | 3.4940 | 8 | | 3.1674 | 3.4953 | 9 | ### Framework versions - Transformers 4.34.1 - TensorFlow 2.14.0 - Datasets 2.14.6 - Tokenizers 0.14.1
1,887
[ [ -0.049896240234375, -0.03936767578125, 0.025665283203125, -0.0024166107177734375, -0.034820556640625, -0.035675048828125, -0.005580902099609375, -0.0225677490234375, 0.01513671875, 0.014434814453125, -0.05859375, -0.039337158203125, -0.057952880859375, -0.01666259765625, -0.020172119140625, 0.0853271484375, 0.0103759765625, 0.0229339599609375, 0.003208160400390625, -0.0039005279541015625, -0.0179901123046875, -0.0404052734375, -0.0845947265625, -0.03662109375, 0.039093017578125, 0.01088714599609375, 0.05963134765625, 0.0728759765625, 0.0404052734375, 0.018402099609375, -0.039306640625, -0.0037555694580078125, -0.0367431640625, -0.0478515625, 0.006465911865234375, -0.01520538330078125, -0.049560546875, 0.000019669532775878906, 0.063720703125, 0.035247802734375, -0.01904296875, 0.032684326171875, 0.01538848876953125, 0.032989501953125, -0.041290283203125, 0.0157470703125, -0.03424072265625, 0.0230560302734375, -0.021270751953125, -0.0007171630859375, -0.0018243789672851562, 0.0045928955078125, 0.006195068359375, -0.06402587890625, 0.035888671875, -0.003208160400390625, 0.1004638671875, 0.032989501953125, -0.016998291015625, -0.0025577545166015625, -0.045135498046875, 0.04376220703125, -0.05950927734375, 0.0258636474609375, 0.0240478515625, 0.0447998046875, -0.00882720947265625, -0.069580078125, -0.04046630859375, -0.004878997802734375, 0.0098724365234375, 0.0078582763671875, -0.0166168212890625, -0.00612640380859375, 0.040863037109375, 0.044464111328125, -0.030548095703125, 0.022491455078125, -0.052978515625, -0.0272979736328125, 0.041107177734375, 0.031494140625, -0.0156402587890625, -0.006244659423828125, -0.0289306640625, -0.0193634033203125, -0.031646728515625, 0.021331787109375, 0.0509033203125, 0.0230255126953125, -0.0261383056640625, 0.041839599609375, -0.01515960693359375, 0.045867919921875, 0.0105133056640625, -0.00809478759765625, 0.04620361328125, 0.0083465576171875, -0.0440673828125, 0.0140228271484375, 0.066650390625, 0.042999267578125, -0.0011434555053710938, 0.01473236083984375, -0.0167694091796875, -0.01444244384765625, 0.0263671875, -0.07330322265625, -0.006458282470703125, 0.00823211669921875, -0.04449462890625, -0.040008544921875, 0.004467010498046875, -0.052490234375, 0.0014190673828125, -0.02325439453125, 0.042236328125, -0.020904541015625, 0.00018715858459472656, 0.018798828125, -0.00362396240234375, 0.0279693603515625, 0.0090484619140625, -0.06402587890625, 0.0251922607421875, 0.059112548828125, 0.04376220703125, 0.0182647705078125, -0.0307769775390625, -0.0200958251953125, 0.0002899169921875, -0.02496337890625, 0.0239715576171875, -0.022125244140625, -0.03240966796875, -0.01398468017578125, 0.0357666015625, 0.00010371208190917969, -0.023101806640625, 0.085205078125, -0.0309295654296875, 0.030487060546875, -0.032806396484375, -0.048095703125, -0.0281219482421875, 0.01617431640625, -0.056915283203125, 0.078857421875, -0.01297760009765625, -0.0601806640625, 0.051971435546875, -0.036376953125, 0.00030112266540527344, -0.003917694091796875, -0.004360198974609375, -0.0704345703125, -0.0095367431640625, 0.01345062255859375, 0.043243408203125, -0.0236968994140625, 0.0118560791015625, -0.03631591796875, -0.039337158203125, -0.0245513916015625, -0.037261962890625, 0.057373046875, 0.02398681640625, -0.04083251953125, 0.0008749961853027344, -0.08148193359375, 0.0027904510498046875, 0.0284271240234375, -0.0304412841796875, 0.00763702392578125, -0.020416259765625, 0.0178070068359375, 0.0186767578125, 0.0228729248046875, -0.041748046875, 0.00827789306640625, -0.02301025390625, 0.030426025390625, 0.055389404296875, 0.01033782958984375, 0.00035262107849121094, -0.027130126953125, 0.0205535888671875, 0.01151275634765625, 0.0277099609375, 0.0076751708984375, -0.051544189453125, -0.06475830078125, -0.01424407958984375, 0.0163116455078125, 0.0099029541015625, -0.012664794921875, 0.0577392578125, -0.005435943603515625, -0.063232421875, -0.032684326171875, -0.000052928924560546875, 0.0275726318359375, 0.06573486328125, 0.02960205078125, -0.00901031494140625, -0.024658203125, -0.0902099609375, 0.0115203857421875, 0.003047943115234375, 0.0146026611328125, 0.0250701904296875, 0.05078125, -0.01451873779296875, 0.03631591796875, -0.03607177734375, -0.01436614990234375, 0.01264190673828125, -0.003910064697265625, 0.033538818359375, 0.049041748046875, 0.045867919921875, -0.0419921875, -0.00896453857421875, -0.005077362060546875, -0.04534912109375, 0.02239990234375, -0.006694793701171875, -0.0172576904296875, -0.001064300537109375, 0.021759033203125, -0.03790283203125, 0.037506103515625, 0.024658203125, -0.03656005859375, 0.045867919921875, -0.04266357421875, -0.00931549072265625, -0.0849609375, 0.0421142578125, 0.0192108154296875, 0.0010919570922851562, -0.0167999267578125, 0.00873565673828125, 0.00823974609375, -0.0167999267578125, -0.035064697265625, 0.04718017578125, 0.0006470680236816406, -0.006679534912109375, -0.0016336441040039062, -0.036529541015625, -0.0034999847412109375, 0.0555419921875, 0.0180206298828125, 0.042388916015625, 0.04736328125, -0.044281005859375, 0.0294036865234375, 0.022308349609375, -0.03582763671875, 0.0277862548828125, -0.068115234375, 0.0018968582153320312, -0.012725830078125, 0.00026607513427734375, -0.051483154296875, -0.0250091552734375, 0.03704833984375, -0.0279388427734375, 0.010009765625, -0.0181427001953125, -0.0212554931640625, -0.0396728515625, -0.006374359130859375, 0.016448974609375, 0.040985107421875, -0.047088623046875, 0.0211334228515625, 0.0021686553955078125, 0.0181732177734375, -0.06170654296875, -0.056671142578125, -0.01458740234375, -0.02130126953125, -0.02960205078125, 0.0299072265625, -0.006847381591796875, 0.01554107666015625, 0.01081085205078125, 0.00513458251953125, -0.01194000244140625, 0.00328826904296875, 0.03436279296875, 0.026580810546875, -0.0125579833984375, -0.007648468017578125, 0.004116058349609375, -0.025146484375, 0.019622802734375, -0.0062408447265625, 0.040985107421875, -0.01898193359375, -0.0347900390625, -0.059356689453125, -0.016265869140625, 0.052276611328125, -0.00567626953125, 0.056304931640625, 0.059783935546875, -0.04510498046875, -0.001068115234375, -0.0228271484375, -0.0023193359375, -0.0352783203125, 0.04046630859375, -0.037841796875, -0.032196044921875, 0.060150146484375, 0.01776123046875, 0.017242431640625, 0.0850830078125, 0.050537109375, 0.00799560546875, 0.07806396484375, 0.017608642578125, -0.0182952880859375, 0.005443572998046875, -0.052337646484375, -0.024932861328125, -0.05267333984375, -0.048248291015625, -0.03741455078125, -0.031982421875, -0.04437255859375, 0.00653839111328125, 0.019500732421875, 0.00760650634765625, -0.0631103515625, 0.014434814453125, -0.048553466796875, 0.02874755859375, 0.0576171875, 0.024749755859375, -0.002750396728515625, 0.003936767578125, -0.0406494140625, -0.00719451904296875, -0.054412841796875, -0.027130126953125, 0.09625244140625, 0.046234130859375, 0.0293731689453125, -0.015228271484375, 0.04534912109375, 0.007762908935546875, 0.005218505859375, -0.050537109375, 0.033172607421875, 0.002696990966796875, -0.062347412109375, -0.0240325927734375, -0.033294677734375, -0.069580078125, 0.0099334716796875, -0.0299835205078125, -0.028961181640625, 0.0169677734375, 0.0162200927734375, -0.0352783203125, 0.0391845703125, -0.0231170654296875, 0.086181640625, -0.0022945404052734375, -0.021575927734375, -0.01212310791015625, -0.031585693359375, 0.0239410400390625, -0.00873565673828125, -0.005489349365234375, 0.0003018379211425781, 0.001468658447265625, 0.071533203125, -0.059783935546875, 0.044586181640625, -0.03192138671875, 0.002620697021484375, 0.01556396484375, -0.0211639404296875, 0.0443115234375, 0.0027923583984375, -0.007434844970703125, 0.007656097412109375, -0.004177093505859375, -0.04327392578125, -0.0270233154296875, 0.059814453125, -0.08966064453125, -0.0194549560546875, -0.02728271484375, -0.0156707763671875, -0.0002918243408203125, 0.026824951171875, 0.05670166015625, 0.050079345703125, -0.00347137451171875, 0.01406097412109375, 0.034637451171875, -0.0013074874877929688, 0.0401611328125, 0.0164031982421875, 0.00246429443359375, -0.0582275390625, 0.057373046875, 0.0003714561462402344, -0.0008797645568847656, -0.01605224609375, 0.01104736328125, -0.03179931640625, -0.03546142578125, -0.0460205078125, 0.02203369140625, -0.053497314453125, 0.0021915435791015625, -0.01093292236328125, -0.030181884765625, -0.014678955078125, -0.006694793701171875, -0.040283203125, -0.0274505615234375, -0.041412353515625, -0.00617218017578125, 0.00566864013671875, 0.040374755859375, 0.0045013427734375, 0.03826904296875, -0.054168701171875, -0.004871368408203125, 0.029541015625, 0.034515380859375, 0.0242767333984375, -0.069091796875, -0.023406982421875, -0.0005846023559570312, -0.0313720703125, -0.036163330078125, 0.031982421875, 0.00473785400390625, 0.06597900390625, 0.06353759765625, -0.02947998046875, 0.06451416015625, -0.03411865234375, 0.06256103515625, 0.024383544921875, -0.042510986328125, 0.0204925537109375, -0.022064208984375, 0.013275146484375, 0.0372314453125, 0.0479736328125, -0.0212554931640625, -0.0011739730834960938, -0.09222412109375, -0.044921875, 0.056182861328125, 0.01861572265625, 0.0010328292846679688, 0.00771331787109375, 0.045745849609375, -0.00814056396484375, 0.00727081298828125, -0.04962158203125, -0.048492431640625, -0.0222320556640625, -0.005252838134765625, -0.0194854736328125, -0.0230560302734375, -0.0101470947265625, -0.0367431640625, 0.0802001953125, 0.01067352294921875, 0.0274505615234375, 0.0101165771484375, 0.0278778076171875, -0.01654052734375, -0.01044464111328125, 0.050140380859375, 0.04193115234375, -0.037384033203125, -0.00855255126953125, 0.01666259765625, -0.045745849609375, -0.0017976760864257812, 0.0352783203125, -0.0026531219482421875, -0.00206756591796875, 0.0242462158203125, 0.07275390625, 0.006847381591796875, -0.0128631591796875, 0.034637451171875, -0.001251220703125, -0.039093017578125, -0.02978515625, 0.00940704345703125, -0.01055908203125, 0.0206146240234375, 0.0214691162109375, 0.01873779296875, 0.014190673828125, -0.0105438232421875, 0.0131072998046875, 0.0269927978515625, -0.037811279296875, -0.0231781005859375, 0.0809326171875, -0.00015807151794433594, -0.01258087158203125, 0.045989990234375, -0.01158905029296875, -0.01934814453125, 0.06707763671875, 0.0228271484375, 0.06256103515625, -0.01580810546875, -0.00441741943359375, 0.057647705078125, 0.01904296875, -0.012725830078125, 0.0235595703125, 0.006618499755859375, -0.04425048828125, -0.0289306640625, -0.049774169921875, -0.0257415771484375, 0.056121826171875, -0.07965087890625, 0.0478515625, -0.045135498046875, -0.03057861328125, 0.03607177734375, 0.022186279296875, -0.0577392578125, 0.04205322265625, 0.0309600830078125, 0.090576171875, -0.06097412109375, 0.05792236328125, 0.050018310546875, -0.022247314453125, -0.06317138671875, -0.0287017822265625, -0.00901031494140625, -0.07781982421875, 0.046783447265625, 0.005107879638671875, 0.0203704833984375, 0.006923675537109375, -0.040985107421875, -0.06439208984375, 0.08843994140625, 0.025115966796875, -0.047088623046875, -0.00402069091796875, 0.0254974365234375, 0.03521728515625, 0.0016222000122070312, 0.025299072265625, 0.0197296142578125, 0.0272674560546875, 0.03204345703125, -0.07525634765625, 0.0007796287536621094, -0.0301971435546875, -0.00414276123046875, 0.0169525146484375, -0.06524658203125, 0.06988525390625, 0.0082855224609375, 0.0242767333984375, 0.005123138427734375, 0.03790283203125, 0.02716064453125, 0.020233154296875, 0.0338134765625, 0.0924072265625, 0.05328369140625, -0.0012464523315429688, 0.0748291015625, -0.04156494140625, 0.051666259765625, 0.06695556640625, 0.0199432373046875, 0.041900634765625, 0.0218658447265625, -0.01531219482421875, 0.0212249755859375, 0.0738525390625, -0.034149169921875, 0.03985595703125, -0.0021877288818359375, -0.0030117034912109375, -0.0289459228515625, 0.0270538330078125, -0.051116943359375, 0.0146026611328125, 0.0109100341796875, -0.061187744140625, -0.032867431640625, -0.0267181396484375, 0.008514404296875, -0.033599853515625, -0.051116943359375, 0.0299072265625, -0.01837158203125, -0.0204925537109375, 0.059417724609375, 0.0191802978515625, 0.0219268798828125, -0.044219970703125, -0.0008230209350585938, 0.00006848573684692383, 0.019927978515625, -0.01509857177734375, -0.0477294921875, 0.0169219970703125, -0.01067352294921875, -0.0068511962890625, 0.0167999267578125, 0.039520263671875, -0.0015668869018554688, -0.0589599609375, -0.0011425018310546875, 0.00679779052734375, 0.0198974609375, -0.004486083984375, -0.07464599609375, -0.00954437255859375, -0.0007333755493164062, -0.03973388671875, 0.0110321044921875, 0.024017333984375, 0.01169586181640625, 0.048492431640625, 0.052459716796875, 0.002635955810546875, 0.00762939453125, -0.01171875, 0.0762939453125, -0.04595947265625, -0.06109619140625, -0.06329345703125, 0.034698486328125, -0.00787353515625, -0.06787109375, 0.04595947265625, 0.0833740234375, 0.055816650390625, -0.004352569580078125, 0.036163330078125, 0.011871337890625, 0.0225982666015625, -0.040740966796875, 0.047637939453125, -0.045989990234375, -0.002452850341796875, -0.01033782958984375, -0.0689697265625, -0.0046539306640625, 0.03790283203125, -0.0241546630859375, 0.007030487060546875, 0.0178375244140625, 0.050750732421875, -0.01258087158203125, 0.0116424560546875, 0.017120361328125, -0.0038776397705078125, 0.01141357421875, 0.043365478515625, 0.040496826171875, -0.047637939453125, 0.0416259765625, -0.04571533203125, -0.001834869384765625, 0.0038394927978515625, -0.059906005859375, -0.0650634765625, -0.041046142578125, -0.0252838134765625, -0.0300140380859375, -0.00997161865234375, 0.0650634765625, 0.0682373046875, -0.043670654296875, -0.00290679931640625, -0.0119781494140625, -0.03399658203125, -0.01345062255859375, -0.01373291015625, 0.053070068359375, -0.01666259765625, -0.06744384765625, -0.0031223297119140625, -0.027862548828125, 0.02972412109375, -0.0187225341796875, -0.025482177734375, 0.01535797119140625, -0.0200347900390625, 0.0018529891967773438, 0.01739501953125, -0.03460693359375, -0.0140380859375, -0.026824951171875, 0.0020580291748046875, 0.0091094970703125, 0.01506805419921875, -0.0404052734375, 0.0276336669921875, 0.00951385498046875, 0.042633056640625, 0.07025146484375, -0.00899505615234375, 0.0088043212890625, -0.044677734375, 0.02587890625, 0.0029163360595703125, 0.04290771484375, -0.008514404296875, -0.03851318359375, 0.025421142578125, 0.03314208984375, -0.049835205078125, -0.05340576171875, -0.026611328125, -0.07598876953125, 0.0005273818969726562, 0.07904052734375, -0.0013647079467773438, -0.029449462890625, 0.035308837890625, -0.00601959228515625, 0.01495361328125, -0.0247650146484375, 0.0457763671875, 0.06298828125, -0.00020015239715576172, 0.002971649169921875, -0.04217529296875, 0.0501708984375, 0.01515960693359375, -0.042388916015625, -0.0204315185546875, 0.0280609130859375, 0.0340576171875, 0.01074981689453125, 0.013916015625, -0.00891876220703125, 0.030548095703125, 0.0071868896484375, 0.0176544189453125, -0.04400634765625, -0.0120849609375, -0.046722412109375, 0.01468658447265625, 0.0017614364624023438, -0.04461669921875 ] ]
kaitchup/Llama-2-7b-mt-French-to-English
2023-11-02T17:31:43.000Z
[ "peft", "translation", "en", "fr", "dataset:kaitchup/opus-French-to-English", "license:mit", "region:us" ]
translation
kaitchup
null
null
kaitchup/Llama-2-7b-mt-French-to-English
0
2
peft
2023-10-26T16:50:23
--- library_name: peft license: mit language: - en - fr datasets: - kaitchup/opus-French-to-English tags: - translation --- # Model Card for Model ID This is an adapter for Meta's Llama 2 7B fine-tuned for translating French text into English. ## Model Details ### Model Description <!-- Provide a longer summary of what this model is. --> - **Developed by:** [The Kaitchup](https://kaitchup.substack.com/) - **Model type:** LoRA Adapter for Llama 2 7B - **Language(s) (NLP):** French, English - **License:** MIT license ## Uses This adapter must be loaded on top of Llama 2 7B. It has been fine-tuned with QLoRA. For optimal results, the base model must be loaded with the exact same configuration used during fine-tuning. You can use the following code to load the model: ``` from transformers import AutoTokenizer, AutoModelForCausalLM, BitsAndBytesConfig import torch from peft import PeftModel base_model = "meta-llama/Llama-2-7b-hf" compute_dtype = getattr(torch, "float16") bnb_config = BitsAndBytesConfig( load_in_4bit=True, bnb_4bit_quant_type="nf4", bnb_4bit_compute_dtype=compute_dtype, bnb_4bit_use_double_quant=True, ) model = AutoModelForCausalLM.from_pretrained( original_model_directory, device_map={"": 0}, quantization_config=bnb_config ) tokenizer = AutoTokenizer.from_pretrained(base_model, use_fast=True) model = PeftModel.from_pretrained(model, "kaitchup/Llama-2-7b-mt-French-to-English") ``` Then, run the model as follows: ``` my_text = "" #put your text to translate here prompt = my_text+" ###>" tokenized_input = tokenizer(prompt, return_tensors="pt") input_ids = tokenized_input["input_ids"].cuda() generation_output = model.generate( input_ids=input_ids, num_beams=10, return_dict_in_generate=True, output_scores=True, max_new_tokens=130 ) for seq in generation_output.sequences: output = tokenizer.decode(seq, skip_special_tokens=True) print(output.split("###>")[1].strip()) ``` ## Model Card Contact [The Kaitchup](https://kaitchup.substack.com/)
2,071
[ [ -0.0207366943359375, -0.04876708984375, 0.0282135009765625, 0.028594970703125, -0.0577392578125, -0.0006046295166015625, 0.010650634765625, -0.024627685546875, 0.025543212890625, 0.037506103515625, -0.033050537109375, -0.0479736328125, -0.05023193359375, 0.00846099853515625, -0.0204925537109375, 0.08001708984375, -0.00606536865234375, -0.0088348388671875, 0.005985260009765625, 0.009552001953125, -0.038330078125, -0.045501708984375, -0.05718994140625, -0.040435791015625, 0.025360107421875, 0.0251617431640625, 0.044952392578125, 0.028228759765625, 0.043701171875, 0.0260009765625, -0.01434326171875, 0.016082763671875, -0.025421142578125, -0.0240936279296875, -0.01102447509765625, -0.058197021484375, -0.06304931640625, -0.00093841552734375, 0.050018310546875, -0.0012454986572265625, -0.006710052490234375, 0.025177001953125, -0.017333984375, 0.0246429443359375, -0.0311126708984375, 0.023529052734375, -0.04901123046875, -0.003063201904296875, -0.0168914794921875, -0.008270263671875, -0.0277862548828125, -0.00920867919921875, -0.01058197021484375, -0.046661376953125, 0.0081024169921875, -0.00498199462890625, 0.09747314453125, 0.032135009765625, -0.0386962890625, 0.0008349418640136719, -0.040252685546875, 0.039642333984375, -0.084228515625, 0.00870513916015625, 0.032501220703125, 0.017730712890625, -0.0186309814453125, -0.073486328125, -0.055023193359375, -0.00608062744140625, -0.00994110107421875, 0.01197052001953125, -0.01751708984375, -0.0038890838623046875, 0.0279388427734375, 0.03533935546875, -0.031707763671875, 0.0040130615234375, -0.04803466796875, -0.01006317138671875, 0.055877685546875, 0.014190673828125, 0.0232696533203125, -0.0156402587890625, -0.02215576171875, -0.019256591796875, -0.041046142578125, 0.01036834716796875, 0.03790283203125, 0.01108551025390625, -0.039459228515625, 0.042816162109375, -0.014251708984375, 0.049530029296875, 0.0273895263671875, -0.0176239013671875, 0.044189453125, -0.00620269775390625, -0.02960205078125, 0.009674072265625, 0.0726318359375, 0.0302276611328125, 0.006832122802734375, 0.0169830322265625, -0.01197052001953125, -0.00612640380859375, 0.00545501708984375, -0.063232421875, -0.026397705078125, 0.005413055419921875, -0.0307769775390625, -0.046783447265625, 0.00270843505859375, -0.046142578125, -0.00598907470703125, 0.0088348388671875, 0.0384521484375, -0.0091552734375, -0.024139404296875, 0.00841522216796875, -0.0051727294921875, 0.048583984375, -0.0056915283203125, -0.068359375, 0.00337982177734375, 0.0183563232421875, 0.0518798828125, 0.00292205810546875, -0.0258026123046875, -0.0182342529296875, 0.0006842613220214844, -0.0164947509765625, 0.059112548828125, -0.03155517578125, -0.048492431640625, -0.022003173828125, 0.03692626953125, -0.01483917236328125, -0.0439453125, 0.0489501953125, -0.038726806640625, 0.006679534912109375, -0.0161895751953125, -0.0167999267578125, -0.0241851806640625, 0.014739990234375, -0.05047607421875, 0.09466552734375, 0.006526947021484375, -0.052581787109375, 0.00279998779296875, -0.058502197265625, -0.0294036865234375, 0.004955291748046875, -0.0006284713745117188, -0.043304443359375, 0.0169677734375, 0.0179595947265625, 0.02545166015625, -0.028564453125, 0.032135009765625, -0.0138397216796875, -0.0341796875, 0.0167999267578125, -0.033355712890625, 0.06494140625, 0.0068817138671875, -0.03350830078125, 0.01110076904296875, -0.06890869140625, -0.0113372802734375, 0.04595947265625, -0.045074462890625, 0.0028438568115234375, -0.0079193115234375, 0.00647735595703125, 0.01026153564453125, 0.034881591796875, -0.033966064453125, 0.024261474609375, -0.0426025390625, 0.046875, 0.056396484375, -0.002838134765625, 0.0209808349609375, -0.01413726806640625, 0.028564453125, 0.01123809814453125, 0.027679443359375, -0.0036334991455078125, -0.041473388671875, -0.08367919921875, -0.0128631591796875, 0.02569580078125, 0.05792236328125, -0.052490234375, 0.04388427734375, -0.006381988525390625, -0.052032470703125, -0.03802490234375, 0.00133514404296875, 0.0245361328125, 0.035919189453125, 0.029876708984375, -0.01953125, -0.034637451171875, -0.0859375, -0.0092620849609375, -0.0084381103515625, 0.01253509521484375, 0.01104736328125, 0.051666259765625, -0.035797119140625, 0.040374755859375, -0.0360107421875, -0.0160064697265625, -0.0260467529296875, -0.01189422607421875, 0.042327880859375, 0.049407958984375, 0.0438232421875, -0.0565185546875, -0.037384033203125, -0.00025463104248046875, -0.04986572265625, -0.01210784912109375, 0.004322052001953125, -0.03564453125, 0.0028839111328125, 0.02880859375, -0.03411865234375, 0.0435791015625, 0.044097900390625, -0.050811767578125, 0.0213623046875, -0.01517486572265625, 0.002750396728515625, -0.1046142578125, 0.014495849609375, -0.01837158203125, -0.0202178955078125, -0.037689208984375, 0.00897979736328125, 0.007762908935546875, 0.00634002685546875, -0.05419921875, 0.055938720703125, -0.00629425048828125, 0.01654052734375, -0.037689208984375, -0.01488494873046875, 0.0139923095703125, 0.04541015625, -0.002529144287109375, 0.049285888671875, 0.0243682861328125, -0.0386962890625, 0.04107666015625, 0.0287628173828125, -0.00962066650390625, 0.0298614501953125, -0.07012939453125, 0.01477813720703125, 0.0070953369140625, 0.0211334228515625, -0.07659912109375, -0.0230865478515625, 0.04510498046875, -0.0272064208984375, 0.0202789306640625, -0.01026153564453125, -0.042266845703125, -0.037261962890625, 0.0040283203125, 0.04296875, 0.052642822265625, -0.059967041015625, 0.06890869140625, 0.015472412109375, 0.01026153564453125, -0.037139892578125, -0.06280517578125, -0.01207733154296875, -0.0159454345703125, -0.035736083984375, 0.03741455078125, -0.019256591796875, -0.0017366409301757812, -0.01369476318359375, -0.01454925537109375, -0.0157470703125, 0.00647735595703125, 0.021392822265625, 0.044952392578125, -0.00998687744140625, -0.00896453857421875, 0.03033447265625, -0.017181396484375, 0.00527191162109375, -0.00010251998901367188, 0.059967041015625, -0.0182037353515625, -0.0113372802734375, -0.03900146484375, 0.00586700439453125, 0.041229248046875, -0.0214080810546875, 0.059722900390625, 0.06158447265625, -0.030242919921875, 0.007465362548828125, -0.047271728515625, 0.0067138671875, -0.0408935546875, 0.0301361083984375, -0.05023193359375, -0.031463623046875, 0.0526123046875, -0.0030536651611328125, 0.0149688720703125, 0.07574462890625, 0.05615234375, 0.00511932373046875, 0.0699462890625, 0.05859375, 0.004329681396484375, 0.040557861328125, -0.0435791015625, 0.0169525146484375, -0.073486328125, -0.0264129638671875, -0.01538848876953125, -0.02313232421875, -0.02740478515625, -0.025787353515625, 0.0124664306640625, 0.0157318115234375, -0.0233306884765625, 0.02294921875, -0.052093505859375, 0.048828125, 0.0467529296875, 0.0189208984375, 0.01465606689453125, -0.0022754669189453125, -0.0129547119140625, 0.01751708984375, -0.049285888671875, -0.03839111328125, 0.08392333984375, 0.0225677490234375, 0.04595947265625, -0.0031147003173828125, 0.056854248046875, 0.0010614395141601562, 0.02593994140625, -0.045623779296875, 0.035858154296875, -0.0175628662109375, -0.041473388671875, 0.006526947021484375, -0.001651763916015625, -0.055633544921875, 0.024871826171875, -0.01084136962890625, -0.047637939453125, 0.039794921875, 0.025360107421875, -0.0250244140625, 0.031768798828125, -0.05328369140625, 0.0753173828125, -0.022369384765625, -0.01019287109375, 0.005474090576171875, -0.03253173828125, 0.043121337890625, -0.01375579833984375, 0.00893402099609375, -0.02166748046875, 0.006214141845703125, 0.0748291015625, -0.0263824462890625, 0.0765380859375, -0.007106781005859375, -0.0223388671875, 0.0273895263671875, -0.015777587890625, 0.050262451171875, 0.01366424560546875, -0.00792694091796875, 0.0341796875, 0.0139923095703125, -0.035858154296875, -0.0189361572265625, 0.059661865234375, -0.07489013671875, -0.056365966796875, -0.02960205078125, -0.031036376953125, 0.01483154296875, 0.015289306640625, 0.0576171875, 0.00074005126953125, 0.001270294189453125, -0.005001068115234375, 0.040374755859375, -0.02569580078125, 0.034576416015625, 0.03515625, -0.0182037353515625, -0.039581298828125, 0.070068359375, -0.00302886962890625, 0.01534271240234375, 0.02215576171875, 0.017578125, -0.0206146240234375, -0.01021575927734375, -0.0355224609375, 0.030487060546875, -0.06231689453125, -0.0267791748046875, -0.03424072265625, -0.0302734375, -0.0241546630859375, -0.01015472412109375, -0.035858154296875, -0.0194549560546875, -0.0421142578125, -0.01064300537109375, 0.033966064453125, 0.031036376953125, -0.0023250579833984375, 0.0555419921875, -0.055419921875, 0.03546142578125, 0.027618408203125, 0.010162353515625, -0.0024013519287109375, -0.0709228515625, -0.0165252685546875, -0.0030040740966796875, -0.02947998046875, -0.07623291015625, 0.045074462890625, 0.0026988983154296875, 0.03839111328125, 0.0198211669921875, 0.0036640167236328125, 0.04901123046875, -0.03216552734375, 0.055999755859375, 0.01197052001953125, -0.0821533203125, 0.048095703125, -0.00482177734375, 0.0306396484375, 0.0231475830078125, 0.01181793212890625, -0.0191497802734375, -0.006500244140625, -0.05279541015625, -0.07293701171875, 0.0521240234375, 0.010040283203125, 0.019927978515625, -0.013427734375, 0.037689208984375, -0.006160736083984375, 0.00591278076171875, -0.07928466796875, -0.036590576171875, -0.02728271484375, -0.0207977294921875, -0.00807952880859375, -0.035430908203125, -0.00970458984375, -0.03350830078125, 0.067626953125, 0.002338409423828125, 0.0294647216796875, 0.0189666748046875, -0.01186370849609375, -0.0025463104248046875, 0.004009246826171875, 0.04925537109375, 0.03533935546875, -0.01453399658203125, -0.0010061264038085938, 0.039306640625, -0.046966552734375, 0.01296234130859375, 0.020233154296875, -0.0113525390625, 0.01041412353515625, 0.0113983154296875, 0.07952880859375, 0.0113525390625, -0.0297088623046875, 0.0278167724609375, -0.010986328125, -0.0240631103515625, -0.030548095703125, 0.00995635986328125, 0.010894775390625, 0.0445556640625, 0.0186004638671875, -0.01453399658203125, -0.000025987625122070312, -0.0262451171875, -0.01934814453125, 0.0256195068359375, -0.0046234130859375, -0.025360107421875, 0.072998046875, 0.0252532958984375, -0.04156494140625, 0.0462646484375, -0.009185791015625, -0.0382080078125, 0.068359375, 0.0601806640625, 0.06927490234375, -0.0254669189453125, -0.0030689239501953125, 0.040069580078125, 0.035797119140625, -0.00658416748046875, 0.03900146484375, 0.00421905517578125, -0.044525146484375, -0.017974853515625, -0.06390380859375, 0.00014352798461914062, 0.0199737548828125, -0.046142578125, 0.0316162109375, -0.0293731689453125, -0.0249786376953125, -0.005542755126953125, -0.00554656982421875, -0.06329345703125, 0.00818634033203125, 0.011138916015625, 0.06597900390625, -0.07281494140625, 0.08270263671875, 0.0477294921875, -0.0291748046875, -0.0631103515625, -0.022216796875, -0.026947021484375, -0.08966064453125, 0.052276611328125, -0.0007724761962890625, 0.0167999267578125, 0.01513671875, -0.0400390625, -0.082275390625, 0.09295654296875, 0.024749755859375, -0.056793212890625, -0.01070404052734375, 0.0016870498657226562, 0.0171051025390625, -0.0179290771484375, 0.015045166015625, 0.054840087890625, 0.037994384765625, 0.0031185150146484375, -0.074951171875, 0.019012451171875, -0.034912109375, -0.002010345458984375, 0.0156402587890625, -0.06689453125, 0.0718994140625, -0.01055145263671875, 0.0034580230712890625, 0.01258087158203125, 0.050445556640625, 0.029937744140625, 0.0136566162109375, 0.028564453125, 0.048858642578125, 0.044830322265625, -0.005413055419921875, 0.06719970703125, -0.034576416015625, 0.0413818359375, 0.07220458984375, -0.0028705596923828125, 0.06982421875, 0.03729248046875, -0.01557159423828125, 0.05242919921875, 0.0538330078125, -0.031494140625, 0.031890869140625, 0.013275146484375, -0.00984954833984375, -0.023193359375, 0.004001617431640625, -0.043304443359375, 0.0287933349609375, 0.0293731689453125, -0.05413818359375, -0.0071868896484375, -0.003631591796875, -0.005771636962890625, -0.0309906005859375, -0.02142333984375, 0.041961669921875, 0.0095062255859375, -0.02655029296875, 0.05926513671875, 0.01702880859375, 0.058135986328125, -0.047332763671875, -0.01468658447265625, -0.022247314453125, 0.0105438232421875, -0.01381683349609375, -0.025848388671875, 0.0166778564453125, -0.0010976791381835938, -0.023773193359375, 0.0185699462890625, 0.0382080078125, -0.021728515625, -0.065185546875, 0.00968170166015625, 0.0163726806640625, 0.0253448486328125, 0.00247955322265625, -0.0611572265625, 0.024505615234375, 0.008880615234375, -0.02960205078125, 0.0177001953125, 0.0054168701171875, 0.0046844482421875, 0.034759521484375, 0.059112548828125, -0.01605224609375, 0.0214691162109375, -0.003414154052734375, 0.064453125, -0.047332763671875, -0.035797119140625, -0.08197021484375, 0.045684814453125, 0.002986907958984375, -0.033782958984375, 0.03924560546875, 0.044525146484375, 0.0631103515625, -0.01329803466796875, 0.046295166015625, -0.001293182373046875, -0.0006241798400878906, -0.03729248046875, 0.04541015625, -0.041168212890625, 0.017364501953125, -0.000934600830078125, -0.06988525390625, -0.008758544921875, 0.0682373046875, -0.0240631103515625, -0.0133209228515625, 0.043243408203125, 0.0478515625, -0.01454925537109375, -0.0316162109375, 0.028564453125, 0.0297393798828125, 0.034576416015625, 0.047576904296875, 0.038116455078125, -0.06463623046875, 0.04644775390625, -0.032623291015625, -0.00945281982421875, -0.0184326171875, -0.056304931640625, -0.08685302734375, -0.0270233154296875, -0.023101806640625, -0.0307464599609375, -0.0109405517578125, 0.062103271484375, 0.040008544921875, -0.04730224609375, -0.0169830322265625, 0.0001976490020751953, 0.00954437255859375, 0.00582122802734375, -0.02008056640625, 0.041839599609375, -0.009002685546875, -0.07415771484375, 0.0204315185546875, 0.0051727294921875, 0.03265380859375, -0.007770538330078125, -0.0004868507385253906, -0.0167999267578125, 0.01922607421875, 0.03985595703125, 0.026458740234375, -0.07501220703125, 0.00804901123046875, -0.00901031494140625, -0.0022258758544921875, 0.00731658935546875, 0.0230712890625, -0.055145263671875, 0.0174560546875, 0.0274658203125, 0.030487060546875, 0.04656982421875, -0.018524169921875, 0.040008544921875, -0.033050537109375, 0.0309906005859375, -0.007312774658203125, 0.046661376953125, 0.0021228790283203125, -0.03961181640625, 0.0300750732421875, 0.0247802734375, -0.041656494140625, -0.07501220703125, -0.00021350383758544922, -0.078369140625, -0.0177154541015625, 0.08367919921875, -0.00830078125, -0.042816162109375, 0.0193328857421875, -0.03802490234375, 0.0341796875, -0.01910400390625, 0.049468994140625, 0.042724609375, 0.0081024169921875, -0.01000213623046875, -0.037811279296875, 0.0211639404296875, 0.01739501953125, -0.056610107421875, -0.0211029052734375, -0.0034542083740234375, 0.03924560546875, 0.01123809814453125, 0.0506591796875, -0.0005846023559570312, 0.028350830078125, 0.0006704330444335938, 0.026153564453125, -0.01042938232421875, -0.006816864013671875, -0.0240631103515625, -0.020538330078125, -0.00467681884765625, -0.032684326171875 ] ]
jessica-ecosia/distilbert-base-uncased-finetuned-squad
2023-10-26T17:10:07.000Z
[ "transformers", "pytorch", "distilbert", "question-answering", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
question-answering
jessica-ecosia
null
null
jessica-ecosia/distilbert-base-uncased-finetuned-squad
0
2
transformers
2023-10-26T17:05:09
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer model-index: - name: distilbert-base-uncased-finetuned-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. --> # distilbert-base-uncased-finetuned-squad 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: 3.9886 ## 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: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 1.0 | 26 | 4.5861 | | No log | 2.0 | 52 | 4.0953 | | No log | 3.0 | 78 | 3.9886 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,450
[ [ -0.032958984375, -0.049468994140625, 0.0124359130859375, 0.0229339599609375, -0.02520751953125, -0.0038242340087890625, -0.006198883056640625, -0.00859832763671875, 0.0021266937255859375, 0.020263671875, -0.068359375, -0.039031982421875, -0.053558349609375, -0.0029773712158203125, -0.01529693603515625, 0.09173583984375, 0.00566864013671875, 0.026947021484375, -0.001377105712890625, 0.0019083023071289062, -0.04278564453125, -0.053436279296875, -0.05450439453125, -0.053192138671875, 0.01025390625, 0.0221710205078125, 0.06005859375, 0.06573486328125, 0.053985595703125, 0.0220947265625, -0.029693603515625, -0.006412506103515625, -0.0614013671875, -0.031005859375, -0.0007486343383789062, -0.032470703125, -0.061248779296875, 0.002895355224609375, 0.04931640625, 0.037628173828125, -0.024078369140625, 0.0270843505859375, 0.00959014892578125, 0.048431396484375, -0.036407470703125, 0.033416748046875, -0.048126220703125, 0.018829345703125, -0.01220703125, -0.02813720703125, -0.0280609130859375, 0.01157379150390625, 0.007122039794921875, -0.037689208984375, 0.043670654296875, -0.00506591796875, 0.07672119140625, 0.032470703125, -0.01546478271484375, 0.004734039306640625, -0.057647705078125, 0.048431396484375, -0.045379638671875, 0.0150146484375, 0.0246429443359375, 0.046417236328125, -0.00920867919921875, -0.041961669921875, -0.0242156982421875, -0.00946044921875, -0.001277923583984375, 0.02056884765625, -0.0224609375, 0.010101318359375, 0.046142578125, 0.04254150390625, -0.03515625, 0.017791748046875, -0.04705810546875, -0.0209503173828125, 0.05877685546875, 0.0357666015625, -0.019744873046875, 0.0008854866027832031, -0.047393798828125, -0.01076507568359375, -0.024261474609375, 0.0185089111328125, 0.046478271484375, 0.0240631103515625, -0.030548095703125, 0.044586181640625, -0.03594970703125, 0.04852294921875, 0.0291290283203125, -0.0020599365234375, 0.039093017578125, 0.004787445068359375, -0.038787841796875, 0.00910186767578125, 0.057281494140625, 0.053375244140625, 0.0183563232421875, -0.0030651092529296875, -0.031463623046875, -0.005359649658203125, 0.0145111083984375, -0.07818603515625, -0.033233642578125, 0.0042877197265625, -0.036407470703125, -0.0538330078125, 0.0199737548828125, -0.0382080078125, 0.00975799560546875, -0.0218353271484375, 0.03045654296875, -0.027374267578125, -0.0117645263671875, 0.014862060546875, -0.01641845703125, 0.011962890625, 0.01739501953125, -0.059417724609375, 0.0236663818359375, 0.02105712890625, 0.040435791015625, 0.0005521774291992188, -0.0239715576171875, -0.0191650390625, 0.00001621246337890625, -0.01666259765625, 0.0338134765625, -0.00012636184692382812, -0.03631591796875, -0.007038116455078125, 0.0261077880859375, -0.0052490234375, -0.0379638671875, 0.05743408203125, -0.0250701904296875, 0.0022754669189453125, -0.01406097412109375, -0.03955078125, -0.007808685302734375, 0.0271453857421875, -0.055938720703125, 0.0830078125, 0.0197296142578125, -0.043853759765625, 0.04058837890625, -0.03363037109375, -0.01334381103515625, 0.01019287109375, -0.0018472671508789062, -0.053192138671875, 0.01058197021484375, -0.00617218017578125, 0.04571533203125, -0.022308349609375, 0.0260772705078125, -0.0311431884765625, -0.0465087890625, 0.00017130374908447266, -0.047393798828125, 0.07330322265625, 0.00939178466796875, -0.032745361328125, -0.00569915771484375, -0.09368896484375, 0.02313232421875, 0.028717041015625, -0.042022705078125, 0.01018524169921875, -0.0252838134765625, 0.02471923828125, 0.0139617919921875, 0.0296478271484375, -0.034881591796875, 0.01262664794921875, -0.01375579833984375, 0.0244293212890625, 0.04571533203125, 0.0006518363952636719, 0.01142120361328125, -0.0294952392578125, 0.015716552734375, 0.0275726318359375, 0.032196044921875, 0.021240234375, -0.030029296875, -0.05999755859375, -0.0238800048828125, 0.012176513671875, 0.0257110595703125, -0.021820068359375, 0.06744384765625, 0.004730224609375, -0.058807373046875, -0.0197296142578125, 0.00646209716796875, 0.0377197265625, 0.05133056640625, 0.04241943359375, -0.0037860870361328125, -0.043487548828125, -0.09564208984375, 0.017181396484375, -0.014617919921875, 0.022430419921875, -0.008575439453125, 0.050994873046875, -0.0162353515625, 0.057891845703125, -0.044891357421875, -0.0175933837890625, -0.0239105224609375, -0.004344940185546875, 0.031982421875, 0.06439208984375, 0.061553955078125, -0.03271484375, -0.01508331298828125, -0.020355224609375, -0.059295654296875, 0.019989013671875, -0.005626678466796875, -0.021026611328125, -0.012298583984375, 0.0196380615234375, -0.045196533203125, 0.05914306640625, 0.0183563232421875, -0.01910400390625, 0.050994873046875, -0.031524658203125, -0.001033782958984375, -0.078857421875, 0.006183624267578125, 0.0156707763671875, -0.005863189697265625, -0.027801513671875, -0.002300262451171875, 0.00489044189453125, -0.007656097412109375, -0.03533935546875, 0.026458740234375, -0.0158538818359375, 0.0210113525390625, -0.0170440673828125, -0.04132080078125, 0.01128387451171875, 0.061431884765625, 0.0097198486328125, 0.040069580078125, 0.048828125, -0.043426513671875, 0.037994384765625, 0.03521728515625, -0.0168914794921875, 0.043426513671875, -0.07464599609375, 0.0018100738525390625, -0.012847900390625, 0.005657196044921875, -0.056396484375, -0.0118408203125, 0.0299530029296875, -0.0235137939453125, 0.027740478515625, -0.0260009765625, -0.0278472900390625, -0.03131103515625, -0.00463104248046875, 0.02685546875, 0.037078857421875, -0.03363037109375, 0.0033740997314453125, 0.001373291015625, 0.027252197265625, -0.039764404296875, -0.05963134765625, -0.032135009765625, -0.0192718505859375, -0.0245208740234375, 0.03070068359375, -0.01399993896484375, -0.00469970703125, -0.006999969482421875, -0.01500701904296875, -0.037689208984375, 0.0014619827270507812, 0.0308380126953125, 0.035308837890625, -0.01702880859375, -0.0077667236328125, 0.005126953125, -0.018035888671875, 0.0154876708984375, 0.0129241943359375, 0.036651611328125, -0.0249176025390625, -0.0195159912109375, -0.062255859375, 0.0073699951171875, 0.04229736328125, -0.007289886474609375, 0.06451416015625, 0.04400634765625, -0.039642333984375, -0.007213592529296875, -0.03228759765625, -0.0108642578125, -0.03271484375, 0.050201416015625, -0.035675048828125, -0.0142974853515625, 0.052703857421875, 0.00821685791015625, 0.0027866363525390625, 0.08544921875, 0.04193115234375, -0.005893707275390625, 0.08233642578125, 0.02557373046875, -0.00667572021484375, 0.01049041748046875, -0.07086181640625, -0.0244293212890625, -0.04510498046875, -0.044586181640625, -0.039154052734375, -0.0278167724609375, -0.044036865234375, 0.002948760986328125, 0.006561279296875, 0.031707763671875, -0.051544189453125, 0.0404052734375, -0.046905517578125, 0.03802490234375, 0.041168212890625, 0.03631591796875, 0.0114288330078125, 0.000030279159545898438, -0.0079193115234375, -0.0007510185241699219, -0.0633544921875, -0.031341552734375, 0.07958984375, 0.040008544921875, 0.0614013671875, -0.007587432861328125, 0.057830810546875, 0.01529693603515625, 0.0018835067749023438, -0.052154541015625, 0.030303955078125, 0.01171112060546875, -0.07415771484375, -0.01666259765625, -0.03076171875, -0.045135498046875, 0.0016489028930664062, -0.032318115234375, -0.037384033203125, 0.01381683349609375, 0.022003173828125, -0.035736083984375, 0.0220794677734375, -0.0430908203125, 0.07830810546875, -0.03192138671875, -0.0257110595703125, -0.005855560302734375, -0.03857421875, 0.00885772705078125, 0.00904083251953125, -0.032196044921875, -0.01198577880859375, 0.0235137939453125, 0.05426025390625, -0.05474853515625, 0.046875, -0.032135009765625, 0.031097412109375, 0.03363037109375, -0.01593017578125, 0.0411376953125, 0.0274810791015625, -0.015472412109375, 0.0254974365234375, 0.00717926025390625, -0.04486083984375, -0.032196044921875, 0.05133056640625, -0.07916259765625, -0.0158843994140625, -0.0433349609375, -0.038970947265625, -0.00675201416015625, 0.01531219482421875, 0.05718994140625, 0.053863525390625, -0.02496337890625, 0.030303955078125, 0.0401611328125, 0.009857177734375, 0.032623291015625, 0.024688720703125, 0.01258087158203125, -0.0223846435546875, 0.042327880859375, -0.00231170654296875, 0.0178680419921875, 0.006916046142578125, 0.0054473876953125, -0.03594970703125, -0.05389404296875, -0.056854248046875, 0.00531768798828125, -0.05133056640625, -0.029388427734375, -0.0128326416015625, -0.040069580078125, -0.0136260986328125, 0.00417327880859375, -0.044219970703125, -0.02679443359375, -0.045013427734375, -0.022979736328125, 0.0282135009765625, 0.042724609375, 0.0139007568359375, 0.0545654296875, -0.045135498046875, -0.01157379150390625, 0.003932952880859375, 0.0330810546875, -0.0021610260009765625, -0.059844970703125, -0.02947998046875, 0.020416259765625, -0.036468505859375, -0.05517578125, 0.0208740234375, 0.00384521484375, 0.058502197265625, 0.041595458984375, -0.003086090087890625, 0.0771484375, -0.03106689453125, 0.035888671875, 0.0282745361328125, -0.03564453125, 0.0284423828125, -0.0202789306640625, 0.0184173583984375, 0.06787109375, 0.038543701171875, 0.0207366943359375, 0.00006628036499023438, -0.084716796875, -0.04302978515625, 0.0640869140625, 0.035858154296875, 0.0027828216552734375, 0.0028591156005859375, 0.027252197265625, -0.00745391845703125, 0.0240631103515625, -0.048736572265625, -0.047698974609375, -0.0222930908203125, -0.00592041015625, -0.0085906982421875, -0.022216796875, -0.0121307373046875, -0.0462646484375, 0.0751953125, 0.00762176513671875, 0.0192413330078125, 0.007541656494140625, -0.0027446746826171875, -0.0076904296875, -0.00693511962890625, 0.04071044921875, 0.050994873046875, -0.055938720703125, -0.018646240234375, 0.021942138671875, -0.0303497314453125, 0.0058135986328125, 0.0273895263671875, 0.0003483295440673828, 0.01898193359375, 0.0269775390625, 0.0732421875, 0.017822265625, -0.0160369873046875, 0.0361328125, 0.0005655288696289062, -0.033416748046875, -0.03173828125, 0.00812530517578125, -0.017852783203125, 0.022979736328125, 0.0275726318359375, 0.04083251953125, 0.0089874267578125, -0.0255584716796875, 0.0174102783203125, 0.0228424072265625, -0.052398681640625, -0.0211181640625, 0.053985595703125, 0.01293182373046875, -0.0202484130859375, 0.05279541015625, -0.0142669677734375, -0.015716552734375, 0.06903076171875, 0.035614013671875, 0.055999755859375, -0.00926971435546875, 0.000370025634765625, 0.049774169921875, 0.0117950439453125, -0.0235137939453125, 0.02056884765625, 0.015655517578125, -0.037109375, -0.005718231201171875, -0.050262451171875, -0.0033283233642578125, 0.04376220703125, -0.09112548828125, 0.03271484375, -0.045013427734375, -0.034515380859375, 0.0241546630859375, 0.01271820068359375, -0.08807373046875, 0.03875732421875, -0.00225067138671875, 0.0867919921875, -0.06707763671875, 0.054840087890625, 0.047698974609375, -0.0433349609375, -0.07080078125, -0.0230712890625, -0.006900787353515625, -0.076416015625, 0.055908203125, 0.00907135009765625, 0.018707275390625, 0.01175689697265625, -0.025726318359375, -0.038330078125, 0.080810546875, 0.0296173095703125, -0.0635986328125, -0.005023956298828125, 0.0242919921875, 0.045013427734375, -0.019683837890625, 0.04949951171875, 0.0242919921875, 0.01290130615234375, 0.0236053466796875, -0.07147216796875, -0.0128326416015625, -0.017822265625, 0.006053924560546875, 0.0017452239990234375, -0.05877685546875, 0.07867431640625, -0.0035800933837890625, 0.028106689453125, 0.0187225341796875, 0.035400390625, 0.0166168212890625, 0.0189971923828125, 0.0278167724609375, 0.063232421875, 0.03436279296875, -0.0126190185546875, 0.06689453125, -0.030029296875, 0.06048583984375, 0.08465576171875, -0.0004467964172363281, 0.0345458984375, 0.0257110595703125, -0.019744873046875, 0.017791748046875, 0.05657958984375, -0.0265960693359375, 0.04315185546875, 0.020355224609375, -0.0010938644409179688, -0.03271484375, 0.0233917236328125, -0.054412841796875, 0.043182373046875, -0.0127410888671875, -0.052703857421875, -0.03271484375, -0.0299224853515625, -0.00777435302734375, -0.01047515869140625, -0.03887939453125, 0.042266845703125, -0.0251312255859375, -0.027435302734375, 0.0670166015625, 0.004795074462890625, 0.02655029296875, -0.04412841796875, -0.0151519775390625, -0.00943756103515625, 0.035980224609375, -0.0201568603515625, -0.04193115234375, 0.0162506103515625, -0.0032806396484375, -0.036163330078125, 0.0028667449951171875, 0.0309295654296875, -0.023773193359375, -0.07135009765625, 0.0012960433959960938, 0.036468505859375, 0.0141143798828125, -0.007785797119140625, -0.0797119140625, 0.00006145238876342773, -0.0018987655639648438, -0.017791748046875, 0.0169219970703125, 0.0269317626953125, 0.00112152099609375, 0.034912109375, 0.0384521484375, -0.00521087646484375, -0.001560211181640625, 0.00434112548828125, 0.076904296875, -0.0305633544921875, -0.0367431640625, -0.07342529296875, 0.05010986328125, -0.0207366943359375, -0.06317138671875, 0.042327880859375, 0.0889892578125, 0.06927490234375, -0.0288543701171875, 0.043914794921875, 0.00516510009765625, 0.0195465087890625, -0.031005859375, 0.0628662109375, -0.0284423828125, -0.001415252685546875, -0.0259552001953125, -0.07000732421875, 0.010406494140625, 0.054107666015625, -0.0033206939697265625, 0.0025177001953125, 0.02716064453125, 0.048858642578125, -0.01425933837890625, 0.00446319580078125, 0.020233154296875, -0.00658416748046875, 0.006122589111328125, 0.0390625, 0.042449951171875, -0.06768798828125, 0.03875732421875, -0.051849365234375, -0.026092529296875, -0.01319122314453125, -0.05303955078125, -0.0919189453125, -0.028717041015625, -0.03216552734375, -0.031707763671875, 0.010223388671875, 0.07293701171875, 0.07037353515625, -0.056396484375, -0.0233612060546875, -0.005527496337890625, -0.027984619140625, -0.0248260498046875, -0.0158538818359375, 0.0214385986328125, -0.00472259521484375, -0.06103515625, 0.00861358642578125, -0.021881103515625, 0.0302581787109375, -0.0134124755859375, -0.0189666748046875, -0.0142059326171875, -0.037750244140625, 0.01666259765625, 0.0040435791015625, -0.0263824462890625, -0.0183563232421875, -0.005214691162109375, -0.0024566650390625, 0.0123443603515625, 0.0211639404296875, -0.03759765625, 0.02239990234375, 0.0168609619140625, 0.0256500244140625, 0.046875, 0.0038852691650390625, 0.0263824462890625, -0.0643310546875, 0.043487548828125, 0.0251007080078125, 0.04107666015625, 0.0013427734375, -0.036041259765625, 0.033172607421875, 0.03375244140625, -0.033203125, -0.06365966796875, -0.011688232421875, -0.08660888671875, 0.01361083984375, 0.073974609375, 0.003131866455078125, -0.0193023681640625, 0.0264434814453125, -0.0196380615234375, 0.029388427734375, -0.03155517578125, 0.04388427734375, 0.050506591796875, -0.0008411407470703125, 0.0176544189453125, -0.03985595703125, 0.040069580078125, 0.0148468017578125, -0.043701171875, -0.01702880859375, 0.033782958984375, 0.03564453125, 0.00037598609924316406, 0.0227813720703125, -0.00594329833984375, 0.0225067138671875, 0.0030536651611328125, 0.01050567626953125, -0.04791259765625, -0.02935791015625, -0.017364501953125, -0.00402069091796875, -0.0032444000244140625, -0.046844482421875 ] ]
kou552/distilbert-base-uncased-finetuned-emotions
2023-10-26T18:15:54.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:emotion", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
text-classification
kou552
null
null
kou552/distilbert-base-uncased-finetuned-emotions
0
2
transformers
2023-10-26T17:59:22
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - emotion metrics: - accuracy - f1 model-index: - name: distilbert-base-uncased-finetuned-emotions 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.9215 - name: F1 type: f1 value: 0.9213366023493611 --- <!-- 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-emotions 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.2273 - Accuracy: 0.9215 - F1: 0.9213 ## 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.8487 | 1.0 | 250 | 0.3244 | 0.905 | 0.9037 | | 0.2581 | 2.0 | 500 | 0.2273 | 0.9215 | 0.9213 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,886
[ [ -0.03912353515625, -0.040740966796875, 0.01488494873046875, 0.0212249755859375, -0.02685546875, -0.0197906494140625, -0.01363372802734375, -0.007579803466796875, 0.006984710693359375, 0.00821685791015625, -0.05804443359375, -0.051910400390625, -0.058929443359375, -0.00583648681640625, -0.00881195068359375, 0.09002685546875, 0.00017952919006347656, 0.0290985107421875, -0.0030536651611328125, -0.0050201416015625, -0.026580810546875, -0.055023193359375, -0.044952392578125, -0.053955078125, 0.023193359375, 0.0244598388671875, 0.056182861328125, 0.0469970703125, 0.04541015625, 0.0203094482421875, -0.038604736328125, -0.0179290771484375, -0.05767822265625, -0.026275634765625, 0.00689697265625, -0.035430908203125, -0.0565185546875, -0.0003418922424316406, 0.0308685302734375, 0.0255889892578125, -0.031463623046875, 0.034088134765625, 0.00582122802734375, 0.064697265625, -0.048248291015625, 0.029510498046875, -0.03204345703125, 0.0322265625, -0.01308441162109375, -0.021453857421875, -0.0263214111328125, -0.003284454345703125, 0.01088714599609375, -0.033721923828125, 0.0231781005859375, -0.00279998779296875, 0.07470703125, 0.0347900390625, -0.0350341796875, -0.0055694580078125, -0.047149658203125, 0.04010009765625, -0.052459716796875, 0.0201568603515625, 0.0209503173828125, 0.023529052734375, -0.001964569091796875, -0.042236328125, -0.041015625, 0.00362396240234375, -0.005695343017578125, 0.0247039794921875, -0.0355224609375, 0.0166473388671875, 0.059600830078125, 0.04632568359375, -0.036834716796875, 0.002849578857421875, -0.0289154052734375, -0.003322601318359375, 0.051361083984375, 0.037841796875, -0.0106353759765625, -0.01081085205078125, -0.0306396484375, -0.0162811279296875, -0.0118255615234375, 0.0279388427734375, 0.045501708984375, 0.01454925537109375, -0.03369140625, 0.042449951171875, -0.026580810546875, 0.0419921875, 0.035125732421875, -0.00897216796875, 0.04833984375, 0.02423095703125, -0.031951904296875, 0.0059814453125, 0.06494140625, 0.058135986328125, 0.0221405029296875, 0.01390838623046875, -0.0232696533203125, 0.004329681396484375, 0.0197601318359375, -0.07696533203125, -0.032379150390625, 0.01922607421875, -0.050811767578125, -0.0489501953125, 0.004734039306640625, -0.05657958984375, 0.0024318695068359375, -0.043853759765625, 0.030670166015625, -0.035430908203125, -0.0220184326171875, 0.0210418701171875, 0.002155303955078125, 0.0016956329345703125, 0.0107574462890625, -0.06549072265625, 0.0333251953125, 0.0260772705078125, 0.040191650390625, 0.004268646240234375, -0.0145416259765625, -0.00594329833984375, -0.025390625, -0.01580810546875, 0.0269622802734375, -0.006816864013671875, -0.031982421875, -0.0017452239990234375, 0.01226806640625, 0.0022640228271484375, -0.0291900634765625, 0.06396484375, -0.021881103515625, 0.01409149169921875, -0.0228729248046875, -0.041900634765625, -0.02142333984375, 0.029144287109375, -0.0517578125, 0.0880126953125, 0.0129547119140625, -0.06549072265625, 0.0274810791015625, -0.040740966796875, -0.0083160400390625, -0.017669677734375, 0.004955291748046875, -0.0498046875, 0.0166168212890625, -0.0033512115478515625, 0.04229736328125, -0.0188751220703125, 0.021697998046875, -0.032745361328125, -0.04010009765625, 0.00611114501953125, -0.036895751953125, 0.0548095703125, 0.01004791259765625, -0.0389404296875, -0.002712249755859375, -0.09771728515625, 0.0113983154296875, 0.0228271484375, -0.032501220703125, -0.0017213821411132812, -0.0280609130859375, 0.0259857177734375, 0.0322265625, 0.0196533203125, -0.041534423828125, 0.00997161865234375, -0.0216217041015625, 0.0053558349609375, 0.04620361328125, -0.0007042884826660156, 0.00939178466796875, -0.0194549560546875, 0.02734375, 0.037384033203125, 0.023895263671875, 0.0196380615234375, -0.0159759521484375, -0.07000732421875, -0.01535797119140625, 0.01294708251953125, 0.03436279296875, -0.0198211669921875, 0.060028076171875, 0.002552032470703125, -0.06134033203125, -0.027099609375, -0.0002351999282836914, 0.036895751953125, 0.06268310546875, 0.0306396484375, -0.0200958251953125, -0.03692626953125, -0.07904052734375, 0.01026153564453125, -0.0010824203491210938, 0.021148681640625, 0.0092926025390625, 0.04229736328125, -0.0194091796875, 0.05743408203125, -0.047882080078125, -0.00786590576171875, 0.0020351409912109375, 0.0209197998046875, 0.03863525390625, 0.04718017578125, 0.05865478515625, -0.036041259765625, -0.0243072509765625, -0.019287109375, -0.058929443359375, 0.01739501953125, 0.001102447509765625, -0.0306396484375, -0.00409698486328125, 0.0033321380615234375, -0.0499267578125, 0.05706787109375, 0.022705078125, -0.0266876220703125, 0.054168701171875, -0.0243988037109375, 0.005947113037109375, -0.08319091796875, 0.00815582275390625, 0.0269775390625, -0.001678466796875, -0.032470703125, -0.0177001953125, 0.00994110107421875, -0.008880615234375, -0.038818359375, 0.033233642578125, -0.016204833984375, 0.0135345458984375, -0.0188751220703125, -0.0301666259765625, 0.0024394989013671875, 0.07098388671875, 0.01568603515625, 0.0162811279296875, 0.056671142578125, -0.03399658203125, 0.04559326171875, 0.042449951171875, -0.01678466796875, 0.06268310546875, -0.0654296875, 0.01251220703125, -0.0194549560546875, 0.0022754669189453125, -0.0555419921875, -0.0107574462890625, 0.0194091796875, -0.026214599609375, 0.0304718017578125, -0.0187530517578125, -0.0219573974609375, -0.037017822265625, -0.00878143310546875, 0.01306915283203125, 0.051055908203125, -0.041290283203125, 0.02618408203125, -0.0095062255859375, 0.01485443115234375, -0.052947998046875, -0.056915283203125, -0.0274200439453125, -0.0228118896484375, -0.0288848876953125, 0.00832366943359375, -0.01380157470703125, -0.006305694580078125, -0.0037078857421875, -0.01016998291015625, -0.01541900634765625, 0.0016565322875976562, 0.0469970703125, 0.0255279541015625, -0.00997161865234375, 0.002960205078125, 0.0067138671875, -0.01953125, 0.02618408203125, 0.020263671875, 0.0372314453125, -0.02349853515625, -0.02642822265625, -0.06976318359375, 0.00647735595703125, 0.04730224609375, -0.011474609375, 0.0616455078125, 0.052093505859375, -0.0478515625, 0.0003695487976074219, -0.031341552734375, -0.0153656005859375, -0.03192138671875, 0.044677734375, -0.0380859375, -0.0238494873046875, 0.0543212890625, -0.0017213821411132812, -0.005580902099609375, 0.06817626953125, 0.054168701171875, -0.005161285400390625, 0.09033203125, 0.0262908935546875, -0.01239013671875, 0.019805908203125, -0.05255126953125, -0.01053619384765625, -0.052703857421875, -0.032379150390625, -0.0268096923828125, -0.041900634765625, -0.041748046875, 0.01390838623046875, 0.006359100341796875, 0.0217437744140625, -0.06268310546875, 0.0135040283203125, -0.04339599609375, 0.023590087890625, 0.045501708984375, 0.0321044921875, -0.00008434057235717773, 0.006195068359375, -0.0117340087890625, -0.01361846923828125, -0.046844482421875, -0.034759521484375, 0.08697509765625, 0.0426025390625, 0.06610107421875, -0.00984954833984375, 0.057952880859375, 0.006587982177734375, 0.017669677734375, -0.053924560546875, 0.0220794677734375, 0.004669189453125, -0.056121826171875, -0.00597381591796875, -0.029327392578125, -0.04254150390625, 0.00604248046875, -0.033782958984375, -0.0506591796875, 0.027435302734375, 0.025177001953125, -0.0390625, 0.023681640625, -0.0401611328125, 0.0811767578125, -0.036529541015625, -0.026336669921875, -0.0074005126953125, -0.043487548828125, 0.012939453125, 0.00588226318359375, -0.023834228515625, -0.01314544677734375, 0.031646728515625, 0.055023193359375, -0.041839599609375, 0.050506591796875, -0.03192138671875, 0.0242767333984375, 0.024688720703125, -0.001262664794921875, 0.049407958984375, 0.01299285888671875, -0.0186309814453125, 0.0181427001953125, -0.0022487640380859375, -0.0293426513671875, -0.043670654296875, 0.044921875, -0.08209228515625, -0.0045318603515625, -0.0469970703125, -0.037689208984375, -0.01425933837890625, 0.00860595703125, 0.049407958984375, 0.048797607421875, -0.0171051025390625, 0.0208282470703125, 0.044158935546875, 0.0020046234130859375, 0.0190277099609375, 0.02734375, 0.007122039794921875, -0.037017822265625, 0.04962158203125, -0.010772705078125, 0.011138916015625, -0.002582550048828125, 0.00563812255859375, -0.0350341796875, -0.0277862548828125, -0.037322998046875, 0.007122039794921875, -0.058563232421875, -0.0228271484375, -0.03277587890625, -0.0223388671875, -0.0151214599609375, -0.0006299018859863281, -0.045257568359375, -0.01139068603515625, -0.05364990234375, -0.032196044921875, 0.039703369140625, 0.03814697265625, 0.0035228729248046875, 0.04620361328125, -0.045501708984375, -0.00490570068359375, 0.00830078125, 0.040618896484375, 0.007274627685546875, -0.057769775390625, -0.0206451416015625, 0.0162811279296875, -0.038360595703125, -0.060943603515625, 0.04058837890625, 0.002941131591796875, 0.03485107421875, 0.044708251953125, 0.0014066696166992188, 0.0732421875, -0.02630615234375, 0.043914794921875, 0.040740966796875, -0.055633544921875, 0.031890869140625, -0.018585205078125, 0.01038360595703125, 0.060089111328125, 0.05157470703125, -0.0171051025390625, 0.007480621337890625, -0.08367919921875, -0.0546875, 0.0692138671875, 0.0267181396484375, 0.0034637451171875, 0.00737762451171875, 0.035003662109375, -0.01137542724609375, 0.031585693359375, -0.062286376953125, -0.046844482421875, -0.028564453125, -0.032958984375, -0.003692626953125, -0.036376953125, -0.01708984375, -0.03973388671875, 0.07159423828125, 0.002223968505859375, 0.021820068359375, 0.00727081298828125, 0.00975799560546875, -0.0222015380859375, 0.00278472900390625, 0.038177490234375, 0.032745361328125, -0.05731201171875, -0.007602691650390625, 0.0217437744140625, -0.027557373046875, 0.01213836669921875, 0.0200042724609375, 0.00600433349609375, 0.00897216796875, 0.01445770263671875, 0.091552734375, 0.010223388671875, -0.01971435546875, 0.0408935546875, -0.01473236083984375, -0.0287322998046875, -0.033172607421875, -0.00609588623046875, -0.004528045654296875, 0.032867431640625, 0.0114898681640625, 0.0301666259765625, 0.0135040283203125, -0.0205535888671875, 0.01451873779296875, 0.00688934326171875, -0.0557861328125, -0.0284423828125, 0.051849365234375, 0.0095367431640625, -0.0158233642578125, 0.057952880859375, -0.019622802734375, -0.0280914306640625, 0.057952880859375, 0.032073974609375, 0.06634521484375, -0.00885009765625, -0.004913330078125, 0.05908203125, 0.00260162353515625, -0.0263214111328125, 0.04962158203125, 0.0179595947265625, -0.04052734375, -0.0009832382202148438, -0.058349609375, -0.01934814453125, 0.0305938720703125, -0.09954833984375, 0.0308074951171875, -0.03192138671875, -0.037017822265625, 0.00753021240234375, 0.00600433349609375, -0.0762939453125, 0.05816650390625, 0.0217742919921875, 0.08380126953125, -0.07525634765625, 0.04486083984375, 0.047698974609375, -0.033294677734375, -0.08428955078125, -0.026336669921875, 0.005435943603515625, -0.05267333984375, 0.0555419921875, 0.01061248779296875, 0.019378662109375, 0.0063934326171875, -0.02996826171875, -0.05206298828125, 0.08416748046875, 0.0298614501953125, -0.0687255859375, 0.00885772705078125, 0.017822265625, 0.06097412109375, -0.01535797119140625, 0.055877685546875, 0.0269317626953125, 0.01145172119140625, 0.01971435546875, -0.060089111328125, -0.00919342041015625, -0.03900146484375, 0.0017223358154296875, 0.002994537353515625, -0.05706787109375, 0.07977294921875, 0.0038890838623046875, 0.0230712890625, -0.0012903213500976562, 0.0447998046875, 0.023681640625, 0.02587890625, 0.040191650390625, 0.08050537109375, 0.042266845703125, -0.0196990966796875, 0.07025146484375, -0.046417236328125, 0.06793212890625, 0.08514404296875, -0.00843048095703125, 0.04278564453125, 0.02142333984375, -0.0186309814453125, 0.025848388671875, 0.071044921875, -0.01172637939453125, 0.0350341796875, 0.0213470458984375, -0.002300262451171875, -0.021697998046875, 0.0157318115234375, -0.042236328125, 0.0293426513671875, -0.001537322998046875, -0.041839599609375, -0.01522064208984375, -0.0087127685546875, 0.0031948089599609375, -0.0180511474609375, -0.029449462890625, 0.037750244140625, -0.011749267578125, -0.0189208984375, 0.059112548828125, -0.005603790283203125, 0.03753662109375, -0.03582763671875, -0.001190185546875, -0.01568603515625, 0.031707763671875, -0.02984619140625, -0.047454833984375, 0.01239013671875, 0.01103973388671875, -0.0200958251953125, 0.0018415451049804688, 0.030548095703125, -0.03289794921875, -0.058349609375, 0.01548004150390625, 0.0205230712890625, 0.00991058349609375, -0.016082763671875, -0.07745361328125, -0.0015439987182617188, -0.006412506103515625, -0.0562744140625, 0.0037937164306640625, 0.03955078125, 0.0167999267578125, 0.037628173828125, 0.035552978515625, -0.004489898681640625, -0.004840850830078125, 0.012786865234375, 0.07501220703125, -0.044708251953125, -0.038787841796875, -0.066162109375, 0.06365966796875, -0.0139007568359375, -0.060211181640625, 0.0404052734375, 0.06494140625, 0.05419921875, -0.0229644775390625, 0.039031982421875, 0.003932952880859375, 0.0210723876953125, -0.02642822265625, 0.050506591796875, -0.043701171875, -0.0222015380859375, -0.037811279296875, -0.0623779296875, 0.0013284683227539062, 0.052642822265625, -0.0162506103515625, 0.00362396240234375, 0.031585693359375, 0.046600341796875, -0.004058837890625, 0.00469207763671875, 0.0167236328125, 0.005550384521484375, 0.0006003379821777344, 0.0458984375, 0.042694091796875, -0.05609130859375, 0.0193939208984375, -0.05706787109375, -0.0210723876953125, -0.01229095458984375, -0.057830810546875, -0.0732421875, -0.028289794921875, -0.0396728515625, -0.033447265625, -0.002838134765625, 0.0816650390625, 0.059722900390625, -0.05682373046875, -0.017791748046875, 0.00249481201171875, -0.037261962890625, -0.01279449462890625, -0.01471710205078125, 0.0243072509765625, 0.003101348876953125, -0.0579833984375, -0.016021728515625, -0.0096282958984375, 0.0284881591796875, -0.00804901123046875, -0.0259552001953125, -0.007122039794921875, -0.0181884765625, 0.023040771484375, 0.0013360977172851562, -0.028411865234375, -0.0166168212890625, 0.0008816719055175781, -0.01190948486328125, 0.0157928466796875, 0.0147857666015625, -0.0232086181640625, 0.03460693359375, 0.02056884765625, 0.023651123046875, 0.05316162109375, 0.00788116455078125, 0.0124664306640625, -0.057952880859375, 0.041290283203125, 0.0188446044921875, 0.048248291015625, 0.006725311279296875, -0.0396728515625, 0.034149169921875, 0.02532958984375, -0.0413818359375, -0.05987548828125, -0.012908935546875, -0.0943603515625, 0.023895263671875, 0.080322265625, -0.006526947021484375, -0.0311431884765625, 0.038909912109375, -0.027740478515625, 0.033538818359375, -0.03167724609375, 0.053558349609375, 0.0611572265625, -0.01416778564453125, -0.00023686885833740234, -0.02777099609375, 0.039093017578125, 0.0276641845703125, -0.04443359375, -0.0118408203125, 0.038421630859375, 0.0307769775390625, 0.011138916015625, 0.024322509765625, -0.006290435791015625, 0.021270751953125, 0.005100250244140625, 0.044281005859375, -0.026214599609375, -0.01523590087890625, -0.0372314453125, -0.0009889602661132812, 0.00421142578125, -0.03302001953125 ] ]
thrunlab/t5-base_cola_moe_ex38_epochs-3_decoder_all_sparsity20_mare_mlp
2023-10-26T19:55:40.000Z
[ "transformers", "pytorch", "t5", "text-classification", "generated_from_trainer", "dataset:glue", "license:apache-2.0", "model-index", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-classification
thrunlab
null
null
thrunlab/t5-base_cola_moe_ex38_epochs-3_decoder_all_sparsity20_mare_mlp
0
2
transformers
2023-10-26T19:46:51
--- license: apache-2.0 base_model: t5-base tags: - generated_from_trainer datasets: - glue metrics: - accuracy model-index: - name: t5-base_cola_moe_ex38_epochs-3_decoder_all_sparsity20_mare_mlp results: - task: name: Text Classification type: text-classification dataset: name: glue type: glue config: cola split: validation args: cola metrics: - name: Accuracy type: accuracy value: 0.835091083413231 --- <!-- 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-base_cola_moe_ex38_epochs-3_decoder_all_sparsity20_mare_mlp This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-base) on the glue dataset. It achieves the following results on the evaluation set: - Loss: 0.6107 - Accuracy: 0.8351 ## 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: 32 - seed: 1 - 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 - lr_scheduler_warmup_steps: 20 - num_epochs: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | 0.54 | 0.19 | 50 | 0.9351 | 0.8178 | | 0.508 | 0.37 | 100 | 0.7150 | 0.8332 | | 0.5206 | 0.56 | 150 | 0.6512 | 0.8265 | | 0.4831 | 0.75 | 200 | 0.6504 | 0.8274 | | 0.5094 | 0.93 | 250 | 0.5474 | 0.8313 | | 0.3632 | 1.12 | 300 | 0.6911 | 0.8226 | | 0.3467 | 1.31 | 350 | 0.6089 | 0.8303 | | 0.3803 | 1.5 | 400 | 0.5704 | 0.8360 | | 0.3281 | 1.68 | 450 | 0.6079 | 0.8313 | | 0.3239 | 1.87 | 500 | 0.5792 | 0.8284 | | 0.2903 | 2.06 | 550 | 0.5910 | 0.8293 | | 0.3892 | 2.24 | 600 | 0.6007 | 0.8341 | | 0.2846 | 2.43 | 650 | 0.5993 | 0.8351 | | 0.3209 | 2.62 | 700 | 0.6508 | 0.8360 | | 0.2325 | 2.8 | 750 | 0.6217 | 0.8341 | | 0.3949 | 2.99 | 800 | 0.6201 | 0.8341 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.0.1+cu117 - Datasets 2.9.0 - Tokenizers 0.14.1
2,719
[ [ -0.03369140625, -0.039825439453125, 0.0028514862060546875, 0.01033782958984375, -0.007648468017578125, -0.0161895751953125, -0.003200531005859375, -0.01076507568359375, 0.02392578125, 0.0164947509765625, -0.04766845703125, -0.053070068359375, -0.05352783203125, -0.01421356201171875, -0.006320953369140625, 0.070068359375, 0.0073394775390625, 0.0065460205078125, -0.00704193115234375, -0.0011243820190429688, -0.0330810546875, -0.0238037109375, -0.05224609375, -0.04052734375, 0.010101318359375, 0.029327392578125, 0.06256103515625, 0.062744140625, 0.03924560546875, 0.02410888671875, -0.02880859375, 0.0003590583801269531, -0.04345703125, -0.037506103515625, 0.013580322265625, -0.042144775390625, -0.051788330078125, 0.0055389404296875, 0.041259765625, 0.04071044921875, -0.01294708251953125, 0.039886474609375, 0.012237548828125, 0.0455322265625, -0.039459228515625, 0.02191162109375, -0.0219879150390625, 0.022979736328125, -0.01219940185546875, -0.0177001953125, -0.016693115234375, -0.007305145263671875, 0.0077972412109375, -0.045257568359375, 0.04010009765625, -0.0031337738037109375, 0.10693359375, 0.0294189453125, -0.023162841796875, 0.00782012939453125, -0.04595947265625, 0.05108642578125, -0.043487548828125, 0.0269927978515625, 0.033966064453125, 0.0156402587890625, -0.002532958984375, -0.067138671875, -0.03631591796875, 0.01800537109375, -0.003742218017578125, 0.017242431640625, -0.01149749755859375, -0.013641357421875, 0.04571533203125, 0.049896240234375, -0.046051025390625, 0.007579803466796875, -0.045989990234375, -0.0252838134765625, 0.044586181640625, 0.0341796875, -0.0014410018920898438, -0.013275146484375, -0.0413818359375, -0.01280975341796875, -0.0301666259765625, 0.0294189453125, 0.033935546875, 0.01059722900390625, -0.035430908203125, 0.0343017578125, -0.0092010498046875, 0.051849365234375, 0.022369384765625, -0.0254669189453125, 0.056427001953125, -0.0056304931640625, -0.03564453125, -0.0023441314697265625, 0.05743408203125, 0.046630859375, 0.004726409912109375, 0.005260467529296875, -0.00821685791015625, -0.005908966064453125, 0.01763916015625, -0.07403564453125, -0.0266265869140625, 0.029296875, -0.044189453125, -0.040679931640625, 0.01172637939453125, -0.0401611328125, 0.012725830078125, -0.0256805419921875, 0.02850341796875, -0.02685546875, -0.0167083740234375, 0.004913330078125, -0.011260986328125, 0.0247802734375, 0.005764007568359375, -0.0758056640625, 0.0194854736328125, 0.039215087890625, 0.05963134765625, 0.00656890869140625, -0.01800537109375, -0.000553131103515625, 0.01354217529296875, -0.036163330078125, 0.04766845703125, -0.010223388671875, -0.033172607421875, -0.021392822265625, 0.0279388427734375, -0.020416259765625, -0.0350341796875, 0.0521240234375, -0.0211639404296875, 0.030670166015625, -0.013946533203125, -0.04620361328125, -0.023590087890625, 0.0261993408203125, -0.048126220703125, 0.09454345703125, 0.0128326416015625, -0.065673828125, 0.052032470703125, -0.0411376953125, 0.00958251953125, -0.00760650634765625, -0.001621246337890625, -0.0709228515625, -0.01544952392578125, 0.019561767578125, 0.033477783203125, -0.02093505859375, 0.0238494873046875, -0.0262451171875, -0.037628173828125, -0.0130615234375, -0.02984619140625, 0.0767822265625, 0.01064300537109375, -0.04718017578125, 0.01105499267578125, -0.0782470703125, 0.0194549560546875, 0.0200042724609375, -0.0295257568359375, 0.017059326171875, -0.0295562744140625, 0.01788330078125, 0.019134521484375, 0.0249481201171875, -0.0330810546875, 0.0199127197265625, -0.0236968994140625, 0.0299835205078125, 0.049468994140625, 0.006988525390625, 0.0190582275390625, -0.036651611328125, 0.0191802978515625, 0.030731201171875, 0.0240631103515625, 0.00531768798828125, -0.042327880859375, -0.071044921875, -0.028045654296875, 0.0155029296875, 0.036407470703125, -0.01387786865234375, 0.0531005859375, -0.0100555419921875, -0.055267333984375, -0.030426025390625, -0.0016412734985351562, 0.02001953125, 0.05413818359375, 0.027496337890625, -0.006061553955078125, -0.0360107421875, -0.08111572265625, 0.005828857421875, 0.0008440017700195312, 0.01108551025390625, 0.0209808349609375, 0.05633544921875, -0.01047515869140625, 0.072265625, -0.046600341796875, -0.03314208984375, -0.001300811767578125, -0.00162506103515625, 0.04486083984375, 0.05108642578125, 0.061614990234375, -0.0498046875, -0.032257080078125, -0.011322021484375, -0.065185546875, 0.02532958984375, -0.0022068023681640625, -0.0116424560546875, 0.003940582275390625, 0.01482391357421875, -0.039703369140625, 0.05419921875, 0.03826904296875, -0.037689208984375, 0.0625, -0.0280303955078125, 0.00821685791015625, -0.0906982421875, 0.033111572265625, -0.0006923675537109375, -0.016693115234375, -0.032257080078125, -0.008453369140625, 0.009124755859375, -0.02276611328125, -0.030914306640625, 0.04376220703125, -0.0265960693359375, 0.007904052734375, -0.00559234619140625, -0.029327392578125, -0.00022411346435546875, 0.0543212890625, 0.0128021240234375, 0.0693359375, 0.054412841796875, -0.03179931640625, 0.02197265625, 0.02392578125, -0.0299072265625, 0.0325927734375, -0.061492919921875, 0.004547119140625, 0.00475311279296875, 0.0007457733154296875, -0.0633544921875, -0.021697998046875, 0.0240631103515625, -0.040924072265625, 0.0230255126953125, -0.017303466796875, -0.0114898681640625, -0.046356201171875, -0.0249786376953125, 0.0020427703857421875, 0.03656005859375, -0.0294189453125, 0.031402587890625, 0.005207061767578125, 0.022308349609375, -0.06341552734375, -0.053924560546875, -0.0048980712890625, -0.022979736328125, -0.05291748046875, 0.0294189453125, -0.0017271041870117188, 0.004222869873046875, 0.001651763916015625, -0.005168914794921875, -0.02142333984375, 0.0033664703369140625, 0.03167724609375, 0.0226287841796875, -0.020294189453125, -0.01336669921875, -0.0155181884765625, -0.02972412109375, 0.01003265380859375, -0.00994873046875, 0.045440673828125, -0.0240478515625, -0.019805908203125, -0.061737060546875, -0.00652313232421875, 0.03790283203125, -0.0090484619140625, 0.08172607421875, 0.055938720703125, -0.03466796875, 0.0015039443969726562, -0.0325927734375, -0.01401519775390625, -0.0341796875, 0.021575927734375, -0.048309326171875, -0.03729248046875, 0.06317138671875, -0.0023651123046875, 0.00821685791015625, 0.063720703125, 0.048828125, -0.00605010986328125, 0.07196044921875, 0.023193359375, -0.00531005859375, 0.0162506103515625, -0.07623291015625, -0.004730224609375, -0.050506591796875, -0.0430908203125, -0.0274658203125, -0.027679443359375, -0.039031982421875, -0.0106201171875, 0.01751708984375, 0.019287109375, -0.05419921875, 0.01425933837890625, -0.041473388671875, 0.02587890625, 0.0528564453125, 0.033935546875, 0.0007276535034179688, 0.0008859634399414062, -0.0208892822265625, -0.01349639892578125, -0.0618896484375, -0.0416259765625, 0.09320068359375, 0.0301666259765625, 0.0416259765625, -0.0081634521484375, 0.052825927734375, 0.0096893310546875, 0.004375457763671875, -0.04144287109375, 0.0157928466796875, 0.0043792724609375, -0.06500244140625, -0.0107421875, -0.021087646484375, -0.06829833984375, 0.0195159912109375, -0.0294952392578125, -0.05938720703125, 0.037567138671875, 0.0268707275390625, -0.0259552001953125, 0.045684814453125, -0.04058837890625, 0.08642578125, -0.0017404556274414062, -0.040924072265625, 0.0036716461181640625, -0.048126220703125, 0.0198822021484375, 0.007251739501953125, -0.01299285888671875, -0.0058135986328125, 0.0030059814453125, 0.06011962890625, -0.048553466796875, 0.04571533203125, -0.01459503173828125, 0.0223236083984375, 0.0282135009765625, -0.007808685302734375, 0.043609619140625, 0.007160186767578125, -0.01357269287109375, 0.018585205078125, -0.0009236335754394531, -0.0479736328125, -0.0299224853515625, 0.051239013671875, -0.0816650390625, -0.0396728515625, -0.03851318359375, -0.039306640625, 0.01220703125, 0.0258026123046875, 0.046112060546875, 0.044464111328125, 0.0015211105346679688, 0.02801513671875, 0.044647216796875, 0.007068634033203125, 0.03424072265625, 0.01290130615234375, 0.0027790069580078125, -0.04718017578125, 0.06494140625, -0.0009627342224121094, 0.0186004638671875, -0.0042877197265625, 0.00787353515625, -0.0303192138671875, -0.022979736328125, -0.037750244140625, 0.01751708984375, -0.03900146484375, -0.01800537109375, -0.03436279296875, -0.0198516845703125, -0.044647216796875, -0.020965576171875, -0.0391845703125, -0.0241851806640625, -0.050384521484375, -0.00896453857421875, 0.0278472900390625, 0.03424072265625, 0.00196075439453125, 0.0291595458984375, -0.04931640625, -0.005157470703125, -0.00186920166015625, 0.0178985595703125, -0.00042700767517089844, -0.049072265625, -0.020660400390625, -0.0033416748046875, -0.038604736328125, -0.048492431640625, 0.050750732421875, 0.00904083251953125, 0.0416259765625, 0.05096435546875, -0.0157928466796875, 0.07733154296875, -0.0200347900390625, 0.06591796875, 0.025177001953125, -0.05029296875, 0.036041259765625, -0.0236053466796875, 0.025604248046875, 0.036773681640625, 0.04534912109375, -0.0205230712890625, -0.01082611083984375, -0.09368896484375, -0.05621337890625, 0.06256103515625, 0.022216796875, -0.01499176025390625, 0.0180816650390625, 0.0254058837890625, -0.0247650146484375, 0.018707275390625, -0.0576171875, -0.049713134765625, -0.0188446044921875, -0.006771087646484375, -0.00629425048828125, -0.0169525146484375, -0.01172637939453125, -0.03167724609375, 0.058929443359375, 0.003704071044921875, 0.031524658203125, 0.01044464111328125, 0.00839996337890625, -0.005901336669921875, -0.002559661865234375, 0.0455322265625, 0.0635986328125, -0.045440673828125, -0.00897216796875, 0.0173797607421875, -0.04302978515625, 0.0070343017578125, 0.0011310577392578125, -0.0185699462890625, -0.0013103485107421875, 0.03704833984375, 0.0660400390625, 0.004070281982421875, -0.0003979206085205078, 0.0418701171875, 0.011688232421875, -0.032196044921875, -0.033721923828125, 0.004558563232421875, 0.00684356689453125, 0.022552490234375, 0.025146484375, 0.029815673828125, 0.007541656494140625, -0.022857666015625, 0.0166473388671875, 0.0115509033203125, -0.043609619140625, -0.01085662841796875, 0.06976318359375, 0.00152587890625, -0.017791748046875, 0.06072998046875, -0.00019109249114990234, -0.03363037109375, 0.07373046875, 0.038665771484375, 0.048065185546875, -0.02264404296875, -0.004192352294921875, 0.07159423828125, 0.0167083740234375, 0.0006098747253417969, 0.032379150390625, 0.0157318115234375, -0.0309906005859375, -0.006866455078125, -0.042938232421875, -0.01207733154296875, 0.029693603515625, -0.07427978515625, 0.039306640625, -0.0272064208984375, -0.035888671875, -0.0005288124084472656, 0.01450347900390625, -0.06463623046875, 0.04058837890625, 0.003978729248046875, 0.08697509765625, -0.0714111328125, 0.0469970703125, 0.04345703125, -0.038818359375, -0.07794189453125, -0.0304412841796875, -0.0021820068359375, -0.06402587890625, 0.058013916015625, 0.01141357421875, 0.0241546630859375, 0.00994110107421875, -0.0379638671875, -0.06768798828125, 0.09710693359375, 0.014617919921875, -0.03997802734375, 0.0031147003173828125, 0.0217437744140625, 0.03790283203125, -0.01013946533203125, 0.042144775390625, 0.035308837890625, 0.0241546630859375, 0.0132293701171875, -0.073486328125, 0.0007085800170898438, -0.028228759765625, -0.0004723072052001953, 0.019989013671875, -0.061798095703125, 0.083740234375, -0.0191497802734375, 0.018646240234375, -0.0021533966064453125, 0.0572509765625, 0.029815673828125, 0.0122528076171875, 0.0291595458984375, 0.07928466796875, 0.0521240234375, -0.0245819091796875, 0.0736083984375, -0.0443115234375, 0.06903076171875, 0.0648193359375, 0.017181396484375, 0.050140380859375, 0.029693603515625, -0.0276031494140625, 0.0278167724609375, 0.07861328125, -0.0226287841796875, 0.0259857177734375, 0.0006041526794433594, -0.01558685302734375, -0.029296875, 0.0143890380859375, -0.05224609375, 0.01617431640625, 0.0173187255859375, -0.04156494140625, -0.02203369140625, -0.013092041015625, 0.00539398193359375, -0.0221710205078125, -0.0288848876953125, 0.039154052734375, -0.01727294921875, -0.01593017578125, 0.059417724609375, -0.006622314453125, 0.030670166015625, -0.04248046875, -0.01239776611328125, -0.00641632080078125, 0.036346435546875, -0.04522705078125, -0.06439208984375, 0.01448822021484375, -0.01035308837890625, -0.0191802978515625, 0.0033092498779296875, 0.036224365234375, -0.016204833984375, -0.049896240234375, -0.0006995201110839844, 0.012359619140625, 0.0172882080078125, 0.01384735107421875, -0.0740966796875, -0.01033782958984375, 0.00623321533203125, -0.0543212890625, -0.00006562471389770508, 0.0194549560546875, 0.0003800392150878906, 0.050750732421875, 0.049346923828125, -0.002063751220703125, 0.0148468017578125, -0.0093841552734375, 0.0831298828125, -0.04278564453125, -0.046783447265625, -0.04718017578125, 0.038299560546875, -0.016693115234375, -0.056671142578125, 0.0506591796875, 0.0782470703125, 0.051177978515625, -0.01412200927734375, 0.03192138671875, -0.01200103759765625, 0.0288543701171875, -0.035797119140625, 0.046356201171875, -0.045623779296875, -0.0128326416015625, -0.007762908935546875, -0.068115234375, -0.0204925537109375, 0.052093505859375, -0.032135009765625, 0.00954437255859375, 0.037689208984375, 0.06268310546875, -0.00281524658203125, 0.00024700164794921875, 0.0108795166015625, 0.002391815185546875, 0.0167999267578125, 0.041778564453125, 0.0237884521484375, -0.06396484375, 0.035736083984375, -0.051239013671875, -0.001895904541015625, -0.00933837890625, -0.04766845703125, -0.0635986328125, -0.0284576416015625, -0.034088134765625, -0.038848876953125, -0.00524139404296875, 0.07232666015625, 0.0633544921875, -0.05169677734375, -0.0255889892578125, 0.0019121170043945312, -0.02130126953125, -0.0205535888671875, -0.01540374755859375, 0.060394287109375, -0.017578125, -0.0684814453125, -0.007366180419921875, -0.00951385498046875, 0.0234832763671875, -0.0101776123046875, -0.01218414306640625, -0.0164794921875, -0.0311737060546875, 0.016815185546875, 0.005451202392578125, -0.03692626953125, -0.015960693359375, -0.004791259765625, -0.01104736328125, 0.02880859375, 0.01666259765625, -0.033935546875, 0.031005859375, 0.0250091552734375, 0.02313232421875, 0.06402587890625, 0.00380706787109375, 0.01824951171875, -0.043548583984375, 0.0307464599609375, 0.00803375244140625, 0.0277557373046875, 0.0023212432861328125, -0.033721923828125, 0.0509033203125, 0.0418701171875, -0.04986572265625, -0.054931640625, -0.0258941650390625, -0.08441162109375, 0.005275726318359375, 0.072021484375, -0.0178985595703125, -0.042205810546875, 0.01232147216796875, -0.01116180419921875, 0.01053619384765625, -0.0221710205078125, 0.036163330078125, 0.059844970703125, -0.01593017578125, -0.0006537437438964844, -0.03851318359375, 0.038665771484375, 0.0093994140625, -0.049163818359375, -0.0216217041015625, 0.0194854736328125, 0.0439453125, 0.0137481689453125, 0.028778076171875, -0.01183319091796875, 0.0223236083984375, 0.0282135009765625, 0.0224456787109375, -0.02685546875, -0.01331329345703125, -0.0198211669921875, 0.0167694091796875, -0.001079559326171875, -0.034576416015625 ] ]
mpalaval/assignment2_attempt7
2023-10-26T20:32:13.000Z
[ "transformers", "pytorch", "t5", "text2text-generation", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
text2text-generation
mpalaval
null
null
mpalaval/assignment2_attempt7
0
2
transformers
2023-10-26T20:22:34
--- license: apache-2.0 base_model: t5-base tags: - generated_from_trainer model-index: - name: assignment2_attempt7 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. --> # assignment2_attempt7 This model is a fine-tuned version of [t5-base](https://huggingface.co/t5-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: 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: 100 ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,011
[ [ -0.0262298583984375, -0.032135009765625, 0.0174407958984375, 0.01157379150390625, -0.0297088623046875, -0.0297088623046875, -0.004177093505859375, -0.01538848876953125, 0.005218505859375, 0.0281524658203125, -0.04986572265625, -0.0517578125, -0.046142578125, -0.0016040802001953125, -0.0177459716796875, 0.09326171875, 0.005756378173828125, 0.0241851806640625, -0.01216888427734375, -0.00897216796875, -0.02703857421875, -0.038787841796875, -0.058746337890625, -0.0538330078125, 0.032562255859375, 0.0309600830078125, 0.04168701171875, 0.08154296875, 0.042694091796875, 0.0159759521484375, -0.0231781005859375, -0.018280029296875, -0.05242919921875, -0.029998779296875, -0.017181396484375, -0.029541015625, -0.07537841796875, -0.0031280517578125, 0.044403076171875, 0.037628173828125, -0.01552581787109375, 0.058258056640625, -0.0111541748046875, 0.01113128662109375, -0.044036865234375, 0.029266357421875, -0.038238525390625, 0.0234832763671875, -0.00919342041015625, -0.0263519287109375, -0.031646728515625, -0.0082244873046875, -0.0025196075439453125, -0.0384521484375, 0.0496826171875, -0.0035686492919921875, 0.08367919921875, 0.031463623046875, -0.01947021484375, 0.02197265625, -0.06298828125, 0.04583740234375, -0.0423583984375, 0.0204620361328125, 0.03009033203125, 0.037567138671875, 0.009735107421875, -0.0653076171875, -0.0146636962890625, -0.0103759765625, 0.01593017578125, 0.01062774658203125, -0.005462646484375, 0.014068603515625, 0.06768798828125, 0.0248260498046875, -0.0296478271484375, 0.01073455810546875, -0.057373046875, -0.0169830322265625, 0.044525146484375, 0.038848876953125, -0.0092926025390625, -0.0084686279296875, -0.0258026123046875, -0.0024166107177734375, -0.03192138671875, -0.0006480216979980469, 0.03631591796875, 0.01837158203125, -0.03411865234375, 0.05548095703125, -0.01447296142578125, 0.05316162109375, 0.0171051025390625, -0.00949859619140625, 0.044219970703125, 0.00319671630859375, -0.0308837890625, -0.01187896728515625, 0.048553466796875, 0.042572021484375, 0.0237579345703125, -0.016754150390625, -0.0261993408203125, -0.00597381591796875, 0.034698486328125, -0.06439208984375, -0.0279998779296875, 0.0146331787109375, -0.046234130859375, -0.060211181640625, 0.000461578369140625, -0.042816162109375, 0.00632476806640625, -0.0249481201171875, 0.038848876953125, -0.020751953125, -0.0172576904296875, -0.00835418701171875, -0.0216217041015625, 0.0248565673828125, 0.00872039794921875, -0.06671142578125, 0.0282440185546875, 0.02105712890625, 0.0233917236328125, 0.011474609375, -0.0275115966796875, -0.015350341796875, 0.0188140869140625, -0.029754638671875, 0.033111572265625, -0.01253509521484375, -0.036590576171875, -0.0185699462890625, 0.016326904296875, 0.0012941360473632812, -0.03741455078125, 0.07330322265625, -0.020599365234375, 0.0204010009765625, -0.01465606689453125, -0.050567626953125, -0.01024627685546875, 0.0311279296875, -0.052947998046875, 0.0843505859375, 0.0229644775390625, -0.048004150390625, 0.03704833984375, -0.066650390625, -0.004730224609375, 0.00772857666015625, 0.007213592529296875, -0.0606689453125, 0.007427215576171875, -0.005527496337890625, 0.0235595703125, -0.005336761474609375, 0.0169219970703125, -0.045257568359375, -0.0411376953125, -0.0190277099609375, -0.0265655517578125, 0.0509033203125, 0.0095062255859375, -0.0277557373046875, 0.018951416015625, -0.08966064453125, 0.0252838134765625, 0.0247344970703125, -0.028350830078125, 0.0208587646484375, -0.028778076171875, 0.038848876953125, 0.015869140625, 0.0343017578125, -0.04620361328125, 0.0241546630859375, -0.0183563232421875, 0.021575927734375, 0.046875, 0.006374359130859375, 0.010284423828125, -0.0281829833984375, 0.017486572265625, 0.01418304443359375, 0.034393310546875, 0.0272064208984375, -0.021759033203125, -0.07928466796875, -0.00759124755859375, 0.030548095703125, 0.0239715576171875, -0.0192413330078125, 0.046844482421875, -0.006683349609375, -0.05963134765625, -0.015289306640625, 0.0021686553955078125, 0.0293121337890625, 0.041473388671875, 0.048858642578125, -0.004993438720703125, -0.04083251953125, -0.0794677734375, -0.00179290771484375, 0.007228851318359375, 0.01558685302734375, 0.01143646240234375, 0.056884765625, -0.00787353515625, 0.056640625, -0.035797119140625, -0.0011434555053710938, -0.026275634765625, -0.003917694091796875, 0.0203094482421875, 0.0643310546875, 0.0609130859375, -0.014801025390625, -0.0099639892578125, -0.029083251953125, -0.06597900390625, 0.005908966064453125, 0.0059356689453125, -0.0172576904296875, -0.00858306884765625, 0.02056884765625, -0.044830322265625, 0.050201416015625, 0.0034885406494140625, -0.0200042724609375, 0.0272216796875, -0.031768798828125, -0.031646728515625, -0.09307861328125, 0.0240936279296875, 0.0166168212890625, -0.00931549072265625, -0.0303497314453125, 0.0024261474609375, 0.01148223876953125, -0.02056884765625, -0.0301055908203125, 0.04779052734375, -0.0148773193359375, 0.0015630722045898438, -0.01947021484375, -0.04498291015625, -0.00244903564453125, 0.051361083984375, 0.00820159912109375, 0.031951904296875, 0.040985107421875, -0.04583740234375, 0.0293731689453125, 0.038970947265625, 0.002483367919921875, 0.0302886962890625, -0.0762939453125, 0.019500732421875, -0.00949859619140625, 0.002788543701171875, -0.049346923828125, -0.0224761962890625, 0.040985107421875, -0.02880859375, 0.0223236083984375, -0.018280029296875, -0.029205322265625, -0.0309906005859375, -0.0009207725524902344, 0.031890869140625, 0.040740966796875, -0.04608154296875, 0.03778076171875, -0.01238250732421875, 0.045928955078125, -0.037353515625, -0.04388427734375, -0.0196380615234375, -0.0155029296875, -0.0174560546875, 0.0158843994140625, 0.0026378631591796875, 0.01220703125, -0.001209259033203125, -0.01064300537109375, -0.01806640625, -0.00539398193359375, 0.02862548828125, 0.0218048095703125, -0.0102691650390625, -0.00986480712890625, -0.0036163330078125, -0.0258941650390625, 0.0258331298828125, -0.0074462890625, 0.0283355712890625, 0.006603240966796875, -0.0171051025390625, -0.0587158203125, -0.003841400146484375, 0.04486083984375, -0.0074462890625, 0.05682373046875, 0.0631103515625, -0.041046142578125, -0.01198577880859375, -0.031585693359375, -0.01033782958984375, -0.0288543701171875, 0.038818359375, -0.046417236328125, -0.0094451904296875, 0.040313720703125, 0.007415771484375, 0.0123138427734375, 0.069580078125, 0.04193115234375, 0.01129150390625, 0.08331298828125, 0.033782958984375, 0.0031833648681640625, 0.034027099609375, -0.061798095703125, -0.009063720703125, -0.057708740234375, -0.03826904296875, -0.0369873046875, -0.018280029296875, -0.0506591796875, 0.0096435546875, 0.01523590087890625, 0.0084228515625, -0.061767578125, 0.03466796875, -0.03240966796875, 0.025726318359375, 0.05682373046875, 0.038787841796875, -0.00858306884765625, 0.005535125732421875, -0.012481689453125, 0.0030517578125, -0.06304931640625, -0.0310516357421875, 0.10662841796875, 0.039703369140625, 0.0504150390625, -0.01226043701171875, 0.048919677734375, -0.0026607513427734375, 0.00879669189453125, -0.037261962890625, 0.03497314453125, 0.00298309326171875, -0.070556640625, -0.0010013580322265625, -0.019927978515625, -0.0511474609375, 0.0018053054809570312, -0.03436279296875, -0.04083251953125, 0.006694793701171875, 0.02203369140625, -0.02294921875, 0.025390625, -0.053802490234375, 0.0982666015625, -0.014892578125, -0.035888671875, -0.006591796875, -0.033447265625, 0.0027751922607421875, 0.0173492431640625, -0.03656005859375, 0.0008149147033691406, 0.0066375732421875, 0.057830810546875, -0.04608154296875, 0.053375244140625, -0.034515380859375, 0.038970947265625, 0.0174713134765625, -0.016998291015625, 0.034088134765625, 0.00439453125, -0.016143798828125, 0.0178985595703125, 0.0023651123046875, -0.060455322265625, -0.024932861328125, 0.039520263671875, -0.101806640625, -0.0092620849609375, -0.031982421875, -0.0384521484375, -0.01343536376953125, 0.022735595703125, 0.05078125, 0.05224609375, -0.0193634033203125, 0.0178985595703125, 0.0231781005859375, 0.0068206787109375, 0.033172607421875, 0.014617919921875, 0.01192474365234375, -0.0321044921875, 0.064208984375, -0.0015802383422851562, 0.0158233642578125, -0.002109527587890625, 0.007427215576171875, -0.0345458984375, -0.044097900390625, -0.0306549072265625, 0.0178680419921875, -0.05389404296875, -0.0133209228515625, -0.0277099609375, -0.035003662109375, -0.0207672119140625, 0.01068115234375, -0.034027099609375, -0.0197296142578125, -0.048980712890625, -0.021697998046875, 0.024688720703125, 0.053314208984375, -0.0002269744873046875, 0.0523681640625, -0.049285888671875, 0.005527496337890625, -0.0011348724365234375, 0.043609619140625, 0.0021953582763671875, -0.059722900390625, -0.025421142578125, -0.00016224384307861328, -0.03826904296875, -0.04241943359375, 0.0224151611328125, 0.0011110305786132812, 0.053497314453125, 0.0303192138671875, -0.0126953125, 0.056610107421875, -0.0203857421875, 0.055328369140625, 0.0062408447265625, -0.044708251953125, 0.02618408203125, -0.03253173828125, 0.028350830078125, 0.039642333984375, 0.0269012451171875, 0.0156402587890625, -0.00905609130859375, -0.10479736328125, -0.051727294921875, 0.066650390625, 0.028656005859375, 0.0147705078125, 0.0200653076171875, 0.0423583984375, -0.00672149658203125, 0.0220184326171875, -0.0614013671875, -0.03912353515625, -0.033294677734375, -0.0164947509765625, -0.0022430419921875, -0.030120849609375, -0.0138397216796875, -0.0477294921875, 0.0703125, 0.0034427642822265625, 0.030029296875, -0.00940704345703125, 0.00899505615234375, -0.0269622802734375, -0.00829315185546875, 0.04486083984375, 0.0606689453125, -0.052886962890625, -0.021881103515625, 0.026519775390625, -0.0316162109375, -0.0032596588134765625, 0.00971221923828125, -0.016204833984375, 0.01058197021484375, 0.030120849609375, 0.0830078125, -0.00011295080184936523, 0.006801605224609375, 0.0214996337890625, -0.0009093284606933594, -0.03570556640625, -0.035552978515625, 0.027923583984375, -0.00931549072265625, 0.0122833251953125, 0.0005664825439453125, 0.0350341796875, -0.001895904541015625, -0.004856109619140625, 0.00962066650390625, 0.00775146484375, -0.0265350341796875, -0.0273590087890625, 0.071533203125, 0.0142364501953125, -0.0245361328125, 0.05072021484375, -0.0016317367553710938, -0.0145263671875, 0.06329345703125, 0.04486083984375, 0.06524658203125, -0.003452301025390625, -0.00942230224609375, 0.0667724609375, 0.003627777099609375, -0.007106781005859375, 0.04119873046875, 0.006282806396484375, -0.043426513671875, -0.006572723388671875, -0.035308837890625, -0.025726318359375, 0.0413818359375, -0.0787353515625, 0.04840087890625, -0.06072998046875, -0.02764892578125, 0.0258331298828125, 0.01336669921875, -0.07232666015625, 0.0494384765625, 0.0132293701171875, 0.0843505859375, -0.072021484375, 0.0648193359375, 0.05682373046875, -0.0496826171875, -0.0821533203125, -0.0128631591796875, -0.0223846435546875, -0.061676025390625, 0.047515869140625, -0.007640838623046875, 0.0285797119140625, 0.0258941650390625, -0.059417724609375, -0.049224853515625, 0.0767822265625, 0.0247344970703125, -0.0276641845703125, -0.00629425048828125, 0.015960693359375, 0.0537109375, -0.0193328857421875, 0.06365966796875, 0.0136566162109375, 0.0175933837890625, 0.0278167724609375, -0.06707763671875, -0.011688232421875, -0.0245208740234375, 0.0169219970703125, 0.00390625, -0.0557861328125, 0.07269287109375, -0.003734588623046875, 0.04046630859375, 0.019195556640625, 0.043487548828125, 0.01105499267578125, 0.00424957275390625, 0.027374267578125, 0.06304931640625, 0.032867431640625, -0.00527191162109375, 0.06573486328125, -0.047027587890625, 0.0670166015625, 0.08209228515625, 0.0012445449829101562, 0.03485107421875, 0.0312042236328125, -0.0025005340576171875, 0.01444244384765625, 0.06976318359375, -0.047943115234375, 0.0313720703125, 0.0096282958984375, 0.0016727447509765625, -0.0367431640625, 0.006999969482421875, -0.05242919921875, 0.03167724609375, -0.0002644062042236328, -0.0614013671875, -0.045684814453125, -0.0294647216796875, -0.00835418701171875, -0.02935791015625, -0.032928466796875, 0.046295166015625, -0.0214996337890625, -0.0305023193359375, 0.052215576171875, 0.02130126953125, 0.01177215576171875, -0.038726806640625, -0.0135650634765625, -0.004878997802734375, 0.036834716796875, -0.032562255859375, -0.034423828125, 0.0200958251953125, 0.0016393661499023438, -0.021728515625, -0.006603240966796875, 0.032958984375, -0.021148681640625, -0.057830810546875, 0.005889892578125, 0.03424072265625, 0.01788330078125, 0.01355743408203125, -0.07244873046875, -0.003826141357421875, -0.0079803466796875, -0.0245513916015625, 0.00577545166015625, 0.017425537109375, -0.0018434524536132812, 0.037261962890625, 0.035125732421875, -0.00936126708984375, 0.00348663330078125, 0.011932373046875, 0.0653076171875, -0.050445556640625, -0.035552978515625, -0.05743408203125, 0.03497314453125, -0.00672149658203125, -0.0706787109375, 0.038330078125, 0.0760498046875, 0.0660400390625, -0.0250701904296875, 0.04840087890625, -0.0003826618194580078, 0.03875732421875, -0.0210723876953125, 0.03302001953125, -0.0355224609375, -0.01197052001953125, -0.01432037353515625, -0.0751953125, -0.0015401840209960938, 0.048553466796875, -0.0269927978515625, 0.0226593017578125, 0.04437255859375, 0.05047607421875, -0.023651123046875, 0.007633209228515625, 0.0135498046875, 0.005268096923828125, 0.01001739501953125, 0.03387451171875, 0.031951904296875, -0.066650390625, 0.033233642578125, -0.044708251953125, 0.00861358642578125, -0.0011568069458007812, -0.04815673828125, -0.09033203125, -0.0101318359375, -0.030731201171875, -0.05035400390625, 0.0035648345947265625, 0.08709716796875, 0.0618896484375, -0.059722900390625, -0.032958984375, -0.01163482666015625, -0.0173797607421875, 0.0008196830749511719, -0.01200103759765625, 0.0274200439453125, -0.0132598876953125, -0.06011962890625, -0.009307861328125, -0.03155517578125, 0.02471923828125, -0.0091705322265625, -0.0048828125, -0.006328582763671875, -0.0355224609375, 0.0111541748046875, 0.005847930908203125, -0.0369873046875, -0.037994384765625, -0.00571441650390625, -0.01349639892578125, 0.0210723876953125, 0.01678466796875, -0.03131103515625, 0.0197601318359375, 0.0176849365234375, 0.0195770263671875, 0.060699462890625, 0.01438140869140625, 0.037109375, -0.053314208984375, 0.03216552734375, 0.01255035400390625, 0.0220947265625, 0.004566192626953125, -0.0257415771484375, 0.041900634765625, 0.04315185546875, -0.026947021484375, -0.050567626953125, -0.0158233642578125, -0.08197021484375, 0.0224456787109375, 0.09063720703125, 0.0147857666015625, -0.04364013671875, 0.01947021484375, -0.0170440673828125, 0.038299560546875, -0.02398681640625, 0.032958984375, 0.050018310546875, -0.0109100341796875, -0.007320404052734375, -0.038238525390625, 0.03424072265625, 0.020599365234375, -0.049285888671875, -0.036346435546875, 0.0215301513671875, 0.05908203125, -0.01158905029296875, 0.029449462890625, 0.0008358955383300781, 0.0236663818359375, 0.0139923095703125, 0.039825439453125, -0.0423583984375, -0.0184783935546875, -0.0196685791015625, 0.01556396484375, 0.01284027099609375, -0.05108642578125 ] ]
PranavY2k/my_distilbert_model
2023-10-26T21:18:59.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:rotten_tomatoes", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
text-classification
PranavY2k
null
null
PranavY2k/my_distilbert_model
0
2
transformers
2023-10-26T21:09:02
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - rotten_tomatoes metrics: - accuracy - f1 - precision - recall model-index: - name: my_distilbert_model results: - task: name: Text Classification type: text-classification dataset: name: rotten_tomatoes type: rotten_tomatoes config: default split: test args: default metrics: - name: Accuracy type: accuracy value: 0.8433395872420263 - name: F1 type: f1 value: 0.8432898032121621 - name: Precision type: precision value: 0.843776433767552 - name: Recall type: recall value: 0.8433395872420262 --- <!-- 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_distilbert_model This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the rotten_tomatoes dataset. It achieves the following results on the evaluation set: - Loss: 0.5593 - Accuracy: 0.8433 - F1: 0.8433 - Precision: 0.8438 - Recall: 0.8433 ## 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: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | F1 | Precision | Recall | |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:|:---------:|:------:| | 0.4222 | 1.0 | 534 | 0.3821 | 0.8424 | 0.8421 | 0.8450 | 0.8424 | | 0.2558 | 2.0 | 1068 | 0.4620 | 0.8433 | 0.8432 | 0.8445 | 0.8433 | | 0.1609 | 3.0 | 1602 | 0.5593 | 0.8433 | 0.8433 | 0.8438 | 0.8433 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0 - Datasets 2.14.6 - Tokenizers 0.14.1
2,255
[ [ -0.031982421875, -0.039886474609375, 0.0195465087890625, 0.0060272216796875, -0.01922607421875, -0.017303466796875, -0.00337982177734375, -0.0019893646240234375, 0.010772705078125, 0.0190277099609375, -0.04705810546875, -0.048858642578125, -0.0662841796875, -0.0074920654296875, -0.02392578125, 0.09344482421875, 0.0149383544921875, 0.0227508544921875, -0.01175689697265625, 0.0024929046630859375, -0.0297698974609375, -0.048187255859375, -0.04400634765625, -0.0435791015625, 0.0179595947265625, 0.02484130859375, 0.06805419921875, 0.0662841796875, 0.0513916015625, 0.0204925537109375, -0.036102294921875, -0.005298614501953125, -0.0457763671875, -0.031280517578125, -0.005558013916015625, -0.026275634765625, -0.0472412109375, 0.00421905517578125, 0.03863525390625, 0.034759521484375, -0.0164031982421875, 0.04296875, 0.0091400146484375, 0.05059814453125, -0.04022216796875, 0.0244140625, -0.03607177734375, 0.0179901123046875, -0.0073699951171875, -0.0169525146484375, -0.0237579345703125, -0.0044097900390625, 0.003936767578125, -0.034576416015625, 0.0379638671875, -0.0027027130126953125, 0.08673095703125, 0.039031982421875, -0.0265045166015625, 0.0027294158935546875, -0.06524658203125, 0.0426025390625, -0.051849365234375, 0.00811767578125, 0.030120849609375, 0.032073974609375, -0.005901336669921875, -0.06158447265625, -0.03961181640625, 0.0007867813110351562, -0.015167236328125, 0.01099395751953125, -0.0235748291015625, 0.0031719207763671875, 0.057861328125, 0.04718017578125, -0.04058837890625, 0.00905609130859375, -0.04833984375, -0.01068115234375, 0.04571533203125, 0.035614013671875, -0.0238037109375, -0.014190673828125, -0.038909912109375, -0.015380859375, -0.01177978515625, 0.0190582275390625, 0.03509521484375, 0.0149688720703125, -0.0210418701171875, 0.042724609375, -0.022186279296875, 0.055938720703125, 0.0244903564453125, -0.0191650390625, 0.0509033203125, -0.0032405853271484375, -0.0309295654296875, 0.0005517005920410156, 0.0601806640625, 0.056549072265625, 0.0219879150390625, 0.015777587890625, -0.023162841796875, -0.00408935546875, 0.02801513671875, -0.07415771484375, -0.036346435546875, 0.0135955810546875, -0.037078857421875, -0.053253173828125, 0.0209808349609375, -0.037109375, 0.0018739700317382812, -0.0283050537109375, 0.03338623046875, -0.0283966064453125, -0.01030731201171875, 0.00972747802734375, -0.01441192626953125, 0.005847930908203125, 0.006561279296875, -0.0692138671875, 0.0291900634765625, 0.02935791015625, 0.04644775390625, 0.00897979736328125, -0.0240478515625, -0.01261138916015625, -0.0022296905517578125, -0.022216796875, 0.02960205078125, -0.0108184814453125, -0.026275634765625, -0.01605224609375, 0.0167999267578125, -0.0011529922485351562, -0.0350341796875, 0.055755615234375, -0.0203094482421875, 0.0163116455078125, -0.0179901123046875, -0.04571533203125, -0.02008056640625, 0.034576416015625, -0.05596923828125, 0.0931396484375, 0.0142822265625, -0.06304931640625, 0.0460205078125, -0.03021240234375, -0.004253387451171875, -0.01114654541015625, -0.00934600830078125, -0.060638427734375, 0.00923919677734375, 0.00995635986328125, 0.038330078125, -0.02178955078125, 0.037261962890625, -0.0240478515625, -0.05120849609375, 0.005878448486328125, -0.04913330078125, 0.05999755859375, 0.01253509521484375, -0.03948974609375, -0.003940582275390625, -0.08709716796875, 0.0115814208984375, 0.0297698974609375, -0.0286865234375, 0.00391387939453125, -0.024505615234375, 0.0225982666015625, 0.0217437744140625, 0.0234832763671875, -0.0277862548828125, 0.00909423828125, -0.0187835693359375, 0.0233154296875, 0.0478515625, 0.00365447998046875, 0.00865936279296875, -0.038330078125, 0.017303466796875, 0.03570556640625, 0.031005859375, 0.0107269287109375, -0.0277252197265625, -0.0650634765625, -0.018890380859375, 0.018707275390625, 0.0254058837890625, -0.0249481201171875, 0.061553955078125, -0.010284423828125, -0.053558349609375, -0.01259613037109375, 0.00014984607696533203, 0.034881591796875, 0.05560302734375, 0.0308074951171875, -0.0088348388671875, -0.0338134765625, -0.09271240234375, 0.01117706298828125, -0.0133209228515625, 0.0148468017578125, 0.006549835205078125, 0.04632568359375, -0.00887298583984375, 0.0701904296875, -0.05133056640625, -0.0163421630859375, -0.006069183349609375, -0.0007796287536621094, 0.051025390625, 0.047698974609375, 0.06512451171875, -0.040924072265625, -0.027191162109375, -0.0219573974609375, -0.05780029296875, 0.0242462158203125, 0.00042438507080078125, -0.01532745361328125, -0.0167236328125, 0.01541900634765625, -0.039276123046875, 0.05426025390625, 0.02459716796875, -0.0321044921875, 0.058319091796875, -0.0276336669921875, 0.004062652587890625, -0.09478759765625, 0.017547607421875, 0.0167388916015625, -0.0164947509765625, -0.0268402099609375, -0.012908935546875, 0.006267547607421875, -0.00830078125, -0.034698486328125, 0.0308074951171875, -0.012908935546875, 0.01477813720703125, -0.010345458984375, -0.0322265625, 0.01271820068359375, 0.05804443359375, 0.00933837890625, 0.0477294921875, 0.04913330078125, -0.03436279296875, 0.036102294921875, 0.0273590087890625, -0.0286865234375, 0.0369873046875, -0.06414794921875, 0.00208282470703125, -0.01153564453125, 0.0027484893798828125, -0.06475830078125, -0.01119232177734375, 0.0258026123046875, -0.0311737060546875, 0.0163726806640625, -0.029937744140625, -0.0207672119140625, -0.04156494140625, -0.011077880859375, 0.0104217529296875, 0.038360595703125, -0.0350341796875, 0.0172576904296875, -0.00434112548828125, 0.0183563232421875, -0.05731201171875, -0.05487060546875, -0.0267791748046875, -0.0221710205078125, -0.0230560302734375, 0.0279541015625, 0.00136566162109375, -0.00560760498046875, -0.0032978057861328125, -0.01212310791015625, -0.0240478515625, -0.00749969482421875, 0.034271240234375, 0.0305938720703125, -0.00980377197265625, -0.004390716552734375, -0.0004372596740722656, -0.0284881591796875, 0.0198211669921875, -0.0028514862060546875, 0.041412353515625, -0.0156707763671875, -0.02325439453125, -0.05804443359375, -0.0076904296875, 0.054229736328125, -0.004146575927734375, 0.063232421875, 0.044342041015625, -0.041046142578125, 0.001468658447265625, -0.035308837890625, -0.01392364501953125, -0.03375244140625, 0.041900634765625, -0.038787841796875, -0.01198577880859375, 0.05059814453125, 0.0048980712890625, 0.0033016204833984375, 0.07427978515625, 0.038421630859375, -0.00814056396484375, 0.07415771484375, 0.01535797119140625, -0.01043701171875, 0.0194854736328125, -0.064453125, -0.01313018798828125, -0.043487548828125, -0.036346435546875, -0.03802490234375, -0.039337158203125, -0.0408935546875, -0.00676727294921875, 0.0146636962890625, 0.014129638671875, -0.055999755859375, 0.031097412109375, -0.053558349609375, 0.039276123046875, 0.0576171875, 0.034271240234375, 0.01451873779296875, 0.01157379150390625, -0.0240478515625, -0.0111083984375, -0.05426025390625, -0.040740966796875, 0.095703125, 0.03179931640625, 0.06268310546875, -0.01090240478515625, 0.058258056640625, 0.019866943359375, 0.004276275634765625, -0.0404052734375, 0.0185699462890625, -0.004856109619140625, -0.07666015625, -0.0143585205078125, -0.02996826171875, -0.03936767578125, 0.0109100341796875, -0.0241546630859375, -0.0460205078125, 0.019073486328125, 0.0261077880859375, -0.035430908203125, 0.03302001953125, -0.039886474609375, 0.0830078125, -0.033233642578125, -0.0322265625, 0.0010423660278320312, -0.0350341796875, 0.00737762451171875, 0.00804901123046875, -0.014984130859375, -0.0035572052001953125, 0.027984619140625, 0.059844970703125, -0.045806884765625, 0.04815673828125, -0.030181884765625, 0.0352783203125, 0.0281219482421875, -0.005649566650390625, 0.05462646484375, 0.028778076171875, -0.010528564453125, 0.019073486328125, 0.006992340087890625, -0.035675048828125, -0.03948974609375, 0.052764892578125, -0.08026123046875, -0.02081298828125, -0.061279296875, -0.0259246826171875, -0.00060272216796875, 0.014801025390625, 0.05078125, 0.04461669921875, -0.01413726806640625, 0.0227508544921875, 0.037750244140625, 0.00921630859375, 0.0260162353515625, 0.0230712890625, -0.0046234130859375, -0.04180908203125, 0.056671142578125, -0.0017023086547851562, 0.01209259033203125, -0.001007080078125, 0.00778961181640625, -0.036468505859375, -0.04071044921875, -0.052947998046875, 0.00518035888671875, -0.054840087890625, -0.0188446044921875, -0.026214599609375, -0.039642333984375, -0.01262664794921875, -0.0010271072387695312, -0.042938232421875, -0.0284271240234375, -0.04583740234375, -0.0287628173828125, 0.03570556640625, 0.042388916015625, 0.01264190673828125, 0.037750244140625, -0.041900634765625, -0.004711151123046875, 0.00780487060546875, 0.032135009765625, -0.0023212432861328125, -0.06365966796875, -0.022125244140625, 0.01053619384765625, -0.04156494140625, -0.049957275390625, 0.031585693359375, 0.0031890869140625, 0.048126220703125, 0.04766845703125, -0.003841400146484375, 0.07183837890625, -0.023040771484375, 0.05206298828125, 0.0364990234375, -0.041748046875, 0.0294952392578125, -0.0131378173828125, 0.017608642578125, 0.0640869140625, 0.0487060546875, -0.007701873779296875, 0.0000776052474975586, -0.08074951171875, -0.05328369140625, 0.0648193359375, 0.033203125, 0.00679779052734375, 0.0024700164794921875, 0.0234527587890625, -0.00344085693359375, 0.02410888671875, -0.06207275390625, -0.047271728515625, -0.0233612060546875, -0.0180816650390625, -0.0168914794921875, -0.025634765625, -0.01163482666015625, -0.05377197265625, 0.06256103515625, 0.007232666015625, 0.01438140869140625, 0.003871917724609375, 0.006473541259765625, 0.004093170166015625, -0.006694793701171875, 0.037078857421875, 0.058441162109375, -0.0496826171875, 0.0003972053527832031, 0.01546478271484375, -0.037567138671875, 0.0156707763671875, 0.0170745849609375, -0.004795074462890625, 0.01922607421875, 0.02252197265625, 0.0733642578125, 0.006053924560546875, -0.01210784912109375, 0.040496826171875, -0.00437164306640625, -0.031097412109375, -0.050140380859375, 0.010284423828125, -0.00682830810546875, 0.0226593017578125, 0.0276641845703125, 0.032684326171875, 0.012451171875, -0.0181732177734375, 0.016693115234375, 0.01024627685546875, -0.051849365234375, -0.0099945068359375, 0.058929443359375, 0.004871368408203125, -0.0196685791015625, 0.06781005859375, -0.01090240478515625, -0.0213623046875, 0.0689697265625, 0.03240966796875, 0.056976318359375, -0.0009975433349609375, 0.0011682510375976562, 0.06494140625, 0.01381683349609375, -0.0136260986328125, 0.02435302734375, 0.0164337158203125, -0.0321044921875, -0.0012273788452148438, -0.06573486328125, -0.00780487060546875, 0.0406494140625, -0.08197021484375, 0.037841796875, -0.04339599609375, -0.050445556640625, 0.0233612060546875, 0.0003757476806640625, -0.07183837890625, 0.046722412109375, 0.0029125213623046875, 0.07415771484375, -0.07550048828125, 0.053955078125, 0.04315185546875, -0.0430908203125, -0.06878662109375, -0.023162841796875, -0.005229949951171875, -0.054534912109375, 0.050018310546875, 0.010406494140625, 0.0220489501953125, 0.004543304443359375, -0.022979736328125, -0.06585693359375, 0.0845947265625, 0.0226898193359375, -0.06781005859375, -0.00537872314453125, 0.0274505615234375, 0.048858642578125, -0.01142120361328125, 0.056488037109375, 0.0304107666015625, 0.016815185546875, 0.0250244140625, -0.066650390625, -0.00830078125, -0.033172607421875, 0.00926971435546875, 0.00646209716796875, -0.04791259765625, 0.0804443359375, -0.00701904296875, 0.0291290283203125, -0.00034117698669433594, 0.033935546875, 0.0170135498046875, 0.022216796875, 0.031585693359375, 0.0699462890625, 0.03656005859375, -0.022186279296875, 0.06475830078125, -0.04010009765625, 0.062408447265625, 0.08721923828125, 0.0034542083740234375, 0.034149169921875, 0.032928466796875, -0.026458740234375, 0.027862548828125, 0.06414794921875, -0.02703857421875, 0.0369873046875, 0.01456451416015625, 0.005153656005859375, -0.022674560546875, 0.02880859375, -0.050811767578125, 0.03265380859375, 0.0010776519775390625, -0.0670166015625, -0.0199432373046875, -0.0192413330078125, -0.0005521774291992188, -0.00861358642578125, -0.0204010009765625, 0.0472412109375, -0.023834228515625, -0.0282440185546875, 0.0703125, 0.0050048828125, 0.0286865234375, -0.036865234375, -0.0112457275390625, -0.01190185546875, 0.03753662109375, -0.0243988037109375, -0.052215576171875, 0.0204315185546875, 0.005046844482421875, -0.03265380859375, 0.01064300537109375, 0.0251617431640625, -0.010650634765625, -0.07513427734375, 0.0069732666015625, 0.020782470703125, 0.0128173828125, -0.006992340087890625, -0.07183837890625, -0.001941680908203125, 0.0001628398895263672, -0.037384033203125, 0.00496673583984375, 0.021697998046875, 0.0094757080078125, 0.03692626953125, 0.0457763671875, -0.01047515869140625, 0.003063201904296875, 0.0038394927978515625, 0.085693359375, -0.047332763671875, -0.0426025390625, -0.066162109375, 0.0531005859375, -0.0283660888671875, -0.06597900390625, 0.04656982421875, 0.0849609375, 0.06781005859375, -0.0258331298828125, 0.04144287109375, -0.0078277587890625, 0.019287109375, -0.031097412109375, 0.05596923828125, -0.040130615234375, -0.0070648193359375, -0.02423095703125, -0.073974609375, 0.00200653076171875, 0.053863525390625, -0.0288543701171875, 0.01457977294921875, 0.039276123046875, 0.05859375, -0.0128631591796875, -0.005130767822265625, 0.018310546875, -0.0004878044128417969, 0.0031452178955078125, 0.036834716796875, 0.0406494140625, -0.0626220703125, 0.03509521484375, -0.06011962890625, -0.0198822021484375, -0.0091552734375, -0.04498291015625, -0.07421875, -0.03363037109375, -0.0269775390625, -0.034942626953125, 0.009490966796875, 0.070068359375, 0.066650390625, -0.05914306640625, -0.0203704833984375, -0.003002166748046875, -0.0296478271484375, -0.031982421875, -0.0167694091796875, 0.027008056640625, -0.0009541511535644531, -0.06524658203125, -0.0055694580078125, -0.0181732177734375, 0.020843505859375, -0.016448974609375, -0.0177764892578125, -0.01416015625, -0.023590087890625, 0.01348876953125, -0.0107574462890625, -0.031280517578125, -0.0158843994140625, -0.003082275390625, -0.01334381103515625, 0.018402099609375, 0.019989013671875, -0.037811279296875, 0.03509521484375, 0.01995849609375, 0.01094818115234375, 0.07000732421875, 0.00823974609375, 0.0111236572265625, -0.055267333984375, 0.036224365234375, 0.0234832763671875, 0.0322265625, 0.00385284423828125, -0.033599853515625, 0.03076171875, 0.0299835205078125, -0.0367431640625, -0.058135986328125, -0.0171051025390625, -0.0732421875, 0.0042572021484375, 0.0728759765625, -0.002635955810546875, -0.027435302734375, 0.024017333984375, -0.01502227783203125, 0.0192413330078125, -0.0244140625, 0.05328369140625, 0.059844970703125, -0.00001895427703857422, 0.00815582275390625, -0.0311737060546875, 0.035797119140625, 0.0125885009765625, -0.03521728515625, -0.01087188720703125, 0.032379150390625, 0.043487548828125, 0.013824462890625, 0.023223876953125, -0.01299285888671875, 0.0184326171875, 0.0211029052734375, 0.014190673828125, -0.042633056640625, -0.038848876953125, -0.0182647705078125, 0.00274658203125, 0.011199951171875, -0.0413818359375 ] ]
SalmonAI123/Bestclean-ViMrclarge-TFIDFPNS-ver1
2023-10-26T22:39:45.000Z
[ "transformers", "pytorch", "roberta", "question-answering", "generated_from_trainer", "license:cc-by-nc-4.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
question-answering
SalmonAI123
null
null
SalmonAI123/Bestclean-ViMrclarge-TFIDFPNS-ver1
0
2
transformers
2023-10-26T22:22:58
--- license: cc-by-nc-4.0 base_model: nguyenvulebinh/vi-mrc-large tags: - generated_from_trainer model-index: - name: Bestclean-ViMrclarge-TFIDFPNS-ver1 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. --> # Bestclean-ViMrclarge-TFIDFPNS-ver1 This model is a fine-tuned version of [nguyenvulebinh/vi-mrc-large](https://huggingface.co/nguyenvulebinh/vi-mrc-large) on the None dataset. It achieves the following results on the evaluation set: - Loss: 1.1537 ## 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: 2 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 0.8736 | 1.0 | 603 | 0.9764 | | 0.3873 | 2.0 | 1206 | 1.1537 | ### Framework versions - Transformers 4.33.0 - Pytorch 2.0.0 - Datasets 2.1.0 - Tokenizers 0.13.3
1,392
[ [ -0.0278778076171875, -0.034576416015625, 0.02392578125, -0.0096588134765625, -0.039642333984375, -0.029571533203125, -0.01546478271484375, -0.007663726806640625, 0.0152130126953125, 0.037261962890625, -0.046630859375, -0.05596923828125, -0.047760009765625, 0.00849151611328125, -0.01325225830078125, 0.090087890625, 0.0015573501586914062, 0.0296478271484375, -0.0005784034729003906, -0.0179595947265625, -0.040496826171875, -0.043304443359375, -0.055419921875, -0.044189453125, 0.037506103515625, 0.0312347412109375, 0.048370361328125, 0.0718994140625, 0.05633544921875, 0.0226287841796875, -0.0239105224609375, 0.0035114288330078125, -0.054534912109375, -0.033050537109375, -0.0048370361328125, -0.0263519287109375, -0.054046630859375, -0.00180816650390625, 0.050537109375, 0.013275146484375, -0.0250091552734375, 0.036712646484375, 0.0028400421142578125, 0.04644775390625, -0.0504150390625, 0.0144500732421875, -0.032196044921875, 0.0142669677734375, -0.007755279541015625, -0.03948974609375, -0.0247650146484375, -0.0139312744140625, -0.01328277587890625, -0.053466796875, 0.02825927734375, -0.006900787353515625, 0.09600830078125, 0.028228759765625, -0.028564453125, 0.01529693603515625, -0.06890869140625, 0.047607421875, -0.042510986328125, 0.0188140869140625, 0.028839111328125, 0.05438232421875, 0.0095367431640625, -0.035797119140625, -0.0345458984375, -0.0171966552734375, 0.0142669677734375, 0.024322509765625, -0.00873565673828125, 0.0167236328125, 0.049652099609375, 0.03955078125, -0.0511474609375, 0.015289306640625, -0.04986572265625, -0.0177154541015625, 0.044403076171875, 0.04217529296875, -0.0264129638671875, -0.0160369873046875, -0.050689697265625, -0.0281829833984375, -0.0282440185546875, -0.0005807876586914062, 0.03656005859375, 0.016937255859375, -0.034881591796875, 0.0543212890625, -0.0245513916015625, 0.055755615234375, 0.0057220458984375, -0.01050567626953125, 0.037109375, -0.00897216796875, -0.03839111328125, -0.0190277099609375, 0.06475830078125, 0.06097412109375, 0.0277252197265625, 0.02777099609375, -0.02716064453125, -0.0194549560546875, 0.019561767578125, -0.07135009765625, -0.02655029296875, 0.000009000301361083984, -0.0491943359375, -0.04925537109375, 0.018585205078125, -0.041229248046875, 0.005664825439453125, -0.037261962890625, 0.03924560546875, -0.02288818359375, -0.00977325439453125, 0.00609588623046875, -0.0116119384765625, 0.0306549072265625, 0.01468658447265625, -0.04119873046875, 0.01910400390625, 0.018951416015625, 0.04949951171875, -0.002349853515625, -0.0132904052734375, -0.0086212158203125, 0.00536346435546875, -0.0386962890625, 0.04071044921875, -0.0116424560546875, -0.033538818359375, -0.008453369140625, 0.022369384765625, -0.0134429931640625, -0.04998779296875, 0.05889892578125, -0.02716064453125, 0.025970458984375, -0.0131072998046875, -0.04302978515625, -0.0199737548828125, 0.0225677490234375, -0.058746337890625, 0.07464599609375, 0.01035308837890625, -0.05511474609375, 0.033050537109375, -0.0299835205078125, -0.004306793212890625, -0.0041351318359375, 0.0026149749755859375, -0.06610107421875, -0.0012617111206054688, 0.0014142990112304688, 0.044647216796875, -0.0250396728515625, 0.02545166015625, -0.032684326171875, -0.036407470703125, 0.00923919677734375, -0.040130615234375, 0.060394287109375, 0.0205230712890625, -0.0212554931640625, 0.0273895263671875, -0.09930419921875, 0.0164642333984375, 0.03277587890625, -0.033294677734375, 0.01084136962890625, -0.03814697265625, 0.0296783447265625, 0.030487060546875, 0.0194244384765625, -0.037261962890625, 0.00994110107421875, -0.0087127685546875, 0.026336669921875, 0.061126708984375, 0.0220184326171875, -0.005641937255859375, -0.037109375, 0.019775390625, 0.00879669189453125, 0.0426025390625, 0.01094818115234375, -0.03778076171875, -0.0706787109375, -0.0167236328125, 0.017913818359375, 0.04388427734375, -0.042449951171875, 0.069091796875, -0.01194000244140625, -0.050140380859375, -0.014617919921875, 0.0070343017578125, 0.0311279296875, 0.039520263671875, 0.03765869140625, -0.031494140625, -0.02728271484375, -0.095947265625, 0.0082550048828125, -0.01399993896484375, 0.01145172119140625, 0.01013946533203125, 0.052215576171875, -0.005718231201171875, 0.041046142578125, -0.035675048828125, -0.0194549560546875, -0.024688720703125, -0.00942230224609375, 0.0225067138671875, 0.053253173828125, 0.03936767578125, -0.0204620361328125, -0.005359649658203125, -0.0158538818359375, -0.0560302734375, 0.0227813720703125, -0.027191162109375, -0.0345458984375, -0.0158843994140625, 0.015777587890625, -0.03216552734375, 0.0556640625, 0.0252227783203125, -0.01222991943359375, 0.049652099609375, -0.044891357421875, 0.00768280029296875, -0.08929443359375, 0.0161895751953125, 0.019561767578125, -0.0145721435546875, -0.0243682861328125, -0.002880096435546875, 0.013031005859375, -0.007221221923828125, -0.0269775390625, 0.04022216796875, 0.005138397216796875, 0.018585205078125, -0.0194854736328125, -0.021820068359375, 0.0081329345703125, 0.06072998046875, 0.01158905029296875, 0.036224365234375, 0.034637451171875, -0.04925537109375, 0.036956787109375, 0.0248260498046875, -0.0133209228515625, 0.037445068359375, -0.06884765625, 0.0066070556640625, 0.004245758056640625, 0.0023708343505859375, -0.049530029296875, -0.019683837890625, 0.036651611328125, -0.042633056640625, 0.0306549072265625, -0.017242431640625, -0.02728271484375, -0.035125732421875, -0.01454925537109375, 0.030487060546875, 0.03271484375, -0.042510986328125, 0.0190277099609375, -0.0112457275390625, 0.038787841796875, -0.033416748046875, -0.06103515625, -0.014129638671875, -0.019683837890625, -0.023651123046875, -0.00322723388671875, -0.0167388916015625, 0.0164337158203125, -0.0256805419921875, 0.00533294677734375, -0.030120849609375, -0.01433563232421875, 0.02655029296875, 0.036773681640625, -0.01033782958984375, -0.0105438232421875, -0.004383087158203125, -0.03753662109375, 0.00786590576171875, -0.00998687744140625, 0.02081298828125, -0.002140045166015625, -0.0227813720703125, -0.08758544921875, -0.0023326873779296875, 0.044281005859375, -0.0188140869140625, 0.058135986328125, 0.052825927734375, -0.02783203125, 0.005344390869140625, -0.0406494140625, -0.00789642333984375, -0.033538818359375, 0.043792724609375, -0.03277587890625, -0.024993896484375, 0.045318603515625, 0.0131378173828125, -0.0058746337890625, 0.08154296875, 0.0478515625, 0.0077972412109375, 0.0694580078125, 0.0240325927734375, -0.00818634033203125, 0.03277587890625, -0.0660400390625, -0.0185546875, -0.054840087890625, -0.0309295654296875, -0.0340576171875, -0.006526947021484375, -0.0616455078125, -0.029815673828125, 0.01287078857421875, -0.000858306884765625, -0.0565185546875, 0.0333251953125, -0.047454833984375, 0.0229339599609375, 0.048614501953125, 0.03131103515625, 0.0018110275268554688, 0.003833770751953125, -0.0218353271484375, -0.0022106170654296875, -0.065185546875, -0.037567138671875, 0.09173583984375, 0.031341552734375, 0.0537109375, -0.0250396728515625, 0.05255126953125, 0.0016050338745117188, -0.0025959014892578125, -0.039886474609375, 0.045257568359375, 0.0152130126953125, -0.06640625, -0.01001739501953125, -0.0406494140625, -0.052520751953125, 0.00415802001953125, -0.03619384765625, -0.0225677490234375, 0.0200653076171875, 0.024688720703125, -0.02178955078125, 0.042999267578125, -0.0245513916015625, 0.08209228515625, -0.0234222412109375, -0.032379150390625, -0.0199737548828125, -0.041839599609375, 0.0135955810546875, 0.0169830322265625, -0.017547607421875, -0.0007195472717285156, 0.01055908203125, 0.058013916015625, -0.04095458984375, 0.041229248046875, -0.0255889892578125, 0.0341796875, 0.043487548828125, -0.006015777587890625, 0.0489501953125, 0.00856781005859375, 0.0042724609375, 0.022247314453125, -0.0156707763671875, -0.046905517578125, -0.028594970703125, 0.0396728515625, -0.07952880859375, -0.00434112548828125, -0.041259765625, -0.015960693359375, 0.01324462890625, 0.009552001953125, 0.05255126953125, 0.0513916015625, -0.01509857177734375, 0.0110015869140625, 0.04156494140625, -0.0203399658203125, 0.0161285400390625, 0.0140380859375, 0.011474609375, -0.05419921875, 0.0784912109375, -0.0123443603515625, 0.027069091796875, 0.01207733154296875, 0.01605224609375, -0.011688232421875, -0.04608154296875, -0.053436279296875, 0.0276947021484375, -0.058380126953125, -0.025390625, -0.01253509521484375, -0.0311279296875, -0.01313018798828125, 0.006923675537109375, -0.05242919921875, -0.0321044921875, -0.032012939453125, -0.0305633544921875, 0.0219268798828125, 0.055206298828125, -0.005733489990234375, 0.038818359375, -0.0494384765625, 0.0031032562255859375, 0.0139312744140625, 0.0258331298828125, -0.00484466552734375, -0.07025146484375, -0.04473876953125, -0.01373291015625, -0.035247802734375, -0.05072021484375, 0.0264739990234375, 0.00734710693359375, 0.044586181640625, 0.06011962890625, -0.0166778564453125, 0.0645751953125, -0.0302581787109375, 0.06341552734375, 0.0291290283203125, -0.03485107421875, 0.0283660888671875, -0.03314208984375, 0.0194854736328125, 0.05078125, 0.0273284912109375, -0.01035308837890625, -0.023162841796875, -0.08099365234375, -0.0533447265625, 0.04150390625, 0.0341796875, -0.0031032562255859375, 0.006969451904296875, 0.038543701171875, -0.005855560302734375, 0.006855010986328125, -0.06109619140625, -0.040618896484375, -0.02606201171875, -0.009246826171875, -0.0112152099609375, -0.031341552734375, -0.012115478515625, -0.040496826171875, 0.07501220703125, 0.0037364959716796875, 0.045562744140625, 0.01065826416015625, 0.00611114501953125, -0.01415252685546875, -0.0012845993041992188, 0.060211181640625, 0.05767822265625, -0.032562255859375, -0.017974853515625, 0.025970458984375, -0.0257415771484375, -0.007007598876953125, 0.004711151123046875, -0.000014662742614746094, 0.003692626953125, 0.046173095703125, 0.0748291015625, -0.00023221969604492188, -0.0113983154296875, 0.047607421875, -0.01061248779296875, -0.0299530029296875, -0.030670166015625, 0.020599365234375, -0.022064208984375, 0.013916015625, 0.006580352783203125, 0.032501220703125, 0.011016845703125, 0.00347900390625, 0.0174407958984375, 0.004993438720703125, -0.044891357421875, -0.0213623046875, 0.06793212890625, -0.0006647109985351562, -0.005092620849609375, 0.05511474609375, -0.00594329833984375, -0.0204620361328125, 0.060699462890625, 0.0235595703125, 0.07135009765625, -0.024993896484375, -0.006988525390625, 0.08551025390625, 0.0189666748046875, -0.0071868896484375, 0.0221710205078125, 0.01401519775390625, -0.026031494140625, -0.0196533203125, -0.03424072265625, -0.010528564453125, 0.024322509765625, -0.09002685546875, 0.03118896484375, -0.04327392578125, -0.03814697265625, 0.0022792816162109375, 0.003856658935546875, -0.0748291015625, 0.048065185546875, 0.00676727294921875, 0.07427978515625, -0.07177734375, 0.06353759765625, 0.038177490234375, -0.038238525390625, -0.06597900390625, -0.027801513671875, -0.0020656585693359375, -0.07220458984375, 0.04132080078125, 0.001796722412109375, 0.0135345458984375, -0.020233154296875, -0.03875732421875, -0.054931640625, 0.0859375, 0.0202484130859375, -0.0543212890625, 0.0089569091796875, 0.0166015625, 0.046905517578125, -0.0203399658203125, 0.049530029296875, 0.0056304931640625, 0.0303192138671875, 0.021270751953125, -0.06884765625, -0.00890350341796875, -0.0161285400390625, 0.0224456787109375, 0.0009241104125976562, -0.06884765625, 0.06768798828125, -0.01397705078125, 0.023040771484375, 0.02655029296875, 0.052581787109375, 0.01210784912109375, 0.0176239013671875, 0.0300750732421875, 0.06402587890625, 0.038299560546875, 0.0016508102416992188, 0.08642578125, -0.037109375, 0.05078125, 0.08148193359375, 0.0211639404296875, 0.042144775390625, 0.008544921875, -0.00713348388671875, 0.026641845703125, 0.0770263671875, -0.029541015625, 0.033477783203125, 0.0158233642578125, 0.01446533203125, -0.03924560546875, 0.02520751953125, -0.042388916015625, 0.0247802734375, -0.0064239501953125, -0.05181884765625, -0.005725860595703125, -0.0059814453125, -0.00959014892578125, -0.018524169921875, -0.02972412109375, 0.046356201171875, -0.0177154541015625, -0.015960693359375, 0.07177734375, 0.018646240234375, 0.00940704345703125, -0.03643798828125, -0.0091400146484375, -0.005290985107421875, 0.0309600830078125, -0.01548004150390625, -0.030731201171875, 0.00482940673828125, -0.00782012939453125, -0.00997161865234375, 0.0098114013671875, 0.033660888671875, -0.0212554931640625, -0.052642822265625, 0.0165252685546875, 0.024322509765625, 0.027099609375, 0.004638671875, -0.08270263671875, -0.007358551025390625, 0.002582550048828125, -0.029388427734375, 0.00988006591796875, 0.0192413330078125, -0.0008707046508789062, 0.041961669921875, 0.032257080078125, 0.0014858245849609375, 0.00366973876953125, 0.01261138916015625, 0.07537841796875, -0.061309814453125, -0.03509521484375, -0.051300048828125, 0.039215087890625, -0.01320648193359375, -0.06915283203125, 0.04345703125, 0.081787109375, 0.0693359375, -0.01091766357421875, 0.0290985107421875, 0.028167724609375, 0.031341552734375, -0.04351806640625, 0.04241943359375, -0.041229248046875, -0.00797271728515625, -0.018218994140625, -0.0723876953125, -0.006725311279296875, 0.057342529296875, -0.01163482666015625, 0.0215911865234375, 0.048919677734375, 0.05377197265625, 0.003002166748046875, -0.0001150369644165039, 0.0305633544921875, -0.00031280517578125, 0.0159454345703125, 0.042236328125, 0.04229736328125, -0.0545654296875, 0.037994384765625, -0.042083740234375, -0.01465606689453125, -0.015106201171875, -0.037261962890625, -0.08642578125, -0.032073974609375, -0.0390625, -0.0438232421875, 0.0166778564453125, 0.0782470703125, 0.06146240234375, -0.055816650390625, -0.0307464599609375, 0.0142974853515625, -0.017486572265625, -0.01910400390625, -0.01465606689453125, 0.038543701171875, -0.00240325927734375, -0.04803466796875, 0.00006222724914550781, -0.01123046875, 0.0164947509765625, -0.01093292236328125, -0.0172882080078125, -0.00777435302734375, -0.0238037109375, 0.0079803466796875, 0.005451202392578125, -0.0254364013671875, -0.0286102294921875, -0.0128021240234375, -0.016204833984375, 0.0345458984375, 0.04705810546875, -0.028411865234375, 0.046173095703125, 0.018218994140625, 0.0159759521484375, 0.0523681640625, -0.0004336833953857422, 0.0244140625, -0.037384033203125, 0.024688720703125, 0.0191192626953125, 0.02264404296875, 0.01085662841796875, -0.024993896484375, 0.0328369140625, 0.0310516357421875, -0.05621337890625, -0.0421142578125, -0.01383209228515625, -0.08685302734375, 0.0132904052734375, 0.08526611328125, 0.004154205322265625, -0.03143310546875, 0.0256500244140625, -0.0031642913818359375, 0.0396728515625, -0.03155517578125, 0.0272674560546875, 0.03466796875, -0.005344390869140625, 0.007965087890625, -0.061614990234375, 0.029266357421875, 0.01605224609375, -0.03936767578125, -0.0091400146484375, 0.035888671875, 0.037933349609375, -0.0035228729248046875, 0.020843505859375, -0.01287841796875, 0.0232696533203125, -0.0016269683837890625, 0.033203125, -0.040496826171875, -0.03192138671875, -0.044677734375, -0.0035991668701171875, 0.010162353515625, -0.042388916015625 ] ]
akjindal53244/temp-peft-model
2023-10-26T23:14:11.000Z
[ "peft", "region:us" ]
null
akjindal53244
null
null
akjindal53244/temp-peft-model
1
2
peft
2023-10-26T22:57:19
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 ### Framework versions - PEFT 0.6.0.dev0
469
[ [ -0.04486083984375, -0.056640625, 0.032562255859375, 0.035125732421875, -0.037322998046875, 0.00685882568359375, 0.01161956787109375, -0.01415252685546875, -0.0103759765625, 0.03179931640625, -0.04150390625, -0.0085906982421875, -0.034027099609375, 0.01007080078125, 0.0012798309326171875, 0.06671142578125, -0.0054779052734375, 0.031463623046875, -0.006710052490234375, 0.0014429092407226562, -0.0239410400390625, -0.024078369140625, -0.0789794921875, -0.027252197265625, -0.0255279541015625, 0.0283203125, 0.03314208984375, 0.008575439453125, 0.0528564453125, 0.020751953125, -0.0013580322265625, -0.0230865478515625, -0.0137786865234375, -0.028533935546875, 0.00418853759765625, -0.03814697265625, -0.057586669921875, -0.00907135009765625, 0.07122802734375, 0.013397216796875, -0.00713348388671875, 0.01068115234375, -0.0174713134765625, 0.06402587890625, -0.048828125, 0.00732421875, -0.037261962890625, 0.0360107421875, -0.0038356781005859375, -0.006153106689453125, -0.012420654296875, -0.016845703125, 0.004608154296875, -0.03631591796875, 0.0286865234375, 0.0002906322479248047, 0.06707763671875, 0.0084075927734375, -0.049560546875, 0.00873565673828125, -0.0328369140625, 0.049224853515625, -0.0484619140625, 0.037628173828125, 0.046661376953125, 0.006145477294921875, 0.0093841552734375, -0.052154541015625, -0.0287933349609375, 0.014617919921875, 0.019287109375, -0.0159759521484375, -0.0024738311767578125, 0.03485107421875, 0.056427001953125, 0.039825439453125, -0.02606201171875, -0.0205230712890625, -0.04400634765625, -0.0369873046875, 0.0513916015625, 0.007114410400390625, -0.021484375, 0.0236663818359375, -0.056640625, -0.0034389495849609375, -0.046051025390625, 0.01424407958984375, 0.0257415771484375, -0.009613037109375, -0.04254150390625, 0.020263671875, -0.0224456787109375, 0.040557861328125, 0.059539794921875, 0.0029315948486328125, 0.07086181640625, -0.031646728515625, -0.041656494140625, 0.0262908935546875, 0.062408447265625, 0.016937255859375, 0.00881195068359375, 0.005123138427734375, -0.038726806640625, -0.027252197265625, 0.0290374755859375, -0.08782958984375, -0.0255584716796875, 0.030426025390625, -0.006275177001953125, -0.0289154052734375, 0.01508331298828125, -0.03887939453125, 0.01116943359375, 0.0124664306640625, 0.05828857421875, -0.059326171875, -0.034423828125, 0.02392578125, -0.0225067138671875, 0.03997802734375, 0.00687408447265625, -0.08343505859375, 0.04119873046875, 0.043212890625, 0.042449951171875, 0.01454925537109375, -0.01393890380859375, -0.0273895263671875, -0.00931549072265625, -0.01538848876953125, 0.031768798828125, 0.0229644775390625, -0.020599365234375, -0.01245880126953125, 0.00928497314453125, -0.0105743408203125, -0.04437255859375, 0.04925537109375, -0.037353515625, -0.007091522216796875, -0.01399993896484375, -0.0357666015625, -0.0242462158203125, 0.020751953125, -0.040313720703125, 0.08221435546875, 0.030487060546875, -0.0482177734375, 0.018524169921875, -0.035491943359375, -0.0247955322265625, 0.0181427001953125, -0.03179931640625, -0.0518798828125, 0.040435791015625, -0.0245513916015625, 0.02838134765625, 0.01123809814453125, 0.0228424072265625, -0.01334381103515625, -0.057708740234375, 0.0255889892578125, -0.02593994140625, 0.07232666015625, 0.01092529296875, -0.055328369140625, -0.005535125732421875, -0.062286376953125, 0.023468017578125, 0.0004475116729736328, -0.0443115234375, 0.033538818359375, -0.03271484375, 0.00891876220703125, 0.0011968612670898438, 0.04022216796875, -0.059814453125, -0.01174163818359375, -0.041290283203125, 0.045257568359375, 0.053924560546875, -0.0029544830322265625, 0.02276611328125, -0.0169830322265625, 0.0284271240234375, 0.004547119140625, 0.0287933349609375, 0.0465087890625, -0.036651611328125, -0.060455322265625, -0.0009517669677734375, 0.01342010498046875, 0.03271484375, -0.051116943359375, 0.054595947265625, 0.006488800048828125, -0.0167083740234375, -0.0080718994140625, -0.00894927978515625, 0.036224365234375, 0.0094451904296875, 0.01442718505859375, -0.0082244873046875, -0.034942626953125, -0.07135009765625, 0.031402587890625, 0.0040283203125, 0.007648468017578125, -0.00399017333984375, 0.058502197265625, 0.0094451904296875, 0.039520263671875, -0.0290985107421875, -0.0015058517456054688, 0.0023288726806640625, 0.003902435302734375, 0.03466796875, 0.054595947265625, 0.0587158203125, -0.0693359375, -0.026580810546875, -0.0455322265625, -0.0097198486328125, 0.0133209228515625, -0.01139068603515625, -0.022125244140625, 0.02984619140625, 0.0159454345703125, -0.026580810546875, 0.03955078125, 0.035980224609375, -0.058074951171875, 0.06195068359375, -0.01508331298828125, 0.0214691162109375, -0.05859375, 0.0004858970642089844, 0.0007319450378417969, -0.033050537109375, 0.00879669189453125, 0.00048089027404785156, 0.0295562744140625, 0.00518798828125, -0.055755615234375, 0.0177459716796875, -0.0202178955078125, -0.0063629150390625, -0.01024627685546875, -0.043792724609375, 0.024261474609375, 0.0374755859375, 0.006290435791015625, 0.0712890625, 0.05029296875, -0.04412841796875, 0.027984619140625, 0.0060272216796875, 0.00940704345703125, 0.046112060546875, -0.044158935546875, 0.00957489013671875, 0.035247802734375, -0.0019969940185546875, -0.0555419921875, 0.004428863525390625, 0.021026611328125, -0.0275115966796875, 0.027099609375, -0.00933074951171875, -0.037841796875, -0.005977630615234375, -0.052764892578125, 0.041748046875, 0.0341796875, -0.0160369873046875, 0.0230865478515625, 0.0104827880859375, 0.04144287109375, -0.01401519775390625, -0.06536865234375, -0.0309906005859375, -0.007213592529296875, -0.03704833984375, 0.055328369140625, -0.033477783203125, 0.0013790130615234375, -0.0240325927734375, -0.03948974609375, -0.032379150390625, 0.01146697998046875, 0.0231781005859375, 0.0188751220703125, -0.0157623291015625, -0.00348663330078125, 0.018524169921875, -0.006740570068359375, 0.03515625, -0.00899505615234375, 0.043670654296875, -0.045654296875, -0.0014190673828125, -0.0269622802734375, 0.008056640625, 0.0106658935546875, 0.0152435302734375, 0.055877685546875, 0.07806396484375, -0.03924560546875, 0.0098419189453125, -0.033538818359375, -0.020660400390625, -0.039337158203125, 0.0211944580078125, -0.040924072265625, -0.075439453125, 0.0154571533203125, -0.0015430450439453125, -0.002437591552734375, 0.056976318359375, 0.019012451171875, -0.0231781005859375, 0.04736328125, 0.0312042236328125, 0.0290374755859375, 0.048492431640625, -0.041748046875, -0.0036411285400390625, -0.075439453125, -0.00296783447265625, -0.0312042236328125, -0.02886962890625, -0.053619384765625, -0.003986358642578125, 0.036651611328125, 0.041595458984375, -0.06182861328125, 0.010498046875, -0.04144287109375, 0.0360107421875, 0.041900634765625, 0.029327392578125, -0.0160064697265625, 0.0129852294921875, -0.0130767822265625, 0.0099029541015625, -0.0384521484375, 0.0009589195251464844, 0.09716796875, 0.0155181884765625, 0.033203125, -0.004962921142578125, 0.057891845703125, 0.006679534912109375, -0.03472900390625, -0.038482666015625, 0.044647216796875, -0.01187896728515625, -0.0675048828125, -0.011383056640625, -0.033172607421875, -0.040740966796875, -0.0100860595703125, -0.0271759033203125, -0.054656982421875, 0.017822265625, 0.025482177734375, -0.046234130859375, 0.00786590576171875, -0.042633056640625, 0.07220458984375, -0.038116455078125, -0.0108642578125, -0.0236663818359375, -0.05438232421875, 0.00931549072265625, 0.0009775161743164062, -0.0034160614013671875, -0.00592041015625, -0.006084442138671875, 0.07354736328125, -0.0275115966796875, 0.04791259765625, -0.02459716796875, 0.022613525390625, 0.0273895263671875, -0.018157958984375, 0.02642822265625, 0.0152435302734375, -0.00493621826171875, 0.0457763671875, 0.03228759765625, -0.043212890625, 0.0011625289916992188, 0.042724609375, -0.0736083984375, 0.00035381317138671875, -0.054351806640625, -0.018646240234375, -0.01500701904296875, 0.00876617431640625, 0.0439453125, 0.02227783203125, 0.007564544677734375, 0.027130126953125, 0.08343505859375, 0.0171356201171875, 0.04278564453125, 0.032012939453125, -0.00977325439453125, -0.0692138671875, 0.054351806640625, 0.005039215087890625, 0.03839111328125, 0.0284576416015625, 0.0238494873046875, -0.0204620361328125, -0.061859130859375, -0.0247344970703125, 0.01277923583984375, -0.02484130859375, -0.03515625, -0.01513671875, -0.04058837890625, -0.052398681640625, 0.0038661956787109375, -0.04083251953125, -0.052764892578125, -0.031280517578125, -0.01277923583984375, 0.05169677734375, -0.0052490234375, -0.0221099853515625, 0.061004638671875, -0.0758056640625, 0.01236724853515625, 0.001628875732421875, 0.026580810546875, -0.02362060546875, -0.046661376953125, -0.06475830078125, -0.0013885498046875, -0.061676025390625, -0.06195068359375, -0.0027008056640625, 0.0236968994140625, 0.0279388427734375, 0.036529541015625, -0.002002716064453125, 0.0229339599609375, -0.01154327392578125, 0.043548583984375, 0.01042938232421875, -0.078125, 0.04229736328125, -0.0082244873046875, 0.029571533203125, 0.0599365234375, 0.03448486328125, 0.00426483154296875, 0.01326751708984375, -0.0797119140625, -0.0701904296875, 0.04888916015625, 0.0190277099609375, -0.006015777587890625, 0.0099945068359375, 0.035003662109375, -0.001678466796875, 0.054901123046875, -0.052581787109375, -0.0072479248046875, -0.0117340087890625, -0.0013151168823242188, 0.0307769775390625, -0.021697998046875, 0.00019919872283935547, -0.025970458984375, 0.07989501953125, -0.0108184814453125, 0.038055419921875, 0.0187530517578125, -0.005687713623046875, -0.02825927734375, 0.00557708740234375, 0.0238189697265625, 0.051971435546875, -0.061065673828125, 0.00989532470703125, -0.0013637542724609375, -0.0699462890625, 0.005584716796875, 0.01529693603515625, -0.0198974609375, -0.0203094482421875, 0.001445770263671875, 0.0771484375, 0.01415252685546875, -0.0223846435546875, 0.0202789306640625, -0.0057830810546875, -0.045684814453125, -0.046356201171875, 0.034759521484375, -0.00722503662109375, 0.0330810546875, 0.007080078125, 0.007720947265625, 0.011566162109375, -0.01136016845703125, 0.009063720703125, 0.027496337890625, -0.022857666015625, -0.025360107421875, 0.0286865234375, 0.032958984375, -0.0170135498046875, 0.06378173828125, -0.051666259765625, -0.028533935546875, 0.057373046875, 0.03662109375, 0.079345703125, 0.0006742477416992188, 0.003498077392578125, 0.024322509765625, 0.0145721435546875, -0.00311279296875, 0.07373046875, -0.019683837890625, -0.07666015625, -0.0203704833984375, -0.073974609375, -0.014495849609375, 0.01438140869140625, -0.05902099609375, 0.0165252685546875, -0.0645751953125, -0.035797119140625, 0.00994110107421875, 0.0445556640625, -0.052947998046875, 0.0287017822265625, 0.022491455078125, 0.0810546875, -0.06024169921875, 0.087646484375, 0.0675048828125, -0.0248260498046875, -0.051544189453125, -0.0185394287109375, -0.00792694091796875, -0.0487060546875, 0.03607177734375, 0.005886077880859375, 0.0199737548828125, 0.035491943359375, -0.04034423828125, -0.03936767578125, 0.09173583984375, 0.022369384765625, -0.05291748046875, 0.011138916015625, 0.016571044921875, 0.0002753734588623047, -0.01122283935546875, 0.01541900634765625, 0.042572021484375, 0.0252685546875, 0.01409912109375, -0.06427001953125, 0.004886627197265625, -0.00002562999725341797, -0.01309967041015625, 0.04913330078125, -0.056060791015625, 0.0908203125, -0.0012798309326171875, 0.0306854248046875, -0.00476837158203125, 0.033599853515625, 0.0433349609375, 0.01447296142578125, 0.05169677734375, 0.06121826171875, 0.0254058837890625, -0.00498199462890625, 0.0283660888671875, -0.03277587890625, 0.053466796875, 0.070556640625, -0.006198883056640625, 0.052947998046875, 0.06805419921875, -0.046356201171875, 0.0095367431640625, 0.061431884765625, -0.019927978515625, 0.03411865234375, 0.00347137451171875, -0.03277587890625, -0.028076171875, 0.021240234375, -0.0284881591796875, 0.004131317138671875, 0.037811279296875, -0.019256591796875, -0.004119873046875, -0.00977325439453125, 0.006805419921875, -0.054107666015625, -0.028076171875, 0.04248046875, 0.0030612945556640625, -0.013580322265625, 0.045013427734375, 0.0012149810791015625, 0.0650634765625, -0.06304931640625, -0.021514892578125, -0.0011091232299804688, 0.02362060546875, -0.0178375244140625, -0.052154541015625, 0.0302734375, -0.0192718505859375, -0.032318115234375, -0.01143646240234375, 0.0457763671875, -0.006420135498046875, -0.053375244140625, 0.0006108283996582031, -0.00807952880859375, 0.01439666748046875, -0.049560546875, -0.06707763671875, 0.0107269287109375, 0.0285797119140625, -0.0361328125, 0.045166015625, 0.052093505859375, 0.0172882080078125, 0.014373779296875, 0.0204315185546875, 0.00800323486328125, 0.0111541748046875, -0.01143646240234375, 0.050811767578125, -0.05609130859375, -0.044525146484375, -0.06427001953125, 0.037445068359375, 0.00494384765625, -0.042694091796875, 0.024566650390625, 0.057403564453125, 0.08477783203125, 0.00782012939453125, 0.028167724609375, -0.0202178955078125, -0.01483154296875, -0.059539794921875, 0.039276123046875, -0.01294708251953125, 0.0012273788452148438, 0.0169830322265625, -0.04168701171875, 0.0252227783203125, 0.06488037109375, -0.003879547119140625, 0.005466461181640625, 0.0765380859375, 0.029144287109375, -0.00830078125, 0.0218353271484375, 0.01416015625, 0.01531982421875, 0.001842498779296875, 0.048492431640625, 0.00812530517578125, -0.0655517578125, 0.0253143310546875, -0.05987548828125, -0.0258331298828125, -0.009735107421875, -0.059234619140625, -0.03436279296875, -0.01511383056640625, -0.05230712890625, -0.03179931640625, -0.006603240966796875, 0.060455322265625, 0.061004638671875, -0.056549072265625, -0.033294677734375, -0.0237884521484375, -0.00923919677734375, -0.01320648193359375, -0.0214691162109375, 0.023712158203125, -0.0095367431640625, -0.02880859375, 0.0097198486328125, 0.00662994384765625, 0.0262298583984375, -0.021240234375, -0.01641845703125, -0.036163330078125, -0.00992584228515625, 0.01105499267578125, -0.01447296142578125, -0.0040435791015625, -0.01039886474609375, -0.02667236328125, 0.00775909423828125, 0.040252685546875, 0.038330078125, -0.06243896484375, 0.004734039306640625, 0.0460205078125, 0.0185394287109375, 0.04876708984375, -0.026947021484375, 0.0228424072265625, -0.0703125, 0.0253143310546875, 0.025665283203125, 0.02777099609375, -0.00835418701171875, -0.048614501953125, 0.032501220703125, 0.03961181640625, -0.06024169921875, -0.039031982421875, -0.0081939697265625, -0.08416748046875, -0.0023822784423828125, 0.054595947265625, -0.0091552734375, -0.040069580078125, 0.0267333984375, -0.008148193359375, 0.0143280029296875, -0.049652099609375, 0.0295257568359375, 0.0357666015625, -0.03900146484375, -0.004558563232421875, -0.050628662109375, 0.02880859375, 0.0169525146484375, -0.04937744140625, -0.05328369140625, 0.0299072265625, 0.033447265625, 0.0054931640625, 0.057586669921875, -0.00553131103515625, 0.02459716796875, 0.0268096923828125, 0.02392578125, -0.018035888671875, -0.0069427490234375, -0.03387451171875, -0.00339508056640625, 0.0029697418212890625, -0.061553955078125 ] ]
mnazari/wav2vec2-large-mms-1b-urmi-christian-nointonations
2023-10-27T10:33:07.000Z
[ "transformers", "pytorch", "wav2vec2", "automatic-speech-recognition", "generated_from_trainer", "dataset:nena_speech_1_0_test", "license:cc-by-nc-4.0", "model-index", "endpoints_compatible", "region:us" ]
automatic-speech-recognition
mnazari
null
null
mnazari/wav2vec2-large-mms-1b-urmi-christian-nointonations
0
2
transformers
2023-10-26T23:07:19
--- license: cc-by-nc-4.0 base_model: facebook/mms-1b-all tags: - generated_from_trainer datasets: - nena_speech_1_0_test metrics: - wer model-index: - name: wav2vec2-large-mms-1b-urmi-christian-nointonations results: - task: name: Automatic Speech Recognition type: automatic-speech-recognition dataset: name: nena_speech_1_0_test type: nena_speech_1_0_test config: urmi (christian) split: test args: urmi (christian) metrics: - name: Wer type: wer value: 1.0 --- <!-- This model card has been generated automatically according to the information the Trainer had access to. You should probably proofread and complete it, then remove this comment. --> # wav2vec2-large-mms-1b-urmi-christian-nointonations This model is a fine-tuned version of [facebook/mms-1b-all](https://huggingface.co/facebook/mms-1b-all) on the nena_speech_1_0_test dataset. It achieves the following results on the evaluation set: - Loss: 1.4023 - Wer: 1.0 - Cer: 0.3080 ## 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: 32 - 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: 100 - num_epochs: 5 ### Training results | Training Loss | Epoch | Step | Validation Loss | Wer | Cer | |:-------------:|:-----:|:----:|:---------------:|:------:|:------:| | 11.9124 | 0.14 | 25 | 8.0029 | 1.0 | 0.9396 | | 4.0619 | 0.29 | 50 | 3.1702 | 1.0 | 0.9850 | | 2.5226 | 0.43 | 75 | 1.2813 | 1.0 | 0.3749 | | 1.7097 | 0.57 | 100 | 1.0049 | 1.0 | 0.3041 | | 1.4508 | 0.72 | 125 | 0.8869 | 1.0 | 0.2564 | | 1.1873 | 0.86 | 150 | 0.8490 | 0.9984 | 0.2503 | | 1.4657 | 1.01 | 175 | 0.8487 | 1.0 | 0.2513 | | 1.0877 | 1.15 | 200 | 0.7699 | 0.9984 | 0.2352 | | 1.3957 | 1.29 | 225 | 0.7402 | 0.9984 | 0.2271 | | 1.1216 | 1.44 | 250 | 0.7486 | 0.9984 | 0.2228 | | 1.2285 | 1.58 | 275 | 0.7122 | 0.9984 | 0.2191 | | 1.24 | 1.72 | 300 | 0.6914 | 0.9984 | 0.2208 | | 0.9623 | 1.87 | 325 | 0.6688 | 0.9984 | 0.2132 | | 1.2324 | 2.01 | 350 | 0.6708 | 0.9984 | 0.2117 | | 0.9558 | 2.16 | 375 | 0.6614 | 0.9984 | 0.2071 | | 1.2007 | 2.3 | 400 | 0.7159 | 0.9984 | 0.2183 | | 1.0645 | 2.44 | 425 | 0.7265 | 0.9984 | 0.2104 | | 1.1051 | 2.59 | 450 | 0.8289 | 1.0 | 0.2172 | | 1.6129 | 2.73 | 475 | 1.5108 | 1.0 | 0.3514 | | 2.0501 | 2.87 | 500 | 1.6020 | 1.0 | 0.4407 | | 2.0458 | 3.02 | 525 | 1.4441 | 1.0 | 0.4181 | | 1.621 | 3.16 | 550 | 1.2917 | 1.0 | 0.3545 | | 1.7942 | 3.3 | 575 | 1.4151 | 0.9984 | 0.2664 | | 1.6505 | 3.45 | 600 | 1.2550 | 1.0 | 0.3075 | | 1.7165 | 3.59 | 625 | 1.3912 | 1.0 | 0.3056 | | 1.8114 | 3.74 | 650 | 1.2554 | 1.0 | 0.3100 | | 1.6019 | 3.88 | 675 | 1.5515 | 1.0 | 0.2889 | | 2.0484 | 4.02 | 700 | 1.3666 | 1.0 | 0.2826 | | 1.7132 | 4.17 | 725 | 1.3629 | 1.0 | 0.3414 | | 1.8599 | 4.31 | 750 | 1.3831 | 1.0 | 0.3355 | | 1.8653 | 4.45 | 775 | 1.4025 | 1.0 | 0.3344 | | 1.8246 | 4.6 | 800 | 1.4007 | 1.0 | 0.3110 | | 1.9346 | 4.74 | 825 | 1.4022 | 1.0 | 0.3082 | | 1.732 | 4.89 | 850 | 1.4023 | 1.0 | 0.3080 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu121 - Datasets 2.14.6 - Tokenizers 0.14.1
4,118
[ [ -0.042633056640625, -0.037353515625, 0.01145172119140625, 0.0123291015625, -0.0018768310546875, -0.01433563232421875, 0.002166748046875, -0.004917144775390625, 0.03839111328125, 0.019195556640625, -0.053314208984375, -0.0501708984375, -0.0462646484375, -0.0138702392578125, -0.009979248046875, 0.05377197265625, 0.0149688720703125, -0.00354766845703125, -0.002948760986328125, -0.0096435546875, -0.0228729248046875, -0.00946044921875, -0.057342529296875, -0.0224456787109375, 0.01380157470703125, 0.0361328125, 0.06103515625, 0.056427001953125, 0.0304412841796875, 0.0246734619140625, -0.0254974365234375, 0.0031890869140625, -0.02587890625, -0.0408935546875, 0.004734039306640625, -0.0277252197265625, -0.034912109375, 0.0028781890869140625, 0.044769287109375, 0.04376220703125, -0.00966644287109375, 0.041046142578125, 0.0089569091796875, 0.06268310546875, -0.0284271240234375, 0.01200103759765625, -0.023162841796875, 0.006557464599609375, -0.01375579833984375, -0.025909423828125, 0.0020694732666015625, -0.03448486328125, 0.0116119384765625, -0.040496826171875, 0.030853271484375, -0.00267791748046875, 0.10382080078125, 0.02020263671875, -0.0302734375, 0.0017824172973632812, -0.037139892578125, 0.04742431640625, -0.047332763671875, 0.02618408203125, 0.043701171875, 0.013580322265625, -0.006595611572265625, -0.0517578125, -0.051361083984375, 0.019287109375, -0.0192718505859375, 0.0229034423828125, -0.0222625732421875, -0.0291595458984375, 0.035736083984375, 0.039642333984375, -0.049591064453125, -0.00275421142578125, -0.040985107421875, -0.01593017578125, 0.044921875, 0.0252227783203125, 0.00966644287109375, -0.045745849609375, -0.03704833984375, -0.0139923095703125, -0.026092529296875, 0.042938232421875, 0.038116455078125, 0.0137786865234375, -0.035736083984375, 0.03619384765625, -0.014312744140625, 0.04541015625, 0.0136566162109375, -0.0162200927734375, 0.061981201171875, -0.03314208984375, -0.027099609375, -0.00965118408203125, 0.060516357421875, 0.052032470703125, -0.006969451904296875, 0.01629638671875, 0.0006194114685058594, 0.0033206939697265625, 0.0083465576171875, -0.062255859375, -0.01549530029296875, 0.0296173095703125, -0.04376220703125, -0.0250396728515625, 0.004150390625, -0.05841064453125, 0.0087738037109375, -0.0302734375, 0.02374267578125, -0.0194854736328125, -0.028961181640625, -0.0008754730224609375, -0.01032257080078125, 0.02716064453125, 0.0167694091796875, -0.0711669921875, 0.0261993408203125, 0.0255889892578125, 0.06561279296875, 0.00608062744140625, -0.0039043426513671875, -0.0005159378051757812, 0.0192108154296875, -0.037017822265625, 0.04705810546875, -0.005748748779296875, -0.0275115966796875, -0.01800537109375, 0.026336669921875, -0.0166778564453125, -0.02587890625, 0.049591064453125, -0.0160675048828125, 0.02081298828125, -0.0286102294921875, -0.025421142578125, -0.0213165283203125, 0.0308990478515625, -0.0489501953125, 0.09490966796875, 0.021575927734375, -0.07427978515625, 0.037017822265625, -0.041473388671875, -0.0001246929168701172, -0.008758544921875, -0.00911712646484375, -0.06500244140625, -0.020050048828125, 0.02423095703125, 0.03045654296875, -0.0225982666015625, 0.0160675048828125, -0.002407073974609375, -0.0230865478515625, -0.0182037353515625, -0.027435302734375, 0.08660888671875, 0.01678466796875, -0.04541015625, 0.01071929931640625, -0.08551025390625, 0.01320648193359375, 0.0189361572265625, -0.037750244140625, 0.00540924072265625, -0.0213470458984375, 0.0184173583984375, 0.0216827392578125, 0.0188446044921875, -0.042938232421875, 0.00823974609375, -0.024200439453125, 0.035186767578125, 0.04998779296875, 0.0142822265625, 0.02655029296875, -0.045440673828125, 0.024383544921875, 0.0242156982421875, 0.0263824462890625, 0.00406646728515625, -0.034088134765625, -0.060546875, -0.03314208984375, 0.003414154052734375, 0.03973388671875, -0.0199127197265625, 0.04888916015625, -0.0173187255859375, -0.05474853515625, -0.0338134765625, -0.001506805419921875, 0.013580322265625, 0.053955078125, 0.021575927734375, -0.01102447509765625, -0.03765869140625, -0.07916259765625, 0.0108184814453125, 0.0029735565185546875, 0.018524169921875, 0.03717041015625, 0.060546875, -0.018218994140625, 0.08160400390625, -0.040679931640625, -0.04425048828125, 0.00015091896057128906, -0.0124053955078125, 0.0528564453125, 0.049652099609375, 0.06787109375, -0.05560302734375, -0.043548583984375, -0.002353668212890625, -0.049407958984375, 0.0221405029296875, -0.006282806396484375, -0.00677490234375, 0.0025272369384765625, 0.020050048828125, -0.037933349609375, 0.0626220703125, 0.04522705078125, -0.040557861328125, 0.060333251953125, -0.0268707275390625, 0.015655517578125, -0.08917236328125, 0.02655029296875, 0.0042724609375, -0.01337432861328125, -0.0219268798828125, -0.0186309814453125, 0.002166748046875, -0.01230621337890625, -0.023101806640625, 0.044586181640625, -0.032135009765625, -0.001251220703125, -0.00011998414993286133, -0.0083465576171875, -0.001628875732421875, 0.045989990234375, -0.0038928985595703125, 0.06585693359375, 0.0596923828125, -0.042236328125, 0.0183258056640625, 0.0267333984375, -0.044525146484375, 0.0400390625, -0.0509033203125, -0.00377655029296875, -0.01016998291015625, 0.00800323486328125, -0.0870361328125, -0.024993896484375, 0.026153564453125, -0.04449462890625, 0.00925445556640625, -0.01026153564453125, -0.0184326171875, -0.06146240234375, -0.0275726318359375, -0.0019168853759765625, 0.0240631103515625, -0.031951904296875, 0.0374755859375, 0.01617431640625, 0.0081024169921875, -0.04852294921875, -0.05560302734375, -0.005779266357421875, -0.008270263671875, -0.05584716796875, 0.02294921875, -0.004657745361328125, 0.0016345977783203125, 0.0114898681640625, -0.00513458251953125, -0.0138092041015625, 0.00882720947265625, 0.03375244140625, 0.0117645263671875, -0.0152435302734375, -0.0174560546875, -0.0095672607421875, -0.0301055908203125, -0.0009551048278808594, -0.0018911361694335938, 0.044189453125, -0.01474761962890625, -0.036285400390625, -0.06060791015625, 0.0022563934326171875, 0.04052734375, -0.0275115966796875, 0.07879638671875, 0.044921875, -0.032440185546875, 0.009552001953125, -0.0340576171875, -0.004543304443359375, -0.03271484375, 0.0247344970703125, -0.039337158203125, -0.051727294921875, 0.05621337890625, -0.00988006591796875, 0.0158843994140625, 0.05487060546875, 0.04248046875, -0.00372314453125, 0.06689453125, 0.0177764892578125, -0.00804901123046875, 0.028564453125, -0.07098388671875, 0.0012359619140625, -0.05712890625, -0.044219970703125, -0.044097900390625, -0.03582763671875, -0.032440185546875, -0.017425537109375, 0.02447509765625, 0.004608154296875, -0.046630859375, 0.01751708984375, -0.0550537109375, 0.0254669189453125, 0.056427001953125, 0.029296875, 0.0012683868408203125, 0.0015878677368164062, -0.0204620361328125, -0.0112762451171875, -0.04315185546875, -0.040313720703125, 0.0899658203125, 0.01947021484375, 0.0293426513671875, 0.0160675048828125, 0.057830810546875, 0.0141448974609375, 0.0007100105285644531, -0.03948974609375, 0.01561737060546875, 0.00502777099609375, -0.064697265625, -0.0269775390625, -0.01898193359375, -0.07623291015625, 0.0281524658203125, -0.0240631103515625, -0.06524658203125, 0.047210693359375, 0.0198822021484375, -0.03570556640625, 0.037689208984375, -0.0380859375, 0.0650634765625, 0.0013780593872070312, -0.042938232421875, -0.008636474609375, -0.052001953125, 0.020660400390625, 0.00762939453125, 0.0227508544921875, -0.01096343994140625, 0.014556884765625, 0.062347412109375, -0.050537109375, 0.037689208984375, -0.0160675048828125, 0.020599365234375, 0.0343017578125, -0.01023101806640625, 0.04541015625, 0.00998687744140625, -0.019683837890625, -0.004703521728515625, 0.00536346435546875, -0.043243408203125, -0.0240020751953125, 0.060302734375, -0.080078125, -0.047393798828125, -0.0374755859375, -0.02978515625, 0.014556884765625, 0.024169921875, 0.033477783203125, 0.04510498046875, 0.003421783447265625, 0.0262298583984375, 0.043365478515625, -0.00386810302734375, 0.03997802734375, 0.024505615234375, -0.007843017578125, -0.0611572265625, 0.055877685546875, 0.008087158203125, 0.019195556640625, -0.0036678314208984375, 0.0166015625, -0.0311737060546875, -0.0264739990234375, -0.0273284912109375, 0.01261138916015625, -0.0316162109375, -0.0213775634765625, -0.049713134765625, -0.015655517578125, -0.05511474609375, -0.0248260498046875, -0.031402587890625, -0.0221710205078125, -0.03729248046875, -0.023345947265625, 0.039459228515625, 0.040252685546875, -0.0146484375, 0.037933349609375, -0.034759521484375, 0.01293182373046875, 0.009033203125, 0.01490020751953125, 0.01055145263671875, -0.045074462890625, -0.01393890380859375, -0.0008668899536132812, -0.0355224609375, -0.0595703125, 0.052032470703125, -0.0041961669921875, 0.0400390625, 0.050537109375, -0.0157012939453125, 0.07403564453125, -0.01513671875, 0.059326171875, 0.037353515625, -0.0560302734375, 0.044097900390625, -0.02764892578125, 0.024444580078125, 0.052093505859375, 0.03729248046875, -0.03900146484375, -0.008056640625, -0.07269287109375, -0.06597900390625, 0.06732177734375, 0.0260009765625, -0.00020968914031982422, 0.00014591217041015625, 0.0193023681640625, -0.0267791748046875, 0.01355743408203125, -0.06488037109375, -0.06170654296875, -0.0131683349609375, -0.005870819091796875, -0.0019140243530273438, -0.0166778564453125, -0.0160064697265625, -0.050201416015625, 0.052734375, 0.01438140869140625, 0.01934814453125, 0.023040771484375, 0.0162811279296875, -0.0169677734375, 0.00800323486328125, 0.04046630859375, 0.059783935546875, -0.0377197265625, 0.0028438568115234375, 0.005237579345703125, -0.03240966796875, 0.01143646240234375, -0.00279998779296875, -0.03717041015625, 0.0034008026123046875, 0.01983642578125, 0.05584716796875, 0.0099334716796875, 0.005153656005859375, 0.048126220703125, 0.0121307373046875, -0.0428466796875, -0.039642333984375, -0.009429931640625, 0.0166778564453125, 0.02716064453125, 0.03240966796875, 0.032562255859375, 0.00406646728515625, -0.038848876953125, 0.0168304443359375, 0.0294952392578125, -0.0426025390625, -0.0033779144287109375, 0.066162109375, 0.0019521713256835938, -0.0213165283203125, 0.040069580078125, -0.01187896728515625, -0.043121337890625, 0.07098388671875, 0.035888671875, 0.042449951171875, -0.0278472900390625, 0.00963592529296875, 0.081298828125, 0.02862548828125, 0.0037822723388671875, 0.042236328125, 0.01006317138671875, -0.0269775390625, 0.004077911376953125, -0.050384521484375, -0.00649261474609375, 0.0285186767578125, -0.061614990234375, 0.03509521484375, -0.034576416015625, -0.039947509765625, -0.00530242919921875, 0.0214996337890625, -0.06488037109375, 0.0350341796875, -0.00286865234375, 0.08355712890625, -0.0726318359375, 0.04376220703125, 0.0469970703125, -0.04278564453125, -0.08428955078125, -0.033477783203125, 0.00444793701171875, -0.05108642578125, 0.0479736328125, 0.011077880859375, 0.015472412109375, 0.0166015625, -0.046142578125, -0.0909423828125, 0.1046142578125, -0.001628875732421875, -0.0469970703125, 0.0175018310546875, 0.00913238525390625, 0.03131103515625, -0.00350189208984375, 0.03509521484375, 0.03765869140625, 0.04058837890625, 0.018829345703125, -0.0653076171875, 0.0085906982421875, -0.0295257568359375, -0.002689361572265625, 0.018157958984375, -0.0689697265625, 0.0821533203125, -0.017608642578125, 0.003917694091796875, -0.0005869865417480469, 0.049072265625, 0.0254669189453125, 0.02093505859375, 0.034637451171875, 0.07684326171875, 0.059722900390625, -0.0167694091796875, 0.07110595703125, -0.0305633544921875, 0.056671142578125, 0.0704345703125, 0.0147247314453125, 0.058990478515625, 0.0299835205078125, -0.0389404296875, 0.0281982421875, 0.06280517578125, -0.0156097412109375, 0.040252685546875, 0.004230499267578125, -0.02142333984375, -0.01261138916015625, 0.00536346435546875, -0.051177978515625, 0.015472412109375, 0.01409912109375, -0.0360107421875, -0.0206451416015625, -0.01007843017578125, 0.0053253173828125, -0.007694244384765625, -0.0316162109375, 0.035919189453125, -0.016357421875, -0.01375579833984375, 0.03436279296875, -0.0056610107421875, 0.040740966796875, -0.044097900390625, 0.001865386962890625, -0.003559112548828125, 0.0318603515625, -0.0523681640625, -0.0687255859375, 0.0205230712890625, -0.01129913330078125, -0.027099609375, 0.003360748291015625, 0.0295867919921875, -0.0099639892578125, -0.048553466796875, 0.0105133056640625, 0.0174407958984375, 0.0128021240234375, 0.01053619384765625, -0.0628662109375, -0.0150604248046875, 0.0159759521484375, -0.050537109375, 0.00496673583984375, 0.0308837890625, 0.000789642333984375, 0.036865234375, 0.063720703125, 0.0037441253662109375, 0.0186920166015625, -0.006744384765625, 0.08489990234375, -0.049896240234375, -0.04327392578125, -0.053375244140625, 0.0316162109375, -0.0195770263671875, -0.046234130859375, 0.06353759765625, 0.07305908203125, 0.0400390625, -0.00363922119140625, 0.044281005859375, -0.0260009765625, 0.046142578125, -0.01708984375, 0.053741455078125, -0.05462646484375, -0.0145111083984375, -0.020050048828125, -0.061126708984375, -0.022247314453125, 0.058685302734375, -0.0394287109375, -0.0023021697998046875, 0.035400390625, 0.0723876953125, 0.007232666015625, 0.0016775131225585938, 0.005584716796875, 0.00199127197265625, 0.0115966796875, 0.039215087890625, 0.0311279296875, -0.0528564453125, 0.0360107421875, -0.046905517578125, -0.0108184814453125, -0.01277923583984375, -0.046539306640625, -0.05322265625, -0.03338623046875, -0.038421630859375, -0.03448486328125, -0.01439666748046875, 0.07470703125, 0.058441162109375, -0.056854248046875, -0.025543212890625, -0.0006451606750488281, -0.0031833648681640625, -0.0218963623046875, -0.0162200927734375, 0.07391357421875, 0.00251007080078125, -0.05364990234375, -0.004913330078125, 0.00765228271484375, 0.0250091552734375, -0.003627777099609375, -0.00969696044921875, -0.023712158203125, -0.006229400634765625, 0.027557373046875, 0.0147857666015625, -0.04302978515625, -0.0118408203125, -0.00882720947265625, -0.0202789306640625, 0.02825927734375, 0.01296234130859375, -0.040679931640625, 0.0257110595703125, 0.0276947021484375, 0.0248870849609375, 0.059051513671875, 0.00878143310546875, -0.00327301025390625, -0.034271240234375, 0.02081298828125, -0.00447845458984375, 0.0247344970703125, 0.0054473876953125, -0.028076171875, 0.0491943359375, 0.035186767578125, -0.046905517578125, -0.0538330078125, -0.020263671875, -0.0941162109375, 0.003143310546875, 0.0753173828125, -0.004116058349609375, -0.041717529296875, -0.0010280609130859375, -0.02081298828125, 0.01007843017578125, -0.033843994140625, 0.031646728515625, 0.04913330078125, -0.01306915283203125, -0.002960205078125, -0.052093505859375, 0.0301666259765625, 0.00887298583984375, -0.0543212890625, -0.02313232421875, 0.0262298583984375, 0.034881591796875, 0.023223876953125, 0.05548095703125, -0.00942230224609375, 0.0181884765625, 0.02142333984375, 0.0169525146484375, -0.0120849609375, -0.003570556640625, -0.01126861572265625, 0.0142822265625, -0.00827789306640625, -0.038818359375 ] ]
riturralde/my_awesome_keywords_model
2023-10-27T00:34:54.000Z
[ "transformers", "pytorch", "mt5", "text2text-generation", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
text2text-generation
riturralde
null
null
riturralde/my_awesome_keywords_model
0
2
transformers
2023-10-27T00:21:53
--- license: apache-2.0 base_model: google/mt5-small tags: - generated_from_trainer metrics: - rouge model-index: - name: my_awesome_keywords_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_keywords_model This model is a fine-tuned version of [google/mt5-small](https://huggingface.co/google/mt5-small) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: nan - Rouge1: 0.0 - Rouge2: 0.0 - Rougel: 0.0 - Rougelsum: 0.0 - Gen Len: 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: 2 - eval_batch_size: 2 - 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 | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len | |:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|:---------:|:-------:| | 0.0 | 1.0 | 1283 | nan | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | | 0.0 | 2.0 | 2566 | nan | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | | 0.0 | 3.0 | 3849 | nan | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | | 0.0 | 4.0 | 5132 | nan | 0.0 | 0.0 | 0.0 | 0.0 | 0.0 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.0.1+cu118 - Datasets 2.14.5 - Tokenizers 0.14.1
1,832
[ [ -0.036163330078125, -0.042999267578125, 0.01898193359375, 0.00414276123046875, -0.0236968994140625, -0.0209503173828125, -0.0047760009765625, -0.0107269287109375, 0.0204010009765625, 0.0300445556640625, -0.05682373046875, -0.055633544921875, -0.053558349609375, -0.0038909912109375, -0.0189971923828125, 0.09368896484375, 0.01294708251953125, 0.0198822021484375, 0.0011358261108398438, -0.0178070068359375, -0.03228759765625, -0.044891357421875, -0.057708740234375, -0.037811279296875, 0.0222015380859375, 0.0232696533203125, 0.06414794921875, 0.0662841796875, 0.046966552734375, 0.0165863037109375, -0.031768798828125, 0.004730224609375, -0.04217529296875, -0.037200927734375, 0.004459381103515625, -0.042236328125, -0.062469482421875, 0.003635406494140625, 0.034576416015625, 0.0229339599609375, -0.01873779296875, 0.046783447265625, 0.002471923828125, 0.03094482421875, -0.034881591796875, 0.01837158203125, -0.048553466796875, 0.0222320556640625, -0.01280975341796875, -0.033782958984375, -0.005420684814453125, -0.01444244384765625, -0.0018072128295898438, -0.0465087890625, 0.044158935546875, 0.0034389495849609375, 0.10687255859375, 0.0214996337890625, -0.0164642333984375, -0.0105743408203125, -0.043487548828125, 0.042755126953125, -0.0618896484375, 0.011566162109375, 0.034759521484375, 0.027069091796875, 0.005096435546875, -0.05902099609375, -0.04840087890625, 0.007335662841796875, -0.0038585662841796875, 0.0146484375, -0.00901031494140625, -0.00537109375, 0.0491943359375, 0.048736572265625, -0.042816162109375, 0.018280029296875, -0.046966552734375, -0.0243072509765625, 0.036651611328125, 0.046875, -0.0033245086669921875, -0.0193328857421875, -0.0225677490234375, -0.0135498046875, -0.037933349609375, 0.017425537109375, 0.055267333984375, 0.024932861328125, -0.036163330078125, 0.039306640625, -0.021240234375, 0.0499267578125, 0.0091552734375, -0.021636962890625, 0.044891357421875, -0.01522064208984375, -0.0258941650390625, -0.00711822509765625, 0.058990478515625, 0.04718017578125, 0.00811767578125, 0.00601959228515625, -0.021240234375, -0.0054473876953125, 0.0163421630859375, -0.07623291015625, -0.0266571044921875, 0.012786865234375, -0.04693603515625, -0.0526123046875, 0.01105499267578125, -0.045166015625, 0.00963592529296875, -0.0209503173828125, 0.050079345703125, -0.02716064453125, -0.0007224082946777344, 0.0009613037109375, -0.003200531005859375, 0.0208892822265625, 0.0078277587890625, -0.0670166015625, 0.0299072265625, 0.034393310546875, 0.047149658203125, 0.01385498046875, -0.020111083984375, -0.021209716796875, -0.00010579824447631836, -0.028533935546875, 0.03546142578125, -0.0165557861328125, -0.035430908203125, -0.016387939453125, 0.023529052734375, -0.007762908935546875, -0.034393310546875, 0.0677490234375, -0.0360107421875, 0.036102294921875, -0.01448822021484375, -0.044830322265625, -0.024749755859375, 0.032989501953125, -0.05706787109375, 0.083251953125, 0.002567291259765625, -0.05999755859375, 0.048828125, -0.048828125, 0.0006785392761230469, -0.003482818603515625, -0.0080718994140625, -0.07220458984375, -0.006214141845703125, 0.0108795166015625, 0.0382080078125, -0.0252532958984375, 0.01511383056640625, -0.02825927734375, -0.040191650390625, -0.00035071372985839844, -0.03350830078125, 0.05889892578125, 0.01296234130859375, -0.03076171875, 0.01824951171875, -0.09014892578125, 0.017578125, 0.033233642578125, -0.0263824462890625, 0.0025787353515625, -0.0282745361328125, 0.02117919921875, 0.0283966064453125, 0.02447509765625, -0.022491455078125, 0.01617431640625, -0.0224456787109375, 0.0286865234375, 0.05426025390625, 0.0092010498046875, 0.00440216064453125, -0.03594970703125, 0.02734375, 0.02166748046875, 0.0209503173828125, 0.004425048828125, -0.040557861328125, -0.06536865234375, -0.01491546630859375, 0.03570556640625, 0.0263824462890625, -0.022705078125, 0.057952880859375, -0.0189971923828125, -0.043426513671875, -0.03948974609375, 0.00901031494140625, 0.023101806640625, 0.041290283203125, 0.029541015625, -0.007404327392578125, -0.02923583984375, -0.08807373046875, 0.000019669532775878906, 0.00513458251953125, 0.00844573974609375, 0.02764892578125, 0.06005859375, -0.0142364501953125, 0.060821533203125, -0.051727294921875, -0.030670166015625, -0.01221466064453125, 0.010467529296875, 0.039703369140625, 0.045501708984375, 0.0615234375, -0.03955078125, -0.02313232421875, -0.017791748046875, -0.045166015625, 0.024139404296875, -0.00850677490234375, -0.01522064208984375, -0.006378173828125, 0.01081085205078125, -0.034454345703125, 0.045135498046875, 0.0305328369140625, -0.0266876220703125, 0.042999267578125, -0.0423583984375, -0.00818634033203125, -0.0982666015625, 0.0278778076171875, 0.00437164306640625, -0.0124664306640625, -0.0230255126953125, 0.0029087066650390625, 0.01491546630859375, -0.006961822509765625, -0.0218658447265625, 0.047821044921875, -0.01520538330078125, 0.0167236328125, -0.01183319091796875, -0.023590087890625, -0.00439453125, 0.0572509765625, 0.004543304443359375, 0.04522705078125, 0.051544189453125, -0.04241943359375, 0.01812744140625, 0.0230712890625, -0.0287933349609375, 0.0333251953125, -0.05413818359375, 0.0131683349609375, 0.0010690689086914062, -0.005344390869140625, -0.059722900390625, -0.0259857177734375, 0.02862548828125, -0.03619384765625, 0.01348114013671875, -0.0164642333984375, -0.040496826171875, -0.038787841796875, -0.01158905029296875, 0.00897216796875, 0.03790283203125, -0.040679931640625, 0.020416259765625, -0.00164031982421875, 0.01922607421875, -0.03521728515625, -0.0435791015625, -0.01068115234375, -0.0277862548828125, -0.0260009765625, 0.0228729248046875, -0.00357818603515625, 0.0215301513671875, 0.005832672119140625, -0.00458526611328125, -0.01480865478515625, -0.0013799667358398438, 0.0288543701171875, 0.0296173095703125, -0.007335662841796875, -0.0124969482421875, -0.00583648681640625, -0.019775390625, 0.014312744140625, 0.004413604736328125, 0.052154541015625, -0.0084228515625, -0.0186614990234375, -0.0584716796875, -0.00664520263671875, 0.0433349609375, -0.010955810546875, 0.07080078125, 0.064697265625, -0.038787841796875, -0.005229949951171875, -0.0283203125, -0.01551055908203125, -0.03314208984375, 0.03564453125, -0.046417236328125, -0.034027099609375, 0.0672607421875, 0.01355743408203125, -0.00006520748138427734, 0.07708740234375, 0.040435791015625, 0.0094757080078125, 0.09344482421875, 0.0275726318359375, -0.007904052734375, 0.0117645263671875, -0.0682373046875, 0.00022792816162109375, -0.056182861328125, -0.036163330078125, -0.0372314453125, -0.03240966796875, -0.05767822265625, -0.0034313201904296875, 0.0170135498046875, 0.0102081298828125, -0.04345703125, 0.022125244140625, -0.039520263671875, 0.02191162109375, 0.057891845703125, 0.03173828125, 0.0045623779296875, -0.0011053085327148438, -0.02923583984375, -0.011810302734375, -0.061798095703125, -0.0309906005859375, 0.1043701171875, 0.028656005859375, 0.04241943359375, -0.00606536865234375, 0.05230712890625, 0.00432586669921875, 0.020355224609375, -0.046630859375, 0.034332275390625, 0.0039005279541015625, -0.0821533203125, -0.008209228515625, -0.037841796875, -0.05859375, 0.0153656005859375, -0.0243682861328125, -0.045654296875, 0.01291656494140625, 0.01837158203125, -0.041748046875, 0.03436279296875, -0.0258636474609375, 0.0838623046875, -0.018829345703125, -0.0242919921875, -0.00879669189453125, -0.040008544921875, 0.023590087890625, -0.004749298095703125, 0.0015859603881835938, -0.003940582275390625, 0.00640106201171875, 0.07464599609375, -0.053192138671875, 0.04302978515625, -0.018096923828125, 0.0297698974609375, 0.0209503173828125, -0.016448974609375, 0.053680419921875, 0.00823211669921875, -0.00298309326171875, 0.00440216064453125, -0.0017595291137695312, -0.0345458984375, -0.0308990478515625, 0.058349609375, -0.07867431640625, -0.0157470703125, -0.0382080078125, -0.0281829833984375, 0.001068115234375, 0.0248260498046875, 0.05438232421875, 0.044830322265625, -0.0020809173583984375, 0.023651123046875, 0.03363037109375, -0.0038299560546875, 0.02655029296875, 0.03155517578125, -0.009521484375, -0.052032470703125, 0.07574462890625, 0.00988006591796875, 0.01416015625, -0.0036468505859375, 0.01258087158203125, -0.033447265625, -0.038482666015625, -0.0379638671875, 0.0170135498046875, -0.05120849609375, -0.01549530029296875, -0.0379638671875, -0.03045654296875, -0.0206756591796875, -0.00007021427154541016, -0.03173828125, -0.025634765625, -0.043426513671875, -0.01654052734375, 0.0305633544921875, 0.0305633544921875, 0.0014467239379882812, 0.048248291015625, -0.047393798828125, 0.01464080810546875, 0.019989013671875, 0.03509521484375, 0.003635406494140625, -0.070068359375, -0.0245513916015625, -0.0022792816162109375, -0.041778564453125, -0.050384521484375, 0.05133056640625, 0.0078277587890625, 0.0550537109375, 0.0511474609375, -0.0175933837890625, 0.0699462890625, -0.0229034423828125, 0.05816650390625, 0.0259552001953125, -0.042694091796875, 0.03155517578125, -0.0215301513671875, 0.0127105712890625, 0.045440673828125, 0.043792724609375, -0.014556884765625, -0.0023288726806640625, -0.1011962890625, -0.0675048828125, 0.06689453125, 0.02923583984375, 0.0040130615234375, 0.01110076904296875, 0.0208740234375, -0.006801605224609375, 0.0264892578125, -0.062347412109375, -0.049163818359375, -0.01629638671875, -0.009796142578125, -0.0038738250732421875, -0.0138092041015625, -0.0193328857421875, -0.036285400390625, 0.0682373046875, -0.0009684562683105469, 0.024169921875, -0.003849029541015625, 0.01129150390625, -0.003391265869140625, 0.0005164146423339844, 0.05059814453125, 0.046112060546875, -0.0489501953125, -0.010833740234375, 0.017303466796875, -0.03564453125, -0.0036449432373046875, 0.01142120361328125, -0.01192474365234375, 0.00896453857421875, 0.0163116455078125, 0.07403564453125, 0.0081024169921875, -0.011810302734375, 0.033782958984375, -0.0028553009033203125, -0.028411865234375, -0.02911376953125, 0.013153076171875, -0.0029850006103515625, 0.003177642822265625, 0.02032470703125, 0.0287322998046875, 0.00963592529296875, -0.02557373046875, 0.00746917724609375, 0.0252532958984375, -0.03668212890625, -0.0217437744140625, 0.07501220703125, 0.0003161430358886719, -0.020233154296875, 0.04840087890625, -0.0226898193359375, -0.031524658203125, 0.06756591796875, 0.03338623046875, 0.06256103515625, -0.007808685302734375, -0.00963592529296875, 0.062225341796875, 0.0170745849609375, -0.0113067626953125, 0.04217529296875, 0.01441192626953125, -0.037078857421875, -0.00726318359375, -0.057586669921875, -0.0195465087890625, 0.052215576171875, -0.07562255859375, 0.039306640625, -0.033111572265625, -0.0435791015625, 0.0197906494140625, 0.0108795166015625, -0.0853271484375, 0.050140380859375, 0.0032291412353515625, 0.0721435546875, -0.06585693359375, 0.05718994140625, 0.046356201171875, -0.04058837890625, -0.07470703125, -0.02197265625, -0.0071868896484375, -0.07733154296875, 0.05548095703125, 0.0067291259765625, 0.0276031494140625, 0.0159759521484375, -0.041290283203125, -0.0677490234375, 0.08251953125, 0.003101348876953125, -0.039642333984375, -0.0006337165832519531, 0.0190582275390625, 0.044525146484375, -0.013397216796875, 0.038726806640625, 0.0180206298828125, 0.0238494873046875, 0.01561737060546875, -0.06756591796875, 0.0009365081787109375, -0.03216552734375, 0.00702667236328125, 0.005550384521484375, -0.0526123046875, 0.07275390625, -0.01033782958984375, 0.01995849609375, 0.0166473388671875, 0.0382080078125, 0.0224609375, 0.019317626953125, 0.0265350341796875, 0.08184814453125, 0.0460205078125, -0.0223846435546875, 0.0740966796875, -0.0452880859375, 0.06304931640625, 0.0810546875, 0.013824462890625, 0.042144775390625, 0.0202789306640625, -0.0194549560546875, 0.0218048095703125, 0.06964111328125, -0.031707763671875, 0.0408935546875, 0.0106353759765625, 0.00656890869140625, -0.024810791015625, 0.025146484375, -0.056976318359375, 0.02349853515625, 0.01517486572265625, -0.05877685546875, -0.023468017578125, -0.021209716796875, 0.0066986083984375, -0.03143310546875, -0.035614013671875, 0.037445068359375, -0.02197265625, -0.019256591796875, 0.052978515625, 0.015380859375, 0.032867431640625, -0.047119140625, 0.000024259090423583984, -0.00885009765625, 0.025604248046875, -0.0283966064453125, -0.048126220703125, 0.01142120361328125, -0.0031185150146484375, -0.0167236328125, 0.00960540771484375, 0.0290679931640625, -0.01325225830078125, -0.061065673828125, -0.00582122802734375, 0.024017333984375, 0.0123748779296875, 0.0008678436279296875, -0.06573486328125, -0.00830841064453125, -0.0014324188232421875, -0.03070068359375, 0.01580810546875, 0.0267486572265625, 0.005168914794921875, 0.04132080078125, 0.057403564453125, 0.00569915771484375, 0.0084686279296875, 0.0004968643188476562, 0.0728759765625, -0.0538330078125, -0.06134033203125, -0.055145263671875, 0.04351806640625, -0.02117919921875, -0.0645751953125, 0.054931640625, 0.08203125, 0.055938720703125, -0.01345062255859375, 0.04541015625, 0.0006933212280273438, 0.035247802734375, -0.03509521484375, 0.057647705078125, -0.048736572265625, -0.003116607666015625, -0.0202178955078125, -0.061981201171875, -0.008026123046875, 0.049102783203125, -0.033721923828125, 0.01262664794921875, 0.030670166015625, 0.058135986328125, -0.00868988037109375, 0.0033130645751953125, 0.0207061767578125, 0.00516510009765625, 0.01355743408203125, 0.0244293212890625, 0.032257080078125, -0.0643310546875, 0.040008544921875, -0.047515869140625, -0.0010967254638671875, -0.0190277099609375, -0.0489501953125, -0.0673828125, -0.02764892578125, -0.035919189453125, -0.034820556640625, -0.00211334228515625, 0.0692138671875, 0.056640625, -0.058135986328125, -0.01436614990234375, -0.0031337738037109375, -0.0198822021484375, -0.0172271728515625, -0.0186309814453125, 0.045654296875, -0.01042938232421875, -0.05889892578125, -0.00958251953125, -0.0202789306640625, 0.0233154296875, -0.0097198486328125, -0.01526641845703125, -0.00453948974609375, -0.013153076171875, 0.01702880859375, -0.0002732276916503906, -0.03631591796875, -0.017578125, 0.0009164810180664062, -0.01334381103515625, 0.01678466796875, 0.01476287841796875, -0.036041259765625, 0.03070068359375, 0.0204010009765625, 0.020599365234375, 0.054840087890625, -0.0021610260009765625, 0.00891876220703125, -0.042510986328125, 0.01480865478515625, 0.0112152099609375, 0.02880859375, 0.0014324188232421875, -0.0225372314453125, 0.036163330078125, 0.036773681640625, -0.037750244140625, -0.063232421875, -0.024688720703125, -0.07781982421875, 0.0143280029296875, 0.07568359375, 0.0035457611083984375, -0.0230255126953125, 0.0294952392578125, -0.01338958740234375, 0.01485443115234375, -0.02081298828125, 0.048431396484375, 0.061981201171875, -0.009796142578125, 0.00513458251953125, -0.05059814453125, 0.04046630859375, 0.016510009765625, -0.0472412109375, -0.0296783447265625, 0.022125244140625, 0.04559326171875, 0.0159912109375, 0.021270751953125, -0.012237548828125, 0.019683837890625, 0.0109710693359375, 0.0154876708984375, -0.0296478271484375, -0.0161590576171875, -0.0206451416015625, 0.0214996337890625, -0.0008440017700195312, -0.041778564453125 ] ]
syed789/t5-base-medium-title-generation
2023-10-27T19:42:11.000Z
[ "transformers", "pytorch", "tf", "t5", "text2text-generation", "generated_from_keras_callback", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
text2text-generation
syed789
null
null
syed789/t5-base-medium-title-generation
0
2
transformers
2023-10-27T02:12:11
--- tags: - generated_from_keras_callback model-index: - name: t5-base-medium-title-generation 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-base-medium-title-generation 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.34.1 - TensorFlow 2.14.0 - Datasets 2.14.6 - Tokenizers 0.14.1
898
[ [ -0.036712646484375, -0.0318603515625, 0.0307769775390625, -0.0016689300537109375, -0.0426025390625, -0.02716064453125, -0.0007238388061523438, -0.0194549560546875, -0.00341033935546875, 0.03582763671875, -0.050567626953125, -0.04571533203125, -0.06549072265625, -0.01519775390625, -0.0263824462890625, 0.07830810546875, 0.0180206298828125, 0.0274200439453125, -0.0151824951171875, -0.00879669189453125, -0.031524658203125, -0.038818359375, -0.0753173828125, -0.051483154296875, 0.032562255859375, 0.0212554931640625, 0.04766845703125, 0.0867919921875, 0.0496826171875, 0.0263214111328125, -0.0142059326171875, -0.013946533203125, -0.045074462890625, -0.03472900390625, -0.005157470703125, -0.035552978515625, -0.04742431640625, 0.0006561279296875, 0.05938720703125, 0.038360595703125, -0.0204925537109375, 0.04522705078125, -0.01071929931640625, 0.0220794677734375, -0.047119140625, 0.017059326171875, -0.044647216796875, 0.048126220703125, -0.01413726806640625, -0.01678466796875, -0.0238494873046875, -0.01319122314453125, 0.00222015380859375, -0.04425048828125, 0.049407958984375, -0.0080413818359375, 0.093505859375, 0.025054931640625, -0.00798797607421875, -0.0022602081298828125, -0.068359375, 0.043914794921875, -0.0501708984375, 0.0195770263671875, 0.0267333984375, 0.049072265625, 0.01074981689453125, -0.083984375, -0.031280517578125, -0.0047149658203125, 0.017486572265625, 0.00815582275390625, -0.0235595703125, -0.005645751953125, 0.051666259765625, 0.033843994140625, -0.01016998291015625, 0.02337646484375, -0.06207275390625, -0.0168304443359375, 0.05255126953125, 0.039947509765625, -0.0198974609375, -0.01727294921875, -0.0260162353515625, -0.029052734375, -0.02545166015625, -0.00013780593872070312, 0.05511474609375, 0.014251708984375, -0.021728515625, 0.0643310546875, -0.013519287109375, 0.04034423828125, 0.01219940185546875, 0.00167083740234375, 0.03790283203125, 0.0098419189453125, -0.040985107421875, 0.001605987548828125, 0.061920166015625, 0.047119140625, 0.0085906982421875, -0.005008697509765625, -0.03265380859375, -0.00949859619140625, 0.036956787109375, -0.05682373046875, -0.016082763671875, 0.0087738037109375, -0.06585693359375, -0.08233642578125, -0.0006093978881835938, -0.056915283203125, -0.00756072998046875, -0.0277099609375, 0.04461669921875, -0.0035305023193359375, -0.018768310546875, -0.0006957054138183594, -0.021759033203125, 0.0227813720703125, -0.00048470497131347656, -0.044158935546875, 0.0183258056640625, 0.03466796875, 0.01806640625, 0.01232147216796875, -0.01415252685546875, -0.00365447998046875, 0.004169464111328125, -0.0283203125, 0.03570556640625, -0.018524169921875, -0.04351806640625, -0.01837158203125, 0.0179901123046875, 0.00933837890625, -0.03533935546875, 0.0755615234375, -0.0260467529296875, 0.0261688232421875, -0.0240631103515625, -0.050506591796875, -0.023040771484375, 0.0133819580078125, -0.057281494140625, 0.0732421875, -0.00749969482421875, -0.052947998046875, 0.046051025390625, -0.06610107421875, -0.0114898681640625, 0.0147857666015625, 0.0005993843078613281, -0.060791015625, 0.0256805419921875, -0.00844573974609375, 0.0423583984375, -0.0276641845703125, 0.0113525390625, -0.0240631103515625, -0.0298309326171875, -0.0171051025390625, -0.03955078125, 0.042724609375, 0.0286407470703125, -0.033660888671875, 0.0004069805145263672, -0.09063720703125, 0.0225830078125, 0.03741455078125, -0.032623291015625, 0.0189208984375, -0.018585205078125, 0.032318115234375, 0.009979248046875, 0.029754638671875, -0.057373046875, 0.002445220947265625, -0.010040283203125, 0.01739501953125, 0.05511474609375, 0.01248931884765625, -0.006900787353515625, -0.0189971923828125, 0.016998291015625, 0.028900146484375, 0.01020050048828125, 0.0165252685546875, -0.03179931640625, -0.0736083984375, 0.0088348388671875, 0.041900634765625, 0.01146697998046875, -0.009185791015625, 0.051055908203125, -0.004528045654296875, -0.07171630859375, -0.02520751953125, 0.004619598388671875, 0.030181884765625, 0.05023193359375, 0.0150909423828125, -0.01107025146484375, -0.0411376953125, -0.09149169921875, 0.0172271728515625, 0.00403594970703125, 0.01403045654296875, 0.0232696533203125, 0.041015625, -0.0167388916015625, 0.043060302734375, -0.05194091796875, 0.007904052734375, -0.01275634765625, 0.01094818115234375, 0.021484375, 0.06390380859375, 0.033294677734375, -0.040191650390625, 0.0111541748046875, -0.015533447265625, -0.05987548828125, 0.022216796875, -0.0036716461181640625, -0.0249481201171875, -0.0129852294921875, 0.032470703125, -0.0440673828125, 0.039947509765625, 0.00982666015625, -0.0097808837890625, 0.035369873046875, -0.043121337890625, -0.0240631103515625, -0.097412109375, 0.0355224609375, 0.01593017578125, 0.006504058837890625, -0.02410888671875, 0.007598876953125, 0.0011768341064453125, -0.032806396484375, -0.026824951171875, 0.033477783203125, -0.0020313262939453125, -0.0014591217041015625, -0.0212554931640625, -0.037353515625, -0.00264739990234375, 0.044708251953125, 0.0269317626953125, 0.0161590576171875, 0.031463623046875, -0.0574951171875, 0.039581298828125, 0.02764892578125, -0.0231475830078125, 0.0384521484375, -0.07379150390625, 0.0217742919921875, -0.0272979736328125, -0.0223541259765625, -0.052764892578125, -0.0282745361328125, 0.03790283203125, -0.024017333984375, 0.018890380859375, -0.0006356239318847656, -0.0312347412109375, -0.04644775390625, 0.01519775390625, 0.0243988037109375, 0.04791259765625, -0.053375244140625, 0.03790283203125, 0.00902557373046875, 0.04345703125, -0.042388916015625, -0.052215576171875, -0.019012451171875, -0.017578125, -0.0151214599609375, 0.00911712646484375, -0.007251739501953125, 0.0011320114135742188, 0.0078277587890625, 0.015655517578125, -0.01983642578125, -0.0053253173828125, 0.0279083251953125, 0.016387939453125, -0.020355224609375, 0.003696441650390625, 0.00577545166015625, -0.0161285400390625, 0.0226593017578125, 0.01091766357421875, 0.03448486328125, -0.006221771240234375, -0.02838134765625, -0.046356201171875, -0.01274871826171875, 0.04345703125, -0.008636474609375, 0.038970947265625, 0.05853271484375, -0.048126220703125, -0.0028629302978515625, -0.03497314453125, 0.003749847412109375, -0.031280517578125, 0.048095703125, -0.04150390625, 0.0019464492797851562, 0.048614501953125, 0.01056671142578125, 0.017059326171875, 0.0740966796875, 0.046875, -0.0009388923645019531, 0.08203125, 0.0244140625, 0.00669097900390625, 0.006511688232421875, -0.045166015625, -0.01087188720703125, -0.04669189453125, -0.052398681640625, -0.03753662109375, -0.0298309326171875, -0.0535888671875, 0.01219940185546875, 0.0149383544921875, 0.006153106689453125, -0.0303192138671875, 0.0382080078125, -0.04376220703125, 0.026580810546875, 0.055816650390625, 0.04315185546875, -0.0085906982421875, 0.0101318359375, -0.0275115966796875, 0.003231048583984375, -0.0634765625, -0.0229034423828125, 0.11004638671875, 0.051361083984375, 0.0268707275390625, -0.0305938720703125, 0.04071044921875, 0.0179595947265625, 0.005096435546875, -0.036285400390625, 0.04534912109375, 0.00756072998046875, -0.05987548828125, -0.01287078857421875, -0.02374267578125, -0.0712890625, 0.00225830078125, -0.034332275390625, -0.0151214599609375, 0.00799560546875, 0.002864837646484375, -0.0286407470703125, 0.037994384765625, -0.04010009765625, 0.0802001953125, -0.008056640625, -0.0164642333984375, -0.0178070068359375, -0.0286865234375, 0.0205841064453125, -0.0043487548828125, -0.02825927734375, 0.00388336181640625, 0.01334381103515625, 0.06640625, -0.049652099609375, 0.047088623046875, -0.039520263671875, 0.0211334228515625, 0.031890869140625, -0.0225372314453125, 0.0277099609375, -0.00826263427734375, -0.01042938232421875, 0.01367950439453125, -0.0125579833984375, -0.042449951171875, -0.019256591796875, 0.04351806640625, -0.08538818359375, -0.0148162841796875, -0.01415252685546875, -0.038787841796875, -0.0019092559814453125, 0.01593017578125, 0.056915283203125, 0.058380126953125, -0.018890380859375, 0.0218505859375, 0.03533935546875, 0.00040602684020996094, 0.052276611328125, 0.0185546875, 0.015655517578125, -0.041351318359375, 0.05511474609375, 0.00146484375, 0.0029659271240234375, -0.01116943359375, 0.016021728515625, -0.0311279296875, -0.0310211181640625, -0.040313720703125, 0.00948333740234375, -0.06585693359375, -0.0125732421875, -0.019012451171875, -0.04278564453125, -0.017120361328125, 0.01328277587890625, -0.033355712890625, -0.025115966796875, -0.02716064453125, -0.026031494140625, 0.00051116943359375, 0.068359375, -0.01224517822265625, 0.049652099609375, -0.058624267578125, 0.003635406494140625, 0.0171051025390625, 0.038848876953125, 0.0265045166015625, -0.04266357421875, -0.0311737060546875, 0.0030193328857421875, -0.03338623046875, -0.0264739990234375, 0.00933837890625, -0.00865936279296875, 0.061981201171875, 0.05419921875, -0.031768798828125, 0.04766845703125, -0.0192108154296875, 0.055755615234375, 0.0125885009765625, -0.038543701171875, 0.020233154296875, -0.0191192626953125, 0.04156494140625, 0.033477783203125, 0.038543701171875, 0.0059661865234375, -0.0006456375122070312, -0.1087646484375, -0.030853271484375, 0.045806884765625, 0.025787353515625, 0.0287933349609375, 0.005828857421875, 0.038909912109375, 0.00576019287109375, 0.030548095703125, -0.062255859375, -0.04345703125, -0.01393890380859375, -0.00717926025390625, -0.0035152435302734375, -0.0347900390625, -0.0018825531005859375, -0.0394287109375, 0.07080078125, 0.028717041015625, 0.0357666015625, -0.0035305023193359375, 0.0212249755859375, -0.0286865234375, -0.0180816650390625, 0.0482177734375, 0.051971435546875, -0.02532958984375, -0.0166473388671875, 0.015838623046875, -0.038604736328125, -0.00893402099609375, 0.005462646484375, -0.01409149169921875, 0.0102691650390625, 0.017578125, 0.0751953125, 0.0079193115234375, -0.00971221923828125, 0.0253753662109375, -0.0018100738525390625, -0.0294952392578125, -0.0313720703125, 0.01812744140625, -0.005733489990234375, 0.00347137451171875, 0.005100250244140625, 0.0482177734375, -0.0008664131164550781, -0.00525665283203125, 0.02178955078125, 0.0115814208984375, -0.0263671875, -0.0159454345703125, 0.067626953125, 0.00527191162109375, -0.0297393798828125, 0.0584716796875, -0.004558563232421875, -0.0131378173828125, 0.06597900390625, 0.03839111328125, 0.0694580078125, -0.0146331787109375, 0.003864288330078125, 0.065185546875, 0.0024127960205078125, -0.006542205810546875, 0.03216552734375, -0.0097808837890625, -0.0654296875, -0.007068634033203125, -0.048614501953125, -0.021636962890625, 0.052947998046875, -0.07757568359375, 0.055908203125, -0.0567626953125, -0.0259857177734375, 0.02716064453125, 0.0014524459838867188, -0.07672119140625, 0.062744140625, 0.0254974365234375, 0.0767822265625, -0.070556640625, 0.049285888671875, 0.04296875, -0.03753662109375, -0.0616455078125, -0.0189056396484375, -0.039093017578125, -0.07196044921875, 0.053253173828125, -0.0026416778564453125, 0.02593994140625, 0.02459716796875, -0.046630859375, -0.05078125, 0.0748291015625, 0.009490966796875, -0.0300445556640625, -0.0115814208984375, 0.039825439453125, 0.04473876953125, -0.0218353271484375, 0.0399169921875, 0.0157928466796875, 0.0293731689453125, 0.0205078125, -0.052337646484375, -0.00998687744140625, -0.0290374755859375, 0.01097869873046875, -0.0008959770202636719, -0.047271728515625, 0.048492431640625, 0.005962371826171875, 0.03411865234375, 0.0186767578125, 0.04022216796875, 0.0215301513671875, 0.0077972412109375, 0.0408935546875, 0.08465576171875, 0.044891357421875, 0.00506591796875, 0.07855224609375, -0.034423828125, 0.0355224609375, 0.0794677734375, 0.00788116455078125, 0.0399169921875, 0.0206298828125, -0.000048160552978515625, 0.0184326171875, 0.06866455078125, -0.060943603515625, 0.03778076171875, 0.013702392578125, 0.004169464111328125, -0.030548095703125, 0.00818634033203125, -0.03875732421875, 0.047271728515625, -0.0022907257080078125, -0.0791015625, -0.03814697265625, -0.015899658203125, -0.010345458984375, -0.0220489501953125, -0.04888916015625, 0.036163330078125, -0.025238037109375, -0.030853271484375, 0.033050537109375, 0.0277252197265625, 0.006748199462890625, -0.032501220703125, -0.01340484619140625, 0.01300048828125, 0.019287109375, -0.0146026611328125, -0.039520263671875, 0.0156402587890625, -0.007297515869140625, -0.0242462158203125, 0.0063323974609375, 0.04986572265625, -0.0053253173828125, -0.080322265625, -0.01256561279296875, 0.0269317626953125, 0.03192138671875, 0.011138916015625, -0.070068359375, -0.0084075927734375, -0.0055084228515625, -0.031494140625, -0.00838470458984375, 0.0215911865234375, 0.00937652587890625, 0.03912353515625, 0.03741455078125, -0.004215240478515625, 0.009246826171875, 0.003276824951171875, 0.05419921875, -0.03912353515625, -0.045867919921875, -0.05780029296875, 0.0469970703125, -0.0152130126953125, -0.064453125, 0.039520263671875, 0.08782958984375, 0.0679931640625, -0.0272369384765625, 0.050628662109375, -0.0045928955078125, 0.0297698974609375, -0.0303192138671875, 0.05438232421875, -0.0264739990234375, -0.01336669921875, -0.01136016845703125, -0.07855224609375, 0.015228271484375, 0.02838134765625, -0.01214599609375, 0.017364501953125, 0.0306549072265625, 0.045440673828125, -0.0261383056640625, 0.0171356201171875, 0.030181884765625, 0.0002474784851074219, -0.0121002197265625, 0.017181396484375, 0.02740478515625, -0.0706787109375, 0.036468505859375, -0.052886962890625, 0.0201416015625, 0.01068115234375, -0.06182861328125, -0.07244873046875, -0.03515625, -0.035430908203125, -0.03424072265625, -0.01235198974609375, 0.06610107421875, 0.06396484375, -0.050018310546875, -0.02740478515625, -0.019073486328125, -0.0266876220703125, 0.00591278076171875, -0.01316070556640625, 0.033599853515625, -0.007328033447265625, -0.05926513671875, 0.0013675689697265625, -0.04449462890625, 0.029205322265625, -0.0228118896484375, -0.006572723388671875, 0.0098876953125, -0.0201568603515625, -0.0014162063598632812, 0.0002193450927734375, -0.0252227783203125, -0.029937744140625, -0.022735595703125, -0.00439453125, 0.02703857421875, 0.0254974365234375, -0.039703369140625, 0.0302734375, 0.017364501953125, 0.034759521484375, 0.063720703125, 0.005084991455078125, 0.05108642578125, -0.046905517578125, 0.0209503173828125, -0.0002206563949584961, 0.029052734375, 0.003421783447265625, -0.04742431640625, 0.03680419921875, 0.034027099609375, -0.0232391357421875, -0.059814453125, -0.0166015625, -0.057220458984375, 0.017669677734375, 0.07171630859375, 0.00969696044921875, -0.036163330078125, 0.04327392578125, -0.0015192031860351562, 0.037109375, -0.003570556640625, 0.0352783203125, 0.055328369140625, 0.004802703857421875, 0.0016880035400390625, -0.0338134765625, 0.0232391357421875, 0.0233001708984375, -0.043243408203125, -0.0367431640625, 0.0152740478515625, 0.0472412109375, 0.004787445068359375, 0.0005707740783691406, -0.0238189697265625, 0.029754638671875, 0.019805908203125, 0.039093017578125, -0.0478515625, -0.0175323486328125, -0.03045654296875, 0.0288543701171875, -0.0005474090576171875, -0.04986572265625 ] ]
paragdakle/mistral-7b-cnndaily-small-lw-lora
2023-10-27T03:03:30.000Z
[ "peft", "region:us" ]
null
paragdakle
null
null
paragdakle/mistral-7b-cnndaily-small-lw-lora
0
2
peft
2023-10-27T02:59:01
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 ### Framework versions - PEFT 0.5.0 - PEFT 0.5.0
853
[ [ -0.04931640625, -0.054595947265625, 0.0252227783203125, 0.0362548828125, -0.04217529296875, 0.0048980712890625, 0.00658416748046875, -0.0233154296875, -0.01203155517578125, 0.026153564453125, -0.048980712890625, -0.01727294921875, -0.036376953125, 0.01255035400390625, 0.006191253662109375, 0.068115234375, -0.0137481689453125, 0.03271484375, -0.01131439208984375, -0.0038814544677734375, -0.03546142578125, -0.030426025390625, -0.0682373046875, -0.0217132568359375, -0.0182647705078125, 0.0247344970703125, 0.03240966796875, 0.0189208984375, 0.050506591796875, 0.01910400390625, -0.0038852691650390625, -0.01519012451171875, -0.01529693603515625, -0.0247955322265625, 0.00922393798828125, -0.0311737060546875, -0.056854248046875, -0.01052093505859375, 0.06854248046875, 0.0176544189453125, -0.0086212158203125, 0.0213623046875, -0.01071929931640625, 0.06903076171875, -0.05126953125, 0.013519287109375, -0.031890869140625, 0.03167724609375, -0.005832672119140625, -0.0177764892578125, -0.0177001953125, -0.0174102783203125, -0.0005016326904296875, -0.04034423828125, 0.0306549072265625, 0.0016345977783203125, 0.07269287109375, 0.00861358642578125, -0.048095703125, 0.00933837890625, -0.0357666015625, 0.051422119140625, -0.055023193359375, 0.03955078125, 0.034576416015625, 0.01169586181640625, 0.00988006591796875, -0.04132080078125, -0.031768798828125, 0.0102996826171875, 0.01003265380859375, -0.006473541259765625, -0.00946044921875, 0.035675048828125, 0.057891845703125, 0.033203125, -0.03326416015625, -0.00861358642578125, -0.040679931640625, -0.0361328125, 0.053009033203125, 0.0162200927734375, -0.0251922607421875, 0.016937255859375, -0.052581787109375, -0.0159912109375, -0.046173095703125, 0.0159454345703125, 0.0290985107421875, -0.0032939910888671875, -0.036956787109375, 0.0270843505859375, -0.032196044921875, 0.04052734375, 0.04913330078125, -0.00258636474609375, 0.06524658203125, -0.03985595703125, -0.039276123046875, 0.01947021484375, 0.063720703125, 0.0171661376953125, 0.0113525390625, 0.0087432861328125, -0.0328369140625, -0.0247650146484375, 0.02764892578125, -0.08709716796875, -0.0162811279296875, 0.0347900390625, -0.01483917236328125, -0.0269317626953125, 0.0123138427734375, -0.041259765625, 0.01544952392578125, -0.0002846717834472656, 0.054351806640625, -0.05670166015625, -0.028839111328125, 0.02215576171875, -0.0174102783203125, 0.041778564453125, 0.0081939697265625, -0.0771484375, 0.044189453125, 0.04730224609375, 0.050048828125, 0.00450897216796875, -0.01123809814453125, -0.023834228515625, -0.004535675048828125, -0.01313018798828125, 0.0253753662109375, 0.026153564453125, -0.029205322265625, -0.01424407958984375, 0.006366729736328125, -0.014007568359375, -0.0443115234375, 0.044158935546875, -0.04473876953125, 0.00022125244140625, -0.01042938232421875, -0.039642333984375, -0.02947998046875, 0.0174102783203125, -0.0390625, 0.08428955078125, 0.0214385986328125, -0.05426025390625, 0.0219268798828125, -0.037261962890625, -0.0198974609375, 0.01389312744140625, -0.027130126953125, -0.0579833984375, 0.028778076171875, -0.018280029296875, 0.030426025390625, 0.006000518798828125, 0.0210418701171875, -0.01434326171875, -0.055389404296875, 0.02825927734375, -0.035125732421875, 0.0745849609375, 0.00977325439453125, -0.058807373046875, 0.0005278587341308594, -0.06939697265625, 0.0242767333984375, -0.003475189208984375, -0.04351806640625, 0.025177001953125, -0.0298004150390625, 0.0056915283203125, 0.0016031265258789062, 0.036712646484375, -0.056427001953125, -0.01125335693359375, -0.03369140625, 0.0300445556640625, 0.062347412109375, 0.00616455078125, 0.0179443359375, -0.01702880859375, 0.0330810546875, 0.0174407958984375, 0.0240936279296875, 0.041717529296875, -0.036407470703125, -0.061065673828125, -0.0134429931640625, 0.01151275634765625, 0.04205322265625, -0.050750732421875, 0.0567626953125, -0.005401611328125, -0.023651123046875, -0.0156097412109375, -0.01224517822265625, 0.041900634765625, 0.0217742919921875, 0.024200439453125, -0.01580810546875, -0.036956787109375, -0.06964111328125, 0.0242462158203125, 0.00527191162109375, 0.008331298828125, 0.0009632110595703125, 0.06036376953125, 0.006603240966796875, 0.049896240234375, -0.035858154296875, 0.0017414093017578125, 0.01129913330078125, 0.00641632080078125, 0.0297393798828125, 0.0567626953125, 0.0501708984375, -0.063720703125, -0.023529052734375, -0.0379638671875, -0.0161895751953125, 0.0174407958984375, -0.021148681640625, -0.01861572265625, 0.03387451171875, 0.01076507568359375, -0.0274200439453125, 0.0452880859375, 0.0310516357421875, -0.052398681640625, 0.07781982421875, -0.01364898681640625, 0.0158233642578125, -0.0665283203125, 0.00583648681640625, -0.0004150867462158203, -0.0253753662109375, 0.0017375946044921875, 0.003963470458984375, 0.022430419921875, 0.005458831787109375, -0.0499267578125, 0.0252685546875, -0.0242462158203125, -0.0079193115234375, -0.0019369125366210938, -0.045196533203125, 0.0167388916015625, 0.044158935546875, 0.003795623779296875, 0.071533203125, 0.051788330078125, -0.056304931640625, 0.0269317626953125, 0.0002510547637939453, -0.0027523040771484375, 0.0379638671875, -0.04736328125, 0.005344390869140625, 0.032989501953125, -0.0019893646240234375, -0.061859130859375, 0.0070037841796875, 0.0240631103515625, -0.035247802734375, 0.030242919921875, -0.00543975830078125, -0.035919189453125, -0.00775909423828125, -0.047271728515625, 0.042755126953125, 0.03692626953125, -0.022216796875, 0.017486572265625, -0.0006589889526367188, 0.043212890625, -0.030487060546875, -0.0615234375, -0.03619384765625, -0.014495849609375, -0.041778564453125, 0.04620361328125, -0.035919189453125, 0.007320404052734375, -0.0147552490234375, -0.0372314453125, -0.0266571044921875, 0.0186004638671875, 0.02825927734375, 0.025421142578125, -0.022552490234375, -0.01276397705078125, 0.01305389404296875, -0.01180267333984375, 0.029052734375, -0.00994110107421875, 0.039306640625, -0.035675048828125, -0.01361083984375, -0.040313720703125, 0.010528564453125, 0.0146484375, 0.0131072998046875, 0.0660400390625, 0.07781982421875, -0.030609130859375, 0.012786865234375, -0.034454345703125, -0.0223388671875, -0.038909912109375, 0.0230255126953125, -0.045928955078125, -0.0775146484375, 0.024017333984375, 0.002536773681640625, 0.000301361083984375, 0.05206298828125, 0.0188140869140625, -0.0185699462890625, 0.05364990234375, 0.031524658203125, 0.0231475830078125, 0.05169677734375, -0.042510986328125, -0.0069122314453125, -0.0797119140625, -0.005817413330078125, -0.0369873046875, -0.0266571044921875, -0.06085205078125, -0.00689697265625, 0.035064697265625, 0.03460693359375, -0.06097412109375, 0.016204833984375, -0.036224365234375, 0.0250396728515625, 0.0460205078125, 0.0276947021484375, -0.00994873046875, 0.0233612060546875, -0.017822265625, 0.00665283203125, -0.039794921875, -0.004093170166015625, 0.09564208984375, 0.0199432373046875, 0.02679443359375, -0.00330352783203125, 0.06219482421875, 0.0003676414489746094, -0.0279388427734375, -0.04815673828125, 0.050445556640625, -0.0041351318359375, -0.060943603515625, -0.01168060302734375, -0.04742431640625, -0.04510498046875, -0.0006856918334960938, -0.018646240234375, -0.05291748046875, 0.0202484130859375, 0.02142333984375, -0.0408935546875, 0.0137939453125, -0.03851318359375, 0.0718994140625, -0.024200439453125, -0.0120849609375, -0.02392578125, -0.053131103515625, 0.0134429931640625, 0.002857208251953125, -0.00167083740234375, 0.004497528076171875, -0.00612640380859375, 0.07452392578125, -0.037078857421875, 0.0477294921875, -0.025421142578125, 0.0175933837890625, 0.02886962890625, -0.019287109375, 0.0286712646484375, 0.0135345458984375, -0.007183074951171875, 0.04736328125, 0.0237274169921875, -0.044952392578125, -0.00246429443359375, 0.033966064453125, -0.07977294921875, -0.00589752197265625, -0.052703857421875, -0.0185699462890625, -0.01329803466796875, 0.00847625732421875, 0.042388916015625, 0.0288848876953125, 0.0077972412109375, 0.03240966796875, 0.0799560546875, 0.00931549072265625, 0.041748046875, 0.0347900390625, 0.0006160736083984375, -0.07000732421875, 0.054168701171875, -0.002140045166015625, 0.04669189453125, 0.031097412109375, 0.01065826416015625, -0.0209503173828125, -0.0606689453125, -0.0305938720703125, 0.0146636962890625, -0.026824951171875, -0.036590576171875, -0.0191802978515625, -0.03643798828125, -0.047637939453125, 0.0037078857421875, -0.0413818359375, -0.048980712890625, -0.03271484375, -0.00917816162109375, 0.051422119140625, -0.01088714599609375, -0.0224456787109375, 0.058685302734375, -0.0784912109375, 0.01003265380859375, 0.00213623046875, 0.0254669189453125, -0.01293182373046875, -0.0528564453125, -0.057891845703125, 0.00588226318359375, -0.054351806640625, -0.06292724609375, 0.00386810302734375, 0.012054443359375, 0.0279693603515625, 0.035552978515625, -0.00849151611328125, 0.04376220703125, -0.01532745361328125, 0.048980712890625, 0.0137481689453125, -0.07525634765625, 0.03228759765625, -0.0088043212890625, 0.0223236083984375, 0.055389404296875, 0.03472900390625, -0.00551605224609375, 0.01287078857421875, -0.0726318359375, -0.06982421875, 0.05889892578125, 0.0184783935546875, -0.0098114013671875, 0.0156097412109375, 0.0352783203125, -0.005702972412109375, 0.046478271484375, -0.054595947265625, -0.017730712890625, -0.0118560791015625, 0.004550933837890625, 0.0255126953125, -0.0212554931640625, -0.007122039794921875, -0.022491455078125, 0.0869140625, -0.01151275634765625, 0.04388427734375, 0.01824951171875, 0.0009832382202148438, -0.0237884521484375, 0.01111602783203125, 0.03033447265625, 0.048431396484375, -0.057464599609375, 0.00203704833984375, 0.003673553466796875, -0.06982421875, 0.006320953369140625, 0.01427459716796875, -0.0247650146484375, -0.01119232177734375, 0.007099151611328125, 0.083740234375, 0.0147857666015625, -0.020751953125, 0.0196533203125, -0.003314971923828125, -0.04083251953125, -0.0416259765625, 0.0269775390625, -0.00237274169921875, 0.0235748291015625, 0.0098419189453125, 0.012908935546875, 0.0079498291015625, -0.009857177734375, 0.007350921630859375, 0.0305633544921875, -0.014190673828125, -0.0230255126953125, 0.0247802734375, 0.0208587646484375, -0.002979278564453125, 0.06353759765625, -0.047088623046875, -0.026458740234375, 0.061798095703125, 0.038787841796875, 0.07977294921875, -0.00171661376953125, 0.01023101806640625, 0.0364990234375, 0.01148223876953125, -0.0029697418212890625, 0.0667724609375, -0.0199432373046875, -0.06512451171875, -0.024078369140625, -0.07037353515625, -0.013824462890625, 0.01155853271484375, -0.0711669921875, 0.0199737548828125, -0.05255126953125, -0.0257568359375, -0.00021409988403320312, 0.043182373046875, -0.0582275390625, 0.031219482421875, 0.0164642333984375, 0.0809326171875, -0.058563232421875, 0.07171630859375, 0.06414794921875, -0.0263824462890625, -0.06768798828125, -0.0237579345703125, -0.007335662841796875, -0.051025390625, 0.041168212890625, 0.0003750324249267578, 0.01678466796875, 0.0293426513671875, -0.03240966796875, -0.054473876953125, 0.10528564453125, 0.0157318115234375, -0.049102783203125, 0.0123291015625, 0.019989013671875, 0.01024627685546875, -0.0098419189453125, 0.0233612060546875, 0.026947021484375, 0.021759033203125, 0.0217437744140625, -0.06561279296875, 0.01544952392578125, 0.0023651123046875, -0.01029205322265625, 0.04156494140625, -0.0599365234375, 0.08148193359375, -0.007843017578125, 0.01528167724609375, -0.004116058349609375, 0.040130615234375, 0.05059814453125, 0.021697998046875, 0.04534912109375, 0.06207275390625, 0.026336669921875, -0.0046539306640625, 0.033111572265625, -0.032745361328125, 0.04705810546875, 0.07275390625, 0.0000040531158447265625, 0.05841064453125, 0.055267333984375, -0.0430908203125, 0.019989013671875, 0.0672607421875, -0.01422119140625, 0.035003662109375, 0.004810333251953125, -0.032989501953125, -0.0206298828125, 0.026092529296875, -0.040283203125, 0.00449371337890625, 0.032867431640625, -0.0143890380859375, -0.007808685302734375, -0.01141357421875, 0.01079559326171875, -0.0633544921875, -0.0254669189453125, 0.047821044921875, 0.0004940032958984375, -0.0211944580078125, 0.05242919921875, 0.006664276123046875, 0.062103271484375, -0.06298828125, -0.01100921630859375, -0.00555419921875, 0.0185699462890625, -0.0240020751953125, -0.04461669921875, 0.024322509765625, -0.01337432861328125, -0.0281219482421875, -0.01232147216796875, 0.040557861328125, -0.002056121826171875, -0.04803466796875, -0.0038242340087890625, -0.0009140968322753906, 0.01873779296875, -0.036712646484375, -0.062103271484375, 0.006011962890625, 0.031982421875, -0.04376220703125, 0.042388916015625, 0.050201416015625, 0.015869140625, 0.0183258056640625, 0.0313720703125, 0.01111602783203125, 0.0204010009765625, -0.00957489013671875, 0.057769775390625, -0.05401611328125, -0.04083251953125, -0.0631103515625, 0.044097900390625, 0.004589080810546875, -0.043548583984375, 0.0328369140625, 0.059600830078125, 0.0806884765625, 0.0014677047729492188, 0.0309906005859375, -0.01447296142578125, -0.01161956787109375, -0.059478759765625, 0.031097412109375, -0.0205230712890625, 0.00737762451171875, 0.00775909423828125, -0.048370361328125, 0.0237274169921875, 0.05560302734375, -0.00872802734375, 0.01070404052734375, 0.0740966796875, 0.0360107421875, -0.00836944580078125, 0.016357421875, 0.01042938232421875, 0.01262664794921875, 0.00980377197265625, 0.048095703125, 0.00855255126953125, -0.06378173828125, 0.0310821533203125, -0.05572509765625, -0.0271148681640625, -0.01227569580078125, -0.057525634765625, -0.0347900390625, -0.0152130126953125, -0.056884765625, -0.033660888671875, -0.007808685302734375, 0.0577392578125, 0.0645751953125, -0.058563232421875, -0.032562255859375, -0.0250244140625, -0.01016998291015625, -0.023651123046875, -0.0226287841796875, 0.0296630859375, -0.012786865234375, -0.0283966064453125, 0.00605010986328125, 0.002239227294921875, 0.023651123046875, -0.017669677734375, -0.0169525146484375, -0.0297393798828125, -0.01003265380859375, 0.012725830078125, -0.008087158203125, -0.00800323486328125, -0.014007568359375, -0.018341064453125, 0.004848480224609375, 0.031280517578125, 0.03424072265625, -0.061981201171875, 0.00868988037109375, 0.042633056640625, 0.0206298828125, 0.048492431640625, -0.0193939208984375, 0.017730712890625, -0.07574462890625, 0.026336669921875, 0.02069091796875, 0.025848388671875, -0.00922393798828125, -0.04705810546875, 0.03546142578125, 0.04034423828125, -0.055206298828125, -0.048187255859375, -0.0009870529174804688, -0.08843994140625, 0.00110626220703125, 0.06494140625, -0.010833740234375, -0.0313720703125, 0.0234527587890625, -0.004680633544921875, 0.0224151611328125, -0.043670654296875, 0.035186767578125, 0.04534912109375, -0.03240966796875, 0.0028209686279296875, -0.052520751953125, 0.03472900390625, 0.0269775390625, -0.053955078125, -0.045684814453125, 0.033477783203125, 0.035675048828125, 0.01070404052734375, 0.055084228515625, -0.0086517333984375, 0.0250091552734375, 0.018341064453125, 0.0225067138671875, -0.019775390625, -0.0014171600341796875, -0.03570556640625, -0.001819610595703125, -0.006053924560546875, -0.0654296875 ] ]
NAGAsai95/test
2023-10-27T07:05:19.000Z
[ "diffusers", "text-to-image", "autotrain", "region:us" ]
text-to-image
NAGAsai95
null
null
NAGAsai95/test
0
2
diffusers
2023-10-27T04:21:09
--- base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: photo of bhuvan tags: - text-to-image - diffusers - autotrain inference: true --- # DreamBooth trained by AutoTrain Text encoder was not trained.
228
[ [ 0.00487518310546875, -0.0118255615234375, 0.015594482421875, 0.00896453857421875, -0.036346435546875, 0.06683349609375, 0.01297760009765625, -0.01351165771484375, 0.035552978515625, -0.00021409988403320312, -0.03582763671875, -0.002956390380859375, -0.05975341796875, 0.02020263671875, -0.031951904296875, 0.07733154296875, -0.02593994140625, 0.007488250732421875, -0.002033233642578125, -0.00093841552734375, -0.0279083251953125, -0.01435089111328125, -0.04473876953125, -0.0225982666015625, -0.0281829833984375, 0.0250244140625, 0.01788330078125, -0.0026912689208984375, 0.040557861328125, 0.008941650390625, 0.026153564453125, -0.0073089599609375, -0.05316162109375, -0.00289154052734375, 0.02093505859375, -0.029876708984375, -0.0231475830078125, -0.0042572021484375, 0.0408935546875, 0.0081329345703125, 0.01018524169921875, 0.02392578125, 0.005123138427734375, 0.054962158203125, -0.046875, 0.010772705078125, -0.053924560546875, 0.041534423828125, -0.0008482933044433594, -0.007404327392578125, -0.013916015625, -0.021453857421875, -0.03948974609375, -0.0292205810546875, 0.031341552734375, 0.026153564453125, 0.08111572265625, 0.036346435546875, -0.019927978515625, -0.0085601806640625, -0.042205810546875, 0.0145416259765625, -0.02520751953125, 0.0156402587890625, 0.046173095703125, 0.011993408203125, -0.0138702392578125, -0.0191192626953125, -0.062347412109375, 0.0263519287109375, 0.0285797119140625, 0.01239776611328125, -0.00592041015625, 0.026702880859375, 0.037994384765625, 0.03155517578125, -0.0309906005859375, -0.002368927001953125, -0.03533935546875, -0.0200042724609375, 0.039520263671875, 0.0172119140625, 0.002033233642578125, -0.0263519287109375, -0.040985107421875, -0.0120697021484375, -0.00971221923828125, 0.00396728515625, 0.014373779296875, -0.00447845458984375, -0.046112060546875, 0.050567626953125, 0.0089111328125, 0.043487548828125, 0.0265350341796875, 0.0005183219909667969, 0.058929443359375, -0.007061004638671875, -0.057159423828125, 0.034454345703125, 0.07659912109375, 0.032135009765625, 0.017822265625, -0.00777435302734375, -0.045623779296875, 0.005184173583984375, 0.0187225341796875, -0.061859130859375, -0.00855255126953125, 0.023040771484375, -0.033416748046875, -0.020843505859375, 0.018157958984375, -0.04473876953125, -0.025421142578125, 0.015594482421875, 0.059173583984375, -0.03704833984375, -0.0411376953125, 0.01178741455078125, -0.048828125, 0.0270233154296875, -0.0140533447265625, -0.080810546875, -0.0179443359375, 0.009796142578125, 0.053741455078125, 0.0150299072265625, -0.02093505859375, 0.0413818359375, 0.0006237030029296875, -0.044647216796875, 0.030364990234375, -0.0150146484375, -0.030517578125, 0.00251007080078125, 0.01116180419921875, -0.06390380859375, -0.0255126953125, 0.01001739501953125, -0.053924560546875, 0.006587982177734375, -0.008087158203125, -0.051177978515625, 0.01434326171875, -0.004520416259765625, -0.00722503662109375, 0.039031982421875, 0.0345458984375, -0.0615234375, 0.053253173828125, -0.031036376953125, -0.0343017578125, 0.0018310546875, -0.048797607421875, -0.023956298828125, -0.00812530517578125, -0.006969451904296875, 0.03436279296875, 0.0022335052490234375, 0.044219970703125, 0.0151824951171875, -0.050445556640625, 0.004009246826171875, -0.0176849365234375, 0.0694580078125, 0.006778717041015625, -0.04498291015625, -0.021453857421875, -0.0631103515625, 0.0025310516357421875, 0.044342041015625, -0.017333984375, 0.006343841552734375, -0.041015625, 0.0160369873046875, 0.009552001953125, 0.01189422607421875, -0.087890625, 0.0038318634033203125, -0.0243377685546875, 0.003597259521484375, 0.028411865234375, -0.01418304443359375, -0.0026836395263671875, -0.01149749755859375, 0.050140380859375, 0.006591796875, -0.0169677734375, 0.021392822265625, -0.0182037353515625, -0.08734130859375, 0.01076507568359375, -0.01092529296875, 0.052001953125, -0.061767578125, 0.023193359375, -0.023956298828125, -0.029510498046875, -0.057464599609375, -0.0273895263671875, 0.046142578125, 0.0030307769775390625, 0.019287109375, -0.0261688232421875, -0.04302978515625, -0.06549072265625, -0.00507354736328125, -0.0199737548828125, 0.0166473388671875, -0.040008544921875, 0.07073974609375, -0.0345458984375, 0.05584716796875, -0.0208892822265625, -0.036895751953125, -0.0236968994140625, 0.00235748291015625, 0.00921630859375, 0.055145263671875, 0.036102294921875, -0.0161895751953125, -0.0325927734375, -0.04669189453125, -0.05865478515625, 0.01641845703125, -0.01885986328125, 0.0287322998046875, 0.0221099853515625, 0.040374755859375, -0.05499267578125, 0.03662109375, 0.035888671875, -0.034576416015625, 0.045562744140625, -0.0126495361328125, 0.0281219482421875, -0.089111328125, -0.0199432373046875, -0.050323486328125, -0.006053924560546875, -0.0022678375244140625, -0.045745849609375, 0.034210205078125, -0.036529541015625, -0.013702392578125, 0.0259552001953125, -0.0404052734375, 0.00662994384765625, -0.05731201171875, -0.0277252197265625, -0.00783538818359375, 0.037261962890625, 0.0115509033203125, 0.05316162109375, 0.052825927734375, -0.0362548828125, 0.03472900390625, 0.059234619140625, -0.0026111602783203125, 0.05340576171875, -0.01336669921875, 0.03485107421875, -0.01340484619140625, 0.005146026611328125, -0.0430908203125, -0.041412353515625, 0.03656005859375, -0.04302978515625, 0.041168212890625, 0.0086517333984375, -0.031219482421875, -0.046722412109375, -0.0032138824462890625, 0.036651611328125, 0.062347412109375, -0.0295562744140625, -0.003162384033203125, 0.03759765625, 0.0458984375, -0.03289794921875, -0.06634521484375, -0.0069732666015625, 0.008758544921875, -0.0156707763671875, 0.017547607421875, 0.01343536376953125, 0.0016736984252929688, -0.0009613037109375, -0.032379150390625, -0.02313232421875, -0.0262451171875, 0.0233306884765625, -0.00015306472778320312, -0.00726318359375, 0.029052734375, 0.023956298828125, -0.0191192626953125, 0.0165863037109375, -0.0011053085327148438, 0.0301361083984375, -0.006977081298828125, -0.040435791015625, -0.049407958984375, -0.0004634857177734375, 0.0262451171875, 0.031494140625, 0.067626953125, 0.038482666015625, -0.0413818359375, -0.00916290283203125, -0.036651611328125, -0.0041046142578125, -0.028656005859375, 0.0205078125, -0.01544189453125, -0.057464599609375, -0.0014867782592773438, 0.01418304443359375, -0.00695037841796875, 0.05755615234375, 0.007720947265625, -0.0241851806640625, 0.029296875, 0.04815673828125, 0.011444091796875, 0.00791168212890625, -0.017425537109375, -0.003879547119140625, -0.05059814453125, -0.03900146484375, -0.00850677490234375, -0.026092529296875, -0.029998779296875, -0.0172576904296875, -0.0193634033203125, -0.039764404296875, -0.0555419921875, 0.050872802734375, -0.05157470703125, 0.0264129638671875, 0.01026153564453125, -0.0091705322265625, 0.0032787322998046875, -0.0022792816162109375, -0.026885986328125, 0.0039825439453125, -0.0633544921875, -0.0133209228515625, 0.07806396484375, 0.020538330078125, 0.06634521484375, -0.039337158203125, 0.047149658203125, 0.01108551025390625, -0.0266265869140625, -0.024017333984375, 0.043914794921875, -0.0025844573974609375, -0.046661376953125, -0.0089111328125, -0.021392822265625, -0.0921630859375, 0.01165008544921875, -0.0180816650390625, -0.03485107421875, 0.034088134765625, 0.01132965087890625, -0.02911376953125, 0.046905517578125, -0.044464111328125, 0.0635986328125, -0.0278472900390625, 0.027069091796875, 0.0014886856079101562, -0.039459228515625, 0.000024318695068359375, -0.031280517578125, 0.0288543701171875, -0.02362060546875, 0.0036678314208984375, 0.0859375, -0.0205078125, 0.0721435546875, -0.0219573974609375, 0.032867431640625, -0.0057525634765625, -0.0006375312805175781, 0.012481689453125, -0.0218048095703125, 0.0186614990234375, -0.007472991943359375, -0.0010766983032226562, -0.043487548828125, 0.00759124755859375, 0.01262664794921875, -0.0728759765625, -0.017059326171875, -0.059326171875, -0.01284027099609375, -0.03125, -0.005741119384765625, 0.083740234375, 0.0231781005859375, -0.0219573974609375, -0.00565338134765625, 0.04229736328125, 0.0017242431640625, 0.0604248046875, 0.00992584228515625, -0.0019159317016601562, -0.03759765625, 0.059326171875, -0.00798797607421875, 0.0223236083984375, 0.00798797607421875, -0.0261077880859375, 0.0057220458984375, -0.0248565673828125, -0.04058837890625, 0.014312744140625, -0.046600341796875, -0.027740478515625, -0.0523681640625, -0.05999755859375, -0.037994384765625, -0.0027618408203125, -0.044219970703125, -0.0146484375, -0.0556640625, -0.032989501953125, 0.039520263671875, 0.05499267578125, -0.007572174072265625, 0.04132080078125, -0.059844970703125, 0.03668212890625, -0.005306243896484375, 0.016204833984375, -0.01432037353515625, -0.07470703125, -0.0555419921875, -0.00809478759765625, -0.0221710205078125, -0.0723876953125, 0.036590576171875, 0.0189056396484375, 0.033233642578125, 0.00823974609375, 0.00977325439453125, 0.04193115234375, -0.0250396728515625, 0.035003662109375, 0.04705810546875, -0.040130615234375, 0.0615234375, -0.0029239654541015625, 0.06463623046875, 0.072021484375, 0.033538818359375, -0.025115966796875, -0.0307769775390625, -0.06439208984375, -0.050933837890625, 0.041015625, 0.0283660888671875, 0.042388916015625, -0.016326904296875, 0.0073089599609375, 0.02679443359375, 0.056365966796875, -0.07379150390625, -0.0248870849609375, -0.046142578125, -0.0249481201171875, 0.0142974853515625, -0.0185394287109375, 0.01666259765625, -0.0318603515625, 0.052001953125, 0.0106964111328125, 0.06207275390625, 0.03057861328125, -0.0252227783203125, -0.032379150390625, -0.00005936622619628906, 0.00013136863708496094, 0.04412841796875, -0.007793426513671875, -0.008331298828125, 0.0128631591796875, -0.08258056640625, 0.034210205078125, 0.028350830078125, -0.0247039794921875, 0.0172882080078125, 0.033477783203125, 0.10540771484375, 0.0205535888671875, -0.034210205078125, 0.0286865234375, 0.007720947265625, -0.0298919677734375, -0.055328369140625, 0.024871826171875, -0.01442718505859375, 0.0014047622680664062, 0.028839111328125, 0.038726806640625, -0.017425537109375, 0.00804901123046875, -0.003887176513671875, 0.03125, -0.08587646484375, -0.0122222900390625, 0.05352783203125, 0.042144775390625, -0.0227508544921875, 0.07025146484375, -0.0390625, -0.037109375, 0.0555419921875, 0.05340576171875, 0.0841064453125, -0.01036834716796875, 0.001918792724609375, 0.044586181640625, 0.045684814453125, 0.01153564453125, 0.051025390625, 0.01239776611328125, -0.07891845703125, 0.02239990234375, -0.03363037109375, -0.005092620849609375, 0.0056304931640625, -0.035003662109375, -0.0003077983856201172, -0.0279541015625, -0.0266876220703125, -0.040496826171875, -0.0180816650390625, -0.06256103515625, 0.04815673828125, -0.003772735595703125, 0.07232666015625, -0.06207275390625, 0.046783447265625, 0.0667724609375, -0.0268096923828125, -0.0517578125, 0.0266265869140625, -0.0086669921875, -0.07073974609375, 0.04833984375, 0.0328369140625, 0.00565338134765625, 0.03717041015625, -0.02679443359375, -0.049652099609375, 0.06353759765625, 0.021484375, -0.049346923828125, 0.01346588134765625, 0.0101165771484375, 0.021636962890625, -0.024627685546875, 0.0195465087890625, 0.019805908203125, 0.00930023193359375, -0.006412506103515625, -0.0975341796875, -0.0023555755615234375, -0.0175018310546875, -0.0146636962890625, 0.0191497802734375, -0.05340576171875, 0.02191162109375, -0.036285400390625, -0.0167999267578125, -0.01520538330078125, 0.04705810546875, 0.0029201507568359375, 0.014007568359375, 0.0254974365234375, 0.060821533203125, 0.05340576171875, -0.00016582012176513672, 0.059173583984375, -0.00807952880859375, 0.03369140625, 0.04229736328125, -0.0021762847900390625, 0.044647216796875, 0.0248565673828125, -0.01806640625, 0.044525146484375, 0.08319091796875, -0.0228729248046875, 0.043731689453125, -0.00327301025390625, -0.01092529296875, -0.0172271728515625, 0.032257080078125, -0.05230712890625, 0.03680419921875, 0.023529052734375, -0.052642822265625, 0.020263671875, 0.04400634765625, 0.0053863525390625, -0.01959228515625, -0.0160369873046875, 0.0545654296875, 0.028106689453125, -0.0192108154296875, 0.05609130859375, -0.015899658203125, 0.078369140625, -0.039398193359375, 0.0288848876953125, -0.00617218017578125, 0.002651214599609375, -0.011474609375, -0.04852294921875, 0.02001953125, -0.00009000301361083984, 0.0191192626953125, -0.02215576171875, 0.064208984375, -0.0007023811340332031, -0.040496826171875, 0.0190277099609375, 0.033477783203125, 0.0142364501953125, -0.01013946533203125, -0.052703857421875, -0.00209808349609375, 0.01538848876953125, -0.006195068359375, 0.02545166015625, 0.018768310546875, 0.047637939453125, 0.04339599609375, 0.015777587890625, -0.017913818359375, -0.0191802978515625, -0.01053619384765625, 0.056365966796875, -0.0736083984375, -0.04095458984375, -0.065673828125, 0.0161895751953125, 0.006313323974609375, -0.0445556640625, 0.033843994140625, 0.06610107421875, 0.050140380859375, -0.052947998046875, 0.051177978515625, -0.026458740234375, 0.01357269287109375, -0.036956787109375, 0.06658935546875, -0.033966064453125, -0.0052947998046875, 0.0013599395751953125, -0.053680419921875, 0.02935791015625, 0.034271240234375, 0.01340484619140625, 0.032318115234375, 0.09063720703125, 0.0223541259765625, -0.011474609375, 0.0274505615234375, 0.01629638671875, 0.0205535888671875, -0.0335693359375, 0.0308074951171875, 0.0408935546875, -0.040313720703125, 0.03717041015625, -0.005329132080078125, -0.0285797119140625, 0.0032939910888671875, -0.04156494140625, -0.09100341796875, -0.044525146484375, -0.0255584716796875, -0.029296875, 0.035125732421875, 0.095703125, 0.04937744140625, -0.05889892578125, -0.025146484375, -0.01763916015625, -0.0170135498046875, -0.0012683868408203125, -0.0169219970703125, 0.039337158203125, -0.0172576904296875, -0.0183258056640625, 0.03363037109375, -0.001049041748046875, 0.04522705078125, -0.01776123046875, 0.01165771484375, 0.005718231201171875, -0.0232086181640625, 0.01152801513671875, 0.026031494140625, -0.0167236328125, -0.01079559326171875, -0.0007071495056152344, -0.02313232421875, 0.032470703125, 0.0057220458984375, -0.07177734375, 0.0194091796875, 0.01425933837890625, 0.03228759765625, 0.01898193359375, -0.025054931640625, 0.03485107421875, -0.04248046875, 0.021514892578125, 0.0224609375, 0.021453857421875, 0.0301055908203125, -0.03955078125, 0.01308441162109375, 0.06646728515625, -0.0418701171875, -0.0184783935546875, -0.0007290840148925781, -0.0579833984375, -0.00652313232421875, 0.09136962890625, 0.025115966796875, -0.01013946533203125, -0.0408935546875, -0.0176544189453125, 0.0079345703125, -0.0338134765625, 0.047332763671875, 0.0162353515625, -0.0264129638671875, 0.006893157958984375, -0.056640625, 0.05108642578125, 0.00016021728515625, -0.07025146484375, -0.028961181640625, 0.0036220550537109375, 0.011566162109375, -0.0009503364562988281, 0.08319091796875, 0.0233306884765625, 0.0341796875, 0.054901123046875, 0.03717041015625, -0.006824493408203125, 0.004741668701171875, -0.00766754150390625, -0.00441741943359375, -0.005558013916015625, -0.07037353515625 ] ]
spyobird/cs4248_albert-base-v2_bilstm_qa_1
2023-10-27T09:32:09.000Z
[ "transformers", "pytorch", "albert", "generated_from_trainer", "dataset:squad", "license:apache-2.0", "endpoints_compatible", "region:us" ]
null
spyobird
null
null
spyobird/cs4248_albert-base-v2_bilstm_qa_1
0
2
transformers
2023-10-27T08:05:53
--- license: apache-2.0 base_model: albert-base-v2 tags: - generated_from_trainer datasets: - squad model-index: - name: cs4248_albert-base-v2_bilstm_qa_1 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. --> # cs4248_albert-base-v2_bilstm_qa This model is a fine-tuned version of [albert-base-v2](https://huggingface.co/albert-base-v2) 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: 1e-05 - train_batch_size: 16 - eval_batch_size: 16 - seed: 4248 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 20 ### Training results ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,102
[ [ -0.032562255859375, -0.037384033203125, 0.0060882568359375, 0.0296173095703125, -0.0190582275390625, -0.007282257080078125, 0.0011396408081054688, -0.026641845703125, 0.0021800994873046875, 0.0287322998046875, -0.060272216796875, -0.0360107421875, -0.041229248046875, 0.0024433135986328125, -0.01043701171875, 0.0904541015625, -0.004146575927734375, 0.0290679931640625, -0.021942138671875, -0.006320953369140625, -0.0271759033203125, -0.048065185546875, -0.06396484375, -0.04718017578125, 0.0297393798828125, 0.01654052734375, 0.05401611328125, 0.06787109375, 0.05633544921875, 0.02166748046875, -0.0264739990234375, -0.0127410888671875, -0.05572509765625, -0.01444244384765625, -0.0124053955078125, -0.045867919921875, -0.07177734375, -0.01047515869140625, 0.0501708984375, 0.021270751953125, -0.0109710693359375, 0.0274810791015625, -0.009185791015625, 0.03546142578125, -0.040191650390625, 0.044219970703125, -0.042449951171875, 0.01438140869140625, 0.001087188720703125, -0.022216796875, -0.0207977294921875, 0.00530242919921875, 0.0144500732421875, -0.041656494140625, 0.04608154296875, -0.0016736984252929688, 0.0877685546875, 0.01396942138671875, -0.0057830810546875, 0.005584716796875, -0.059173583984375, 0.04541015625, -0.043975830078125, 0.0217742919921875, 0.040863037109375, 0.034149169921875, 0.00725555419921875, -0.038818359375, -0.0127410888671875, -0.01197052001953125, 0.0073394775390625, 0.01593017578125, -0.015960693359375, -0.0020656585693359375, 0.04815673828125, 0.00848388671875, -0.043426513671875, 0.0123443603515625, -0.053497314453125, -0.0186767578125, 0.061126708984375, 0.03399658203125, -0.01448822021484375, -0.002628326416015625, -0.040496826171875, -0.0137481689453125, -0.04949951171875, 0.01503753662109375, 0.044219970703125, 0.014404296875, -0.033721923828125, 0.05352783203125, -0.037628173828125, 0.033294677734375, 0.0096435546875, 0.01401519775390625, 0.04608154296875, -0.0030422210693359375, -0.0179443359375, -0.00255584716796875, 0.06341552734375, 0.047271728515625, 0.0274658203125, -0.01129150390625, -0.029815673828125, -0.0111236572265625, 0.0189056396484375, -0.07666015625, -0.038055419921875, 0.005298614501953125, -0.032989501953125, -0.03759765625, 0.00909423828125, -0.0438232421875, 0.021270751953125, -0.02203369140625, 0.0157623291015625, -0.03668212890625, -0.014251708984375, -0.0085601806640625, -0.01013946533203125, 0.0173797607421875, 0.01389312744140625, -0.063720703125, 0.01012420654296875, 0.018585205078125, 0.030029296875, 0.01015472412109375, -0.02899169921875, -0.01308441162109375, 0.022918701171875, -0.0248870849609375, 0.05157470703125, -0.0032749176025390625, -0.035003662109375, 0.00799560546875, 0.01513671875, 0.009033203125, -0.04638671875, 0.03936767578125, -0.0408935546875, 0.00502777099609375, -0.025909423828125, -0.039764404296875, -0.0033283233642578125, 0.0281982421875, -0.04705810546875, 0.07708740234375, 0.036468505859375, -0.0273284912109375, 0.042816162109375, -0.044586181640625, -0.01323699951171875, 0.0238189697265625, 0.00501251220703125, -0.060546875, -0.007312774658203125, -0.0007863044738769531, 0.03192138671875, -0.0036144256591796875, 0.0126190185546875, -0.04241943359375, -0.030670166015625, -0.00426483154296875, -0.0248260498046875, 0.053070068359375, 0.0037384033203125, -0.01202392578125, 0.004680633544921875, -0.083251953125, 0.02734375, 0.018157958984375, -0.04315185546875, 0.014251708984375, -0.010467529296875, 0.0262451171875, 0.017974853515625, 0.032958984375, -0.0304412841796875, 0.0149383544921875, -0.02642822265625, 0.0157012939453125, 0.03546142578125, 0.00021696090698242188, 0.0162200927734375, -0.02984619140625, 0.01477813720703125, 0.01763916015625, 0.0235595703125, 0.02069091796875, -0.040435791015625, -0.0556640625, -0.03289794921875, 0.01078033447265625, 0.03656005859375, -0.0189666748046875, 0.06854248046875, 0.0017099380493164062, -0.06005859375, -0.01537322998046875, 0.0179443359375, 0.039581298828125, 0.025115966796875, 0.05096435546875, -0.015869140625, -0.049468994140625, -0.08978271484375, 0.0032062530517578125, -0.033294677734375, 0.0140838623046875, -0.0026760101318359375, 0.05902099609375, -0.0248565673828125, 0.0682373046875, -0.023101806640625, 0.0017108917236328125, -0.026763916015625, 0.00431060791015625, 0.00736236572265625, 0.07342529296875, 0.060394287109375, -0.0275115966796875, -0.01369476318359375, -0.0306396484375, -0.06671142578125, 0.005359649658203125, -0.00930023193359375, -0.0301971435546875, -0.00951385498046875, 0.0220947265625, -0.048828125, 0.05511474609375, 0.004665374755859375, -0.0226287841796875, 0.039825439453125, -0.0284881591796875, -0.012664794921875, -0.0682373046875, 0.0015230178833007812, 0.023773193359375, -0.006893157958984375, -0.027008056640625, 0.0021266937255859375, 0.0123748779296875, 0.0017671585083007812, -0.0390625, 0.03436279296875, -0.0130767822265625, 0.00872802734375, -0.0197296142578125, -0.040008544921875, 0.00724029541015625, 0.052642822265625, 0.013336181640625, 0.036651611328125, 0.0426025390625, -0.045074462890625, 0.03558349609375, 0.05181884765625, -0.01105499267578125, 0.04241943359375, -0.07891845703125, 0.007904052734375, -0.01537322998046875, 0.003818511962890625, -0.05767822265625, -0.0162353515625, 0.04254150390625, -0.023223876953125, 0.030029296875, -0.01526641845703125, -0.03668212890625, -0.024139404296875, 0.0028247833251953125, 0.039764404296875, 0.0335693359375, -0.035064697265625, 0.0198974609375, -0.004058837890625, 0.0213470458984375, -0.0239410400390625, -0.047210693359375, -0.02777099609375, -0.0019283294677734375, -0.025115966796875, 0.019561767578125, -0.0197296142578125, -0.0027675628662109375, -0.0015611648559570312, -0.00257110595703125, -0.0274658203125, -0.01001739501953125, 0.0307464599609375, 0.0455322265625, -0.0173797607421875, -0.0146636962890625, 0.007190704345703125, -0.01363372802734375, 0.0264129638671875, 0.033660888671875, 0.038299560546875, -0.01453399658203125, -0.01053619384765625, -0.0675048828125, 0.0199737548828125, 0.038116455078125, -0.01439666748046875, 0.06976318359375, 0.05487060546875, -0.0287628173828125, 0.00049591064453125, -0.0247650146484375, -0.010833740234375, -0.0304718017578125, 0.06402587890625, -0.037933349609375, -0.0165557861328125, 0.04217529296875, 0.01953125, 0.007808685302734375, 0.06976318359375, 0.05657958984375, -0.00783538818359375, 0.10302734375, 0.0175628662109375, 0.0005292892456054688, 0.033416748046875, -0.06640625, -0.00792694091796875, -0.06781005859375, -0.05206298828125, -0.038787841796875, -0.013153076171875, -0.041046142578125, 0.00707244873046875, 0.0028667449951171875, 0.03460693359375, -0.060638427734375, 0.05023193359375, -0.0264434814453125, 0.0247802734375, 0.04736328125, 0.03350830078125, -0.01546478271484375, 0.0008540153503417969, 0.014129638671875, 0.0024852752685546875, -0.0626220703125, -0.032958984375, 0.08905029296875, 0.04010009765625, 0.04254150390625, -0.0006818771362304688, 0.045318603515625, 0.0004849433898925781, 0.021575927734375, -0.0401611328125, 0.043243408203125, 0.03448486328125, -0.08349609375, -0.0050048828125, -0.0288848876953125, -0.051116943359375, 0.001983642578125, -0.047821044921875, -0.043609619140625, 0.011444091796875, 0.0187225341796875, -0.0297393798828125, 0.006809234619140625, -0.05596923828125, 0.07354736328125, -0.01788330078125, -0.03759765625, -0.0099945068359375, -0.03765869140625, 0.00954437255859375, 0.01540374755859375, -0.0273590087890625, -0.0157928466796875, 0.004352569580078125, 0.062744140625, -0.04412841796875, 0.0419921875, -0.019866943359375, 0.0360107421875, 0.0297088623046875, -0.0098419189453125, 0.040191650390625, 0.0279083251953125, -0.01039886474609375, 0.0218048095703125, 0.012481689453125, -0.0596923828125, -0.0235748291015625, 0.041015625, -0.09820556640625, -0.006061553955078125, -0.0340576171875, -0.04754638671875, -0.0205841064453125, 0.008941650390625, 0.04876708984375, 0.050384521484375, -0.0191802978515625, 0.023193359375, 0.0300445556640625, 0.00870513916015625, 0.0318603515625, 0.026824951171875, 0.007694244384765625, -0.0288848876953125, 0.046844482421875, -0.005039215087890625, 0.021209716796875, 0.004596710205078125, -0.00489044189453125, -0.032470703125, -0.0501708984375, -0.03387451171875, 0.0258026123046875, -0.04071044921875, -0.025665283203125, -0.0228424072265625, -0.03558349609375, -0.026763916015625, 0.0006985664367675781, -0.040496826171875, -0.006633758544921875, -0.047332763671875, -0.0122528076171875, 0.0205230712890625, 0.0426025390625, -0.0025615692138671875, 0.06475830078125, -0.05194091796875, 0.0016145706176757812, 0.00827789306640625, 0.0299224853515625, -0.0123748779296875, -0.050811767578125, -0.04205322265625, 0.011260986328125, -0.031097412109375, -0.050018310546875, 0.03033447265625, -0.00445556640625, 0.050506591796875, 0.034759521484375, -0.0217437744140625, 0.059478759765625, -0.029693603515625, 0.04986572265625, 0.0297393798828125, -0.028839111328125, 0.0280914306640625, -0.0206451416015625, 0.0245513916015625, 0.05462646484375, 0.035369873046875, 0.02947998046875, -0.0153961181640625, -0.09002685546875, -0.059326171875, 0.0640869140625, 0.037261962890625, 0.0085296630859375, 0.004039764404296875, 0.03253173828125, -0.0165252685546875, 0.02581787109375, -0.042205810546875, -0.0421142578125, -0.0202789306640625, -0.00893402099609375, -0.007007598876953125, -0.0296630859375, -0.01129913330078125, -0.049102783203125, 0.09014892578125, 0.0148162841796875, 0.03607177734375, 0.004817962646484375, 0.004909515380859375, -0.03253173828125, -0.0184326171875, 0.042083740234375, 0.059356689453125, -0.06280517578125, -0.037139892578125, 0.015106201171875, -0.023956298828125, -0.00783538818359375, 0.01256561279296875, -0.0130462646484375, 0.0174713134765625, 0.03717041015625, 0.079833984375, 0.00910186767578125, -0.02154541015625, 0.0309906005859375, -0.0002646446228027344, -0.037933349609375, -0.0280914306640625, 0.0272064208984375, -0.014984130859375, 0.02899169921875, 0.006977081298828125, 0.0474853515625, -0.005069732666015625, -0.0289154052734375, 0.01248931884765625, 0.02496337890625, -0.037353515625, -0.027587890625, 0.058563232421875, 0.00556182861328125, -0.04400634765625, 0.046173095703125, -0.01432037353515625, -0.023956298828125, 0.0579833984375, 0.044525146484375, 0.053070068359375, -0.00720977783203125, -0.00040340423583984375, 0.0645751953125, 0.004756927490234375, -0.018218994140625, 0.029449462890625, 0.00830078125, -0.05084228515625, -0.00827789306640625, -0.03094482421875, -0.0214385986328125, 0.032806396484375, -0.08721923828125, 0.027923583984375, -0.045623779296875, -0.0230712890625, 0.01422882080078125, 0.0090179443359375, -0.0914306640625, 0.038848876953125, 0.0128936767578125, 0.08245849609375, -0.05975341796875, 0.058502197265625, 0.0460205078125, -0.043304443359375, -0.06951904296875, -0.022064208984375, -0.0216217041015625, -0.0780029296875, 0.054718017578125, -0.004909515380859375, 0.0273590087890625, 0.0109405517578125, -0.052703857421875, -0.0416259765625, 0.06756591796875, 0.01082611083984375, -0.0533447265625, -0.00875091552734375, 0.0183258056640625, 0.046875, -0.0240631103515625, 0.066650390625, 0.0238800048828125, 0.0109405517578125, 0.0165252685546875, -0.043609619140625, -0.0273895263671875, -0.021148681640625, 0.01641845703125, -0.005908966064453125, -0.055877685546875, 0.06341552734375, 0.00022649765014648438, 0.04400634765625, 0.032745361328125, 0.060302734375, 0.0284576416015625, 0.0089874267578125, 0.0274810791015625, 0.053070068359375, 0.0245819091796875, -0.0047454833984375, 0.0626220703125, -0.040985107421875, 0.061126708984375, 0.078125, -0.0113677978515625, 0.050048828125, 0.03204345703125, -0.0178680419921875, 0.031402587890625, 0.046875, -0.032928466796875, 0.04705810546875, 0.0170745849609375, -0.007511138916015625, -0.03387451171875, 0.028656005859375, -0.05194091796875, 0.031646728515625, 0.0008211135864257812, -0.0540771484375, -0.03057861328125, -0.033599853515625, -0.006214141845703125, -0.020751953125, -0.037872314453125, 0.043609619140625, -0.032379150390625, -0.0364990234375, 0.0474853515625, 0.0032291412353515625, 0.02191162109375, -0.05389404296875, -0.00931549072265625, -0.00226593017578125, 0.0254364013671875, -0.0150909423828125, -0.045013427734375, 0.01238250732421875, 0.00206756591796875, -0.033203125, -0.006092071533203125, 0.026824951171875, -0.029327392578125, -0.063720703125, 0.0032196044921875, 0.0439453125, 0.017242431640625, 0.00347137451171875, -0.084228515625, 0.0019931793212890625, -0.00887298583984375, -0.0318603515625, 0.0224761962890625, 0.0202178955078125, 0.0167999267578125, 0.036529541015625, 0.045623779296875, 0.0084381103515625, 0.0034008026123046875, -0.0035858154296875, 0.06005859375, -0.0303497314453125, -0.03253173828125, -0.06207275390625, 0.0413818359375, -0.01486968994140625, -0.07489013671875, 0.035430908203125, 0.088134765625, 0.0789794921875, -0.0216217041015625, 0.046966552734375, 0.005542755126953125, 0.036163330078125, -0.0212860107421875, 0.0440673828125, -0.023101806640625, 0.0008463859558105469, -0.01259613037109375, -0.07501220703125, 0.0008764266967773438, 0.06427001953125, -0.0153045654296875, 0.0038661956787109375, 0.0301361083984375, 0.07000732421875, -0.0022068023681640625, 0.00794219970703125, 0.00897216796875, -0.005352020263671875, 0.0211029052734375, 0.0335693359375, 0.04718017578125, -0.0692138671875, 0.0310211181640625, -0.0478515625, -0.00971221923828125, -0.01308441162109375, -0.034942626953125, -0.0941162109375, -0.0248565673828125, -0.04034423828125, -0.055938720703125, 0.01259613037109375, 0.08709716796875, 0.072509765625, -0.0635986328125, -0.0265655517578125, -0.00974273681640625, -0.0235595703125, -0.01328277587890625, -0.01491546630859375, 0.0183868408203125, -0.01514434814453125, -0.057830810546875, 0.003681182861328125, -0.0233306884765625, 0.0228118896484375, -0.00730133056640625, -0.0238037109375, -0.016998291015625, -0.0296783447265625, 0.021881103515625, 0.018707275390625, -0.022857666015625, -0.030181884765625, -0.01190185546875, -0.018829345703125, 0.0261688232421875, 0.0158233642578125, -0.046112060546875, 0.0157928466796875, 0.0218505859375, 0.0175628662109375, 0.04583740234375, 0.00299072265625, 0.03271484375, -0.044525146484375, 0.027496337890625, 0.026092529296875, 0.03759765625, 0.0039215087890625, -0.02276611328125, 0.0264129638671875, 0.04278564453125, -0.040924072265625, -0.06280517578125, -0.007099151611328125, -0.088134765625, 0.018035888671875, 0.09307861328125, 0.0063323974609375, -0.036651611328125, 0.0188140869140625, -0.0252838134765625, 0.04144287109375, -0.035430908203125, 0.033721923828125, 0.040069580078125, -0.007061004638671875, 0.00585174560546875, -0.038909912109375, 0.037506103515625, 0.0216522216796875, -0.048828125, -0.03021240234375, 0.02197265625, 0.03472900390625, -0.006175994873046875, 0.019622802734375, 0.004817962646484375, 0.0318603515625, 0.0012426376342773438, 0.0286407470703125, -0.03155517578125, -0.0250244140625, -0.003597259521484375, 0.004016876220703125, -0.002925872802734375, -0.03509521484375 ] ]
gavulsim/distilbert_finetuned_yahoo_answers_topics
2023-10-27T09:20:49.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:yahoo_answers_topics", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
text-classification
gavulsim
null
null
gavulsim/distilbert_finetuned_yahoo_answers_topics
0
2
transformers
2023-10-27T08:19:50
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - yahoo_answers_topics metrics: - accuracy model-index: - name: deberta_finetuned_yahoo_answers_topics results: - task: name: Text Classification type: text-classification dataset: name: yahoo_answers_topics type: yahoo_answers_topics config: yahoo_answers_topics split: test args: yahoo_answers_topics metrics: - name: Accuracy type: accuracy value: 0.71195 --- <!-- 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. --> # deberta_finetuned_yahoo_answers_topics This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the yahoo_answers_topics dataset. It achieves the following results on the evaluation set: - Loss: 0.9096 - Accuracy: 0.7119 ## 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 - training_steps: 30000 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:-----:|:---------------:|:--------:| | 1.1025 | 0.03 | 5000 | 1.0702 | 0.6717 | | 1.0132 | 0.06 | 10000 | 0.9976 | 0.6834 | | 0.8688 | 0.09 | 15000 | 0.9770 | 0.6961 | | 0.9964 | 0.11 | 20000 | 0.9356 | 0.7020 | | 0.9338 | 0.14 | 25000 | 0.9259 | 0.7090 | | 0.9059 | 0.17 | 30000 | 0.9096 | 0.7119 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
2,101
[ [ -0.037750244140625, -0.05487060546875, 0.012420654296875, 0.00907135009765625, -0.0230255126953125, -0.0233001708984375, -0.00482940673828125, -0.004901885986328125, 0.0097503662109375, 0.0188140869140625, -0.0552978515625, -0.048583984375, -0.056640625, -0.0127410888671875, -0.021942138671875, 0.08905029296875, 0.011749267578125, 0.02667236328125, -0.01158905029296875, 0.002735137939453125, -0.0389404296875, -0.045318603515625, -0.0504150390625, -0.04693603515625, 0.021209716796875, 0.02716064453125, 0.058624267578125, 0.06317138671875, 0.047271728515625, 0.0157318115234375, -0.036224365234375, -0.005725860595703125, -0.049163818359375, -0.035675048828125, 0.0014982223510742188, -0.0285491943359375, -0.050750732421875, 0.003284454345703125, 0.041656494140625, 0.03900146484375, -0.021392822265625, 0.041839599609375, 0.0117340087890625, 0.044586181640625, -0.0338134765625, 0.020416259765625, -0.043243408203125, 0.0153961181640625, -0.012115478515625, -0.02630615234375, -0.01690673828125, -0.000017404556274414062, 0.0063018798828125, -0.037811279296875, 0.037750244140625, -0.004970550537109375, 0.087646484375, 0.035614013671875, -0.0275115966796875, 0.0016345977783203125, -0.061676025390625, 0.04766845703125, -0.052825927734375, 0.01654052734375, 0.0299072265625, 0.0295867919921875, -0.0025043487548828125, -0.050811767578125, -0.039215087890625, 0.00008416175842285156, -0.008056640625, 0.01116180419921875, -0.0225677490234375, 0.0026912689208984375, 0.05938720703125, 0.043304443359375, -0.045623779296875, 0.01270294189453125, -0.044647216796875, -0.0099029541015625, 0.046417236328125, 0.037322998046875, -0.020538330078125, -0.01236724853515625, -0.0284881591796875, -0.0131378173828125, -0.0210418701171875, 0.018341064453125, 0.04052734375, 0.017578125, -0.0231475830078125, 0.035858154296875, -0.0296173095703125, 0.0606689453125, 0.02685546875, -0.0200653076171875, 0.0458984375, 0.002780914306640625, -0.032470703125, -0.00004029273986816406, 0.05218505859375, 0.048583984375, 0.00742340087890625, 0.0128173828125, -0.018524169921875, -0.00943756103515625, 0.0204620361328125, -0.07452392578125, -0.0299530029296875, 0.01525115966796875, -0.04443359375, -0.04638671875, 0.01806640625, -0.036376953125, 0.00795745849609375, -0.04132080078125, 0.034332275390625, -0.0240631103515625, -0.0167388916015625, 0.01500701904296875, -0.0027599334716796875, 0.017669677734375, 0.016937255859375, -0.06787109375, 0.030548095703125, 0.03668212890625, 0.044891357421875, 0.0084991455078125, -0.0211639404296875, -0.01500701904296875, -0.0105438232421875, -0.01727294921875, 0.03607177734375, -0.0023040771484375, -0.02911376953125, -0.01666259765625, 0.0181884765625, -0.006763458251953125, -0.0330810546875, 0.060943603515625, -0.0265655517578125, 0.01739501953125, -0.0212249755859375, -0.0430908203125, -0.0159759521484375, 0.0360107421875, -0.051483154296875, 0.09088134765625, 0.009796142578125, -0.070068359375, 0.042755126953125, -0.030914306640625, -0.0026111602783203125, -0.00975799560546875, -0.007541656494140625, -0.05810546875, -0.0019817352294921875, 0.0077056884765625, 0.038299560546875, -0.02215576171875, 0.0330810546875, -0.01837158203125, -0.04705810546875, 0.0003261566162109375, -0.049957275390625, 0.061981201171875, 0.014312744140625, -0.038299560546875, -0.00103759765625, -0.09637451171875, 0.01197052001953125, 0.021148681640625, -0.035675048828125, -0.00151824951171875, -0.0278472900390625, 0.022430419921875, 0.0213165283203125, 0.0255279541015625, -0.03717041015625, 0.016387939453125, -0.0275421142578125, 0.019775390625, 0.0447998046875, 0.006267547607421875, 0.0030670166015625, -0.034271240234375, 0.02032470703125, 0.0309295654296875, 0.0289306640625, 0.0162200927734375, -0.0308380126953125, -0.06610107421875, -0.012115478515625, 0.0216827392578125, 0.03106689453125, -0.0162811279296875, 0.0565185546875, -0.00823211669921875, -0.06024169921875, -0.0160064697265625, 0.0013265609741210938, 0.03033447265625, 0.0611572265625, 0.033721923828125, -0.0008568763732910156, -0.029754638671875, -0.08795166015625, 0.016143798828125, -0.0036525726318359375, 0.016143798828125, 0.0041046142578125, 0.049560546875, -0.01239013671875, 0.0640869140625, -0.051727294921875, -0.01163482666015625, -0.0030498504638671875, 0.0103302001953125, 0.049072265625, 0.055267333984375, 0.060028076171875, -0.044586181640625, -0.026275634765625, -0.01776123046875, -0.04791259765625, 0.0211181640625, -0.007350921630859375, -0.025421142578125, -0.0143280029296875, 0.016204833984375, -0.04083251953125, 0.055816650390625, 0.0259552001953125, -0.0272979736328125, 0.05242919921875, -0.03131103515625, 0.002773284912109375, -0.09185791015625, 0.0208282470703125, 0.012725830078125, -0.00920867919921875, -0.0274810791015625, -0.01288604736328125, 0.01000213623046875, -0.01177215576171875, -0.029205322265625, 0.036224365234375, -0.01207733154296875, 0.01461029052734375, -0.0175933837890625, -0.033447265625, 0.00720977783203125, 0.061248779296875, 0.01389312744140625, 0.0435791015625, 0.04962158203125, -0.0406494140625, 0.03277587890625, 0.037353515625, -0.0225982666015625, 0.0394287109375, -0.0694580078125, 0.0081329345703125, -0.00891876220703125, -0.004528045654296875, -0.059814453125, -0.0112152099609375, 0.023162841796875, -0.030181884765625, 0.0243682861328125, -0.020263671875, -0.016510009765625, -0.03729248046875, -0.0126495361328125, 0.0121307373046875, 0.035400390625, -0.03387451171875, 0.01325225830078125, -0.0037403106689453125, 0.0190887451171875, -0.05670166015625, -0.0579833984375, -0.0270538330078125, -0.01678466796875, -0.029693603515625, 0.0255584716796875, -0.006008148193359375, -0.0038661956787109375, -0.0012102127075195312, -0.00600433349609375, -0.025146484375, 0.0014495849609375, 0.032562255859375, 0.027313232421875, -0.01244354248046875, -0.00051116943359375, 0.005611419677734375, -0.02008056640625, 0.014739990234375, 0.00090789794921875, 0.044464111328125, -0.0124053955078125, -0.035675048828125, -0.062225341796875, -0.0009918212890625, 0.0430908203125, -0.01105499267578125, 0.0709228515625, 0.040374755859375, -0.046600341796875, 0.0026988983154296875, -0.0367431640625, -0.0138397216796875, -0.029998779296875, 0.045989990234375, -0.040283203125, -0.0201873779296875, 0.054046630859375, 0.006877899169921875, 0.01287078857421875, 0.077880859375, 0.039825439453125, -0.0011148452758789062, 0.0833740234375, 0.0213165283203125, -0.0079803466796875, 0.0156707763671875, -0.0670166015625, -0.01427459716796875, -0.047332763671875, -0.037628173828125, -0.042694091796875, -0.031829833984375, -0.045318603515625, -0.002716064453125, 0.00872039794921875, 0.0209197998046875, -0.054962158203125, 0.0243682861328125, -0.049560546875, 0.023895263671875, 0.057952880859375, 0.033050537109375, 0.009735107421875, 0.00576019287109375, -0.01242828369140625, -0.01093292236328125, -0.058990478515625, -0.037445068359375, 0.09478759765625, 0.038299560546875, 0.06195068359375, -0.0155487060546875, 0.0545654296875, 0.0103302001953125, 0.007167816162109375, -0.04351806640625, 0.018280029296875, 0.0005040168762207031, -0.069580078125, -0.015777587890625, -0.0298614501953125, -0.049072265625, 0.0084686279296875, -0.0281524658203125, -0.037689208984375, 0.023834228515625, 0.025787353515625, -0.038330078125, 0.031463623046875, -0.0274810791015625, 0.0853271484375, -0.0292510986328125, -0.0265350341796875, -0.00579071044921875, -0.0323486328125, 0.0083770751953125, 0.00339508056640625, -0.0195465087890625, -0.00396728515625, 0.025726318359375, 0.0625, -0.04583740234375, 0.04595947265625, -0.0282135009765625, 0.0249786376953125, 0.02642822265625, -0.0165863037109375, 0.04473876953125, 0.02520751953125, -0.01511383056640625, 0.0194091796875, 0.01082611083984375, -0.03741455078125, -0.037994384765625, 0.0545654296875, -0.08154296875, -0.0213775634765625, -0.049774169921875, -0.0303802490234375, -0.0037326812744140625, 0.014190673828125, 0.046966552734375, 0.05712890625, -0.01300811767578125, 0.0241241455078125, 0.051544189453125, 0.003086090087890625, 0.014862060546875, 0.0254669189453125, 0.00275421142578125, -0.03631591796875, 0.053375244140625, -0.0015020370483398438, 0.009033203125, 0.0091552734375, 0.00803375244140625, -0.033660888671875, -0.04449462890625, -0.0482177734375, 0.01409912109375, -0.05615234375, -0.0212249755859375, -0.03155517578125, -0.0386962890625, -0.020538330078125, 0.0034961700439453125, -0.036773681640625, -0.025299072265625, -0.0531005859375, -0.0237274169921875, 0.03265380859375, 0.036834716796875, 0.010955810546875, 0.041168212890625, -0.0443115234375, -0.00640869140625, 0.0129852294921875, 0.02398681640625, 0.0004382133483886719, -0.07037353515625, -0.0249786376953125, 0.01497650146484375, -0.041168212890625, -0.05035400390625, 0.033447265625, 0.00510406494140625, 0.05535888671875, 0.04443359375, -0.00865936279296875, 0.07733154296875, -0.020599365234375, 0.049560546875, 0.0260009765625, -0.04022216796875, 0.04205322265625, -0.0171661376953125, 0.0211029052734375, 0.0599365234375, 0.049285888671875, -0.013275146484375, -0.0019397735595703125, -0.0830078125, -0.048492431640625, 0.0631103515625, 0.0229949951171875, 0.00952911376953125, 0.004459381103515625, 0.040496826171875, -0.005840301513671875, 0.02154541015625, -0.06195068359375, -0.048797607421875, -0.02105712890625, -0.01438140869140625, -0.00147247314453125, -0.0269775390625, -0.0088653564453125, -0.050201416015625, 0.072021484375, 0.002613067626953125, 0.0168609619140625, 0.00777435302734375, 0.01064300537109375, -0.00469970703125, -0.0001341104507446289, 0.042510986328125, 0.0665283203125, -0.049407958984375, -0.005397796630859375, 0.02105712890625, -0.03668212890625, 0.0038356781005859375, 0.024810791015625, -0.01323699951171875, 0.01355743408203125, 0.024810791015625, 0.07598876953125, 0.005298614501953125, -0.01255035400390625, 0.035369873046875, -0.006580352783203125, -0.039031982421875, -0.038543701171875, 0.004344940185546875, -0.0047454833984375, 0.0182647705078125, 0.02490234375, 0.027679443359375, 0.0108795166015625, -0.016998291015625, 0.01543426513671875, 0.01494598388671875, -0.0438232421875, -0.01293182373046875, 0.06402587890625, 0.00640106201171875, -0.0129547119140625, 0.060638427734375, -0.01250457763671875, -0.021636962890625, 0.0650634765625, 0.0278472900390625, 0.05157470703125, -0.006816864013671875, -0.00379180908203125, 0.07275390625, 0.00798797607421875, -0.01483154296875, 0.032684326171875, 0.01611328125, -0.030792236328125, -0.0066070556640625, -0.06683349609375, -0.00940704345703125, 0.049285888671875, -0.0845947265625, 0.04022216796875, -0.034881591796875, -0.037994384765625, 0.01558685302734375, 0.01335906982421875, -0.072509765625, 0.048797607421875, 0.00701141357421875, 0.0841064453125, -0.07061767578125, 0.057281494140625, 0.047393798828125, -0.039306640625, -0.076171875, -0.021759033203125, -0.0166168212890625, -0.054901123046875, 0.058837890625, 0.006557464599609375, 0.0230712890625, 0.00716400146484375, -0.0271148681640625, -0.060028076171875, 0.08843994140625, 0.0215301513671875, -0.06842041015625, -0.0016889572143554688, 0.0278472900390625, 0.047271728515625, -0.006198883056640625, 0.047393798828125, 0.0219879150390625, 0.010711669921875, 0.0208892822265625, -0.073486328125, -0.0109100341796875, -0.02593994140625, 0.00902557373046875, 0.00684356689453125, -0.048980712890625, 0.0853271484375, 0.0068206787109375, 0.030426025390625, 0.002166748046875, 0.041900634765625, 0.018951416015625, 0.022674560546875, 0.034332275390625, 0.072998046875, 0.041961669921875, -0.016937255859375, 0.0609130859375, -0.045440673828125, 0.0655517578125, 0.0858154296875, 0.00762176513671875, 0.0394287109375, 0.02691650390625, -0.0220489501953125, 0.0226287841796875, 0.0692138671875, -0.0220794677734375, 0.037506103515625, 0.01702880859375, 0.002338409423828125, -0.0277862548828125, 0.0249786376953125, -0.0511474609375, 0.0308685302734375, 0.0009984970092773438, -0.051544189453125, -0.0240936279296875, -0.01263427734375, -0.0052032470703125, -0.0121002197265625, -0.0303497314453125, 0.0379638671875, -0.025665283203125, -0.0285797119140625, 0.06585693359375, 0.00882720947265625, 0.03375244140625, -0.041961669921875, -0.0168304443359375, -0.01050567626953125, 0.0313720703125, -0.0249176025390625, -0.046600341796875, 0.0225677490234375, 0.0025634765625, -0.0261077880859375, 0.0010290145874023438, 0.036468505859375, -0.0187530517578125, -0.07110595703125, 0.00001341104507446289, 0.027557373046875, 0.01192474365234375, -0.00942230224609375, -0.07763671875, -0.0095672607421875, -0.00015473365783691406, -0.04150390625, 0.0028705596923828125, 0.025299072265625, 0.0033721923828125, 0.036407470703125, 0.041717529296875, -0.00597381591796875, 0.0037631988525390625, 0.005970001220703125, 0.08599853515625, -0.040283203125, -0.040771484375, -0.05889892578125, 0.04437255859375, -0.0225982666015625, -0.06585693359375, 0.04705810546875, 0.081298828125, 0.06683349609375, -0.01535797119140625, 0.036956787109375, -0.00788116455078125, 0.0361328125, -0.03515625, 0.053009033203125, -0.04290771484375, -0.0033359527587890625, -0.019622802734375, -0.063720703125, 0.0028133392333984375, 0.05499267578125, -0.0279998779296875, 0.005092620849609375, 0.0279998779296875, 0.055572509765625, -0.013336181640625, -0.0005764961242675781, 0.019073486328125, -0.00878143310546875, 0.0053558349609375, 0.036895751953125, 0.040283203125, -0.0628662109375, 0.0364990234375, -0.0633544921875, -0.0179595947265625, -0.008453369140625, -0.047332763671875, -0.07525634765625, -0.033721923828125, -0.03851318359375, -0.02593994140625, -0.001445770263671875, 0.07080078125, 0.0638427734375, -0.0587158203125, -0.0162811279296875, -0.005420684814453125, -0.0340576171875, -0.0219879150390625, -0.016998291015625, 0.038299560546875, -0.0006570816040039062, -0.062255859375, -0.015411376953125, -0.0270538330078125, 0.0233612060546875, -0.0178680419921875, -0.01355743408203125, -0.0204925537109375, -0.02825927734375, 0.0122222900390625, -0.00487518310546875, -0.02935791015625, -0.0167388916015625, 0.00492095947265625, -0.01348876953125, 0.0166778564453125, 0.0181427001953125, -0.03399658203125, 0.029571533203125, 0.02264404296875, 0.02197265625, 0.061798095703125, 0.00835418701171875, 0.007904052734375, -0.052978515625, 0.035858154296875, 0.021514892578125, 0.0306549072265625, 0.00403594970703125, -0.039093017578125, 0.0302886962890625, 0.0297088623046875, -0.041961669921875, -0.0528564453125, -0.01971435546875, -0.0789794921875, 0.006954193115234375, 0.07598876953125, -0.003040313720703125, -0.028533935546875, 0.02197265625, -0.024261474609375, 0.0247802734375, -0.017486572265625, 0.04693603515625, 0.05767822265625, -0.0085906982421875, 0.00921630859375, -0.044036865234375, 0.034637451171875, 0.01461029052734375, -0.04449462890625, -0.01395416259765625, 0.032684326171875, 0.04241943359375, 0.01201629638671875, 0.0316162109375, -0.00580596923828125, 0.0235595703125, 0.01219940185546875, 0.014373779296875, -0.035614013671875, -0.021087646484375, -0.0236968994140625, -0.0034847259521484375, 0.014923095703125, -0.041778564453125 ] ]
MakAttack/653b71eb282fff95c3f30975
2023-10-27T08:54:17.000Z
[ "diffusers", "tensorboard", "stable-diffusion-xl", "stable-diffusion-xl-diffusers", "text-to-image", "lora", "license:openrail++", "region:us" ]
text-to-image
MakAttack
null
null
MakAttack/653b71eb282fff95c3f30975
0
2
diffusers
2023-10-27T08:21:08
--- license: openrail++ base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: a photo of sks dog tags: - stable-diffusion-xl - stable-diffusion-xl-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - MakAttack/653b71eb282fff95c3f30975 These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0. The weights were trained on a photo of sks dog using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. LoRA for the text encoder was enabled: False. Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
630
[ [ -0.015899658203125, -0.0181732177734375, 0.017333984375, 0.0242767333984375, -0.049591064453125, 0.007965087890625, 0.02392578125, -0.016082763671875, 0.06317138671875, 0.0296173095703125, -0.02923583984375, -0.0276336669921875, -0.044189453125, -0.0125885009765625, -0.002880096435546875, 0.08026123046875, -0.0184783935546875, 0.01702880859375, 0.0294647216796875, -0.03369140625, -0.035614013671875, -0.003818511962890625, -0.050140380859375, -0.049224853515625, 0.044891357421875, 0.0208740234375, 0.048004150390625, 0.013824462890625, 0.035980224609375, 0.019317626953125, 0.0003943443298339844, -0.047943115234375, -0.042388916015625, -0.01157379150390625, 0.00396728515625, -0.060333251953125, -0.054656982421875, -0.00704193115234375, 0.058502197265625, 0.02008056640625, -0.021026611328125, 0.018035888671875, -0.0117034912109375, 0.05865478515625, -0.062255859375, 0.0010480880737304688, -0.047088623046875, 0.02691650390625, -0.01187896728515625, 0.00934600830078125, -0.0166168212890625, -0.031494140625, -0.023162841796875, -0.043212890625, -0.01203155517578125, -0.0129241943359375, 0.079833984375, 0.0254669189453125, -0.02508544921875, -0.0200958251953125, -0.031890869140625, 0.035736083984375, -0.043548583984375, 0.0175933837890625, 0.02630615234375, 0.021514892578125, -0.01776123046875, -0.038177490234375, -0.027130126953125, 0.014923095703125, 0.020782470703125, 0.01419830322265625, -0.00701904296875, 0.0021800994873046875, 0.031280517578125, 0.023468017578125, -0.0157928466796875, 0.005542755126953125, -0.0457763671875, -0.00551605224609375, 0.039886474609375, 0.0032215118408203125, 0.0214691162109375, 0.0196075439453125, -0.0261077880859375, -0.01739501953125, -0.039520263671875, 0.004703521728515625, 0.01317596435546875, 0.0012159347534179688, -0.030120849609375, 0.0648193359375, 0.0035400390625, 0.05389404296875, 0.0280303955078125, -0.03228759765625, 0.07171630859375, -0.003017425537109375, -0.0283660888671875, 0.026519775390625, 0.031402587890625, 0.036529541015625, -0.004703521728515625, 0.0114593505859375, -0.026947021484375, 0.0142669677734375, 0.010284423828125, -0.06439208984375, -0.00264739990234375, 0.004123687744140625, -0.05767822265625, -0.042633056640625, 0.004497528076171875, -0.03411865234375, -0.03997802734375, 0.0204315185546875, 0.07025146484375, -0.049072265625, -0.0333251953125, 0.03662109375, -0.053253173828125, 0.036865234375, 0.02154541015625, -0.056243896484375, 0.028289794921875, -0.0093841552734375, 0.0556640625, 0.0023174285888671875, -0.0034008026123046875, -0.0179901123046875, 0.0227508544921875, -0.0220794677734375, 0.04766845703125, -0.0134735107421875, -0.0205841064453125, -0.0069122314453125, 0.0238494873046875, -0.02203369140625, -0.03192138671875, 0.04022216796875, -0.039398193359375, -0.007343292236328125, -0.0178070068359375, -0.0243988037109375, -0.0274658203125, 0.00970458984375, -0.054107666015625, 0.08099365234375, 0.036712646484375, -0.08233642578125, 0.040618896484375, -0.06353759765625, -0.01812744140625, -0.0018091201782226562, 0.00572967529296875, -0.011993408203125, 0.01837158203125, -0.0172271728515625, 0.0291748046875, 0.02191162109375, -0.042327880859375, -0.01137542724609375, -0.036468505859375, 0.00656890869140625, 0.01035308837890625, 0.06195068359375, 0.01474761962890625, -0.00971221923828125, 0.0051116943359375, -0.09228515625, 0.013397216796875, 0.03741455078125, -0.043121337890625, -0.038330078125, -0.0202484130859375, -0.00341796875, 0.0176544189453125, 0.0282440185546875, -0.05419921875, 0.01448822021484375, -0.020294189453125, 0.00882720947265625, 0.0445556640625, -0.0009250640869140625, 0.007904052734375, -0.03179931640625, 0.053985595703125, -0.002025604248046875, -0.004131317138671875, 0.022796630859375, -0.033721923828125, -0.05523681640625, -0.014190673828125, 0.0251922607421875, 0.036590576171875, -0.048736572265625, 0.036468505859375, -0.004669189453125, -0.06365966796875, -0.04052734375, 0.0024051666259765625, -0.00713348388671875, 0.014129638671875, -0.00910186767578125, -0.033843994140625, -0.045196533203125, -0.060089111328125, 0.0145721435546875, -0.0022335052490234375, 0.00508880615234375, -0.02520751953125, 0.06292724609375, -0.01207733154296875, 0.059295654296875, -0.0374755859375, -0.01421356201171875, -0.01387786865234375, 0.0003619194030761719, 0.04119873046875, 0.03509521484375, 0.07403564453125, -0.0311279296875, -0.04010009765625, -0.0084228515625, -0.056060791015625, -0.00733184814453125, 0.00811004638671875, -0.01104736328125, 0.0009627342224121094, 0.019317626953125, -0.0604248046875, 0.046661376953125, 0.05828857421875, -0.041229248046875, 0.041839599609375, -0.031585693359375, 0.01123809814453125, -0.0908203125, 0.0079345703125, 0.0005044937133789062, -0.042449951171875, -0.031463623046875, -0.00249481201171875, 0.0160064697265625, 0.0090179443359375, -0.043914794921875, 0.036102294921875, -0.025177001953125, -0.0184173583984375, -0.038421630859375, 0.0170135498046875, -0.004680633544921875, 0.0117340087890625, 0.0104522705078125, 0.04071044921875, 0.04547119140625, -0.035552978515625, 0.0267181396484375, 0.0272064208984375, -0.0290679931640625, 0.052276611328125, -0.0499267578125, 0.00836181640625, -0.00780487060546875, 0.042877197265625, -0.050018310546875, -0.013580322265625, 0.043212890625, -0.0220947265625, 0.000308990478515625, -0.003192901611328125, -0.032470703125, -0.03619384765625, -0.047515869140625, 0.0296478271484375, 0.06396484375, -0.0335693359375, 0.0270538330078125, 0.024566650390625, 0.00870513916015625, -0.056640625, -0.04986572265625, -0.019073486328125, -0.0245361328125, -0.029266357421875, 0.02850341796875, -0.021728515625, -0.0220947265625, -0.004703521728515625, -0.01152801513671875, -0.01091766357421875, -0.01434326171875, 0.037750244140625, 0.0041046142578125, -0.028106689453125, -0.00003820657730102539, 0.01168060302734375, -0.0030975341796875, -0.0024013519287109375, 0.01172637939453125, 0.060455322265625, -0.01203155517578125, -0.013153076171875, -0.043670654296875, -0.01123809814453125, 0.050384521484375, 0.043853759765625, 0.07421875, 0.06671142578125, -0.048553466796875, 0.01393890380859375, -0.028656005859375, 0.0000959634780883789, -0.037628173828125, 0.0249786376953125, -0.03057861328125, -0.0206451416015625, 0.05377197265625, 0.0014848709106445312, -0.014617919921875, 0.0517578125, 0.04345703125, -0.020904541015625, 0.07342529296875, 0.04827880859375, -0.006740570068359375, 0.0367431640625, -0.0167236328125, -0.0162506103515625, -0.0638427734375, -0.0153656005859375, -0.02508544921875, -0.045013427734375, 0.002346038818359375, -0.025054931640625, -0.0040283203125, 0.0309600830078125, -0.046173095703125, 0.0260467529296875, -0.02520751953125, 0.04248046875, 0.01500701904296875, 0.01183319091796875, 0.01129150390625, 0.004756927490234375, -0.00782012939453125, -0.00452423095703125, -0.042449951171875, -0.017913818359375, 0.06817626953125, 0.039825439453125, 0.1038818359375, -0.0193939208984375, 0.038421630859375, 0.025604248046875, 0.00995635986328125, -0.05145263671875, 0.048797607421875, 0.0004153251647949219, -0.039276123046875, -0.0079193115234375, 0.00307464599609375, -0.08026123046875, 0.0201873779296875, -0.032806396484375, -0.058258056640625, -0.0012559890747070312, 0.00466156005859375, 0.00180816650390625, 0.03717041015625, -0.038909912109375, 0.039886474609375, -0.0189056396484375, 0.01495361328125, -0.039886474609375, -0.034088134765625, 0.01172637939453125, -0.01470947265625, 0.00852203369140625, -0.005950927734375, -0.017425537109375, 0.07745361328125, -0.039306640625, 0.071533203125, -0.040679931640625, -0.0254669189453125, 0.00598907470703125, -0.014739990234375, 0.054107666015625, -0.020721435546875, -0.0155487060546875, -0.0040283203125, 0.0087432861328125, -0.0413818359375, -0.023223876953125, 0.023162841796875, -0.057373046875, -0.006069183349609375, -0.040374755859375, -0.0308685302734375, -0.0012235641479492188, 0.0157928466796875, 0.042388916015625, -0.006542205810546875, -0.02008056640625, 0.030792236328125, 0.05145263671875, -0.0070343017578125, 0.0278472900390625, 0.04876708984375, -0.041290283203125, -0.03546142578125, 0.0555419921875, 0.011932373046875, 0.02716064453125, 0.0043182373046875, 0.01035308837890625, 0.0010156631469726562, -0.03680419921875, -0.038604736328125, 0.0299072265625, -0.07080078125, -0.0160064697265625, -0.0225830078125, -0.04461669921875, -0.0044403076171875, -0.03253173828125, -0.037384033203125, -0.057098388671875, -0.0225067138671875, -0.016693115234375, 0.047760009765625, 0.08343505859375, -0.0081024169921875, 0.06378173828125, -0.032470703125, 0.0258636474609375, 0.01226806640625, 0.041015625, -0.01708984375, -0.042877197265625, -0.0311126708984375, -0.0031147003173828125, -0.017791748046875, -0.0780029296875, 0.013336181640625, 0.005847930908203125, 0.045989990234375, 0.03692626953125, -0.01039886474609375, 0.037689208984375, -0.01549530029296875, 0.061920166015625, 0.055694580078125, -0.05059814453125, 0.063720703125, -0.029876708984375, 0.02191162109375, 0.033233642578125, 0.01995849609375, -0.034027099609375, -0.003993988037109375, -0.037628173828125, -0.05029296875, 0.0445556640625, 0.02069091796875, 0.00959014892578125, 0.032318115234375, 0.03997802734375, 0.03460693359375, 0.00981903076171875, -0.09283447265625, -0.01995849609375, -0.02276611328125, -0.038787841796875, 0.0302734375, -0.007389068603515625, -0.01445770263671875, -0.0318603515625, 0.07098388671875, -0.023468017578125, 0.01263427734375, -0.00847625732421875, -0.02056884765625, -0.0219879150390625, 0.0029296875, 0.02581787109375, 0.033782958984375, -0.04248046875, -0.036956787109375, 0.032623291015625, -0.0684814453125, 0.0190277099609375, -0.015625, -0.0179290771484375, 0.0007061958312988281, -0.00936126708984375, 0.07098388671875, 0.00910186767578125, -0.0380859375, 0.03173828125, -0.01428985595703125, -0.02874755859375, -0.03729248046875, 0.0273284912109375, 0.005535125732421875, 0.018280029296875, 0.0261688232421875, 0.018035888671875, -0.016754150390625, -0.0205230712890625, -0.0229949951171875, 0.044281005859375, -0.042022705078125, -0.03277587890625, 0.032196044921875, 0.0134735107421875, -0.019317626953125, 0.0201873779296875, -0.004573822021484375, -0.0028781890869140625, 0.051116943359375, 0.08282470703125, 0.04931640625, -0.025299072265625, 0.02838134765625, 0.0286865234375, 0.0183258056640625, -0.025360107421875, 0.05645751953125, 0.024566650390625, -0.064453125, 0.0052337646484375, -0.04937744140625, -0.016876220703125, 0.0169219970703125, -0.0576171875, 0.051239013671875, -0.037750244140625, -0.026214599609375, -0.01605224609375, -0.01271820068359375, -0.033294677734375, 0.035125732421875, 0.007282257080078125, 0.0966796875, -0.07342529296875, 0.076416015625, 0.07470703125, -0.0236663818359375, -0.03466796875, -0.01255035400390625, -0.0135650634765625, -0.09429931640625, 0.041595458984375, 0.00205230712890625, -0.01479339599609375, -0.013671875, -0.05743408203125, -0.076904296875, 0.1002197265625, 0.033172607421875, -0.0185546875, -0.003643035888671875, -0.002490997314453125, 0.028839111328125, -0.043853759765625, -0.0037250518798828125, 0.0230560302734375, 0.0294189453125, -0.0010929107666015625, -0.05242919921875, 0.0079345703125, -0.03546142578125, -0.00856781005859375, -0.00048041343688964844, -0.072265625, 0.0430908203125, -0.00156402587890625, 0.021240234375, 0.0175628662109375, 0.0369873046875, 0.0413818359375, 0.00994873046875, 0.064697265625, 0.0693359375, 0.052490234375, 0.01476287841796875, 0.0526123046875, -0.018646240234375, 0.01220703125, 0.060943603515625, -0.0229949951171875, 0.065673828125, 0.043212890625, -0.0183563232421875, 0.06732177734375, 0.054901123046875, -0.0054779052734375, 0.03253173828125, 0.01422882080078125, -0.0048065185546875, 0.005523681640625, 0.00681304931640625, -0.0654296875, 0.023284912109375, 0.061309814453125, -0.03564453125, -0.0026950836181640625, 0.0269927978515625, -0.00411224365234375, -0.049346923828125, -0.039337158203125, 0.043212890625, 0.013153076171875, -0.0099945068359375, 0.0511474609375, -0.01432037353515625, 0.0673828125, -0.08642578125, 0.00978851318359375, -0.0012493133544921875, 0.0159759521484375, -0.0184326171875, -0.0693359375, 0.007904052734375, -0.018768310546875, -0.01027679443359375, 0.015472412109375, 0.08544921875, 0.004276275634765625, -0.0496826171875, 0.03082275390625, 0.0167236328125, 0.01421356201171875, 0.007709503173828125, -0.061309814453125, 0.01560211181640625, 0.0014600753784179688, -0.03656005859375, 0.038604736328125, 0.006732940673828125, 0.005146026611328125, 0.058502197265625, -0.00556182861328125, 0.0182037353515625, 0.00875091552734375, 0.00782012939453125, 0.0621337890625, -0.05908203125, -0.0457763671875, -0.02520751953125, 0.0297393798828125, -0.00494384765625, -0.01399993896484375, 0.0517578125, 0.042877197265625, 0.0236968994140625, -0.031646728515625, 0.0655517578125, -0.041229248046875, 0.00301361083984375, -0.051727294921875, 0.05865478515625, -0.05523681640625, -0.014923095703125, -0.0284576416015625, -0.0789794921875, 0.004543304443359375, 0.06585693359375, 0.0242462158203125, -0.0004608631134033203, 0.053863525390625, 0.04339599609375, -0.00589752197265625, 0.002933502197265625, 0.00492095947265625, 0.033203125, -0.01540374755859375, 0.02447509765625, 0.03924560546875, -0.0579833984375, 0.048797607421875, -0.0038700103759765625, -0.0159759521484375, -0.0073394775390625, -0.0667724609375, -0.06646728515625, -0.03863525390625, -0.044921875, -0.05755615234375, 0.018157958984375, 0.064208984375, 0.0653076171875, -0.0511474609375, -0.00878143310546875, 0.007740020751953125, -0.00850677490234375, -0.004413604736328125, -0.01151275634765625, 0.0283660888671875, 0.0082244873046875, -0.026458740234375, 0.00856781005859375, 0.0166015625, 0.050811767578125, -0.00948333740234375, -0.0254974365234375, -0.006366729736328125, 0.004581451416015625, 0.0261383056640625, 0.0287933349609375, -0.0256195068359375, -0.0240631103515625, -0.035247802734375, -0.0021305084228515625, 0.03155517578125, 0.031829833984375, -0.06353759765625, -0.003429412841796875, 0.046295166015625, 0.01102447509765625, 0.03948974609375, -0.00803375244140625, 0.03173828125, -0.05438232421875, 0.03729248046875, -0.00737762451171875, 0.0511474609375, 0.0032958984375, -0.0045928955078125, 0.048187255859375, 0.0275115966796875, -0.037384033203125, -0.043182373046875, -0.005950927734375, -0.10870361328125, -0.015716552734375, 0.07598876953125, 0.0050201416015625, -0.04205322265625, -0.0019092559814453125, -0.055145263671875, -0.0058135986328125, -0.0235443115234375, 0.0438232421875, 0.051483154296875, -0.0027904510498046875, -0.011810302734375, -0.05206298828125, 0.0190277099609375, 0.0109100341796875, -0.050811767578125, -0.02960205078125, 0.010894775390625, 0.04400634765625, 0.017608642578125, 0.07373046875, -0.0150146484375, 0.0175933837890625, 0.0307159423828125, 0.01541900634765625, 0.04364013671875, 0.021026611328125, -0.0143890380859375, -0.0005025863647460938, 0.0063934326171875, -0.037750244140625 ] ]
MakAttack/653b6dc287d6147063c526f6
2023-10-27T09:26:59.000Z
[ "diffusers", "tensorboard", "stable-diffusion-xl", "stable-diffusion-xl-diffusers", "text-to-image", "lora", "license:openrail++", "region:us" ]
text-to-image
MakAttack
null
null
MakAttack/653b6dc287d6147063c526f6
0
2
diffusers
2023-10-27T08:54:32
--- license: openrail++ base_model: stabilityai/stable-diffusion-xl-base-1.0 instance_prompt: a photo of sks dog tags: - stable-diffusion-xl - stable-diffusion-xl-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - MakAttack/653b6dc287d6147063c526f6 These are LoRA adaption weights for stabilityai/stable-diffusion-xl-base-1.0. The weights were trained on a photo of sks dog using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. LoRA for the text encoder was enabled: False. Special VAE used for training: madebyollin/sdxl-vae-fp16-fix.
630
[ [ -0.015716552734375, -0.01776123046875, 0.0178985595703125, 0.024871826171875, -0.05047607421875, 0.00811004638671875, 0.0244903564453125, -0.0160980224609375, 0.063232421875, 0.028656005859375, -0.0295257568359375, -0.0273590087890625, -0.043914794921875, -0.01169586181640625, -0.0018711090087890625, 0.08001708984375, -0.0183868408203125, 0.0171966552734375, 0.030029296875, -0.032623291015625, -0.035736083984375, -0.0028018951416015625, -0.048614501953125, -0.049652099609375, 0.04547119140625, 0.021392822265625, 0.04803466796875, 0.01439666748046875, 0.03546142578125, 0.0192108154296875, 0.0010251998901367188, -0.0487060546875, -0.042236328125, -0.01296234130859375, 0.00406646728515625, -0.060272216796875, -0.054290771484375, -0.007503509521484375, 0.056915283203125, 0.0198822021484375, -0.0211181640625, 0.01824951171875, -0.01195526123046875, 0.059051513671875, -0.061981201171875, 0.0017747879028320312, -0.048004150390625, 0.027008056640625, -0.01123809814453125, 0.009857177734375, -0.0168609619140625, -0.032501220703125, -0.0225372314453125, -0.043212890625, -0.012298583984375, -0.013671875, 0.080322265625, 0.025421142578125, -0.0250701904296875, -0.0198211669921875, -0.0305023193359375, 0.035125732421875, -0.04400634765625, 0.0164794921875, 0.026611328125, 0.0218658447265625, -0.0172882080078125, -0.03741455078125, -0.0267486572265625, 0.01517486572265625, 0.02142333984375, 0.01404571533203125, -0.00701141357421875, 0.003307342529296875, 0.0308685302734375, 0.0232391357421875, -0.016571044921875, 0.006557464599609375, -0.046173095703125, -0.00611114501953125, 0.0401611328125, 0.0035343170166015625, 0.0210113525390625, 0.0189361572265625, -0.02679443359375, -0.0160980224609375, -0.039154052734375, 0.004364013671875, 0.01404571533203125, 0.0015535354614257812, -0.029937744140625, 0.06463623046875, 0.002765655517578125, 0.053436279296875, 0.027862548828125, -0.032379150390625, 0.07159423828125, -0.0033245086669921875, -0.028350830078125, 0.027099609375, 0.031951904296875, 0.037445068359375, -0.004169464111328125, 0.01165771484375, -0.02587890625, 0.0138397216796875, 0.0102996826171875, -0.06396484375, -0.0028400421142578125, 0.004241943359375, -0.05780029296875, -0.0428466796875, 0.00543975830078125, -0.0343017578125, -0.0404052734375, 0.02178955078125, 0.07122802734375, -0.048858642578125, -0.03387451171875, 0.03729248046875, -0.0531005859375, 0.03631591796875, 0.0213775634765625, -0.056915283203125, 0.028045654296875, -0.009063720703125, 0.055908203125, 0.003131866455078125, -0.003528594970703125, -0.017120361328125, 0.0214996337890625, -0.0219879150390625, 0.046478271484375, -0.0123748779296875, -0.0204315185546875, -0.007137298583984375, 0.0237274169921875, -0.0223388671875, -0.032012939453125, 0.03973388671875, -0.03887939453125, -0.00801849365234375, -0.0185089111328125, -0.023681640625, -0.0279693603515625, 0.00887298583984375, -0.0535888671875, 0.080810546875, 0.03643798828125, -0.08221435546875, 0.0404052734375, -0.06365966796875, -0.0172882080078125, -0.0016660690307617188, 0.005706787109375, -0.01192474365234375, 0.0186004638671875, -0.0177154541015625, 0.0292816162109375, 0.0224151611328125, -0.041961669921875, -0.01157379150390625, -0.036651611328125, 0.00618743896484375, 0.00954437255859375, 0.061676025390625, 0.01525115966796875, -0.00954437255859375, 0.0048370361328125, -0.09295654296875, 0.01439666748046875, 0.037017822265625, -0.0428466796875, -0.037384033203125, -0.0206756591796875, -0.0034732818603515625, 0.0178985595703125, 0.028717041015625, -0.0543212890625, 0.01398468017578125, -0.0204010009765625, 0.00859832763671875, 0.04498291015625, -0.000461578369140625, 0.007137298583984375, -0.03131103515625, 0.054168701171875, -0.0020847320556640625, -0.004955291748046875, 0.0218963623046875, -0.033966064453125, -0.054718017578125, -0.0140838623046875, 0.0249786376953125, 0.03717041015625, -0.0494384765625, 0.0374755859375, -0.00421905517578125, -0.06390380859375, -0.040924072265625, 0.0013332366943359375, -0.00617218017578125, 0.01361846923828125, -0.00948333740234375, -0.033294677734375, -0.045379638671875, -0.060394287109375, 0.0143585205078125, -0.0026264190673828125, 0.004619598388671875, -0.02508544921875, 0.06280517578125, -0.01068115234375, 0.059539794921875, -0.037353515625, -0.01308441162109375, -0.0140228271484375, 0.0002263784408569336, 0.041351318359375, 0.034759521484375, 0.07366943359375, -0.0311126708984375, -0.03973388671875, -0.0077056884765625, -0.05609130859375, -0.007564544677734375, 0.007648468017578125, -0.01047515869140625, 0.0008330345153808594, 0.017578125, -0.0606689453125, 0.04705810546875, 0.0577392578125, -0.041351318359375, 0.042816162109375, -0.032257080078125, 0.0114898681640625, -0.090576171875, 0.00704193115234375, 0.0006723403930664062, -0.04150390625, -0.03143310546875, -0.00270843505859375, 0.0166473388671875, 0.00901031494140625, -0.04437255859375, 0.0362548828125, -0.0254974365234375, -0.0189208984375, -0.0394287109375, 0.015716552734375, -0.004383087158203125, 0.0117340087890625, 0.00952911376953125, 0.040130615234375, 0.0458984375, -0.035736083984375, 0.027679443359375, 0.025909423828125, -0.0294647216796875, 0.0521240234375, -0.048980712890625, 0.0076904296875, -0.007137298583984375, 0.043243408203125, -0.050140380859375, -0.01393890380859375, 0.04315185546875, -0.0224456787109375, -0.0004532337188720703, -0.0023670196533203125, -0.033203125, -0.03692626953125, -0.047454833984375, 0.0300140380859375, 0.0633544921875, -0.03411865234375, 0.0260467529296875, 0.0238189697265625, 0.009063720703125, -0.057373046875, -0.04949951171875, -0.0190887451171875, -0.0243377685546875, -0.0295562744140625, 0.028350830078125, -0.0207061767578125, -0.021484375, -0.005229949951171875, -0.01202392578125, -0.01187896728515625, -0.0142669677734375, 0.036956787109375, 0.0036602020263671875, -0.0280914306640625, -0.00021135807037353516, 0.01184844970703125, -0.0026397705078125, -0.0018606185913085938, 0.0120697021484375, 0.060516357421875, -0.01152801513671875, -0.0130462646484375, -0.0447998046875, -0.01116180419921875, 0.050323486328125, 0.043975830078125, 0.0733642578125, 0.0660400390625, -0.04876708984375, 0.01454925537109375, -0.028839111328125, 0.0007691383361816406, -0.03741455078125, 0.0257720947265625, -0.031646728515625, -0.0194549560546875, 0.0550537109375, 0.0028781890869140625, -0.015625, 0.052337646484375, 0.0435791015625, -0.0205078125, 0.07305908203125, 0.04815673828125, -0.005828857421875, 0.035675048828125, -0.017059326171875, -0.0158538818359375, -0.06298828125, -0.0156707763671875, -0.0247344970703125, -0.04461669921875, 0.0017042160034179688, -0.0248260498046875, -0.00463104248046875, 0.03033447265625, -0.0460205078125, 0.025909423828125, -0.0247955322265625, 0.042510986328125, 0.01537322998046875, 0.0121917724609375, 0.01007843017578125, 0.004184722900390625, -0.00865936279296875, -0.00395965576171875, -0.042388916015625, -0.0171966552734375, 0.068115234375, 0.04034423828125, 0.10400390625, -0.0196380615234375, 0.037841796875, 0.0242767333984375, 0.0082550048828125, -0.05096435546875, 0.04949951171875, 0.0008373260498046875, -0.039825439453125, -0.00801849365234375, 0.00246429443359375, -0.07958984375, 0.0204620361328125, -0.031585693359375, -0.058563232421875, -0.0010232925415039062, 0.004009246826171875, 0.0008544921875, 0.037109375, -0.040618896484375, 0.040924072265625, -0.01904296875, 0.015289306640625, -0.04034423828125, -0.0343017578125, 0.01201629638671875, -0.0142822265625, 0.00731658935546875, -0.00608062744140625, -0.017852783203125, 0.076904296875, -0.04010009765625, 0.07086181640625, -0.04052734375, -0.0249481201171875, 0.00611114501953125, -0.0159149169921875, 0.05279541015625, -0.0206756591796875, -0.016204833984375, -0.0037021636962890625, 0.00962066650390625, -0.041961669921875, -0.0234832763671875, 0.02288818359375, -0.057159423828125, -0.0059356689453125, -0.04083251953125, -0.0307159423828125, -0.00044655799865722656, 0.01490020751953125, 0.0433349609375, -0.006622314453125, -0.019927978515625, 0.031036376953125, 0.051361083984375, -0.00759124755859375, 0.0291290283203125, 0.048553466796875, -0.041229248046875, -0.0352783203125, 0.0557861328125, 0.0131683349609375, 0.0272674560546875, 0.00476837158203125, 0.01043701171875, 0.0007138252258300781, -0.0362548828125, -0.039276123046875, 0.0294189453125, -0.070556640625, -0.0155792236328125, -0.021759033203125, -0.045196533203125, -0.004016876220703125, -0.0318603515625, -0.036590576171875, -0.0570068359375, -0.022705078125, -0.01739501953125, 0.047821044921875, 0.0830078125, -0.00830078125, 0.06402587890625, -0.032135009765625, 0.0256195068359375, 0.01224517822265625, 0.041778564453125, -0.0169830322265625, -0.0428466796875, -0.032012939453125, -0.0037841796875, -0.01763916015625, -0.07958984375, 0.01363372802734375, 0.005069732666015625, 0.04534912109375, 0.03692626953125, -0.01035308837890625, 0.0374755859375, -0.0161895751953125, 0.061798095703125, 0.0552978515625, -0.050262451171875, 0.06341552734375, -0.0302734375, 0.0231475830078125, 0.032470703125, 0.0203094482421875, -0.033538818359375, -0.0036220550537109375, -0.03802490234375, -0.050262451171875, 0.0445556640625, 0.0203399658203125, 0.00963592529296875, 0.031646728515625, 0.0406494140625, 0.0352783203125, 0.0103912353515625, -0.09246826171875, -0.019989013671875, -0.02325439453125, -0.039642333984375, 0.0303192138671875, -0.0072021484375, -0.013824462890625, -0.032257080078125, 0.0706787109375, -0.0245361328125, 0.01245880126953125, -0.009124755859375, -0.0194854736328125, -0.0222930908203125, 0.0028667449951171875, 0.0262298583984375, 0.034942626953125, -0.043487548828125, -0.03704833984375, 0.032318115234375, -0.0679931640625, 0.0189666748046875, -0.0151519775390625, -0.0174560546875, 0.0012254714965820312, -0.010284423828125, 0.07135009765625, 0.00968170166015625, -0.038238525390625, 0.030975341796875, -0.01456451416015625, -0.0279693603515625, -0.0367431640625, 0.027557373046875, 0.004116058349609375, 0.0178985595703125, 0.027557373046875, 0.0174102783203125, -0.0166778564453125, -0.020721435546875, -0.0222625732421875, 0.044677734375, -0.041351318359375, -0.032806396484375, 0.031707763671875, 0.0135498046875, -0.01953125, 0.019012451171875, -0.00428009033203125, -0.002193450927734375, 0.05267333984375, 0.08203125, 0.05023193359375, -0.02532958984375, 0.028656005859375, 0.0291290283203125, 0.0174713134765625, -0.0252532958984375, 0.05682373046875, 0.024566650390625, -0.0643310546875, 0.005279541015625, -0.04931640625, -0.0163726806640625, 0.016021728515625, -0.05853271484375, 0.05120849609375, -0.037078857421875, -0.0260772705078125, -0.0162506103515625, -0.01136016845703125, -0.0322265625, 0.036346435546875, 0.00677490234375, 0.09716796875, -0.07305908203125, 0.07647705078125, 0.07379150390625, -0.0240478515625, -0.0350341796875, -0.01221466064453125, -0.01345062255859375, -0.09442138671875, 0.041168212890625, 0.0036907196044921875, -0.01409912109375, -0.01302337646484375, -0.056976318359375, -0.0767822265625, 0.10052490234375, 0.032470703125, -0.018829345703125, -0.004146575927734375, -0.003025054931640625, 0.028717041015625, -0.04400634765625, -0.0030879974365234375, 0.0228424072265625, 0.028472900390625, -0.001178741455078125, -0.054107666015625, 0.006832122802734375, -0.034423828125, -0.00814056396484375, -0.0012569427490234375, -0.072509765625, 0.04296875, -0.00225067138671875, 0.021636962890625, 0.018218994140625, 0.037567138671875, 0.041900634765625, 0.010101318359375, 0.0643310546875, 0.06878662109375, 0.052520751953125, 0.01390838623046875, 0.0535888671875, -0.0189361572265625, 0.01219940185546875, 0.060272216796875, -0.022491455078125, 0.06585693359375, 0.0430908203125, -0.018157958984375, 0.06719970703125, 0.056732177734375, -0.00493621826171875, 0.0322265625, 0.01427459716796875, -0.0043792724609375, 0.006412506103515625, 0.00688934326171875, -0.0660400390625, 0.022552490234375, 0.060638427734375, -0.03497314453125, -0.00313568115234375, 0.027130126953125, -0.0034732818603515625, -0.0491943359375, -0.039642333984375, 0.04315185546875, 0.012908935546875, -0.01073455810546875, 0.051666259765625, -0.01409912109375, 0.06689453125, -0.0859375, 0.01064300537109375, -0.0017528533935546875, 0.01666259765625, -0.0180511474609375, -0.06982421875, 0.007266998291015625, -0.0189971923828125, -0.01137542724609375, 0.01560211181640625, 0.08392333984375, 0.004299163818359375, -0.049957275390625, 0.0309906005859375, 0.0162353515625, 0.014312744140625, 0.007534027099609375, -0.062042236328125, 0.01560211181640625, 0.0014085769653320312, -0.035736083984375, 0.039276123046875, 0.006977081298828125, 0.0052032470703125, 0.0589599609375, -0.00678253173828125, 0.0178375244140625, 0.01035308837890625, 0.0078277587890625, 0.06097412109375, -0.059783935546875, -0.04705810546875, -0.025299072265625, 0.029296875, -0.004547119140625, -0.01457977294921875, 0.05120849609375, 0.04345703125, 0.023345947265625, -0.031829833984375, 0.0655517578125, -0.0411376953125, 0.0038356781005859375, -0.05218505859375, 0.059112548828125, -0.054718017578125, -0.0153045654296875, -0.0279541015625, -0.07855224609375, 0.005222320556640625, 0.06549072265625, 0.023681640625, -0.000018835067749023438, 0.054412841796875, 0.043243408203125, -0.0048065185546875, 0.0035877227783203125, 0.005035400390625, 0.033294677734375, -0.015625, 0.0251617431640625, 0.038543701171875, -0.058685302734375, 0.04913330078125, -0.00366973876953125, -0.0163726806640625, -0.00783538818359375, -0.066162109375, -0.06591796875, -0.03839111328125, -0.04522705078125, -0.057098388671875, 0.0184326171875, 0.06378173828125, 0.0653076171875, -0.05059814453125, -0.009490966796875, 0.008087158203125, -0.008026123046875, -0.004215240478515625, -0.0116424560546875, 0.0283050537109375, 0.00946807861328125, -0.0257720947265625, 0.0083465576171875, 0.0180206298828125, 0.05059814453125, -0.00998687744140625, -0.0256805419921875, -0.007579803466796875, 0.004741668701171875, 0.025360107421875, 0.0296783447265625, -0.0269622802734375, -0.024932861328125, -0.035186767578125, -0.00286102294921875, 0.032012939453125, 0.03045654296875, -0.06298828125, -0.0031108856201171875, 0.04638671875, 0.011322021484375, 0.038909912109375, -0.0079193115234375, 0.032196044921875, -0.05364990234375, 0.037139892578125, -0.007801055908203125, 0.050689697265625, 0.0035400390625, -0.0037860870361328125, 0.04815673828125, 0.02764892578125, -0.037353515625, -0.04364013671875, -0.005481719970703125, -0.1085205078125, -0.0155487060546875, 0.07568359375, 0.004528045654296875, -0.042510986328125, -0.0016937255859375, -0.05487060546875, -0.00614166259765625, -0.0231475830078125, 0.04364013671875, 0.05218505859375, -0.0025157928466796875, -0.0130157470703125, -0.052276611328125, 0.0187530517578125, 0.01085662841796875, -0.05047607421875, -0.030029296875, 0.01059722900390625, 0.0433349609375, 0.0174560546875, 0.07379150390625, -0.01470947265625, 0.0186767578125, 0.0307159423828125, 0.01531219482421875, 0.043853759765625, 0.020751953125, -0.01467132568359375, 0.000004291534423828125, 0.00577545166015625, -0.0384521484375 ] ]
s-man2099/gpl-2000
2023-10-27T10:19:41.000Z
[ "transformers", "tf", "pegasus", "text2text-generation", "generated_from_keras_callback", "autotrain_compatible", "endpoints_compatible", "region:us" ]
text2text-generation
s-man2099
null
null
s-man2099/gpl-2000
0
2
transformers
2023-10-27T08:57:18
--- base_model: google/pegasus-large tags: - generated_from_keras_callback model-index: - name: s-man2099/gpl-2000 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. --> # s-man2099/gpl-2000 This model is a fine-tuned version of [google/pegasus-large](https://huggingface.co/google/pegasus-large) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 3.1254 - Validation Loss: 3.4150 - Epoch: 9 ## 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': 'Adafactor', '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': 6e-06, 'beta_2_decay': -0.8, 'epsilon_1': 1e-30, 'epsilon_2': 0.001, 'clip_threshold': 1.0, 'relative_step': True} - training_precision: mixed_float16 ### Training results | Train Loss | Validation Loss | Epoch | |:----------:|:---------------:|:-----:| | 3.9156 | 3.4538 | 0 | | 3.6384 | 3.4017 | 1 | | 3.5181 | 3.3878 | 2 | | 3.4227 | 3.3802 | 3 | | 3.3500 | 3.3862 | 4 | | 3.2821 | 3.3914 | 5 | | 3.2122 | 3.4035 | 6 | | 3.1475 | 3.4099 | 7 | | 3.1328 | 3.4132 | 8 | | 3.1254 | 3.4150 | 9 | ### Framework versions - Transformers 4.34.1 - TensorFlow 2.14.0 - Datasets 2.14.6 - Tokenizers 0.14.1
1,887
[ [ -0.04925537109375, -0.038787841796875, 0.02593994140625, -0.0031890869140625, -0.03240966796875, -0.038055419921875, -0.00583648681640625, -0.0230712890625, 0.0142822265625, 0.01551055908203125, -0.057525634765625, -0.038848876953125, -0.058441162109375, -0.0179290771484375, -0.0198822021484375, 0.08642578125, 0.01004791259765625, 0.0223388671875, 0.002902984619140625, -0.0041046142578125, -0.0208282470703125, -0.042388916015625, -0.08642578125, -0.034515380859375, 0.03759765625, 0.01354217529296875, 0.059356689453125, 0.07183837890625, 0.039703369140625, 0.018798828125, -0.03973388671875, -0.00428009033203125, -0.036376953125, -0.0457763671875, 0.006259918212890625, -0.0167388916015625, -0.04913330078125, 0.00029468536376953125, 0.062744140625, 0.03399658203125, -0.0160369873046875, 0.032073974609375, 0.01461029052734375, 0.032196044921875, -0.04052734375, 0.0139923095703125, -0.03289794921875, 0.022369384765625, -0.02093505859375, 0.0006809234619140625, -0.0000692605972290039, 0.0054168701171875, 0.006603240966796875, -0.06280517578125, 0.034942626953125, -0.00402069091796875, 0.0986328125, 0.03289794921875, -0.0186767578125, -0.0032482147216796875, -0.04461669921875, 0.042724609375, -0.060760498046875, 0.0250244140625, 0.0258941650390625, 0.044708251953125, -0.00876617431640625, -0.06927490234375, -0.042694091796875, -0.00553131103515625, 0.0102691650390625, 0.007801055908203125, -0.017242431640625, -0.0072021484375, 0.040985107421875, 0.0450439453125, -0.0291748046875, 0.0228271484375, -0.054168701171875, -0.02813720703125, 0.039459228515625, 0.0316162109375, -0.01538848876953125, -0.00391387939453125, -0.027191162109375, -0.020538330078125, -0.031982421875, 0.0217742919921875, 0.051177978515625, 0.02130126953125, -0.0268096923828125, 0.0408935546875, -0.016571044921875, 0.046112060546875, 0.01091766357421875, -0.007724761962890625, 0.04638671875, 0.0068359375, -0.04388427734375, 0.01232147216796875, 0.0638427734375, 0.044647216796875, 0.00079345703125, 0.0128936767578125, -0.0164794921875, -0.01364898681640625, 0.0262298583984375, -0.07379150390625, -0.00804901123046875, 0.00860595703125, -0.04364013671875, -0.040374755859375, 0.00435638427734375, -0.050567626953125, 0.001361846923828125, -0.0236663818359375, 0.0419921875, -0.0196685791015625, -0.0019779205322265625, 0.015472412109375, -0.004405975341796875, 0.0284423828125, 0.007534027099609375, -0.0640869140625, 0.0251922607421875, 0.0587158203125, 0.04400634765625, 0.017913818359375, -0.0323486328125, -0.021514892578125, -0.0016126632690429688, -0.024566650390625, 0.0238494873046875, -0.0236053466796875, -0.0313720703125, -0.0146331787109375, 0.03662109375, 0.0017566680908203125, -0.0238494873046875, 0.0843505859375, -0.0310211181640625, 0.0313720703125, -0.034912109375, -0.047332763671875, -0.029052734375, 0.0156402587890625, -0.0555419921875, 0.07806396484375, -0.0122833251953125, -0.05712890625, 0.050933837890625, -0.0357666015625, -0.0004892349243164062, -0.00754547119140625, -0.005237579345703125, -0.07049560546875, -0.0089569091796875, 0.01111602783203125, 0.043060302734375, -0.0226593017578125, 0.0105133056640625, -0.033599853515625, -0.04119873046875, -0.02545166015625, -0.03619384765625, 0.054962158203125, 0.0223236083984375, -0.04290771484375, 0.0017156600952148438, -0.08221435546875, 0.00331878662109375, 0.0276336669921875, -0.02764892578125, 0.0082244873046875, -0.021026611328125, 0.0182647705078125, 0.0204925537109375, 0.0207672119140625, -0.04052734375, 0.007732391357421875, -0.0239715576171875, 0.032623291015625, 0.0540771484375, 0.01160430908203125, 0.00135040283203125, -0.0252532958984375, 0.0186767578125, 0.01325225830078125, 0.0272216796875, 0.007633209228515625, -0.052337646484375, -0.066650390625, -0.00997161865234375, 0.0165252685546875, 0.0099334716796875, -0.0117034912109375, 0.058380126953125, -0.0032901763916015625, -0.0631103515625, -0.029449462890625, -0.0007157325744628906, 0.0265960693359375, 0.0675048828125, 0.0293731689453125, -0.01030731201171875, -0.022857666015625, -0.090087890625, 0.01192474365234375, 0.002948760986328125, 0.01473236083984375, 0.0255889892578125, 0.049530029296875, -0.01342010498046875, 0.0357666015625, -0.035980224609375, -0.0152740478515625, 0.01390838623046875, -0.00516510009765625, 0.0341796875, 0.0494384765625, 0.04705810546875, -0.04248046875, -0.007801055908203125, -0.006641387939453125, -0.0467529296875, 0.022064208984375, -0.006969451904296875, -0.01995849609375, -0.0015325546264648438, 0.0222320556640625, -0.038330078125, 0.038055419921875, 0.024139404296875, -0.038543701171875, 0.046234130859375, -0.04461669921875, -0.0100250244140625, -0.08306884765625, 0.0433349609375, 0.0178680419921875, 0.0017595291137695312, -0.0194244384765625, 0.0090179443359375, 0.00917816162109375, -0.018402099609375, -0.034637451171875, 0.048828125, 0.0006594657897949219, -0.00638580322265625, -0.004055023193359375, -0.034881591796875, -0.0029048919677734375, 0.0562744140625, 0.0189056396484375, 0.04180908203125, 0.0482177734375, -0.0450439453125, 0.0284271240234375, 0.0219879150390625, -0.03448486328125, 0.0279693603515625, -0.0675048828125, 0.0037059783935546875, -0.01137542724609375, -0.00011390447616577148, -0.051025390625, -0.0250396728515625, 0.03973388671875, -0.0262451171875, 0.01018524169921875, -0.0172882080078125, -0.020721435546875, -0.0399169921875, -0.005985260009765625, 0.017242431640625, 0.042205810546875, -0.04595947265625, 0.019622802734375, 0.0019989013671875, 0.0168609619140625, -0.062255859375, -0.053924560546875, -0.0131072998046875, -0.020538330078125, -0.029083251953125, 0.028839111328125, -0.00629425048828125, 0.0158843994140625, 0.0123291015625, 0.004154205322265625, -0.01226043701171875, 0.00455474853515625, 0.03668212890625, 0.0260467529296875, -0.01143646240234375, -0.006542205810546875, 0.004032135009765625, -0.0251617431640625, 0.019012451171875, -0.00689697265625, 0.04302978515625, -0.0180206298828125, -0.03424072265625, -0.059600830078125, -0.01593017578125, 0.051300048828125, -0.006847381591796875, 0.0570068359375, 0.05975341796875, -0.04449462890625, -0.0002734661102294922, -0.0222015380859375, -0.0029735565185546875, -0.0352783203125, 0.04296875, -0.036529541015625, -0.03167724609375, 0.061126708984375, 0.0181732177734375, 0.0179595947265625, 0.08612060546875, 0.050933837890625, 0.0080108642578125, 0.075927734375, 0.0187530517578125, -0.0187835693359375, 0.003570556640625, -0.052398681640625, -0.0232696533203125, -0.053314208984375, -0.048828125, -0.035675048828125, -0.03411865234375, -0.043670654296875, 0.007061004638671875, 0.0191650390625, 0.01175689697265625, -0.064453125, 0.01332855224609375, -0.0484619140625, 0.029876708984375, 0.0574951171875, 0.0240631103515625, -0.0038623809814453125, 0.0037288665771484375, -0.03961181640625, -0.0049591064453125, -0.051971435546875, -0.026458740234375, 0.09765625, 0.0450439453125, 0.0249481201171875, -0.0144195556640625, 0.044769287109375, 0.008819580078125, 0.006946563720703125, -0.05035400390625, 0.032684326171875, 0.00002008676528930664, -0.061553955078125, -0.0222930908203125, -0.0311279296875, -0.0682373046875, 0.00868988037109375, -0.0282135009765625, -0.0280303955078125, 0.0162506103515625, 0.0167236328125, -0.036224365234375, 0.039886474609375, -0.0223236083984375, 0.084716796875, -0.0030803680419921875, -0.0211181640625, -0.0113525390625, -0.031280517578125, 0.0239105224609375, -0.0102081298828125, -0.00763702392578125, -0.000728607177734375, 0.0011796951293945312, 0.0721435546875, -0.060882568359375, 0.044036865234375, -0.033721923828125, 0.003849029541015625, 0.01617431640625, -0.0235595703125, 0.045806884765625, 0.0016183853149414062, -0.00830841064453125, 0.01032257080078125, -0.005496978759765625, -0.042327880859375, -0.028533935546875, 0.0589599609375, -0.09002685546875, -0.019744873046875, -0.026824951171875, -0.015228271484375, -0.000667572021484375, 0.0263519287109375, 0.056488037109375, 0.05072021484375, -0.0008573532104492188, 0.01163482666015625, 0.03216552734375, -0.00301361083984375, 0.039459228515625, 0.0167388916015625, 0.003566741943359375, -0.0574951171875, 0.058624267578125, 0.00019931793212890625, -0.00015175342559814453, -0.0186767578125, 0.010101318359375, -0.031494140625, -0.036376953125, -0.046875, 0.0218353271484375, -0.054595947265625, 0.0016536712646484375, -0.01178741455078125, -0.02984619140625, -0.0146942138671875, -0.004642486572265625, -0.03765869140625, -0.0282745361328125, -0.04010009765625, -0.004825592041015625, 0.00537109375, 0.04071044921875, 0.00485992431640625, 0.03948974609375, -0.053436279296875, -0.004207611083984375, 0.0297393798828125, 0.035552978515625, 0.0255889892578125, -0.06982421875, -0.023223876953125, -0.0007762908935546875, -0.031646728515625, -0.0369873046875, 0.03143310546875, 0.00545501708984375, 0.066650390625, 0.0640869140625, -0.0302581787109375, 0.063720703125, -0.035064697265625, 0.0634765625, 0.0245208740234375, -0.041778564453125, 0.0201263427734375, -0.0194244384765625, 0.0120697021484375, 0.03924560546875, 0.0484619140625, -0.0235443115234375, -0.00131988525390625, -0.089599609375, -0.044647216796875, 0.05657958984375, 0.0189056396484375, 0.0031032562255859375, 0.007610321044921875, 0.049896240234375, -0.0096893310546875, 0.0058441162109375, -0.050384521484375, -0.049896240234375, -0.0226898193359375, -0.004848480224609375, -0.0187835693359375, -0.0236053466796875, -0.00867462158203125, -0.035614013671875, 0.07916259765625, 0.01253509521484375, 0.028564453125, 0.008880615234375, 0.02850341796875, -0.01580810546875, -0.01119232177734375, 0.0517578125, 0.040985107421875, -0.03765869140625, -0.007404327392578125, 0.0163726806640625, -0.0458984375, -0.0005965232849121094, 0.032501220703125, -0.002140045166015625, -0.00339508056640625, 0.02508544921875, 0.0738525390625, 0.00653076171875, -0.01361846923828125, 0.034423828125, -0.001789093017578125, -0.0379638671875, -0.03033447265625, 0.01294708251953125, -0.00893402099609375, 0.0216064453125, 0.0195770263671875, 0.0211181640625, 0.01305389404296875, -0.0121612548828125, 0.0146026611328125, 0.025543212890625, -0.037994384765625, -0.024383544921875, 0.08172607421875, -0.0002263784408569336, -0.014373779296875, 0.049713134765625, -0.013092041015625, -0.0214080810546875, 0.0675048828125, 0.023193359375, 0.062347412109375, -0.01593017578125, -0.00724029541015625, 0.059295654296875, 0.0151519775390625, -0.0135345458984375, 0.0229034423828125, 0.005664825439453125, -0.044586181640625, -0.0274658203125, -0.050567626953125, -0.0257415771484375, 0.056121826171875, -0.0794677734375, 0.047576904296875, -0.045196533203125, -0.032501220703125, 0.035858154296875, 0.0226898193359375, -0.057708740234375, 0.043365478515625, 0.03173828125, 0.09063720703125, -0.061370849609375, 0.05816650390625, 0.049285888671875, -0.022674560546875, -0.0628662109375, -0.027862548828125, -0.01049041748046875, -0.07891845703125, 0.049346923828125, 0.005706787109375, 0.0211181640625, 0.00714111328125, -0.03887939453125, -0.0635986328125, 0.08795166015625, 0.024139404296875, -0.048065185546875, -0.004856109619140625, 0.02752685546875, 0.036529541015625, 0.002628326416015625, 0.027557373046875, 0.0189971923828125, 0.0278778076171875, 0.031463623046875, -0.07257080078125, -0.00043082237243652344, -0.032684326171875, -0.007038116455078125, 0.01593017578125, -0.06610107421875, 0.06988525390625, 0.005908966064453125, 0.0229339599609375, 0.00531768798828125, 0.03668212890625, 0.027984619140625, 0.0207366943359375, 0.0350341796875, 0.09234619140625, 0.0528564453125, -0.0017938613891601562, 0.07586669921875, -0.042236328125, 0.050079345703125, 0.06939697265625, 0.020721435546875, 0.04412841796875, 0.019744873046875, -0.0161895751953125, 0.020050048828125, 0.0740966796875, -0.033447265625, 0.039825439453125, -0.0008411407470703125, -0.0026912689208984375, -0.0272674560546875, 0.02813720703125, -0.052001953125, 0.0162811279296875, 0.00832366943359375, -0.061492919921875, -0.03411865234375, -0.0268707275390625, 0.009613037109375, -0.035125732421875, -0.05126953125, 0.02874755859375, -0.0181121826171875, -0.020416259765625, 0.05908203125, 0.020416259765625, 0.020660400390625, -0.0426025390625, -0.0019989013671875, -0.002880096435546875, 0.019317626953125, -0.0145416259765625, -0.04815673828125, 0.0169219970703125, -0.008880615234375, -0.00818634033203125, 0.018524169921875, 0.038604736328125, -0.0020923614501953125, -0.05926513671875, -0.0012149810791015625, 0.00673675537109375, 0.0220489501953125, -0.006526947021484375, -0.0728759765625, -0.00980377197265625, 0.00019931793212890625, -0.03973388671875, 0.01194000244140625, 0.023040771484375, 0.00994873046875, 0.047576904296875, 0.052947998046875, 0.004150390625, 0.00769805908203125, -0.01080322265625, 0.0765380859375, -0.047943115234375, -0.061370849609375, -0.06298828125, 0.033599853515625, -0.00865936279296875, -0.068603515625, 0.046234130859375, 0.0830078125, 0.055511474609375, -0.00232696533203125, 0.035614013671875, 0.01239776611328125, 0.021331787109375, -0.040374755859375, 0.049896240234375, -0.044891357421875, -0.0026149749755859375, -0.008331298828125, -0.07171630859375, -0.004161834716796875, 0.03656005859375, -0.0257415771484375, 0.00708770751953125, 0.0155487060546875, 0.050201416015625, -0.01177215576171875, 0.01070404052734375, 0.018218994140625, -0.0029697418212890625, 0.01245880126953125, 0.04541015625, 0.04052734375, -0.0494384765625, 0.039794921875, -0.046478271484375, -0.002246856689453125, 0.005115509033203125, -0.0596923828125, -0.063232421875, -0.04193115234375, -0.0247344970703125, -0.029754638671875, -0.010284423828125, 0.062744140625, 0.0682373046875, -0.04534912109375, -0.0013294219970703125, -0.01140594482421875, -0.03692626953125, -0.01232147216796875, -0.0130767822265625, 0.055084228515625, -0.017120361328125, -0.06787109375, -0.0038585662841796875, -0.0269927978515625, 0.029144287109375, -0.018524169921875, -0.0273895263671875, 0.01678466796875, -0.0209503173828125, 0.0023956298828125, 0.018157958984375, -0.03424072265625, -0.0164642333984375, -0.0260009765625, 0.00250244140625, 0.0091552734375, 0.01556396484375, -0.0411376953125, 0.0293121337890625, 0.008270263671875, 0.0419921875, 0.0687255859375, -0.0078125, 0.00664520263671875, -0.043731689453125, 0.02716064453125, 0.001495361328125, 0.0411376953125, -0.008941650390625, -0.038665771484375, 0.02587890625, 0.033111572265625, -0.0479736328125, -0.053680419921875, -0.0284271240234375, -0.07598876953125, 0.002506256103515625, 0.07867431640625, -0.0023784637451171875, -0.0277252197265625, 0.03399658203125, -0.00429534912109375, 0.017822265625, -0.0225830078125, 0.045318603515625, 0.0626220703125, -0.00325775146484375, 0.0035858154296875, -0.04296875, 0.0499267578125, 0.016021728515625, -0.043731689453125, -0.0195770263671875, 0.027374267578125, 0.036102294921875, 0.01038360595703125, 0.014862060546875, -0.00917816162109375, 0.0286865234375, 0.0089874267578125, 0.01611328125, -0.047027587890625, -0.011993408203125, -0.04644775390625, 0.0150146484375, 0.0013284683227539062, -0.043365478515625 ] ]
budecosystem/sql-millennials-7b
2023-10-27T15:48:33.000Z
[ "transformers", "pytorch", "mistral", "text-generation", "en", "license:apache-2.0", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
budecosystem
null
null
budecosystem/sql-millennials-7b
0
2
transformers
2023-10-27T10:06:40
--- license: apache-2.0 language: - en library_name: transformers --- ## Introducing Text-to-SQL Translation Model - Millennials. 🎉 Welcome to our Text-to-SQL Translation Model repository! Our model is specifically fine-tuned for text-to-SQL tasks, aiming to revolutionize how systems understand and translate natural language instructions into SQL queries. Built on Mistral 7B, our model has been meticulously fine-tuned with a curated dataset comprising 100k SQL query generation instructions, ensuring quality and precision. ## Features * Specialized in converting natural language text to SQL queries. * Fine-tuned on a diverse set of 100k SQL query generation instructions. * Easy to integrate and use for generating SQL queries on the fly. ## Generate responses Now that your model is fine-tuned, you're ready to generate responses, you can easily generate SQL queries from natural language instructions. To do this, you'll be using our generate.py script, which allows for quick inference and can fetch models directly from the Hugging Face model hub. Here's a quick guide on how to use it: The script runs inference using the pre-trained model from the Hugging Face model hub and prints the generated SQL query. ```python import torch from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("budecosystem/sql-millennials-7b") model = AutoModelForCausalLM.from_pretrained("budecosystem/sql-millennials-7b") prompt = "A chat between a curious user and an artificial intelligence assistant. The assistant gives helpful, detailed, and polite answers to the user's questions. USER: Create SQL query for the given table schema and question ASSISTANT:" inputs = tokenizer(prompt, return_tensors="pt") sample = model.generate(**inputs, max_length=128) print(tokenizer.decode(sample[0])) ``` The script runs inference using the pre-trained model from the Hugging Face model hub and prints the generated SQL query. ## Training details The model is trained of 4 A100 80GB for approximately 30hrs. | Hyperparameters | Value | | :----------------------------| :-----: | | per_device_train_batch_size | 4 | | gradient_accumulation_steps | 1 | | epoch | 3 | | steps | 19206 | | learning_rate | 2e-5 | | lr schedular type | cosine | | warmup steps | 2000 | | optimizer | adamw | | fp16 | True | | GPU | 4 A100 80GB | ## Why millennials? 1. Automated Database Management for Businesses Scenario: Small to medium-sized enterprises (SMEs) often lack dedicated IT teams to handle database queries, making it challenging to retrieve specific data quickly for analysis and decision-making. Use Case: Your text-to-SQL model can be integrated into a company's internal systems, allowing staff without technical SQL knowledge to retrieve data. They can input natural language requests, such as "Get a list of all transactions above $10,000 in the last quarter," and the system, powered by your model, would convert this into a corresponding SQL query to retrieve the data. 2. Automating Data Analytics Processes Scenario: Data analysts and business professionals often face bottlenecks in generating insights due to the complexities of SQL query formulation, especially when immediate or repetitive data retrieval and analysis are required. Use Case: Your text-to-SQL model serves as a transformative intermediary in this scenario. By integrating the model into their data analytics systems, organizations enable professionals to input data requests in natural language. For instance, an analyst could input, "Show the trend of online sales growth over the past five years," and the system would instantly convert this request into a SQL query, retrieve the data, and even integrate it into visualization tools for immediate insight generation. This functionality not only accelerates the analytical processes but also democratizes data-driven insights across different organizational departments, allowing even non-technical staff to leverage the power of real-time data analytics without deep knowledge of SQL. 3. Enhancing CMS Interfaces Scenario: Content Management Systems (CMS) are often non-intuitive for non-technical content managers when it comes to complex data retrieval or database management. Use Case: CMS providers can leverage your model to enhance their system's backend interface. Content managers can use natural language to request specific data, like "Find all blog posts in May 2023 with more than 500 views," and the model will generate the appropriate SQL to retrieve the information. This feature makes database management more accessible, efficient, and user-friendly. 4. Customer Support Optimization Scenario: Customer support centers often need to retrieve client or product information stored in databases while resolving tickets or inquiries, requiring basic knowledge of SQL. Use Case: Your model can be integrated into support ticketing systems, enabling support personnel to type requests in natural language, such as "Show all open tickets from customers in New York filed this month," and immediately receive the data needed to expedite their resolution process, improving customer service efficiency and response time. 5. Data Journalism and Research Scenario: Journalists and researchers frequently rely on complex databases to gather insights and data points necessary for their work but may lack the technical know-how of SQL. Use Case: By integrating your text-to-SQL model into research software or journalistic tools, professionals can query databases using natural language. For example, a journalist might input, "Retrieve the average household income in Texas in 2022," and your model would facilitate immediate access to this data, allowing for more efficient research and data-driven storytelling. Contributing We welcome contributions to help improve the model or address issues. Please feel free to submit pull requests or open issues to discuss changes or improvements. ### Acknowledgments We'd like to thank the open-source community and the researchers whose foundational work laid the path to this model.
6,240
[ [ -0.01432037353515625, -0.08642578125, 0.0264129638671875, 0.0252685546875, -0.025970458984375, -0.01306915283203125, -0.0088653564453125, -0.040283203125, 0.00125885009765625, 0.05303955078125, -0.055450439453125, -0.041900634765625, -0.027008056640625, 0.01290130615234375, -0.043212890625, 0.07684326171875, 0.0173187255859375, 0.01032257080078125, -0.0263519287109375, 0.01033782958984375, -0.0215911865234375, -0.061920166015625, -0.04644775390625, 0.0028533935546875, 0.007335662841796875, 0.0142974853515625, 0.0484619140625, 0.0406494140625, 0.038421630859375, 0.0278167724609375, 0.002948760986328125, 0.0160675048828125, -0.031158447265625, 0.01142120361328125, -0.0168304443359375, -0.042144775390625, -0.036407470703125, 0.0008807182312011719, 0.0168914794921875, 0.0498046875, -0.01715087890625, 0.01296234130859375, -0.005290985107421875, 0.07049560546875, -0.0171966552734375, 0.01396942138671875, -0.05047607421875, -0.008453369140625, -0.00001239776611328125, -0.0023708343505859375, -0.029266357421875, -0.048675537109375, 0.021087646484375, -0.031524658203125, 0.0148162841796875, 0.0139312744140625, 0.07196044921875, 0.0098114013671875, -0.0474853515625, -0.031463623046875, -0.05645751953125, 0.051422119140625, -0.055145263671875, 0.02349853515625, 0.0166778564453125, 0.032501220703125, -0.0014200210571289062, -0.050689697265625, -0.05096435546875, -0.02642822265625, -0.0223236083984375, -0.009613037109375, -0.00797271728515625, -0.00664520263671875, 0.01995849609375, 0.0272369384765625, -0.04486083984375, -0.0123443603515625, -0.024169921875, 0.008270263671875, 0.06756591796875, 0.033966064453125, 0.0196990966796875, -0.033355712890625, -0.0298614501953125, 0.002475738525390625, -0.037994384765625, -0.004314422607421875, 0.01568603515625, 0.0460205078125, -0.0146484375, 0.06488037109375, -0.034820556640625, 0.06817626953125, 0.01446533203125, 0.01052093505859375, 0.0033702850341796875, -0.058013916015625, -0.0248260498046875, -0.01611328125, 0.076171875, 0.0266571044921875, 0.021881103515625, -0.0198516845703125, -0.017578125, -0.007740020751953125, 0.019012451171875, -0.069580078125, -0.006866455078125, 0.0303497314453125, -0.039154052734375, -0.02764892578125, -0.00904083251953125, -0.07183837890625, -0.02056884765625, -0.0433349609375, 0.036590576171875, -0.03887939453125, -0.021484375, -0.006687164306640625, -0.0055084228515625, 0.0230255126953125, 0.0296630859375, -0.057342529296875, 0.0286407470703125, 0.02294921875, 0.061859130859375, -0.0254974365234375, 0.01123809814453125, -0.01441192626953125, 0.0031490325927734375, -0.027008056640625, 0.052978515625, -0.017852783203125, -0.0277557373046875, 0.00794219970703125, 0.00794219970703125, -0.031158447265625, -0.051239013671875, 0.0243988037109375, -0.039093017578125, 0.0377197265625, -0.01406097412109375, -0.054443359375, -0.0021915435791015625, 0.01233673095703125, -0.04412841796875, 0.08929443359375, 0.013458251953125, -0.0440673828125, 0.0189361572265625, -0.050994873046875, -0.0294189453125, 0.0027179718017578125, 0.000008225440979003906, -0.035675048828125, -0.0011882781982421875, 0.0172576904296875, 0.04656982421875, -0.040985107421875, 0.0362548828125, -0.01253509521484375, -0.006153106689453125, 0.0163421630859375, -0.002529144287109375, 0.07354736328125, 0.022796630859375, -0.019866943359375, -0.0029964447021484375, -0.061309814453125, -0.0023059844970703125, 0.024383544921875, -0.03277587890625, -0.01404571533203125, 0.0020618438720703125, 0.0250701904296875, 0.019439697265625, 0.022003173828125, -0.0260772705078125, 0.0177154541015625, -0.04248046875, 0.032501220703125, 0.0214691162109375, 0.01032257080078125, 0.0423583984375, -0.00746917724609375, 0.03564453125, 0.0196990966796875, 0.0022716522216796875, -0.01456451416015625, -0.0166778564453125, -0.0474853515625, 0.0023899078369140625, 0.0199432373046875, 0.060577392578125, -0.06695556640625, 0.040863037109375, -0.01024627685546875, -0.04827880859375, -0.033416748046875, 0.0014276504516601562, 0.01198577880859375, 0.04205322265625, 0.034759521484375, -0.005126953125, -0.044342041015625, -0.0567626953125, -0.0491943359375, -0.0019330978393554688, -0.004154205322265625, 0.03631591796875, 0.0474853515625, 0.00021767616271972656, 0.081298828125, -0.05096435546875, -0.031280517578125, -0.037017822265625, -0.002498626708984375, 0.020751953125, 0.047698974609375, 0.035247802734375, -0.0703125, -0.03802490234375, -0.0026798248291015625, -0.0733642578125, 0.01080322265625, -0.017730712890625, -0.0197296142578125, 0.04705810546875, 0.03729248046875, -0.068115234375, 0.04119873046875, 0.01457977294921875, -0.041900634765625, 0.051605224609375, 0.00222015380859375, 0.00908660888671875, -0.099609375, 0.021636962890625, 0.0186004638671875, -0.01525115966796875, -0.054718017578125, -0.0194091796875, 0.0021877288818359375, -0.0282440185546875, -0.024688720703125, 0.035125732421875, -0.040985107421875, 0.00867462158203125, 0.0106353759765625, 0.0042266845703125, 0.000995635986328125, 0.0305023193359375, 0.014007568359375, 0.056243896484375, 0.026885986328125, -0.0711669921875, 0.029510498046875, 0.037139892578125, -0.0277252197265625, 0.0660400390625, -0.061492919921875, 0.0007967948913574219, -0.01145172119140625, 0.013214111328125, -0.07049560546875, -0.0265655517578125, 0.0143585205078125, -0.054168701171875, 0.0166778564453125, -0.00676727294921875, -0.04144287109375, -0.033782958984375, -0.0013933181762695312, -0.0176544189453125, 0.0237579345703125, -0.031829833984375, 0.06005859375, 0.0298614501953125, -0.0199432373046875, -0.0227813720703125, -0.052764892578125, 0.0215301513671875, -0.021240234375, -0.049102783203125, 0.0301666259765625, -0.0018711090087890625, -0.0183563232421875, 0.0002913475036621094, 0.00922393798828125, -0.031402587890625, -0.00861358642578125, -0.00201416015625, 0.05078125, -0.016571044921875, 0.021759033203125, 0.008209228515625, 0.0106353759765625, 0.011505126953125, -0.01235198974609375, 0.04119873046875, 0.0019254684448242188, 0.003383636474609375, -0.045074462890625, 0.039398193359375, 0.040313720703125, -0.0205841064453125, 0.08636474609375, 0.039520263671875, -0.041168212890625, 0.0035495758056640625, -0.058441162109375, -0.0276031494140625, -0.034271240234375, 0.035186767578125, -0.02008056640625, -0.035247802734375, 0.024505615234375, -0.0034198760986328125, 0.004302978515625, 0.05181884765625, 0.043182373046875, -0.00995635986328125, 0.0972900390625, 0.053619384765625, 0.01029205322265625, 0.03741455078125, -0.016387939453125, 0.0214691162109375, -0.0308685302734375, -0.052978515625, -0.0660400390625, 0.012298583984375, -0.0304412841796875, -0.01302337646484375, 0.0150909423828125, -0.0015878677368164062, -0.01898193359375, 0.043212890625, -0.05535888671875, 0.01226806640625, 0.0147247314453125, 0.0123748779296875, 0.0345458984375, 0.004878997802734375, 0.0204315185546875, -0.02008056640625, -0.04193115234375, -0.040557861328125, 0.06341552734375, 0.017333984375, 0.0679931640625, 0.0045928955078125, 0.04266357421875, 0.021453857421875, 0.0112152099609375, -0.0469970703125, 0.04632568359375, -0.006931304931640625, -0.0694580078125, -0.004405975341796875, -0.0460205078125, -0.058013916015625, 0.0131378173828125, -0.0309600830078125, -0.0498046875, 0.0293426513671875, 0.00806427001953125, -0.018524169921875, 0.006504058837890625, -0.08001708984375, 0.07574462890625, -0.019989013671875, -0.036590576171875, -0.0002161264419555664, -0.051513671875, 0.0291595458984375, 0.008544921875, 0.0110015869140625, -0.008880615234375, -0.0069122314453125, 0.0570068359375, -0.037872314453125, 0.06884765625, -0.024444580078125, 0.01263427734375, 0.0251922607421875, -0.0024433135986328125, 0.0252838134765625, -0.01058197021484375, -0.0241851806640625, -0.007266998291015625, 0.0297393798828125, -0.0163726806640625, -0.0384521484375, 0.04498291015625, -0.04217529296875, -0.0255584716796875, -0.03021240234375, -0.039337158203125, -0.01030731201171875, 0.00940704345703125, 0.01116943359375, 0.0191192626953125, -0.032806396484375, 0.0164947509765625, 0.046783447265625, -0.03045654296875, 0.03399658203125, 0.0406494140625, -0.0198822021484375, -0.016815185546875, 0.050567626953125, 0.02447509765625, 0.0186767578125, 0.0282745361328125, -0.01129150390625, -0.055023193359375, -0.0212249755859375, -0.055511474609375, 0.0276031494140625, -0.0311126708984375, -0.033172607421875, -0.08709716796875, -0.011688232421875, -0.051116943359375, 0.0070037841796875, -0.0183868408203125, -0.0367431640625, -0.043212890625, 0.005523681640625, 0.0455322265625, 0.052886962890625, 0.02703857421875, 0.031341552734375, -0.053009033203125, 0.0167083740234375, 0.00728607177734375, 0.0180816650390625, -0.0027179718017578125, -0.036407470703125, -0.0258026123046875, -0.00583648681640625, -0.02642822265625, -0.08782958984375, 0.0579833984375, 0.0229949951171875, 0.0229339599609375, 0.00879669189453125, 0.00518035888671875, 0.048370361328125, -0.025115966796875, 0.059814453125, -0.004878997802734375, -0.06707763671875, 0.062469482421875, -0.034881591796875, 0.0118408203125, 0.051727294921875, 0.050567626953125, -0.0261383056640625, 0.0029048919677734375, -0.03955078125, -0.06671142578125, 0.060302734375, 0.01288604736328125, 0.0194091796875, 0.003726959228515625, 0.043914794921875, -0.0054168701171875, 0.043182373046875, -0.062042236328125, -0.011383056640625, -0.006771087646484375, -0.0223236083984375, 0.009796142578125, -0.00498199462890625, 0.01303863525390625, -0.04132080078125, 0.05169677734375, -0.007617950439453125, 0.038787841796875, 0.0193328857421875, -0.0175628662109375, 0.010040283203125, 0.00736236572265625, 0.007049560546875, 0.04425048828125, -0.0183868408203125, -0.0251312255859375, 0.01519775390625, -0.024261474609375, -0.0194091796875, 0.033843994140625, -0.0089263916015625, 0.0118255615234375, -0.0133209228515625, 0.049346923828125, -0.004390716552734375, -0.0531005859375, 0.034149169921875, -0.00676727294921875, 0.0030689239501953125, -0.0299224853515625, -0.006099700927734375, 0.035064697265625, -0.00042366981506347656, 0.033905029296875, -0.01189422607421875, 0.0176849365234375, -0.054901123046875, 0.0164642333984375, 0.040771484375, -0.03802490234375, -0.00994110107421875, 0.06658935546875, 0.0124053955078125, -0.0281829833984375, 0.054718017578125, 0.0012636184692382812, -0.0253448486328125, 0.05267333984375, 0.047943115234375, 0.041900634765625, -0.031707763671875, 0.0189361572265625, 0.042236328125, 0.016876220703125, 0.00014030933380126953, 0.0260772705078125, 0.006336212158203125, -0.032135009765625, -0.024871826171875, -0.053924560546875, -0.0223388671875, -0.00890350341796875, -0.05743408203125, 0.036773681640625, -0.020721435546875, -0.015411376953125, 0.01258087158203125, 0.00609588623046875, -0.06036376953125, 0.036163330078125, -0.0254364013671875, 0.0843505859375, -0.06292724609375, 0.05517578125, 0.043121337890625, -0.05975341796875, -0.05096435546875, -0.0287628173828125, -0.0031108856201171875, -0.05267333984375, 0.032958984375, 0.012054443359375, 0.022247314453125, 0.006916046142578125, -0.0609130859375, -0.037200927734375, 0.077880859375, 0.01351165771484375, -0.038543701171875, -0.0240325927734375, 0.0245513916015625, 0.051544189453125, -0.054656982421875, 0.024627685546875, 0.07232666015625, 0.0194091796875, 0.0070343017578125, -0.04656982421875, 0.0185089111328125, -0.01126861572265625, 0.008056640625, 0.007541656494140625, -0.029144287109375, 0.062164306640625, -0.02447509765625, -0.00803375244140625, 0.00826263427734375, 0.054656982421875, -0.0026988983154296875, 0.0293731689453125, 0.03118896484375, 0.030059814453125, 0.04498291015625, -0.00826263427734375, 0.093994140625, -0.01325225830078125, 0.0238037109375, 0.0694580078125, -0.00251007080078125, 0.07171630859375, 0.0292816162109375, -0.031707763671875, 0.04364013671875, 0.052581787109375, -0.006282806396484375, 0.0208587646484375, -0.007198333740234375, -0.0239715576171875, -0.00603485107421875, -0.023193359375, -0.031890869140625, 0.0187530517578125, 0.03643798828125, -0.037628173828125, -0.0024890899658203125, -0.00930023193359375, 0.0180511474609375, 0.00910186767578125, -0.001964569091796875, 0.0809326171875, 0.011138916015625, -0.044342041015625, 0.039154052734375, -0.00917816162109375, 0.050048828125, -0.051116943359375, 0.001796722412109375, -0.0166778564453125, 0.004703521728515625, -0.027862548828125, -0.04730224609375, 0.05487060546875, 0.00351715087890625, -0.01061248779296875, -0.0010023117065429688, 0.06842041015625, -0.0555419921875, -0.04522705078125, 0.009521484375, 0.05816650390625, 0.01556396484375, -0.038665771484375, -0.07232666015625, -0.005126953125, 0.0074462890625, -0.026123046875, 0.022613525390625, 0.035186767578125, 0.011322021484375, 0.050262451171875, 0.051361083984375, -0.0011348724365234375, -0.0037403106689453125, -0.007793426513671875, 0.07061767578125, -0.06597900390625, -0.02606201171875, -0.0615234375, 0.04296875, -0.029876708984375, -0.01303863525390625, 0.053436279296875, 0.054473876953125, 0.035125732421875, -0.015045166015625, 0.054779052734375, -0.026336669921875, 0.06195068359375, -0.023651123046875, 0.06439208984375, -0.052093505859375, 0.01406097412109375, -0.0219573974609375, -0.06768798828125, -0.0111236572265625, 0.034149169921875, -0.0310821533203125, 0.0109100341796875, 0.0399169921875, 0.0684814453125, 0.013824462890625, 0.0106658935546875, 0.007228851318359375, 0.0279083251953125, 0.0146484375, 0.0108489990234375, 0.0401611328125, -0.0440673828125, 0.056365966796875, -0.02227783203125, -0.01457977294921875, -0.0182952880859375, -0.052459716796875, -0.07122802734375, -0.05523681640625, -0.0274658203125, -0.0477294921875, 0.01328277587890625, 0.07373046875, 0.04791259765625, -0.062469482421875, -0.0309600830078125, 0.001819610595703125, 0.0019121170043945312, -0.00640106201171875, -0.0278778076171875, 0.0230255126953125, -0.036102294921875, -0.0653076171875, 0.0064239501953125, -0.0003914833068847656, 0.01104736328125, -0.0157928466796875, 0.0237274169921875, -0.033599853515625, 0.016021728515625, 0.06390380859375, 0.00853729248046875, -0.0223388671875, 0.01201629638671875, 0.02606201171875, -0.0211639404296875, 0.0090484619140625, 0.04803466796875, -0.06451416015625, 0.0226593017578125, 0.033843994140625, 0.0523681640625, 0.060882568359375, 0.01390838623046875, 0.04833984375, -0.03839111328125, -0.010833740234375, 0.0234527587890625, 0.0032253265380859375, 0.04364013671875, -0.062042236328125, 0.04119873046875, 0.0234222412109375, -0.039581298828125, -0.05975341796875, -0.002899169921875, -0.07806396484375, -0.020172119140625, 0.074951171875, 0.01444244384765625, -0.022796630859375, -0.0252685546875, -0.025054931640625, 0.0204315185546875, -0.04266357421875, 0.061370849609375, 0.0391845703125, -0.0208740234375, -0.00997161865234375, -0.061676025390625, 0.04791259765625, 0.02978515625, -0.085205078125, 0.0038776397705078125, 0.033477783203125, 0.0276031494140625, -0.007167816162109375, 0.05010986328125, -0.0308990478515625, -0.0027008056640625, -0.00824737548828125, 0.00902557373046875, 0.01605224609375, 0.004276275634765625, -0.0198516845703125, 0.009613037109375, -0.0233001708984375, -0.005855560302734375 ] ]
minh21/XLNet-Toxic-Comment
2023-10-27T11:25:35.000Z
[ "transformers", "pytorch", "xlnet", "text-classification", "generated_from_trainer", "license:mit", "endpoints_compatible", "region:us" ]
text-classification
minh21
null
null
minh21/XLNet-Toxic-Comment
0
2
transformers
2023-10-27T11:25:16
--- license: mit base_model: xlnet-base-cased tags: - generated_from_trainer metrics: - accuracy - precision - recall - f1 model-index: - name: XLNet-Toxic-Comment 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. --> # XLNet-Toxic-Comment This model is a fine-tuned version of [xlnet-base-cased](https://huggingface.co/xlnet-base-cased) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.4431 - Rmse: 0.3106 - Accuracy: 0.9035 - Precision: 0.0 - Recall: 0.0 - F1: 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: 3e-05 - train_batch_size: 2 - eval_batch_size: 2 - 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 | Rmse | Accuracy | Precision | Recall | F1 | |:-------------:|:-----:|:------:|:---------------:|:------:|:--------:|:---------:|:------:|:---:| | 0.4641 | 1.0 | 61873 | 0.5115 | 0.3106 | 0.9035 | 0.0 | 0.0 | 0.0 | | 0.5065 | 2.0 | 123746 | 0.4431 | 0.3106 | 0.9035 | 0.0 | 0.0 | 0.0 | | 0.5033 | 3.0 | 185619 | 0.4734 | 0.3106 | 0.9035 | 0.0 | 0.0 | 0.0 | | 0.5004 | 4.0 | 247492 | 0.4710 | 0.3106 | 0.9035 | 0.0 | 0.0 | 0.0 | ### Framework versions - Transformers 4.35.0.dev0 - Pytorch 2.0.0 - Datasets 2.1.0 - Tokenizers 0.14.1
1,842
[ [ -0.0303802490234375, -0.0281219482421875, 0.00856781005859375, 0.005077362060546875, -0.017059326171875, -0.0293121337890625, 0.0052337646484375, -0.0159759521484375, 0.0213165283203125, 0.0369873046875, -0.04644775390625, -0.053192138671875, -0.049072265625, -0.00015306472778320312, -0.02276611328125, 0.0877685546875, 0.01059722900390625, 0.00930023193359375, 0.0029773712158203125, -0.01148223876953125, -0.0306243896484375, -0.043914794921875, -0.07037353515625, -0.042724609375, 0.035980224609375, 0.0289764404296875, 0.06256103515625, 0.0621337890625, 0.0283050537109375, 0.01873779296875, -0.033233642578125, -0.00844573974609375, -0.038177490234375, -0.033416748046875, 0.0005774497985839844, -0.03399658203125, -0.06109619140625, 0.0008945465087890625, 0.036346435546875, 0.035430908203125, -0.01412200927734375, 0.03668212890625, 0.0013456344604492188, 0.039825439453125, -0.03912353515625, 0.015289306640625, -0.035186767578125, 0.042449951171875, -0.0028820037841796875, -0.0284881591796875, -0.024169921875, 0.00327301025390625, 0.002124786376953125, -0.04205322265625, 0.026397705078125, 0.005199432373046875, 0.0888671875, 0.0173797607421875, -0.037353515625, 0.02227783203125, -0.0423583984375, 0.054779052734375, -0.06298828125, 0.0127410888671875, 0.0288543701171875, 0.02093505859375, 0.01299285888671875, -0.061065673828125, -0.034332275390625, 0.004779815673828125, -0.01161956787109375, 0.0252838134765625, -0.01500701904296875, 0.00446319580078125, 0.052337646484375, 0.03369140625, -0.04833984375, 0.02093505859375, -0.041748046875, -0.026336669921875, 0.0440673828125, 0.039337158203125, -0.007144927978515625, -0.0252838134765625, -0.035797119140625, -0.006015777587890625, -0.030670166015625, 0.0122528076171875, 0.03985595703125, 0.024932861328125, -0.0267333984375, 0.046630859375, -0.0180206298828125, 0.0498046875, 0.00466156005859375, -0.00734710693359375, 0.053497314453125, -0.01025390625, -0.035186767578125, 0.006481170654296875, 0.06451416015625, 0.052398681640625, 0.0084075927734375, 0.0088043212890625, -0.024169921875, -0.0133514404296875, 0.029754638671875, -0.07904052734375, -0.0202484130859375, 0.024566650390625, -0.054229736328125, -0.052947998046875, 0.003631591796875, -0.04443359375, 0.0136871337890625, -0.026397705078125, 0.039459228515625, -0.0261993408203125, -0.025360107421875, 0.003940582275390625, -0.003925323486328125, 0.0207672119140625, 0.005535125732421875, -0.054779052734375, 0.034332275390625, 0.034454345703125, 0.055572509765625, 0.005710601806640625, -0.010284423828125, -0.01465606689453125, -0.007015228271484375, -0.03790283203125, 0.03863525390625, -0.0091400146484375, -0.029937744140625, -0.01454925537109375, 0.0196990966796875, -0.0102081298828125, -0.037689208984375, 0.06109619140625, -0.024658203125, 0.014129638671875, -0.00949859619140625, -0.04620361328125, -0.0225372314453125, 0.02850341796875, -0.055694580078125, 0.08624267578125, 0.009552001953125, -0.06829833984375, 0.0400390625, -0.046417236328125, -0.0006527900695800781, -0.004367828369140625, -0.00820159912109375, -0.0697021484375, -0.0175628662109375, -0.00724029541015625, 0.029876708984375, -0.01456451416015625, 0.01546478271484375, -0.0250701904296875, -0.041259765625, -0.006191253662109375, -0.036956787109375, 0.078369140625, 0.0198822021484375, -0.044281005859375, 0.01442718505859375, -0.08331298828125, 0.03466796875, 0.0149688720703125, -0.0242919921875, 0.01210784912109375, -0.03045654296875, 0.029876708984375, 0.0311279296875, 0.01062774658203125, -0.031524658203125, -0.003261566162109375, -0.021942138671875, 0.0231475830078125, 0.052032470703125, 0.006591796875, 0.0038623809814453125, -0.045166015625, 0.024322509765625, 0.031768798828125, 0.0284881591796875, 0.00901031494140625, -0.03900146484375, -0.06646728515625, -0.0014753341674804688, 0.0173492431640625, 0.039825439453125, -0.0296783447265625, 0.06146240234375, -0.0071258544921875, -0.050872802734375, 0.0009121894836425781, 0.006153106689453125, 0.036102294921875, 0.052520751953125, 0.0281982421875, -0.01116943359375, -0.0345458984375, -0.09320068359375, 0.010589599609375, -0.00568389892578125, 0.0110931396484375, 0.03448486328125, 0.05810546875, -0.0133514404296875, 0.05780029296875, -0.039642333984375, -0.024993896484375, -0.0090484619140625, 0.00604248046875, 0.046905517578125, 0.05157470703125, 0.06536865234375, -0.037811279296875, -0.0301513671875, -0.002410888671875, -0.0565185546875, 0.0157928466796875, -0.004497528076171875, -0.0239715576171875, 0.004505157470703125, 0.0230712890625, -0.032318115234375, 0.05328369140625, 0.0283966064453125, -0.033294677734375, 0.06268310546875, -0.02801513671875, -0.007965087890625, -0.09619140625, 0.034515380859375, 0.01082611083984375, -0.017242431640625, -0.03668212890625, -0.00611114501953125, 0.0170745849609375, -0.01015472412109375, -0.0369873046875, 0.04071044921875, -0.0125274658203125, 0.016845703125, -0.006801605224609375, -0.0236968994140625, 0.00435638427734375, 0.05706787109375, 0.0220184326171875, 0.04718017578125, 0.052734375, -0.034912109375, 0.03118896484375, 0.023193359375, -0.02447509765625, 0.0391845703125, -0.06427001953125, 0.01029205322265625, 0.00011914968490600586, -0.001194000244140625, -0.04693603515625, -0.002902984619140625, 0.0247344970703125, -0.031463623046875, 0.0208892822265625, -0.0184478759765625, -0.0175323486328125, -0.03765869140625, -0.01238250732421875, 0.0181121826171875, 0.031982421875, -0.0268707275390625, 0.0232696533203125, -0.01187896728515625, 0.0204315185546875, -0.0565185546875, -0.060546875, -0.006252288818359375, -0.01242828369140625, -0.031341552734375, 0.024444580078125, -0.00902557373046875, 0.0031719207763671875, 0.00457000732421875, -0.01491546630859375, -0.0252532958984375, -0.0073089599609375, 0.0245819091796875, 0.0225067138671875, -0.0255279541015625, -0.020111083984375, -0.00917816162109375, -0.02801513671875, 0.0217132568359375, -0.00809478759765625, 0.03338623046875, -0.005214691162109375, -0.0177764892578125, -0.05804443359375, 0.007537841796875, 0.041717529296875, 0.00214385986328125, 0.06646728515625, 0.04638671875, -0.037139892578125, -0.01438140869140625, -0.02191162109375, -0.01177215576171875, -0.033416748046875, 0.04254150390625, -0.0322265625, -0.0251617431640625, 0.063720703125, 0.01538848876953125, 0.0031909942626953125, 0.0665283203125, 0.02801513671875, 0.01029205322265625, 0.080810546875, 0.0156707763671875, -0.0034961700439453125, 0.01332855224609375, -0.071533203125, -0.00699615478515625, -0.060943603515625, -0.03399658203125, -0.034088134765625, -0.0262908935546875, -0.047332763671875, 0.00928497314453125, 0.01543426513671875, -0.007144927978515625, -0.06329345703125, 0.0306243896484375, -0.03857421875, 0.02105712890625, 0.056549072265625, 0.0380859375, -0.0020351409912109375, -0.002506256103515625, -0.034332275390625, 0.0015630722045898438, -0.0673828125, -0.0256500244140625, 0.09765625, 0.0238189697265625, 0.038421630859375, 0.0015363693237304688, 0.050750732421875, 0.00830841064453125, 0.0157012939453125, -0.04608154296875, 0.0283050537109375, 0.00025081634521484375, -0.07598876953125, -0.0109100341796875, -0.048614501953125, -0.0625, 0.01381683349609375, -0.026397705078125, -0.053802490234375, 0.026611328125, 0.018096923828125, -0.04254150390625, 0.050567626953125, -0.0384521484375, 0.085693359375, -0.01983642578125, -0.0372314453125, 0.003391265869140625, -0.041290283203125, 0.015777587890625, -0.005779266357421875, -0.00791168212890625, 0.00830841064453125, 0.00992584228515625, 0.0638427734375, -0.058929443359375, 0.052398681640625, -0.017303466796875, 0.0237274169921875, 0.0248565673828125, -0.00286865234375, 0.0458984375, 0.01593017578125, -0.0181884765625, 0.0236358642578125, 0.0068511962890625, -0.0438232421875, -0.026702880859375, 0.05389404296875, -0.0865478515625, -0.0256500244140625, -0.050506591796875, -0.02667236328125, 0.002887725830078125, 0.032379150390625, 0.04852294921875, 0.05767822265625, 0.00807952880859375, 0.0276031494140625, 0.04364013671875, -0.0185699462890625, 0.0285797119140625, 0.0274810791015625, -0.0045318603515625, -0.048736572265625, 0.061309814453125, 0.009368896484375, 0.0248565673828125, 0.007175445556640625, 0.00555419921875, -0.0259857177734375, -0.0364990234375, -0.03350830078125, 0.0050811767578125, -0.0491943359375, -0.03045654296875, -0.033599853515625, -0.052154541015625, -0.02294921875, -0.00019097328186035156, -0.036468505859375, -0.020599365234375, -0.04193115234375, -0.0235137939453125, 0.032470703125, 0.038116455078125, -0.006710052490234375, 0.029754638671875, -0.046112060546875, -0.00539398193359375, 0.011138916015625, 0.045684814453125, 0.0027179718017578125, -0.06109619140625, -0.0164794921875, 0.004974365234375, -0.031494140625, -0.0533447265625, 0.04852294921875, 0.0021419525146484375, 0.05218505859375, 0.052978515625, -0.00609588623046875, 0.057525634765625, -0.0206146240234375, 0.056060791015625, 0.02874755859375, -0.04833984375, 0.0256195068359375, -0.02294921875, 0.01380157470703125, 0.03558349609375, 0.034881591796875, -0.027587890625, 0.0003159046173095703, -0.08551025390625, -0.0682373046875, 0.07928466796875, 0.03857421875, 0.005992889404296875, 0.0016927719116210938, 0.038360595703125, -0.0175628662109375, 0.01200103759765625, -0.0682373046875, -0.0662841796875, -0.0286102294921875, -0.00283050537109375, -0.004520416259765625, -0.029876708984375, -0.00811004638671875, -0.040008544921875, 0.06951904296875, 0.0006952285766601562, 0.02978515625, 0.0107574462890625, 0.0175933837890625, -0.007495880126953125, -0.00457763671875, 0.044891357421875, 0.050140380859375, -0.049072265625, -0.00070953369140625, 0.016082763671875, -0.033477783203125, 0.00457000732421875, 0.004634857177734375, -0.011322021484375, 0.005367279052734375, 0.026763916015625, 0.06842041015625, 0.01073455810546875, -0.006977081298828125, 0.0413818359375, -0.003574371337890625, -0.0428466796875, -0.046600341796875, 0.0127105712890625, -0.00853729248046875, 0.00691986083984375, 0.018890380859375, 0.04205322265625, 0.01186370849609375, -0.01187896728515625, 0.0245361328125, 0.016571044921875, -0.04876708984375, -0.00914764404296875, 0.063232421875, -0.00037217140197753906, -0.018218994140625, 0.058319091796875, -0.01441192626953125, -0.025421142578125, 0.07989501953125, 0.04010009765625, 0.060028076171875, -0.00995635986328125, 0.004642486572265625, 0.06951904296875, 0.018829345703125, -0.0033550262451171875, 0.034515380859375, 0.0124359130859375, -0.043365478515625, -0.017181396484375, -0.045867919921875, -0.01538848876953125, 0.04833984375, -0.08251953125, 0.032379150390625, -0.0367431640625, -0.0438232421875, 0.01788330078125, 0.0093994140625, -0.060943603515625, 0.04248046875, 0.0045623779296875, 0.09173583984375, -0.06951904296875, 0.04766845703125, 0.042205810546875, -0.03558349609375, -0.080810546875, -0.0297088623046875, -0.004604339599609375, -0.0609130859375, 0.05908203125, 0.0063629150390625, 0.0265350341796875, 0.00644683837890625, -0.033416748046875, -0.07049560546875, 0.08782958984375, 0.01277923583984375, -0.045074462890625, 0.0189971923828125, 0.02685546875, 0.041595458984375, 0.0004916191101074219, 0.05963134765625, 0.01197052001953125, 0.0264739990234375, 0.01593017578125, -0.0728759765625, 0.00604248046875, -0.045654296875, 0.00799560546875, 0.0021457672119140625, -0.058258056640625, 0.07916259765625, -0.002185821533203125, 0.0234222412109375, 0.0075836181640625, 0.035186767578125, 0.0140838623046875, 0.012908935546875, 0.036468505859375, 0.07196044921875, 0.0330810546875, -0.011444091796875, 0.06658935546875, -0.046600341796875, 0.0552978515625, 0.0745849609375, -0.003047943115234375, 0.03802490234375, 0.01654052734375, -0.0173797607421875, 0.033203125, 0.065673828125, -0.0162200927734375, 0.01788330078125, 0.01421356201171875, -0.00482177734375, -0.03167724609375, 0.0205078125, -0.044952392578125, 0.0133056640625, 0.005939483642578125, -0.05853271484375, -0.02862548828125, -0.02655029296875, 0.01081085205078125, -0.023223876953125, -0.037078857421875, 0.03839111328125, -0.01366424560546875, -0.0276031494140625, 0.058135986328125, 0.003131866455078125, 0.029754638671875, -0.0404052734375, -0.01473236083984375, -0.016693115234375, 0.030670166015625, -0.034332275390625, -0.054840087890625, 0.0259857177734375, -0.00844573974609375, -0.01485443115234375, 0.0020503997802734375, 0.0285797119140625, -0.0006160736083984375, -0.0643310546875, 0.0175933837890625, 0.018768310546875, 0.0091705322265625, 0.004955291748046875, -0.0745849609375, -0.014892578125, -0.0008893013000488281, -0.0382080078125, 0.01386260986328125, 0.026763916015625, 0.0029449462890625, 0.048828125, 0.0460205078125, 0.001926422119140625, 0.0028057098388671875, 0.006168365478515625, 0.072265625, -0.050445556640625, -0.041168212890625, -0.04559326171875, 0.034759521484375, -0.022705078125, -0.06005859375, 0.044708251953125, 0.083740234375, 0.053192138671875, -0.00540924072265625, 0.04547119140625, -0.000492095947265625, 0.0219573974609375, -0.0299835205078125, 0.056549072265625, -0.04693603515625, -0.00627899169921875, -0.018707275390625, -0.05767822265625, -0.018798828125, 0.050994873046875, -0.018280029296875, 0.02581787109375, 0.046142578125, 0.0697021484375, -0.0057830810546875, 0.0020351409912109375, 0.0256195068359375, 0.018768310546875, 0.006130218505859375, 0.037567138671875, 0.0286102294921875, -0.059417724609375, 0.04443359375, -0.05657958984375, -0.01116943359375, -0.0004057884216308594, -0.05657958984375, -0.06842041015625, -0.0255889892578125, -0.038726806640625, -0.04156494140625, 0.00003135204315185547, 0.070556640625, 0.07098388671875, -0.0687255859375, -0.02215576171875, -0.0130157470703125, -0.0191497802734375, -0.0309295654296875, -0.020050048828125, 0.036956787109375, -0.0131378173828125, -0.0484619140625, -0.01233673095703125, -0.0159759521484375, 0.0161590576171875, -0.0092010498046875, -0.01422119140625, -0.00879669189453125, -0.013214111328125, 0.0197296142578125, 0.004009246826171875, -0.024139404296875, -0.0269317626953125, 0.00389862060546875, -0.006641387939453125, 0.018951416015625, 0.01447296142578125, -0.03302001953125, 0.0213165283203125, 0.0217437744140625, 0.0079345703125, 0.05963134765625, -0.01235198974609375, 0.0088958740234375, -0.052093505859375, 0.021514892578125, 0.0157928466796875, 0.03759765625, -0.0058135986328125, -0.034698486328125, 0.03240966796875, 0.0307464599609375, -0.043670654296875, -0.054290771484375, -0.0157012939453125, -0.0802001953125, 0.002010345458984375, 0.0931396484375, -0.00531005859375, -0.03662109375, 0.006542205810546875, -0.01032257080078125, 0.0093994140625, -0.0238494873046875, 0.03619384765625, 0.040618896484375, -0.0162353515625, -0.00388336181640625, -0.043914794921875, 0.0340576171875, 0.0185699462890625, -0.04302978515625, -0.017974853515625, 0.0235595703125, 0.045013427734375, 0.014617919921875, 0.02252197265625, -0.0144500732421875, 0.019134521484375, 0.0189056396484375, 0.0242156982421875, -0.028533935546875, -0.01248931884765625, -0.0150146484375, 0.00811004638671875, -0.004547119140625, -0.025482177734375 ] ]
A-Funakoshi/bert-base-japanese-v3-wrime-v2
2023-10-27T12:16:22.000Z
[ "transformers", "pytorch", "bert", "text-classification", "ja", "endpoints_compatible", "region:us" ]
text-classification
A-Funakoshi
null
null
A-Funakoshi/bert-base-japanese-v3-wrime-v2
0
2
transformers
2023-10-27T12:05:45
--- language: - ja metrics: - accuracy - f1 --- - ベースモデル:cl-tohoku/bert-base-japanese-whole-word-masking - データセット:llm-book/wrime-sentiment - オプティマイザ: adamw - Optunaでハイパーパラメータ探索 - 学習率スケジュールのタイプ(lr_scheduler_type): constant, linear, cosine - 学習率(learning rate): 1e-6 ~ 1e-4 - バッチサイズ(per_device_train_batch_size): 16, 32, 64, 128, 256 - 正則化(weight_decay): 1e-6 ~ 1e-1 - Optunaでの探索結果は以下 - 学習率スケジュールタイプ(lr_scheduler_type): cosine - 学習率(learning rate): 3.912141264809884e-05 - バッチサイズ(per_device_train_batch_size): 128 - 正則化(weight_decay): 5.220051265759252e-05 - Epoch: 100 - EarlyStopping: early_stopping_patience=3 このハイパーパラメータを使って再度finetuningした.
663
[ [ -0.048675537109375, -0.06475830078125, 0.018829345703125, 0.032379150390625, -0.05902099609375, -0.0104827880859375, -0.0201416015625, -0.0202484130859375, 0.0302886962890625, 0.01136016845703125, -0.056610107421875, -0.031585693359375, -0.045318603515625, 0.01171112060546875, -0.00033354759216308594, 0.07159423828125, -0.0204010009765625, 0.0153045654296875, 0.0157318115234375, 0.007007598876953125, -0.036712646484375, -0.0361328125, -0.07012939453125, -0.0479736328125, 0.0247955322265625, 0.0148162841796875, 0.032806396484375, 0.03912353515625, 0.0404052734375, 0.01375579833984375, 0.004322052001953125, -0.0202484130859375, -0.031219482421875, -0.00337982177734375, 0.0218048095703125, -0.047882080078125, -0.0282745361328125, -0.0231170654296875, 0.063720703125, 0.055633544921875, 0.0109710693359375, 0.01088714599609375, 0.01146697998046875, 0.06640625, -0.0259246826171875, 0.03692626953125, -0.023101806640625, 0.03436279296875, -0.0247039794921875, -0.0096893310546875, -0.0305633544921875, -0.019989013671875, -0.020843505859375, -0.07568359375, 0.006595611572265625, 0.00830078125, 0.09832763671875, 0.0140533447265625, 0.006519317626953125, -0.005474090576171875, -0.032623291015625, 0.07232666015625, -0.043121337890625, 0.0249786376953125, 0.038421630859375, 0.013519287109375, 0.00070953369140625, -0.04437255859375, -0.039398193359375, 0.01166534423828125, 0.004604339599609375, 0.038604736328125, 0.0084686279296875, 0.0013866424560546875, 0.0213623046875, 0.02410888671875, -0.0174407958984375, 0.0238189697265625, -0.0186309814453125, -0.0290985107421875, 0.036346435546875, 0.004322052001953125, 0.0181121826171875, -0.010009765625, -0.037506103515625, -0.0281219482421875, -0.0284423828125, 0.01251983642578125, 0.03387451171875, 0.006168365478515625, -0.0150299072265625, 0.0361328125, -0.0240020751953125, 0.029083251953125, -0.005428314208984375, -0.047119140625, 0.03363037109375, -0.00251007080078125, -0.050079345703125, 0.0036258697509765625, 0.052337646484375, 0.01947021484375, 0.0126800537109375, -0.01348114013671875, -0.0170745849609375, 0.004802703857421875, -0.0058746337890625, -0.053955078125, -0.00879669189453125, -0.0015439987182617188, -0.040985107421875, -0.007503509521484375, 0.019317626953125, -0.060699462890625, 0.01505279541015625, -0.01541900634765625, 0.05364990234375, -0.0589599609375, -0.01111602783203125, 0.01288604736328125, -0.004425048828125, 0.029266357421875, 0.03167724609375, -0.0200958251953125, 0.01369476318359375, 0.0233917236328125, 0.042694091796875, -0.005184173583984375, -0.0172576904296875, 0.019134521484375, 0.008453369140625, -0.0132293701171875, 0.034210205078125, -0.0010290145874023438, -0.04888916015625, 0.0028705596923828125, 0.015716552734375, -0.0259857177734375, -0.0119476318359375, 0.059906005859375, -0.048095703125, 0.040618896484375, -0.0227203369140625, -0.055450439453125, -0.043304443359375, 0.01206207275390625, -0.0439453125, 0.08074951171875, -0.0018186569213867188, -0.051971435546875, 0.0178680419921875, -0.039215087890625, -0.04290771484375, 0.0302276611328125, -0.0002617835998535156, -0.039306640625, -0.0157928466796875, 0.0004749298095703125, 0.039031982421875, 0.0096435546875, 0.016082763671875, 0.007717132568359375, -0.02154541015625, 0.0357666015625, -0.039398193359375, 0.06396484375, 0.023223876953125, -0.0343017578125, -0.01654052734375, -0.06683349609375, 0.004268646240234375, 0.03204345703125, -0.0301971435546875, -0.024566650390625, -0.007236480712890625, 0.015777587890625, 0.00498199462890625, 0.06402587890625, -0.047271728515625, 0.01369476318359375, -0.0232391357421875, 0.0200042724609375, 0.0799560546875, 0.00946044921875, 0.008209228515625, -0.042022705078125, 0.050048828125, 0.017059326171875, 0.01450347900390625, -0.01320648193359375, -0.048370361328125, -0.08612060546875, -0.032257080078125, 0.009521484375, 0.047607421875, -0.05419921875, 0.0654296875, -0.023162841796875, -0.040863037109375, -0.03326416015625, -0.00445556640625, 0.04052734375, 0.040679931640625, 0.034820556640625, -0.039794921875, -0.033599853515625, -0.0513916015625, -0.0008783340454101562, 0.002384185791015625, 0.006931304931640625, 0.007049560546875, 0.0293426513671875, -0.0227813720703125, 0.0268707275390625, -0.051513671875, -0.031036376953125, -0.010589599609375, 0.0013427734375, 0.057830810546875, 0.019744873046875, 0.0027790069580078125, -0.03643798828125, -0.0389404296875, -0.0283050537109375, -0.050048828125, 0.0048065185546875, -0.017822265625, -0.03216552734375, 0.03985595703125, 0.0198211669921875, -0.02886962890625, 0.0254364013671875, 0.004802703857421875, -0.02874755859375, 0.029083251953125, -0.01490020751953125, -0.01224517822265625, -0.0791015625, 0.00537109375, 0.0030364990234375, -0.00222015380859375, -0.028564453125, 0.01519775390625, -0.006687164306640625, 0.0233612060546875, -0.03973388671875, 0.04583740234375, -0.036468505859375, 0.01922607421875, 0.00890350341796875, 0.0291290283203125, -0.00304412841796875, 0.047821044921875, -0.0015411376953125, 0.050689697265625, 0.0307464599609375, -0.06268310546875, 0.0244598388671875, 0.01251983642578125, -0.037841796875, -0.0005788803100585938, -0.0361328125, -0.0114288330078125, 0.0038433074951171875, 0.00251007080078125, -0.0731201171875, -0.0057830810546875, 0.027313232421875, -0.020111083984375, 0.0511474609375, 0.0179901123046875, -0.05401611328125, -0.0164947509765625, -0.035552978515625, 0.024627685546875, 0.046966552734375, -0.0276947021484375, 0.0132293701171875, 0.01113128662109375, 0.0009179115295410156, -0.058685302734375, -0.056610107421875, -0.01132965087890625, -0.007472991943359375, -0.0253448486328125, 0.044403076171875, -0.01393890380859375, 0.0111083984375, -0.0177154541015625, -0.0028476715087890625, 0.0010995864868164062, 0.0005102157592773438, -0.002269744873046875, 0.042816162109375, -0.00933837890625, 0.0010814666748046875, -0.0136566162109375, -0.0077362060546875, 0.0175628662109375, 0.01024627685546875, 0.0670166015625, 0.0036563873291015625, -0.01373291015625, -0.0293426513671875, -0.005237579345703125, 0.0186767578125, 0.035064697265625, 0.04168701171875, 0.0684814453125, -0.0231170654296875, -0.002758026123046875, -0.038299560546875, 0.0013217926025390625, -0.035125732421875, 0.039031982421875, -0.03955078125, -0.033721923828125, 0.0423583984375, 0.01251983642578125, -0.0133209228515625, 0.0673828125, 0.0310516357421875, -0.0115203857421875, 0.053680419921875, 0.0255279541015625, -0.0274505615234375, 0.03961181640625, -0.032196044921875, 0.015411376953125, -0.0740966796875, -0.04730224609375, -0.018707275390625, -0.03472900390625, -0.054931640625, -0.0064239501953125, 0.02130126953125, 0.006320953369140625, -0.034393310546875, 0.0274810791015625, -0.058837890625, 0.00860595703125, 0.052520751953125, 0.035400390625, 0.00823974609375, 0.0027923583984375, -0.01462554931640625, -0.0181884765625, -0.036285400390625, -0.01507568359375, 0.076416015625, 0.047210693359375, 0.0535888671875, 0.01392364501953125, 0.0648193359375, 0.0121002197265625, -0.0071563720703125, -0.06842041015625, 0.072265625, -0.004734039306640625, -0.048919677734375, -0.0307464599609375, -0.018035888671875, -0.08148193359375, 0.0136871337890625, -0.00554656982421875, -0.0467529296875, -0.00933837890625, -0.0361328125, 0.00617218017578125, 0.0293426513671875, -0.033172607421875, 0.045440673828125, -0.033447265625, -0.0230560302734375, -0.004764556884765625, -0.05072021484375, 0.023101806640625, -0.0080718994140625, 0.0255279541015625, -0.01467132568359375, -0.010894775390625, 0.10113525390625, -0.01739501953125, 0.0712890625, -0.0243682861328125, -0.0018291473388671875, 0.007293701171875, 0.0034542083740234375, 0.0224151611328125, -0.00232696533203125, 0.020477294921875, 0.0232696533203125, 0.00336456298828125, -0.036712646484375, 0.01151275634765625, 0.0389404296875, -0.09576416015625, -0.021087646484375, -0.06890869140625, -0.0350341796875, 0.006267547607421875, 0.041412353515625, 0.055816650390625, 0.0261993408203125, -0.0128021240234375, 0.013397216796875, 0.0740966796875, -0.020477294921875, 0.0628662109375, 0.0391845703125, -0.0280303955078125, -0.040985107421875, 0.0755615234375, 0.03363037109375, 0.0031681060791015625, 0.057220458984375, 0.01030731201171875, -0.0237274169921875, -0.01525115966796875, -0.01543426513671875, 0.04193115234375, -0.050079345703125, -0.0218048095703125, -0.039764404296875, -0.0311126708984375, -0.0196990966796875, -0.00753021240234375, -0.004093170166015625, -0.040985107421875, -0.0418701171875, 0.0036468505859375, 0.021209716796875, 0.01715087890625, 0.0178985595703125, 0.03424072265625, -0.048797607421875, 0.028228759765625, -0.00505828857421875, 0.02520751953125, -0.00099945068359375, -0.0653076171875, -0.03509521484375, -0.01088714599609375, -0.04840087890625, -0.0577392578125, 0.047210693359375, 0.0194549560546875, 0.051971435546875, 0.0498046875, 0.004825592041015625, 0.04217529296875, -0.0174102783203125, 0.07781982421875, 0.036895751953125, -0.06268310546875, 0.03485107421875, -0.0166473388671875, 0.025970458984375, 0.021881103515625, 0.040130615234375, -0.0250396728515625, -0.01806640625, -0.07757568359375, -0.08001708984375, 0.048614501953125, -0.005199432373046875, 0.012176513671875, 0.01275634765625, 0.004634857177734375, 0.011474609375, 0.0218353271484375, -0.08575439453125, -0.050689697265625, -0.0233154296875, -0.029571533203125, 0.00316619873046875, -0.0256195068359375, -0.0004448890686035156, -0.029052734375, 0.09442138671875, 0.017120361328125, 0.0631103515625, 0.01104736328125, -0.01468658447265625, -0.004245758056640625, 0.030609130859375, 0.062744140625, 0.0238494873046875, -0.035614013671875, -0.0096435546875, 0.007228851318359375, -0.06915283203125, -0.006145477294921875, 0.01039886474609375, -0.0235137939453125, 0.027679443359375, 0.0421142578125, 0.0670166015625, 0.0224151611328125, -0.021942138671875, 0.0262451171875, 0.01097869873046875, -0.0081634521484375, -0.05731201171875, 0.005550384521484375, -0.0234375, -0.0191650390625, 0.04693603515625, -0.0209503173828125, -0.0024356842041015625, -0.03521728515625, -0.005298614501953125, 0.0291290283203125, -0.01122283935546875, -0.0028171539306640625, 0.03460693359375, 0.004512786865234375, -0.0071868896484375, 0.03460693359375, -0.0156402587890625, -0.051055908203125, 0.055084228515625, 0.050018310546875, 0.07537841796875, -0.01100921630859375, -0.0088043212890625, 0.052490234375, 0.0269622802734375, -0.007049560546875, 0.034698486328125, 0.007354736328125, -0.06341552734375, -0.024566650390625, -0.06451416015625, -0.0304412841796875, 0.032806396484375, -0.07232666015625, 0.019134521484375, -0.038604736328125, -0.0285797119140625, -0.005283355712890625, 0.032745361328125, -0.05291748046875, 0.0447998046875, 0.0073699951171875, 0.07818603515625, -0.056976318359375, 0.08795166015625, 0.052825927734375, -0.04046630859375, -0.058929443359375, -0.0044403076171875, -0.029571533203125, -0.09136962890625, 0.050689697265625, 0.014739990234375, 0.014373779296875, 0.0010328292846679688, -0.025604248046875, -0.061309814453125, 0.08502197265625, -0.019134521484375, -0.04608154296875, -0.00640106201171875, -0.00290679931640625, 0.03863525390625, -0.00920867919921875, 0.0121307373046875, 0.0132598876953125, 0.051055908203125, -0.0159149169921875, -0.042755126953125, -0.001194000244140625, -0.019378662109375, 0.00537109375, 0.031829833984375, -0.06024169921875, 0.07318115234375, 0.01267242431640625, -0.01288604736328125, -0.017303466796875, 0.047637939453125, -0.0008258819580078125, 0.038299560546875, 0.0211029052734375, 0.061737060546875, 0.0286102294921875, -0.0302581787109375, 0.05462646484375, -0.033294677734375, 0.0294189453125, 0.04547119140625, 0.01396942138671875, 0.04925537109375, 0.03765869140625, -0.0654296875, 0.04437255859375, 0.052001953125, -0.02203369140625, 0.05792236328125, -0.008453369140625, -0.01355743408203125, 0.0019445419311523438, 0.012054443359375, -0.03912353515625, 0.001651763916015625, 0.03155517578125, -0.0261383056640625, 0.006011962890625, 0.01080322265625, 0.04974365234375, -0.0225067138671875, -0.02972412109375, 0.06268310546875, 0.0201873779296875, -0.06439208984375, 0.048309326171875, 0.01288604736328125, 0.0714111328125, -0.058197021484375, 0.023193359375, -0.01507568359375, 0.025543212890625, -0.004299163818359375, -0.07464599609375, -0.003063201904296875, -0.01983642578125, -0.019927978515625, -0.01244354248046875, 0.03936767578125, -0.01555633544921875, -0.050994873046875, 0.0305023193359375, 0.00923919677734375, 0.0261993408203125, 0.03704833984375, -0.060699462890625, 0.005176544189453125, 0.025787353515625, -0.0364990234375, 0.037322998046875, 0.01300048828125, 0.0188140869140625, 0.0308837890625, 0.0408935546875, 0.01358795166015625, 0.020172119140625, 0.0011339187622070312, 0.037017822265625, -0.0457763671875, -0.0443115234375, -0.058929443359375, 0.019256591796875, -0.002902984619140625, -0.0307769775390625, 0.058837890625, 0.038818359375, 0.07672119140625, -0.0184173583984375, 0.055419921875, -0.01090240478515625, 0.037261962890625, -0.05438232421875, 0.03570556640625, -0.031524658203125, 0.00830078125, -0.01387786865234375, -0.07037353515625, -0.00670623779296875, 0.058502197265625, 0.0042724609375, 0.005832672119140625, 0.065185546875, 0.0216827392578125, 0.01374053955078125, -0.006072998046875, 0.0283966064453125, 0.0245513916015625, 0.0028247833251953125, 0.06640625, 0.014312744140625, -0.0665283203125, 0.023681640625, -0.05810546875, -0.01303863525390625, -0.03997802734375, -0.060028076171875, -0.05438232421875, -0.0391845703125, -0.043426513671875, -0.042755126953125, -0.0124359130859375, 0.05548095703125, 0.002826690673828125, -0.05908203125, -0.0194549560546875, -0.0038127899169921875, -0.01003265380859375, -0.03192138671875, -0.024505615234375, 0.050201416015625, -0.03765869140625, -0.0518798828125, 0.01331329345703125, -0.02215576171875, -0.00312042236328125, -0.0130767822265625, -0.0088653564453125, -0.01541900634765625, 0.00960540771484375, 0.0308380126953125, 0.01470947265625, -0.05322265625, 0.001316070556640625, 0.0026836395263671875, -0.0269775390625, 0.006473541259765625, 0.005157470703125, -0.03204345703125, 0.036834716796875, 0.03900146484375, 0.01031494140625, 0.058837890625, -0.0274505615234375, -0.0035552978515625, -0.06005859375, 0.0258941650390625, 0.00824737548828125, 0.051849365234375, 0.0169677734375, -0.029571533203125, 0.05010986328125, 0.0518798828125, -0.042510986328125, -0.055389404296875, 0.002605438232421875, -0.09100341796875, -0.024688720703125, 0.0821533203125, -0.007049560546875, -0.0238189697265625, 0.013519287109375, -0.01151275634765625, 0.058685302734375, -0.0223236083984375, 0.057586669921875, 0.07318115234375, -0.0018968582153320312, -0.0037784576416015625, -0.044097900390625, 0.007598876953125, 0.03155517578125, -0.039520263671875, -0.055633544921875, 0.0161590576171875, 0.0306549072265625, 0.031982421875, 0.044891357421875, -0.00787353515625, -0.0003612041473388672, -0.002986907958984375, 0.029876708984375, -0.01168060302734375, -0.00772857666015625, -0.01139068603515625, -0.0021381378173828125, -0.00411224365234375, -0.04931640625 ] ]
s-man2099/gpl-2500
2023-10-27T14:51:48.000Z
[ "transformers", "tf", "pegasus", "text2text-generation", "generated_from_keras_callback", "autotrain_compatible", "endpoints_compatible", "region:us" ]
text2text-generation
s-man2099
null
null
s-man2099/gpl-2500
0
2
transformers
2023-10-27T12:28:15
--- base_model: google/pegasus-large tags: - generated_from_keras_callback model-index: - name: s-man2099/gpl-2500 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. --> # s-man2099/gpl-2500 This model is a fine-tuned version of [google/pegasus-large](https://huggingface.co/google/pegasus-large) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 3.0929 - Validation Loss: 3.4296 - Epoch: 9 ## 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': 'Adafactor', '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': 6e-06, 'beta_2_decay': -0.8, 'epsilon_1': 1e-30, 'epsilon_2': 0.001, 'clip_threshold': 1.0, 'relative_step': True} - training_precision: mixed_float16 ### Training results | Train Loss | Validation Loss | Epoch | |:----------:|:---------------:|:-----:| | 3.8496 | 3.4449 | 0 | | 3.5895 | 3.4074 | 1 | | 3.4644 | 3.3950 | 2 | | 3.3848 | 3.3998 | 3 | | 3.3088 | 3.4040 | 4 | | 3.2404 | 3.4086 | 5 | | 3.1828 | 3.4154 | 6 | | 3.1157 | 3.4240 | 7 | | 3.1111 | 3.4267 | 8 | | 3.0929 | 3.4296 | 9 | ### Framework versions - Transformers 4.34.1 - TensorFlow 2.14.0 - Datasets 2.14.6 - Tokenizers 0.14.1
1,887
[ [ -0.04962158203125, -0.03753662109375, 0.025390625, -0.002376556396484375, -0.035064697265625, -0.03594970703125, -0.00687408447265625, -0.021514892578125, 0.014495849609375, 0.013671875, -0.0587158203125, -0.04119873046875, -0.058013916015625, -0.0172119140625, -0.020751953125, 0.08685302734375, 0.00942230224609375, 0.023529052734375, 0.002262115478515625, -0.005069732666015625, -0.0203399658203125, -0.041717529296875, -0.08502197265625, -0.035858154296875, 0.040679931640625, 0.0100250244140625, 0.058380126953125, 0.072265625, 0.040313720703125, 0.0182037353515625, -0.03924560546875, -0.00324249267578125, -0.03656005859375, -0.046417236328125, 0.004917144775390625, -0.0163726806640625, -0.049041748046875, -0.0024318695068359375, 0.064453125, 0.0340576171875, -0.0191802978515625, 0.03387451171875, 0.0117645263671875, 0.0305328369140625, -0.04156494140625, 0.017913818359375, -0.033905029296875, 0.022369384765625, -0.02386474609375, -0.0003414154052734375, -0.002399444580078125, 0.005146026611328125, 0.004261016845703125, -0.062347412109375, 0.03594970703125, -0.0014886856079101562, 0.0994873046875, 0.032379150390625, -0.018157958984375, -0.0033702850341796875, -0.045654296875, 0.043548583984375, -0.061492919921875, 0.0265350341796875, 0.024810791015625, 0.044403076171875, -0.0094146728515625, -0.0718994140625, -0.04327392578125, -0.004772186279296875, 0.00972747802734375, 0.0095062255859375, -0.015899658203125, -0.005695343017578125, 0.04144287109375, 0.04400634765625, -0.0304107666015625, 0.0225830078125, -0.052459716796875, -0.0261383056640625, 0.04168701171875, 0.0328369140625, -0.016693115234375, -0.007598876953125, -0.0284576416015625, -0.0210113525390625, -0.029754638671875, 0.0224151611328125, 0.05157470703125, 0.021209716796875, -0.025665283203125, 0.040985107421875, -0.0169830322265625, 0.046295166015625, 0.01053619384765625, -0.00748443603515625, 0.04522705078125, 0.00482940673828125, -0.040191650390625, 0.0142822265625, 0.06787109375, 0.04302978515625, -0.0013828277587890625, 0.01552581787109375, -0.0194549560546875, -0.0134735107421875, 0.02606201171875, -0.0748291015625, -0.00809478759765625, 0.0091400146484375, -0.04412841796875, -0.041473388671875, 0.0022678375244140625, -0.0528564453125, 0.0007534027099609375, -0.0223388671875, 0.041748046875, -0.0226898193359375, 0.0004291534423828125, 0.018096923828125, -0.003910064697265625, 0.0276947021484375, 0.00801849365234375, -0.06402587890625, 0.0264739990234375, 0.059326171875, 0.0426025390625, 0.017822265625, -0.0301666259765625, -0.0217132568359375, -0.0008993148803710938, -0.02508544921875, 0.0247344970703125, -0.0229644775390625, -0.031951904296875, -0.01407623291015625, 0.03515625, -0.0003848075866699219, -0.0229034423828125, 0.0869140625, -0.031585693359375, 0.0294647216796875, -0.031646728515625, -0.049468994140625, -0.0284271240234375, 0.0152587890625, -0.0555419921875, 0.07952880859375, -0.01250457763671875, -0.059478759765625, 0.050994873046875, -0.036102294921875, -0.0018930435180664062, -0.0026454925537109375, -0.00553131103515625, -0.071044921875, -0.00801849365234375, 0.01363372802734375, 0.042388916015625, -0.0241851806640625, 0.01239776611328125, -0.037261962890625, -0.039154052734375, -0.0231170654296875, -0.037689208984375, 0.055145263671875, 0.0228271484375, -0.04119873046875, 0.0018987655639648438, -0.081298828125, 0.00360107421875, 0.028656005859375, -0.03021240234375, 0.00951385498046875, -0.0190582275390625, 0.0190887451171875, 0.0190887451171875, 0.0231781005859375, -0.042236328125, 0.006999969482421875, -0.022552490234375, 0.0295257568359375, 0.0545654296875, 0.010986328125, -0.0017499923706054688, -0.0271453857421875, 0.0197601318359375, 0.01166534423828125, 0.0282745361328125, 0.007762908935546875, -0.052093505859375, -0.0650634765625, -0.011627197265625, 0.0177459716796875, 0.0107269287109375, -0.01474761962890625, 0.05657958984375, -0.006023406982421875, -0.06414794921875, -0.03271484375, 0.0009083747863769531, 0.0299835205078125, 0.06658935546875, 0.028533935546875, -0.01142120361328125, -0.0243072509765625, -0.0897216796875, 0.01157379150390625, 0.002994537353515625, 0.01413726806640625, 0.0251007080078125, 0.049957275390625, -0.0146484375, 0.03680419921875, -0.036407470703125, -0.0133514404296875, 0.0144195556640625, -0.0033206939697265625, 0.034515380859375, 0.0489501953125, 0.047088623046875, -0.0430908203125, -0.00818634033203125, -0.00595855712890625, -0.046417236328125, 0.022674560546875, -0.00522613525390625, -0.01654052734375, -0.0011663436889648438, 0.019805908203125, -0.039947509765625, 0.037689208984375, 0.0224761962890625, -0.034088134765625, 0.047576904296875, -0.043701171875, -0.00943756103515625, -0.0850830078125, 0.039764404296875, 0.0186614990234375, 0.0027103424072265625, -0.0187530517578125, 0.0086669921875, 0.0090484619140625, -0.0168914794921875, -0.035552978515625, 0.0484619140625, 0.0009598731994628906, -0.007091522216796875, -0.0030956268310546875, -0.035430908203125, -0.003421783447265625, 0.05743408203125, 0.0181732177734375, 0.0400390625, 0.046173095703125, -0.043914794921875, 0.03253173828125, 0.0235748291015625, -0.034271240234375, 0.0299072265625, -0.06793212890625, 0.004108428955078125, -0.0137939453125, 0.0021724700927734375, -0.050994873046875, -0.027008056640625, 0.03729248046875, -0.0286865234375, 0.01068115234375, -0.018585205078125, -0.0234222412109375, -0.040557861328125, -0.0062713623046875, 0.01904296875, 0.0428466796875, -0.046875, 0.023468017578125, 0.0016527175903320312, 0.016754150390625, -0.060272216796875, -0.054229736328125, -0.01468658447265625, -0.0216827392578125, -0.0297088623046875, 0.03009033203125, -0.0065460205078125, 0.016510009765625, 0.01016998291015625, 0.004955291748046875, -0.01166534423828125, 0.00014483928680419922, 0.036163330078125, 0.0272216796875, -0.01204681396484375, -0.006328582763671875, 0.0038509368896484375, -0.024993896484375, 0.01947021484375, -0.00798797607421875, 0.0430908203125, -0.02044677734375, -0.03472900390625, -0.05804443359375, -0.0160064697265625, 0.05078125, -0.007076263427734375, 0.055816650390625, 0.062347412109375, -0.047515869140625, -0.0005655288696289062, -0.0222625732421875, -0.001251220703125, -0.0352783203125, 0.04156494140625, -0.038238525390625, -0.0289306640625, 0.060211181640625, 0.0178985595703125, 0.0170440673828125, 0.0858154296875, 0.051116943359375, 0.007465362548828125, 0.078125, 0.0157012939453125, -0.0175323486328125, 0.005908966064453125, -0.05084228515625, -0.02423095703125, -0.0528564453125, -0.048248291015625, -0.03692626953125, -0.031463623046875, -0.044158935546875, 0.00445556640625, 0.0206146240234375, 0.00754547119140625, -0.062469482421875, 0.0159149169921875, -0.047943115234375, 0.02618408203125, 0.057342529296875, 0.0260772705078125, -0.00482940673828125, 0.0038280487060546875, -0.0396728515625, -0.005565643310546875, -0.05633544921875, -0.0252227783203125, 0.0955810546875, 0.046630859375, 0.029571533203125, -0.0156402587890625, 0.0455322265625, 0.007465362548828125, 0.006359100341796875, -0.051483154296875, 0.034332275390625, -0.0005812644958496094, -0.061126708984375, -0.0234222412109375, -0.032958984375, -0.06787109375, 0.0079803466796875, -0.03033447265625, -0.028533935546875, 0.017364501953125, 0.015350341796875, -0.03619384765625, 0.0390625, -0.022735595703125, 0.08404541015625, -0.0042572021484375, -0.0222320556640625, -0.0135498046875, -0.03277587890625, 0.0237274169921875, -0.01096343994140625, -0.00643157958984375, 0.0009655952453613281, 0.0026073455810546875, 0.0732421875, -0.060699462890625, 0.044769287109375, -0.03240966796875, 0.0036182403564453125, 0.01611328125, -0.0231781005859375, 0.045654296875, 0.0027179718017578125, -0.00902557373046875, 0.0108489990234375, -0.0032749176025390625, -0.042724609375, -0.0276336669921875, 0.058441162109375, -0.0885009765625, -0.017669677734375, -0.0263519287109375, -0.0174407958984375, -0.0025691986083984375, 0.02593994140625, 0.055908203125, 0.051513671875, -0.0013189315795898438, 0.01287841796875, 0.03314208984375, -0.00295257568359375, 0.038360595703125, 0.0157928466796875, 0.004589080810546875, -0.059722900390625, 0.059112548828125, -0.0007805824279785156, -0.0008678436279296875, -0.017333984375, 0.01064300537109375, -0.032867431640625, -0.036163330078125, -0.046295166015625, 0.02252197265625, -0.05743408203125, 0.0011625289916992188, -0.0110626220703125, -0.03192138671875, -0.014556884765625, -0.003345489501953125, -0.0399169921875, -0.0266265869140625, -0.039764404296875, -0.005023956298828125, 0.00745391845703125, 0.041046142578125, 0.0057373046875, 0.038787841796875, -0.05364990234375, -0.0033283233642578125, 0.028900146484375, 0.034759521484375, 0.0237579345703125, -0.06884765625, -0.02294921875, 0.0016527175903320312, -0.0294036865234375, -0.03680419921875, 0.0308074951171875, 0.00539398193359375, 0.0653076171875, 0.06195068359375, -0.0279083251953125, 0.06439208984375, -0.034515380859375, 0.06103515625, 0.023834228515625, -0.04217529296875, 0.0180816650390625, -0.02276611328125, 0.013427734375, 0.037322998046875, 0.04742431640625, -0.0212554931640625, 0.0009965896606445312, -0.0906982421875, -0.04473876953125, 0.05712890625, 0.019195556640625, 0.0007877349853515625, 0.00682830810546875, 0.046661376953125, -0.00734710693359375, 0.00931549072265625, -0.046875, -0.047210693359375, -0.020965576171875, -0.00670623779296875, -0.017822265625, -0.022674560546875, -0.0103607177734375, -0.036376953125, 0.080078125, 0.0106048583984375, 0.0269012451171875, 0.00829315185546875, 0.0284576416015625, -0.01535797119140625, -0.01259613037109375, 0.05078125, 0.03973388671875, -0.038055419921875, -0.008392333984375, 0.0194091796875, -0.0450439453125, -0.002750396728515625, 0.03662109375, -0.0027828216552734375, -0.0009813308715820312, 0.02294921875, 0.07574462890625, 0.0075531005859375, -0.0127716064453125, 0.033782958984375, -0.0036525726318359375, -0.037750244140625, -0.031829833984375, 0.009979248046875, -0.00910186767578125, 0.0207061767578125, 0.01947021484375, 0.019500732421875, 0.0119476318359375, -0.01110076904296875, 0.01541900634765625, 0.025787353515625, -0.037139892578125, -0.0224151611328125, 0.08209228515625, -0.0011234283447265625, -0.0149383544921875, 0.046844482421875, -0.013580322265625, -0.0200653076171875, 0.06842041015625, 0.021392822265625, 0.06280517578125, -0.0147857666015625, -0.0060272216796875, 0.0567626953125, 0.0156707763671875, -0.01158905029296875, 0.0230255126953125, 0.00421905517578125, -0.044586181640625, -0.028778076171875, -0.051849365234375, -0.025970458984375, 0.054595947265625, -0.078857421875, 0.04833984375, -0.044464111328125, -0.031463623046875, 0.03839111328125, 0.021514892578125, -0.059417724609375, 0.042022705078125, 0.032135009765625, 0.09027099609375, -0.059814453125, 0.05999755859375, 0.049407958984375, -0.0208282470703125, -0.0633544921875, -0.0269012451171875, -0.00982666015625, -0.07781982421875, 0.049468994140625, 0.00417327880859375, 0.0203094482421875, 0.006229400634765625, -0.039459228515625, -0.064453125, 0.0885009765625, 0.023956298828125, -0.0465087890625, -0.004932403564453125, 0.025543212890625, 0.036102294921875, 0.0007152557373046875, 0.02679443359375, 0.0177459716796875, 0.0277862548828125, 0.03363037109375, -0.0750732421875, 0.0021953582763671875, -0.0308074951171875, -0.00313568115234375, 0.01540374755859375, -0.066650390625, 0.07073974609375, 0.0084228515625, 0.023651123046875, 0.00783538818359375, 0.0380859375, 0.028045654296875, 0.0225067138671875, 0.035491943359375, 0.090576171875, 0.0521240234375, -0.0008292198181152344, 0.07586669921875, -0.04443359375, 0.051177978515625, 0.0665283203125, 0.018463134765625, 0.04205322265625, 0.019317626953125, -0.01380157470703125, 0.02154541015625, 0.07476806640625, -0.034637451171875, 0.040740966796875, -0.0003719329833984375, -0.004047393798828125, -0.0280303955078125, 0.0266265869140625, -0.048126220703125, 0.016510009765625, 0.01129150390625, -0.05914306640625, -0.03289794921875, -0.0261383056640625, 0.00792694091796875, -0.0355224609375, -0.049957275390625, 0.0282135009765625, -0.0177764892578125, -0.0232086181640625, 0.060516357421875, 0.021331787109375, 0.0221099853515625, -0.0450439453125, -0.00162506103515625, -0.00014257431030273438, 0.0204315185546875, -0.01529693603515625, -0.04766845703125, 0.0162200927734375, -0.0112152099609375, -0.007061004638671875, 0.0186309814453125, 0.040618896484375, -0.003414154052734375, -0.059814453125, -0.001277923583984375, 0.005031585693359375, 0.021240234375, -0.004222869873046875, -0.07391357421875, -0.01076507568359375, -0.0016202926635742188, -0.0382080078125, 0.0102386474609375, 0.0212554931640625, 0.00969696044921875, 0.04827880859375, 0.05194091796875, 0.003520965576171875, 0.00720977783203125, -0.00970458984375, 0.07598876953125, -0.045928955078125, -0.0587158203125, -0.061676025390625, 0.034759521484375, -0.00798797607421875, -0.0677490234375, 0.045654296875, 0.08245849609375, 0.056396484375, -0.003261566162109375, 0.03570556640625, 0.01174163818359375, 0.0204315185546875, -0.040008544921875, 0.0479736328125, -0.045166015625, -0.002803802490234375, -0.00959014892578125, -0.06756591796875, -0.0013246536254882812, 0.036651611328125, -0.02362060546875, 0.009063720703125, 0.01641845703125, 0.05072021484375, -0.011932373046875, 0.01181793212890625, 0.0164031982421875, -0.004116058349609375, 0.0113372802734375, 0.04608154296875, 0.03961181640625, -0.04779052734375, 0.040191650390625, -0.04510498046875, -0.0031452178955078125, 0.004604339599609375, -0.05792236328125, -0.06591796875, -0.039581298828125, -0.024749755859375, -0.028900146484375, -0.007793426513671875, 0.061920166015625, 0.0693359375, -0.045928955078125, -0.002593994140625, -0.0110626220703125, -0.035247802734375, -0.0149383544921875, -0.01329803466796875, 0.05255126953125, -0.01506805419921875, -0.0682373046875, -0.002410888671875, -0.0273284912109375, 0.0267486572265625, -0.0182037353515625, -0.0258941650390625, 0.01444244384765625, -0.01995849609375, 0.00202178955078125, 0.017578125, -0.03338623046875, -0.01491546630859375, -0.0269012451171875, 0.004261016845703125, 0.007701873779296875, 0.01435089111328125, -0.040802001953125, 0.0283660888671875, 0.01079559326171875, 0.04241943359375, 0.073974609375, -0.0081024169921875, 0.0094757080078125, -0.04638671875, 0.0254974365234375, 0.003452301025390625, 0.042938232421875, -0.00878143310546875, -0.0386962890625, 0.0256805419921875, 0.03289794921875, -0.04901123046875, -0.05352783203125, -0.0249786376953125, -0.07525634765625, 0.002094268798828125, 0.07904052734375, -0.0020580291748046875, -0.02886962890625, 0.034576416015625, -0.004901885986328125, 0.0184783935546875, -0.0232696533203125, 0.04620361328125, 0.062164306640625, -0.0013751983642578125, 0.0026416778564453125, -0.04248046875, 0.049102783203125, 0.0177764892578125, -0.042694091796875, -0.0224609375, 0.02728271484375, 0.034576416015625, 0.0112457275390625, 0.0139007568359375, -0.00812530517578125, 0.0305938720703125, 0.00798797607421875, 0.0172119140625, -0.04547119140625, -0.011260986328125, -0.04632568359375, 0.01493072509765625, 0.00018608570098876953, -0.04486083984375 ] ]
arieg/food_classifier_noaug_streaming
2023-10-29T07:49:02.000Z
[ "transformers", "tf", "vit", "image-classification", "generated_from_keras_callback", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
image-classification
arieg
null
null
arieg/food_classifier_noaug_streaming
0
2
transformers
2023-10-27T12:52:30
--- license: apache-2.0 base_model: google/vit-base-patch16-224-in21k tags: - generated_from_keras_callback model-index: - name: arieg/food_classifier_noaug_streaming 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. --> # arieg/food_classifier_noaug_streaming This model is a fine-tuned version of [google/vit-base-patch16-224-in21k](https://huggingface.co/google/vit-base-patch16-224-in21k) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 0.4578 - Validation Loss: 1.3138 - Train Accuracy: 0.801 - Epoch: 4 ## 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': {'module': 'keras.optimizers.schedules', 'class_name': 'PolynomialDecay', 'config': {'initial_learning_rate': 3e-05, 'decay_steps': 20000, 'end_learning_rate': 0.0, 'power': 1.0, 'cycle': False, 'name': None}, 'registered_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: float32 ### Training results | Train Loss | Validation Loss | Train Accuracy | Epoch | |:----------:|:---------------:|:--------------:|:-----:| | 3.1605 | 2.7599 | 0.602 | 0 | | 1.6013 | 1.9823 | 0.67 | 1 | | 0.9193 | 1.5901 | 0.699 | 2 | | 0.6189 | 1.3822 | 0.712 | 3 | | 0.4578 | 1.3138 | 0.801 | 4 | ### Framework versions - Transformers 4.34.1 - TensorFlow 2.14.0 - Datasets 2.14.6 - Tokenizers 0.14.1
1,944
[ [ -0.037567138671875, -0.035491943359375, 0.01537322998046875, -0.0167694091796875, -0.010467529296875, -0.033416748046875, -0.006175994873046875, -0.0124053955078125, 0.01361846923828125, 0.01555633544921875, -0.04705810546875, -0.039276123046875, -0.0626220703125, -0.0109710693359375, -0.0220947265625, 0.08636474609375, 0.0082244873046875, 0.02655029296875, -0.0156707763671875, -0.01044464111328125, -0.031646728515625, -0.03387451171875, -0.07763671875, -0.048309326171875, 0.0455322265625, 0.02630615234375, 0.059295654296875, 0.0823974609375, 0.03546142578125, 0.0175933837890625, -0.0187835693359375, -0.01100921630859375, -0.0303497314453125, -0.03289794921875, 0.0137481689453125, -0.03802490234375, -0.042938232421875, -0.0090484619140625, 0.049774169921875, 0.0325927734375, -0.01251220703125, 0.048431396484375, 0.00835418701171875, 0.030670166015625, -0.0390625, 0.0243988037109375, -0.03558349609375, 0.0262451171875, -0.0222930908203125, -0.01311492919921875, -0.0095977783203125, -0.0074615478515625, 0.01003265380859375, -0.0401611328125, 0.0273895263671875, -0.01181793212890625, 0.1092529296875, 0.036102294921875, -0.0183563232421875, 0.0010900497436523438, -0.049285888671875, 0.048065185546875, -0.07098388671875, 0.019989013671875, 0.045166015625, 0.033172607421875, -0.006195068359375, -0.06622314453125, -0.03680419921875, 0.0067901611328125, 0.00604248046875, 0.00461578369140625, -0.021148681640625, -0.01251983642578125, 0.03265380859375, 0.045440673828125, -0.039031982421875, 0.01611328125, -0.045654296875, -0.0146636962890625, 0.03765869140625, 0.025421142578125, -0.00879669189453125, -0.0130462646484375, -0.032928466796875, -0.025787353515625, -0.0074462890625, 0.02752685546875, 0.042236328125, 0.0158538818359375, -0.0133819580078125, 0.038665771484375, -0.0277099609375, 0.045318603515625, 0.0017995834350585938, -0.01523590087890625, 0.05859375, 0.002593994140625, -0.039398193359375, 0.01568603515625, 0.0626220703125, 0.048736572265625, 0.0027618408203125, 0.0222625732421875, -0.0141143798828125, -0.000461578369140625, 0.02008056640625, -0.06658935546875, -0.030181884765625, 0.012786865234375, -0.041259765625, -0.054534912109375, -0.00293731689453125, -0.05889892578125, 0.005161285400390625, -0.0172271728515625, 0.042327880859375, -0.02447509765625, -0.01132965087890625, 0.00620269775390625, -0.007366180419921875, 0.03607177734375, 0.0007271766662597656, -0.06182861328125, 0.0293121337890625, 0.0382080078125, 0.04168701171875, 0.0265045166015625, -0.021575927734375, -0.015899658203125, -0.006595611572265625, -0.0152587890625, 0.048309326171875, -0.0347900390625, -0.01678466796875, -0.02606201171875, 0.0302276611328125, -0.01502227783203125, -0.026641845703125, 0.072998046875, -0.021942138671875, 0.021697998046875, -0.0294952392578125, -0.05975341796875, -0.04266357421875, 0.0240478515625, -0.045166015625, 0.08526611328125, -0.0158233642578125, -0.048095703125, 0.051361083984375, -0.038360595703125, -0.0174407958984375, 0.015411376953125, -0.005100250244140625, -0.0703125, -0.017730712890625, 0.01389312744140625, 0.041778564453125, -0.0027179718017578125, 0.016143798828125, -0.033050537109375, -0.0235748291015625, -0.00933837890625, -0.04510498046875, 0.04229736328125, 0.023345947265625, -0.037750244140625, 0.00972747802734375, -0.08160400390625, 0.021881103515625, 0.03765869140625, -0.037872314453125, 0.0031566619873046875, -0.0025081634521484375, 0.015380859375, 0.0011434555053710938, 0.02435302734375, -0.03289794921875, 0.00604248046875, -0.0163421630859375, 0.0401611328125, 0.051239013671875, 0.0157318115234375, 0.004283905029296875, -0.0390625, 0.020599365234375, 0.006984710693359375, 0.029449462890625, -0.004482269287109375, -0.054962158203125, -0.0655517578125, -0.0005269050598144531, 0.026702880859375, 0.0284423828125, -0.00988006591796875, 0.0550537109375, -0.007110595703125, -0.058197021484375, -0.029052734375, 0.006580352783203125, 0.0198974609375, 0.065185546875, 0.025970458984375, -0.00283050537109375, -0.03753662109375, -0.07562255859375, 0.0117645263671875, 0.00885772705078125, 0.0221099853515625, 0.0303497314453125, 0.040374755859375, -0.0165557861328125, 0.036285400390625, -0.042510986328125, -0.01461029052734375, -0.0070648193359375, -0.0038852691650390625, 0.0287933349609375, 0.046295166015625, 0.05908203125, -0.04229736328125, -0.0156707763671875, -0.0025482177734375, -0.052032470703125, 0.024932861328125, 0.0023670196533203125, -0.008209228515625, -0.0126190185546875, 0.02227783203125, -0.0235137939453125, 0.052703857421875, 0.02789306640625, -0.0310211181640625, 0.03253173828125, -0.0194091796875, -0.0009508132934570312, -0.0872802734375, 0.0205078125, 0.01422119140625, -0.013885498046875, -0.028350830078125, -0.0004887580871582031, 0.00408172607421875, -0.0172576904296875, -0.03912353515625, 0.0372314453125, 0.007480621337890625, 0.0084381103515625, -0.00998687744140625, -0.03973388671875, 0.004695892333984375, 0.06402587890625, 0.0017032623291015625, 0.030792236328125, 0.04913330078125, -0.05615234375, 0.0335693359375, 0.020965576171875, -0.0311126708984375, 0.025970458984375, -0.05908203125, -0.004878997802734375, -0.01520538330078125, 0.00347900390625, -0.0699462890625, -0.03619384765625, 0.0482177734375, -0.0335693359375, 0.01175689697265625, -0.029449462890625, -0.0204315185546875, -0.03851318359375, 0.0003407001495361328, 0.02667236328125, 0.0426025390625, -0.039306640625, 0.025848388671875, -0.0022144317626953125, 0.0172882080078125, -0.0426025390625, -0.062469482421875, -0.026824951171875, -0.010986328125, -0.024322509765625, 0.0025043487548828125, -0.00091552734375, 0.01904296875, 0.02435302734375, -0.0140228271484375, -0.0120391845703125, 0.00015461444854736328, 0.0277099609375, 0.0201416015625, -0.023712158203125, 0.0011425018310546875, 0.00518798828125, -0.0068206787109375, 0.0196685791015625, -0.0090179443359375, 0.05694580078125, -0.0207977294921875, -0.0268096923828125, -0.06671142578125, -0.0238494873046875, 0.0445556640625, -0.01462554931640625, 0.047515869140625, 0.06878662109375, -0.050445556640625, 0.006259918212890625, -0.0210418701171875, -0.00305938720703125, -0.033935546875, 0.0340576171875, -0.021728515625, -0.014129638671875, 0.061279296875, 0.01486968994140625, 0.0183258056640625, 0.0765380859375, 0.023681640625, -0.0026531219482421875, 0.07684326171875, -0.0024967193603515625, -0.0003192424774169922, 0.0292205810546875, -0.06011962890625, -0.0079803466796875, -0.0572509765625, -0.057586669921875, -0.039642333984375, -0.045806884765625, -0.04058837890625, 0.002880096435546875, 0.01099395751953125, -0.00543212890625, -0.036102294921875, 0.021575927734375, -0.044708251953125, 0.042877197265625, 0.05145263671875, 0.037078857421875, -0.01520538330078125, 0.0003604888916015625, -0.03265380859375, 0.00543975830078125, -0.06414794921875, -0.0269622802734375, 0.09613037109375, 0.04046630859375, 0.034820556640625, -0.0183563232421875, 0.047027587890625, 0.01087188720703125, 0.0008587837219238281, -0.0587158203125, 0.03277587890625, -0.00569915771484375, -0.05804443359375, -0.01108551025390625, -0.0323486328125, -0.070556640625, 0.002532958984375, -0.0232696533203125, -0.038665771484375, 0.018890380859375, 0.0193328857421875, -0.040069580078125, 0.0550537109375, -0.052337646484375, 0.08935546875, -0.0245208740234375, -0.0235748291015625, -0.00177764892578125, -0.02655029296875, 0.0138397216796875, 0.01082611083984375, -0.005279541015625, -0.0178070068359375, 0.0238494873046875, 0.07940673828125, -0.056396484375, 0.05438232421875, -0.03375244140625, 0.0262908935546875, 0.0213165283203125, -0.0158538818359375, 0.0418701171875, 0.01070404052734375, 0.00090789794921875, 0.016448974609375, 0.0029125213623046875, -0.051055908203125, -0.02825927734375, 0.06549072265625, -0.08502197265625, -0.01143646240234375, -0.043701171875, -0.01505279541015625, 0.0024623870849609375, 0.038818359375, 0.04052734375, 0.05517578125, 0.00734710693359375, 0.021148681640625, 0.04864501953125, 0.0039215087890625, 0.0340576171875, 0.004459381103515625, -0.01171112060546875, -0.058685302734375, 0.0740966796875, 0.0014162063598632812, -0.0015735626220703125, -0.0014286041259765625, 0.0236663818359375, -0.018341064453125, -0.0301361083984375, -0.037384033203125, -0.00655364990234375, -0.05419921875, -0.02655029296875, -0.033416748046875, -0.03955078125, -0.01708984375, 0.0003135204315185547, -0.03997802734375, -0.006259918212890625, -0.052825927734375, -0.020965576171875, 0.0239410400390625, 0.05133056640625, 0.01198577880859375, 0.03826904296875, -0.051422119140625, -0.002750396728515625, 0.0237274169921875, 0.03802490234375, 0.034942626953125, -0.051605224609375, -0.0220947265625, 0.01113128662109375, -0.03363037109375, -0.045654296875, 0.03631591796875, 0.0131072998046875, 0.061981201171875, 0.06268310546875, -0.030792236328125, 0.067138671875, -0.013702392578125, 0.05859375, 0.02166748046875, -0.0347900390625, 0.032501220703125, -0.01483917236328125, 0.040252685546875, 0.044891357421875, 0.044342041015625, -0.0205841064453125, 0.009368896484375, -0.078125, -0.06549072265625, 0.05438232421875, 0.01311492919921875, -0.0013875961303710938, -0.00646209716796875, 0.034881591796875, 0.005443572998046875, 0.01424407958984375, -0.05914306640625, -0.044036865234375, -0.0321044921875, -0.0195159912109375, 0.003814697265625, -0.0158538818359375, 0.012451171875, -0.057159423828125, 0.07525634765625, 0.018341064453125, 0.025115966796875, 0.0124664306640625, 0.0237579345703125, -0.025360107421875, -0.0008673667907714844, 0.046783447265625, 0.03826904296875, -0.03863525390625, 0.002498626708984375, 0.0173797607421875, -0.0382080078125, -0.0039005279541015625, 0.00910186767578125, -0.002986907958984375, -0.00199127197265625, 0.01629638671875, 0.0850830078125, 0.024200439453125, -0.01171875, 0.0303192138671875, -0.0220184326171875, -0.039398193359375, -0.044403076171875, 0.0229034423828125, -0.0213775634765625, 0.0170135498046875, 0.0188140869140625, 0.052276611328125, 0.006160736083984375, -0.00917816162109375, 0.0173187255859375, 0.0137939453125, -0.03265380859375, -0.0255126953125, 0.07159423828125, 0.0004382133483886719, -0.0250396728515625, 0.0638427734375, -0.0207366943359375, -0.0239410400390625, 0.0679931640625, 0.0250396728515625, 0.06585693359375, -0.02276611328125, 0.0024242401123046875, 0.05865478515625, 0.0096893310546875, -0.00933074951171875, 0.0291748046875, -0.0024871826171875, -0.043670654296875, -0.015411376953125, -0.06256103515625, -0.0084228515625, 0.058990478515625, -0.0830078125, 0.04058837890625, -0.0504150390625, -0.034576416015625, 0.0389404296875, 0.01033782958984375, -0.072021484375, 0.02911376953125, 0.02923583984375, 0.0738525390625, -0.07037353515625, 0.056732177734375, 0.05816650390625, -0.019775390625, -0.06536865234375, -0.0137176513671875, -0.01457977294921875, -0.07586669921875, 0.0285186767578125, 0.00786590576171875, 0.0270843505859375, 0.01348114013671875, -0.04522705078125, -0.08197021484375, 0.08935546875, 0.00553131103515625, -0.04400634765625, -0.005950927734375, 0.0186614990234375, 0.034423828125, -0.00009167194366455078, 0.029571533203125, 0.0106658935546875, 0.03814697265625, 0.028564453125, -0.05914306640625, -0.0125274658203125, -0.029876708984375, -0.003955841064453125, 0.0174560546875, -0.06951904296875, 0.056884765625, 0.008941650390625, 0.0133819580078125, 0.0003368854522705078, 0.0367431640625, -0.0033550262451171875, 0.03057861328125, 0.029541015625, 0.08984375, 0.053375244140625, -0.0106353759765625, 0.06927490234375, -0.0233001708984375, 0.04443359375, 0.0775146484375, 0.0094451904296875, 0.04205322265625, 0.0233917236328125, -0.01471710205078125, 0.034759521484375, 0.07684326171875, -0.045989990234375, 0.05096435546875, -0.005504608154296875, 0.0087890625, -0.0218048095703125, 0.01436614990234375, -0.0386962890625, 0.024749755859375, 0.0152740478515625, -0.057159423828125, -0.032684326171875, -0.0115203857421875, 0.01053619384765625, -0.0301361083984375, -0.048675537109375, 0.044403076171875, -0.0263519287109375, -0.02581787109375, 0.049560546875, 0.007080078125, 0.01413726806640625, -0.0455322265625, -0.010833740234375, 0.000640869140625, 0.027008056640625, -0.0341796875, -0.05072021484375, 0.01499176025390625, -0.01611328125, -0.01026153564453125, 0.012847900390625, 0.03631591796875, -0.00732421875, -0.057159423828125, -0.0055999755859375, 0.0074615478515625, 0.0172576904296875, 0.01181793212890625, -0.06658935546875, 0.00177764892578125, 0.0070648193359375, -0.0369873046875, 0.0084381103515625, 0.01165008544921875, 0.0204010009765625, 0.04241943359375, 0.054351806640625, -0.00287628173828125, 0.0268402099609375, -0.01497650146484375, 0.07147216796875, -0.038482666015625, -0.047637939453125, -0.0618896484375, 0.0289306640625, 0.0042266845703125, -0.057861328125, 0.045684814453125, 0.07733154296875, 0.0843505859375, -0.008148193359375, 0.0428466796875, -0.0040435791015625, 0.0077667236328125, -0.03338623046875, 0.04693603515625, -0.044647216796875, -0.00024819374084472656, -0.004695892333984375, -0.050506591796875, 0.001483917236328125, 0.041839599609375, -0.03570556640625, 0.00928497314453125, 0.0286102294921875, 0.039337158203125, -0.019134521484375, 0.0114898681640625, 0.016387939453125, -0.00029349327087402344, 0.002880096435546875, 0.033935546875, 0.035186767578125, -0.060211181640625, 0.041168212890625, -0.047698974609375, -0.0011758804321289062, -0.007007598876953125, -0.03778076171875, -0.06597900390625, -0.0372314453125, -0.034271240234375, -0.01296234130859375, 0.00276947021484375, 0.0660400390625, 0.07342529296875, -0.054931640625, -0.0080413818359375, -0.01284027099609375, -0.02276611328125, -0.032684326171875, -0.022491455078125, 0.02734375, -0.016571044921875, -0.0521240234375, 0.0034809112548828125, -0.0262298583984375, 0.0213623046875, -0.00939178466796875, -0.01473236083984375, -0.0177154541015625, -0.01363372802734375, -0.00002664327621459961, 0.01849365234375, -0.0285797119140625, -0.0165863037109375, -0.0167083740234375, 0.01343536376953125, 0.033416748046875, 0.008392333984375, -0.03875732421875, 0.0260009765625, 0.020599365234375, 0.037078857421875, 0.06451416015625, -0.007366180419921875, -0.0030155181884765625, -0.060638427734375, 0.01033782958984375, 0.01080322265625, 0.03533935546875, -0.00019478797912597656, -0.045074462890625, 0.0141143798828125, 0.0296173095703125, -0.0526123046875, -0.061492919921875, -0.016143798828125, -0.07086181640625, 0.0084381103515625, 0.0765380859375, -0.0008897781372070312, -0.0565185546875, 0.0360107421875, 0.00701904296875, 0.0285797119140625, -0.0338134765625, 0.0399169921875, 0.05072021484375, -0.00875091552734375, -0.00638580322265625, -0.0455322265625, 0.0316162109375, 0.0081939697265625, -0.039703369140625, -0.0283203125, 0.0126800537109375, 0.053741455078125, 0.006114959716796875, -0.0012950897216796875, -0.002544403076171875, 0.019989013671875, 0.01151275634765625, 0.0224151611328125, -0.034759521484375, -0.018157958984375, -0.0298919677734375, 0.0075225830078125, 0.00024628639221191406, -0.056976318359375 ] ]
mmnga/japanese-stablelm-base-gamma-7b-GPTQ-calib-ja-1k
2023-11-03T08:31:40.000Z
[ "transformers", "mistral", "text-generation", "license:apache-2.0", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
mmnga
null
null
mmnga/japanese-stablelm-base-gamma-7b-GPTQ-calib-ja-1k
0
2
transformers
2023-10-27T13:19:35
--- license: apache-2.0 --- # japanese-stablelm-base-gamma-7b-GPTQ-calib-ja-1k stabilityaiさんが公開している、[japanese-stablelm-base-gamma-7b](https://huggingface.co/stabilityai/japanese-stablelm-base-gamma-7b)を、 日本語のキャリブレーションセットで生成したGPTQモデルになります。 キャリブレーションセットは[izumi-lab/wikipedia-ja-20230720](https://huggingface.co/datasets/izumi-lab/wikipedia-ja-20230720)から、 1kほどランダムサンプリングしています。 [mmnga/wikipedia-ja-20230720-1k](https://huggingface.co/datasets/mmnga/wikipedia-ja-20230720-1k) 他のモデルはこちら AWQ [mmnga/japanese-stablelm-base-gamma-7b-AWQ-calib-ja-1k](https://huggingface.co/mmnga/japanese-stablelm-base-gamma-7b-AWQ-calib-ja-1k) [mmnga/japanese-stablelm-instruct-gamma-7b-AWQ-calib-ja-1k](https://huggingface.co/mmnga/japanese-stablelm-instruct-gamma-7b-AWQ-calib-ja-1k) GPTQ [mmnga/japanese-stablelm-base-gamma-7b-GPTQ-calib-ja-1k](https://huggingface.co/mmnga/japanese-stablelm-base-gamma-7b-GPTQ-calib-ja-1k) [mmnga/japanese-stablelm-instruct-gamma-7b-GPTQ-calib-ja-1k](https://huggingface.co/mmnga/japanese-stablelm-instruct-gamma-7b-GPTQ-calib-ja-1k) GGUF 3bモデル [mmnga/japanese-stablelm-3b-4e1t-base-gguf](https://huggingface.co/mmnga/japanese-stablelm-3b-4e1t-base-gguf) [mmnga/japanese-stablelm-3b-4e1t-instruct-gguf](https://huggingface.co/mmnga/japanese-stablelm-3b-4e1t-instruct-gguf) 7bモデル [mmnga/japanese-stablelm-base-gamma-7b-gguf](https://huggingface.co/mmnga/japanese-stablelm-base-gamma-7b-gguf) [mmnga/japanese-stablelm-instruct-gamma-7b-gguf](https://huggingface.co/mmnga/japanese-stablelm-instruct-gamma-7b-gguf) # Usage ~~~Bash pip install auto-gptq==0.4.2 transformers ~~~ **AutoGPTQは現在Mistralに対応していないのでPRを持ってきます** ~~~python !git clone --branch Mistral https://github.com/LaaZa/AutoGPTQ.git !cp "/content/AutoGPTQ/auto_gptq/modeling/__init__.py" "/usr/local/lib/python3.10/dist-packages/auto_gptq/modeling/__init__.py" !cp "/content/AutoGPTQ/auto_gptq/modeling/auto.py" "/usr/local/lib/python3.10/dist-packages/auto_gptq/modeling/auto.py" !cp "/content/AutoGPTQ/auto_gptq/modeling/_const.py" "/usr/local/lib/python3.10/dist-packages/auto_gptq/modeling/_const.py" !cp "/content/AutoGPTQ/auto_gptq/modeling/mistral.py" "/usr/local/lib/python3.10/dist-packages/auto_gptq/modeling/mistral.py" ~~~ ~~~python from auto_gptq import AutoGPTQForCausalLM, BaseQuantizeConfig from transformers import AutoTokenizer model_name_or_path = "mmnga/japanese-stablelm-base-gamma-7b-GPTQ-calib-ja-1k" # Tokenizer tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=True) # Model model = AutoGPTQForCausalLM.from_quantized(model_name_or_path, use_safetensors=True, device="cuda:0", use_auth_token=False) #Your test prompt prompt = """今日の晩御飯のレシピを紹介します。""" print(tokenizer.decode(model.generate(**tokenizer(prompt, return_tensors="pt",add_special_tokens=False).to(model.device), max_new_tokens=100,do_sample=True,top_p=0.95,temperature=0.7)[0])) ~~~
2,920
[ [ -0.041107177734375, -0.049072265625, 0.0151824951171875, 0.0220794677734375, -0.03582763671875, -0.0023708343505859375, 0.00469207763671875, -0.016632080078125, 0.013519287109375, 0.00690460205078125, -0.043853759765625, -0.049957275390625, -0.04736328125, 0.011566162109375, 0.01111602783203125, 0.06561279296875, -0.0128173828125, 0.007701873779296875, 0.0233001708984375, -0.0166778564453125, -0.0211334228515625, -0.047149658203125, -0.055511474609375, -0.02117919921875, 0.0109405517578125, -0.0011072158813476562, 0.0697021484375, 0.042938232421875, 0.0229949951171875, 0.0253753662109375, 0.0081787109375, -0.002658843994140625, -0.0172271728515625, -0.004894256591796875, 0.01385498046875, -0.03179931640625, -0.053619384765625, -0.009490966796875, 0.055938720703125, 0.028656005859375, -0.00891876220703125, 0.0145111083984375, -0.00226593017578125, 0.032440185546875, -0.027862548828125, 0.039947509765625, -0.0141143798828125, 0.0006575584411621094, -0.01303863525390625, 0.00594329833984375, -0.00909423828125, -0.034454345703125, -0.0108184814453125, -0.04852294921875, 0.01184844970703125, -0.005619049072265625, 0.1068115234375, 0.007755279541015625, -0.022125244140625, -0.000354766845703125, -0.010986328125, 0.046295166015625, -0.0810546875, 0.0258636474609375, 0.034149169921875, 0.0056915283203125, -0.02685546875, -0.045654296875, -0.0384521484375, -0.021087646484375, -0.0305023193359375, 0.0247802734375, -0.01087188720703125, -0.0102081298828125, 0.038970947265625, 0.0212249755859375, -0.0592041015625, -0.00949859619140625, -0.01282501220703125, -0.026153564453125, 0.057464599609375, 0.02117919921875, 0.051849365234375, -0.030517578125, -0.0216217041015625, -0.017669677734375, -0.0345458984375, 0.01800537109375, 0.02227783203125, 0.0201416015625, -0.041717529296875, 0.039093017578125, -0.0209503173828125, 0.040313720703125, 0.0277252197265625, -0.01224517822265625, 0.0435791015625, -0.037200927734375, -0.032012939453125, -0.01128387451171875, 0.099609375, 0.032958984375, -0.01214599609375, 0.002899169921875, -0.01041412353515625, -0.005504608154296875, -0.03155517578125, -0.0677490234375, -0.0269622802734375, 0.00839996337890625, -0.031585693359375, -0.019317626953125, 0.0193634033203125, -0.05517578125, 0.021392822265625, 0.007564544677734375, 0.05316162109375, -0.040069580078125, -0.042022705078125, 0.0019817352294921875, -0.0158538818359375, 0.04254150390625, 0.00919342041015625, -0.06317138671875, 0.0095062255859375, 0.0200347900390625, 0.050262451171875, 0.0169525146484375, -0.0220794677734375, -0.0107269287109375, 0.00919342041015625, -0.020477294921875, 0.01214599609375, -0.012298583984375, -0.05682373046875, -0.033172607421875, 0.031463623046875, -0.0259246826171875, -0.0128173828125, 0.0273590087890625, -0.013336181640625, 0.035400390625, -0.038726806640625, -0.019256591796875, -0.006866455078125, 0.01348114013671875, -0.03076171875, 0.0943603515625, 0.0372314453125, -0.071533203125, 0.01287078857421875, -0.028411865234375, -0.01154327392578125, 0.0113372802734375, -0.0012531280517578125, -0.0479736328125, -0.020294189453125, 0.0299530029296875, 0.0249786376953125, -0.0118255615234375, 0.0131378173828125, -0.02099609375, -0.01276397705078125, 0.0186004638671875, -0.0263519287109375, 0.08770751953125, 0.023468017578125, -0.050048828125, -0.00624847412109375, -0.0435791015625, 0.035675048828125, 0.028228759765625, -0.00482177734375, -0.006927490234375, -0.03070068359375, -0.0026111602783203125, 0.01157379150390625, 0.0296783447265625, -0.0268096923828125, 0.032073974609375, -0.0299072265625, 0.04296875, 0.053863525390625, 0.01354217529296875, 0.016387939453125, -0.029022216796875, 0.039276123046875, 0.00991058349609375, 0.0248870849609375, 0.008636474609375, -0.048858642578125, -0.06292724609375, -0.01447296142578125, 0.0200958251953125, 0.037872314453125, -0.0675048828125, 0.053070068359375, -0.00690460205078125, -0.055755615234375, -0.0274200439453125, -0.0203399658203125, 0.039825439453125, 0.0321044921875, 0.0262451171875, -0.0267181396484375, -0.0297088623046875, -0.04656982421875, -0.0121612548828125, -0.034759521484375, 0.014312744140625, 0.01490020751953125, 0.0465087890625, -0.03057861328125, 0.03826904296875, -0.0294189453125, 0.0007500648498535156, -0.0016260147094726562, 0.0051727294921875, 0.048065185546875, 0.057403564453125, 0.058807373046875, -0.04608154296875, -0.057891845703125, 0.005298614501953125, -0.06805419921875, -0.0032062530517578125, -0.00016045570373535156, -0.04998779296875, 0.02288818359375, 0.00662994384765625, -0.064453125, 0.038726806640625, 0.02093505859375, -0.055145263671875, 0.044189453125, -0.025177001953125, 0.0299072265625, -0.0821533203125, 0.0253143310546875, -0.008026123046875, -0.0164337158203125, -0.03643798828125, 0.022247314453125, 0.01265716552734375, 0.0106353759765625, -0.033538818359375, 0.0638427734375, -0.0499267578125, 0.0182647705078125, 0.008056640625, -0.003997802734375, 0.0012235641479492188, 0.0290679931640625, -0.0036773681640625, 0.056060791015625, 0.057342529296875, -0.04290771484375, 0.040191650390625, 0.035491943359375, 0.00902557373046875, 0.01366424560546875, -0.054931640625, 0.002971649169921875, 0.0034923553466796875, 0.01715087890625, -0.072265625, -0.0293121337890625, 0.06085205078125, -0.054962158203125, 0.036224365234375, -0.0291595458984375, -0.031005859375, -0.038818359375, -0.0214385986328125, 0.03338623046875, 0.05841064453125, -0.034393310546875, 0.0308990478515625, 0.0247039794921875, -0.005588531494140625, -0.0577392578125, -0.06011962890625, -0.0205535888671875, -0.016326904296875, -0.0374755859375, 0.01824951171875, -0.00063323974609375, 0.00861358642578125, 0.00618743896484375, -0.0147552490234375, -0.00518035888671875, 0.00380706787109375, 0.01483154296875, 0.04730224609375, -0.018585205078125, -0.01800537109375, 0.0017070770263671875, -0.029632568359375, 0.01418304443359375, -0.01433563232421875, 0.0423583984375, -0.033782958984375, -0.01007843017578125, -0.041748046875, 0.0009102821350097656, 0.047943115234375, -0.008575439453125, 0.06072998046875, 0.0733642578125, -0.0203857421875, 0.0110626220703125, -0.02972412109375, -0.011199951171875, -0.034515380859375, 0.01309967041015625, -0.041412353515625, -0.0478515625, 0.059906005859375, 0.0305633544921875, -0.0006861686706542969, 0.068359375, 0.05084228515625, 0.01235198974609375, 0.10394287109375, 0.0290069580078125, -0.026458740234375, 0.020263671875, -0.034027099609375, 0.00885009765625, -0.05694580078125, -0.0231781005859375, -0.0269012451171875, 0.004566192626953125, -0.057403564453125, -0.02252197265625, 0.03045654296875, 0.021392822265625, -0.052276611328125, 0.03289794921875, -0.056060791015625, 0.0065765380859375, 0.03131103515625, 0.0072174072265625, 0.011932373046875, -0.01194000244140625, -0.031219482421875, -0.0031280517578125, -0.04718017578125, -0.0193634033203125, 0.0765380859375, 0.031280517578125, 0.056427001953125, 0.0117950439453125, 0.04345703125, -0.007526397705078125, 0.0223388671875, -0.038360595703125, 0.034210205078125, 0.00833892822265625, -0.052581787109375, -0.017852783203125, -0.054840087890625, -0.06488037109375, 0.0285186767578125, 0.002315521240234375, -0.046112060546875, 0.00968170166015625, 0.00014781951904296875, -0.01568603515625, 0.0113983154296875, -0.03887939453125, 0.07025146484375, -0.0266876220703125, -0.023406982421875, 0.02056884765625, -0.051666259765625, 0.0318603515625, 0.0208740234375, 0.01230621337890625, -0.0252227783203125, -0.002773284912109375, 0.054840087890625, -0.057647705078125, 0.037811279296875, -0.032318115234375, 0.000606536865234375, 0.0270843505859375, -0.00469970703125, 0.036407470703125, 0.03485107421875, -0.01197052001953125, 0.01690673828125, 0.0273284912109375, -0.0404052734375, -0.0281219482421875, 0.05267333984375, -0.08233642578125, -0.03839111328125, -0.053070068359375, -0.006561279296875, 0.0033435821533203125, 0.03448486328125, 0.0479736328125, 0.0283660888671875, 0.01015472412109375, -0.006816864013671875, 0.027252197265625, -0.00988006591796875, 0.0377197265625, 0.0360107421875, -0.022247314453125, -0.04876708984375, 0.0537109375, 0.008941650390625, 0.01226806640625, 0.00421905517578125, 0.008026123046875, -0.04046630859375, -0.0223846435546875, -0.057037353515625, 0.04534912109375, -0.043121337890625, -0.020751953125, -0.040313720703125, -0.025909423828125, -0.03973388671875, 0.00431060791015625, -0.0289459228515625, -0.0282745361328125, -0.02020263671875, 0.0025043487548828125, 0.03466796875, 0.01508331298828125, -0.005023956298828125, 0.014556884765625, -0.0780029296875, 0.030303955078125, 0.005237579345703125, 0.0245361328125, -0.006927490234375, -0.05157470703125, -0.01200103759765625, 0.0226898193359375, -0.0124969482421875, -0.0771484375, 0.068115234375, 0.0074310302734375, 0.0660400390625, 0.01059722900390625, 0.00905609130859375, 0.0638427734375, -0.0054473876953125, 0.0650634765625, 0.0157318115234375, -0.08441162109375, 0.04095458984375, -0.038055419921875, 0.03021240234375, 0.031951904296875, 0.041595458984375, -0.03759765625, -0.036163330078125, -0.055145263671875, -0.06060791015625, 0.049896240234375, 0.0294647216796875, 0.0102081298828125, 0.001956939697265625, 0.04547119140625, -0.0018978118896484375, 0.010650634765625, -0.07293701171875, -0.067138671875, -0.0301055908203125, -0.017730712890625, 0.00789642333984375, 0.0018129348754882812, -0.01303863525390625, -0.04541015625, 0.07879638671875, -0.0086669921875, 0.04425048828125, 0.039794921875, -0.0025997161865234375, -0.024993896484375, -0.0017690658569335938, 0.0136566162109375, 0.03570556640625, -0.007678985595703125, -0.0179595947265625, 0.0161285400390625, -0.05072021484375, 0.0249176025390625, 0.0161590576171875, -0.03509521484375, 0.0186767578125, 0.007282257080078125, 0.06732177734375, 0.0017566680908203125, -0.0110626220703125, 0.0308074951171875, -0.0235748291015625, -0.02587890625, -0.0216522216796875, 0.01373291015625, 0.0034847259521484375, 0.00897979736328125, 0.02325439453125, -0.01375579833984375, -0.0133514404296875, -0.03900146484375, 0.0121917724609375, 0.0419921875, -0.01367950439453125, -0.019256591796875, 0.06671142578125, -0.0058135986328125, 0.0217437744140625, 0.045745849609375, -0.02362060546875, -0.05426025390625, 0.0604248046875, 0.035888671875, 0.0614013671875, -0.0272064208984375, 0.007476806640625, 0.06402587890625, 0.01410675048828125, -0.0106658935546875, 0.03253173828125, 0.011810302734375, -0.049163818359375, -0.0002570152282714844, -0.048065185546875, -0.01336669921875, 0.0118255615234375, -0.052001953125, 0.028778076171875, -0.048492431640625, -0.039794921875, -0.016754150390625, 0.022186279296875, -0.035919189453125, 0.0208282470703125, 0.00811004638671875, 0.036407470703125, -0.058624267578125, 0.07098388671875, 0.053070068359375, -0.039520263671875, -0.0843505859375, -0.0146026611328125, -0.00868988037109375, -0.05291748046875, 0.035247802734375, -0.00588226318359375, 0.0106201171875, 0.011383056640625, -0.0416259765625, -0.0889892578125, 0.09161376953125, 0.007476806640625, -0.0210418701171875, 0.0050201416015625, -0.007415771484375, 0.034576416015625, -0.0027370452880859375, 0.050689697265625, 0.037994384765625, 0.05413818359375, -0.00022172927856445312, -0.078857421875, 0.036468505859375, -0.04766845703125, -0.0092010498046875, 0.027587890625, -0.088134765625, 0.08740234375, -0.0019016265869140625, -0.01495361328125, 0.00905609130859375, 0.052520751953125, 0.033172607421875, -0.004154205322265625, 0.0169525146484375, 0.040863037109375, 0.043914794921875, -0.0341796875, 0.0538330078125, -0.0241241455078125, 0.0692138671875, 0.043548583984375, 0.00836181640625, 0.03265380859375, 0.0087890625, -0.044464111328125, 0.034332275390625, 0.053802490234375, -0.043243408203125, 0.0341796875, -0.00872802734375, -0.027313232421875, -0.01508331298828125, 0.0282135009765625, -0.07470703125, 0.01306915283203125, 0.0313720703125, -0.015228271484375, -0.006305694580078125, -0.0114593505859375, 0.0245819091796875, -0.0289459228515625, -0.018707275390625, 0.037017822265625, 0.01280975341796875, -0.051849365234375, 0.0831298828125, 0.0087432861328125, 0.054168701171875, -0.048431396484375, 0.0139312744140625, -0.00798797607421875, 0.0087127685546875, -0.0173492431640625, -0.049560546875, 0.00905609130859375, -0.01239776611328125, -0.00421142578125, 0.004810333251953125, 0.04815673828125, -0.035675048828125, -0.039276123046875, 0.022674560546875, 0.031158447265625, 0.01210784912109375, 0.020355224609375, -0.08380126953125, 0.00042247772216796875, 0.01293182373046875, -0.04046630859375, 0.030517578125, 0.02008056640625, 0.00951385498046875, 0.053375244140625, 0.053955078125, -0.0010881423950195312, 0.0198974609375, -0.00807952880859375, 0.06060791015625, -0.0465087890625, -0.036102294921875, -0.07794189453125, 0.041412353515625, 0.007152557373046875, -0.036651611328125, 0.07470703125, 0.034576416015625, 0.053375244140625, -0.0130615234375, 0.07275390625, -0.0290069580078125, 0.01702880859375, -0.03887939453125, 0.0745849609375, -0.03582763671875, -0.003509521484375, -0.0211334228515625, -0.05450439453125, -0.016815185546875, 0.061248779296875, -0.0169830322265625, 0.0261688232421875, 0.046051025390625, 0.05426025390625, 0.00780487060546875, -0.01007843017578125, 0.00643157958984375, 0.034423828125, 0.0235137939453125, 0.06280517578125, 0.044464111328125, -0.07257080078125, 0.0176849365234375, -0.0521240234375, -0.00310516357421875, -0.00997161865234375, -0.05206298828125, -0.06451416015625, -0.022796630859375, -0.036102294921875, -0.0556640625, -0.00980377197265625, 0.0743408203125, 0.04498291015625, -0.057342529296875, -0.01128387451171875, -0.01168060302734375, 0.0009407997131347656, -0.0031681060791015625, -0.0249481201171875, 0.0341796875, -0.014434814453125, -0.06463623046875, 0.0028972625732421875, -0.0067291259765625, 0.0306243896484375, 0.004901885986328125, -0.0176239013671875, -0.00878143310546875, -0.019805908203125, 0.0093231201171875, 0.040618896484375, -0.052764892578125, -0.0121307373046875, -0.006435394287109375, -0.036712646484375, 0.007564544677734375, 0.010498046875, -0.0386962890625, 0.0210418701171875, 0.04931640625, 0.00579833984375, 0.046600341796875, 0.01386260986328125, 0.0379638671875, -0.0248870849609375, 0.0254364013671875, 0.0061492919921875, 0.03021240234375, 0.0028858184814453125, -0.04400634765625, 0.0386962890625, 0.0447998046875, -0.04443359375, -0.056243896484375, -0.0102386474609375, -0.0787353515625, -0.00830841064453125, 0.0731201171875, -0.036285400390625, -0.03619384765625, 0.0013742446899414062, -0.0206756591796875, 0.04296875, -0.025665283203125, 0.0293121337890625, 0.044952392578125, -0.004795074462890625, -0.01148223876953125, -0.038604736328125, 0.044677734375, 0.03887939453125, -0.0491943359375, -0.00319671630859375, 0.0088653564453125, 0.036712646484375, 0.0019550323486328125, 0.053680419921875, -0.02911376953125, 0.029571533203125, 0.0014972686767578125, 0.0018253326416015625, -0.0125274658203125, 0.03350830078125, -0.01953125, -0.0173797607421875, -0.00978851318359375, -0.0123443603515625 ] ]
sangeet2020/asr-crdnn-rnnlm-commonvoice-10.0-de
2023-10-27T16:48:55.000Z
[ "speechbrain", "automatic-speech-recognition", "CTC", "NLL", "Attention", "pytorch", "de", "dataset:common_voice", "arxiv:2106.04624", "license:apache-2.0", "region:us" ]
automatic-speech-recognition
sangeet2020
null
null
sangeet2020/asr-crdnn-rnnlm-commonvoice-10.0-de
0
2
speechbrain
2023-10-27T14:47:11
--- language: "de" thumbnail: tags: - automatic-speech-recognition - CTC - NLL - Attention - pytorch - speechbrain license: "apache-2.0" datasets: - common_voice metrics: - wer - cer --- <iframe src="https://ghbtns.com/github-btn.html?user=speechbrain&repo=speechbrain&type=star&count=true&size=large&v=2" frameborder="0" scrolling="0" width="170" height="30" title="GitHub"></iframe> <br/><br/> # CRDNN with CTC/Attention trained on CommonVoice 10.0 German and RNNLM trained (with LM) This repository provides all the necessary tools to perform automatic speech recognition from an end-to-end system pretrained on CommonVoice (German Language) within SpeechBrain. For a better experience, we encourage you to learn more about [SpeechBrain](https://speechbrain.github.io). The performance of the model is the following (after 25 epochs): | Release | Test CER | Test WER | GPUs | |:-------------:|:--------------:|:--------------:| :--------:| | 15.08.23 | 2.85 | 7.92 | 1xRTXA6000 48GB | ## Pipeline description This ASR system is composed with 3 different but linked blocks: - Tokenizer (unigram) that transforms words into subword units and trained with the train transcriptions of LibriSpeech. - Neural language model (RNNLM) trained on the 17M sentences combining Tuda-De2 (8M sents), Leipzig news corpus (9M sents), and train transcripts of the CommonVoice corpus. - Acoustic model (CRDNN + CTC/Attention). The CRDNN architecture is made of N blocks of convolutional neural networks with normalisation and pooling on the frequency domain. Then, a bidirectional LSTM is connected to a final DNN to obtain the final acoustic representation that is given to the CTC and attention decoders. The system is trained with recordings sampled at 16kHz (single channel). The code will automatically normalize your audio (i.e., resampling + mono channel selection) when calling *transcribe_file* if needed. ## Install SpeechBrain First of all, please install SpeechBrain with the following command: ``` pip install speechbrain ``` Please notice that we encourage you to read our tutorials and learn more about [SpeechBrain](https://speechbrain.github.io). ### Transcribing your own audio files (in German) ```python from speechbrain.pretrained import EncoderDecoderASR asr_model = EncoderDecoderASR.from_hparams(source="sangeet2020/asr-crdnn-rnnlm-commonvoice-10.0-de", savedir="pretrained_models/speechbrain/asr-crdnn-rnnlm-commonvoice-10.0-de") asr_model.transcribe_file("speechbrain/speechbrain/asr-crdnn-rnnlm-commonvoice-10.0-de/example-de.wav") ``` ### Inference on GPU To perform inference on the GPU, add `run_opts={"device":"cuda"}` when calling the `from_hparams` method. ## Parallel Inference on a Batch Please, [see this Colab notebook](https://colab.research.google.com/drive/1hX5ZI9S4jHIjahFCZnhwwQmFoGAi3tmu?usp=sharing) to figure out how to transcribe in parallel a batch of input sentences using a pre-trained model. ### Training The model was trained with SpeechBrain (986a2175). To train it from scratch follows these steps: 1. Clone SpeechBrain: ```bash git clone https://github.com/speechbrain/speechbrain/ ``` 2. Install it: ``` cd speechbrain pip install -r requirements.txt pip install -e . ``` 3. Run Training: ``` cd recipes/CommonVoice/ASR/seq2seq python train.py hparams/train_de.yaml --data_folder=your_data_folder ``` ### Limitations The SpeechBrain team does not provide any warranty on the performance achieved by this model when used on other datasets. # **About SpeechBrain** - Website: https://speechbrain.github.io/ - Code: https://github.com/speechbrain/speechbrain/ - HuggingFace: https://huggingface.co/speechbrain/ # **Citing SpeechBrain** Please, cite SpeechBrain if you use it for your research or business. ```bibtex @misc{speechbrain, title={{SpeechBrain}: A General-Purpose Speech Toolkit}, author={Mirco Ravanelli and Titouan Parcollet and Peter Plantinga and Aku Rouhe and Samuele Cornell and Loren Lugosch and Cem Subakan and Nauman Dawalatabad and Abdelwahab Heba and Jianyuan Zhong and Ju-Chieh Chou and Sung-Lin Yeh and Szu-Wei Fu and Chien-Feng Liao and Elena Rastorgueva and François Grondin and William Aris and Hwidong Na and Yan Gao and Renato De Mori and Yoshua Bengio}, year={2021}, eprint={2106.04624}, archivePrefix={arXiv}, primaryClass={eess.AS}, note={arXiv:2106.04624} } ```
4,380
[ [ -0.0280914306640625, -0.05926513671875, 0.0071563720703125, 0.0226898193359375, -0.0279998779296875, -0.0115509033203125, -0.0447998046875, -0.0311431884765625, 0.021240234375, 0.02392578125, -0.039794921875, -0.051788330078125, -0.05303955078125, 0.009979248046875, -0.0203704833984375, 0.06878662109375, 0.01678466796875, 0.021240234375, -0.01081085205078125, -0.0232696533203125, -0.0175018310546875, -0.055145263671875, -0.0584716796875, -0.0294342041015625, 0.0251312255859375, 0.0080413818359375, 0.02569580078125, 0.042999267578125, 0.0167999267578125, 0.028076171875, -0.03082275390625, -0.01158905029296875, -0.0208892822265625, -0.00983428955078125, 0.021575927734375, -0.0223388671875, -0.0364990234375, 0.0002875328063964844, 0.052001953125, 0.052642822265625, -0.023345947265625, 0.01434326171875, 0.0234527587890625, 0.031524658203125, -0.0289306640625, 0.017608642578125, -0.0386962890625, -0.007640838623046875, -0.022247314453125, 0.007129669189453125, -0.0193939208984375, -0.0377197265625, 0.0209808349609375, -0.0380859375, 0.019439697265625, -0.0202178955078125, 0.07666015625, 0.0178070068359375, -0.008209228515625, -0.0179443359375, -0.0345458984375, 0.0714111328125, -0.063232421875, 0.044036865234375, 0.0167236328125, 0.013427734375, 0.006771087646484375, -0.0728759765625, -0.04290771484375, -0.0238800048828125, -0.0073394775390625, 0.01593017578125, -0.029754638671875, 0.0122222900390625, 0.035552978515625, 0.026641845703125, -0.0670166015625, 0.004947662353515625, -0.043243408203125, -0.0279693603515625, 0.041229248046875, -0.007663726806640625, 0.023284912109375, -0.0164947509765625, -0.0282745361328125, -0.031890869140625, -0.0181121826171875, 0.0145111083984375, 0.010772705078125, 0.018798828125, -0.03741455078125, 0.02545166015625, -0.0024929046630859375, 0.055755615234375, 0.01409149169921875, -0.0030059814453125, 0.061004638671875, -0.029998779296875, -0.0262603759765625, 0.03424072265625, 0.08062744140625, 0.0012845993041992188, 0.026123046875, 0.00528717041015625, 0.0009279251098632812, 0.020751953125, 0.0009531974792480469, -0.046173095703125, -0.0161590576171875, 0.02264404296875, -0.0155029296875, -0.0027370452880859375, -0.01456451416015625, -0.04962158203125, 0.00548553466796875, -0.04400634765625, 0.0251312255859375, -0.03936767578125, 0.0009207725524902344, 0.00937652587890625, -0.00809478759765625, 0.02215576171875, 0.0034198760986328125, -0.046539306640625, 0.03924560546875, 0.03399658203125, 0.06427001953125, -0.01898193359375, -0.034820556640625, -0.05633544921875, -0.009674072265625, 0.007625579833984375, 0.040740966796875, -0.0160369873046875, -0.01739501953125, -0.01035308837890625, 0.009246826171875, -0.031951904296875, -0.0445556640625, 0.05328369140625, -0.01824951171875, 0.0244903564453125, 0.0016078948974609375, -0.039459228515625, -0.0172576904296875, -0.001434326171875, -0.0352783203125, 0.06268310546875, -0.0165557861328125, -0.0584716796875, -0.01042938232421875, -0.039794921875, -0.04180908203125, -0.015838623046875, -0.0100250244140625, -0.04693603515625, -0.0140838623046875, 0.0230865478515625, 0.02813720703125, -0.026123046875, 0.0178680419921875, -0.015869140625, -0.032318115234375, 0.0238037109375, -0.033843994140625, 0.1048583984375, 0.0243377685546875, -0.033905029296875, 0.00766754150390625, -0.06805419921875, 0.003955841064453125, 0.00011277198791503906, -0.040985107421875, 0.0026149749755859375, -0.036346435546875, 0.0162811279296875, 0.00753021240234375, 0.0290679931640625, -0.049102783203125, -0.01190185546875, -0.044219970703125, 0.045867919921875, 0.032440185546875, -0.00910186767578125, 0.031341552734375, -0.025543212890625, 0.034454345703125, 0.00862884521484375, 0.00269317626953125, 0.01499176025390625, -0.031890869140625, -0.062469482421875, -0.0226898193359375, 0.041259765625, 0.0595703125, -0.0305023193359375, 0.0416259765625, -0.040374755859375, -0.03857421875, -0.0560302734375, -0.00738525390625, 0.03997802734375, 0.046600341796875, 0.04669189453125, -0.0318603515625, -0.053436279296875, -0.06292724609375, -0.021331787109375, 0.0027828216552734375, -0.01470184326171875, 0.034332275390625, 0.00997161865234375, -0.019073486328125, 0.039031982421875, -0.0246124267578125, -0.0261688232421875, -0.0149993896484375, 0.0161895751953125, 0.0247802734375, 0.051788330078125, 0.020965576171875, -0.045501708984375, -0.03741455078125, -0.015228271484375, -0.046844482421875, -0.0144805908203125, -0.013580322265625, 0.00878143310546875, 0.03277587890625, 0.0384521484375, -0.049957275390625, 0.03350830078125, 0.033660888671875, -0.0007433891296386719, 0.032440185546875, -0.01555633544921875, -0.002323150634765625, -0.0888671875, 0.0117950439453125, 0.005542755126953125, -0.01111602783203125, -0.049530029296875, -0.03167724609375, -0.00907135009765625, -0.0226898193359375, -0.04296875, 0.0266876220703125, -0.045989990234375, -0.01419830322265625, 0.006561279296875, 0.034332275390625, 0.0035228729248046875, 0.0640869140625, 0.0097503662109375, 0.057037353515625, 0.05401611328125, -0.052337646484375, 0.032257080078125, 0.03277587890625, -0.0205841064453125, 0.0231781005859375, -0.07708740234375, 0.026824951171875, 0.005245208740234375, 0.0173797607421875, -0.051055908203125, 0.00414276123046875, 0.0208740234375, -0.0635986328125, 0.033599853515625, -0.01087188720703125, -0.02056884765625, -0.0270843505859375, -0.005054473876953125, 0.021453857421875, 0.051788330078125, -0.03106689453125, 0.056182861328125, 0.035003662109375, -0.017822265625, -0.049774169921875, -0.077880859375, -0.003932952880859375, -0.0150604248046875, -0.054656982421875, 0.0290679931640625, -0.00019681453704833984, -0.003265380859375, -0.01456451416015625, -0.002620697021484375, -0.01297760009765625, -0.0136260986328125, 0.0226898193359375, 0.01561737060546875, -0.00634765625, -0.0108642578125, -0.005985260009765625, -0.0089111328125, 0.0053558349609375, -0.022705078125, 0.049285888671875, -0.0165863037109375, -0.0088043212890625, -0.0587158203125, 0.016632080078125, 0.03912353515625, -0.0312347412109375, 0.02410888671875, 0.0587158203125, -0.0191192626953125, 0.004138946533203125, -0.042694091796875, -0.01751708984375, -0.033050537109375, 0.04217529296875, -0.0238037109375, -0.051239013671875, 0.044708251953125, 0.009857177734375, -0.00707244873046875, 0.032318115234375, 0.03656005859375, 0.005947113037109375, 0.05023193359375, 0.0125274658203125, -0.0109405517578125, 0.040313720703125, -0.039031982421875, -0.005687713623046875, -0.069091796875, -0.0217437744140625, -0.04388427734375, -0.01580810546875, -0.051666259765625, -0.031982421875, 0.024169921875, -0.005756378173828125, -0.018280029296875, 0.049530029296875, -0.05633544921875, 0.00415802001953125, 0.06292724609375, 0.01137542724609375, 0.01105499267578125, 0.0220489501953125, -0.029144287109375, 0.00528717041015625, -0.05023193359375, -0.0216217041015625, 0.07366943359375, 0.029205322265625, 0.04547119140625, -0.01544952392578125, 0.06561279296875, -0.0005841255187988281, -0.018402099609375, -0.047149658203125, 0.04150390625, -0.0302886962890625, -0.0288543701171875, -0.0246124267578125, -0.03924560546875, -0.0853271484375, 0.004791259765625, -0.0023021697998046875, -0.056549072265625, 0.03692626953125, -0.00408935546875, -0.04290771484375, 0.00014770030975341797, -0.062286376953125, 0.06475830078125, -0.008514404296875, -0.0171356201171875, -0.0244293212890625, -0.06463623046875, -0.0015287399291992188, 0.0251922607421875, -0.0042572021484375, 0.00701141357421875, 0.020904541015625, 0.08050537109375, -0.0247650146484375, 0.06341552734375, -0.0174560546875, 0.0204620361328125, 0.032806396484375, -0.0193023681640625, 0.0308990478515625, -0.00922393798828125, -0.0128936767578125, 0.0498046875, 0.007572174072265625, -0.0227508544921875, -0.03082275390625, 0.0654296875, -0.07501220703125, -0.029693603515625, -0.03662109375, -0.0364990234375, -0.0061798095703125, 0.00604248046875, 0.03765869140625, 0.049774169921875, -0.012786865234375, 0.021331787109375, 0.050933837890625, -0.0281219482421875, 0.038238525390625, 0.024383544921875, 0.0101318359375, -0.060638427734375, 0.057952880859375, 0.0333251953125, 0.0157623291015625, 0.018310546875, 0.00646209716796875, -0.03350830078125, -0.0335693359375, -0.03094482421875, 0.027374267578125, -0.0439453125, -0.0016965866088867188, -0.0609130859375, -0.035003662109375, -0.058074951171875, 0.01074981689453125, -0.03424072265625, -0.033599853515625, -0.039703369140625, 0.01006317138671875, 0.032012939453125, 0.0258331298828125, -0.0204315185546875, 0.01172637939453125, -0.056793212890625, 0.0287322998046875, 0.035308837890625, 0.0028133392333984375, -0.002910614013671875, -0.070068359375, -0.0238494873046875, 0.0213470458984375, -0.0211334228515625, -0.03900146484375, 0.044525146484375, 0.01155853271484375, 0.043701171875, 0.001354217529296875, 0.0011959075927734375, 0.04638671875, -0.0303802490234375, 0.057464599609375, 0.01629638671875, -0.0760498046875, 0.043304443359375, -0.01239776611328125, 0.04058837890625, 0.04656982421875, 0.029296875, -0.03802490234375, -0.01456451416015625, -0.05938720703125, -0.05975341796875, 0.07098388671875, 0.0260772705078125, -0.010711669921875, 0.009521484375, 0.0177154541015625, -0.01029205322265625, 0.006618499755859375, -0.0511474609375, -0.04595947265625, -0.02923583984375, -0.02880859375, -0.0186614990234375, -0.00823211669921875, -0.0095977783203125, -0.033905029296875, 0.053009033203125, 0.014251708984375, 0.04376220703125, 0.039215087890625, -0.0183868408203125, 0.01788330078125, 0.02655029296875, 0.05999755859375, 0.030731201171875, -0.02081298828125, 0.002960205078125, 0.028594970703125, -0.05609130859375, -0.00341033935546875, 0.05621337890625, -0.0101470947265625, 0.02032470703125, 0.01324462890625, 0.0921630859375, 0.01514434814453125, -0.02740478515625, 0.04010009765625, -0.01666259765625, -0.0279083251953125, -0.044891357421875, -0.004116058349609375, 0.027618408203125, 0.01482391357421875, 0.0150604248046875, 0.006587982177734375, 0.0107421875, -0.030120849609375, 0.01983642578125, 0.0122222900390625, -0.035491943359375, -0.02685546875, 0.050384521484375, 0.0105743408203125, -0.034271240234375, 0.05633544921875, 0.004791259765625, -0.03887939453125, 0.047515869140625, 0.032379150390625, 0.0799560546875, -0.01251220703125, -0.00420379638671875, 0.047271728515625, 0.0010099411010742188, 0.0013647079467773438, 0.0262451171875, -0.01213836669921875, -0.04248046875, -0.0282745361328125, -0.059478759765625, -0.016998291015625, 0.015228271484375, -0.058807373046875, 0.0247955322265625, -0.0300445556640625, -0.014739990234375, 0.01425933837890625, 0.00708770751953125, -0.05712890625, 0.017852783203125, 0.0216827392578125, 0.048614501953125, -0.039459228515625, 0.0814208984375, 0.048553466796875, -0.052703857421875, -0.07904052734375, -0.0041046142578125, -0.007640838623046875, -0.057403564453125, 0.04718017578125, 0.01081085205078125, -0.011810302734375, 0.01104736328125, -0.032012939453125, -0.0621337890625, 0.087646484375, 0.046051025390625, -0.064453125, -0.00630950927734375, 0.0185699462890625, 0.044189453125, -0.0173492431640625, 0.0227813720703125, 0.03857421875, 0.0261383056640625, -0.0038394927978515625, -0.09613037109375, 0.0001405477523803711, -0.0165557861328125, -0.005352020263671875, -0.016326904296875, -0.0572509765625, 0.0712890625, -0.0011606216430664062, -0.0254669189453125, -0.01531219482421875, 0.049896240234375, 0.035552978515625, 0.033843994140625, 0.037200927734375, 0.06463623046875, 0.05950927734375, -0.0010662078857421875, 0.0679931640625, -0.02740478515625, 0.0205841064453125, 0.102294921875, 0.0041961669921875, 0.06024169921875, 0.030670166015625, -0.0256195068359375, 0.04010009765625, 0.033660888671875, -0.004283905029296875, 0.0301666259765625, 0.0123291015625, -0.01485443115234375, -0.01546478271484375, -0.00565338134765625, -0.04193115234375, 0.0447998046875, 0.007030487060546875, -0.0308990478515625, 0.003406524658203125, 0.01410675048828125, -0.00945281982421875, 0.00476837158203125, -0.01546478271484375, 0.06781005859375, 0.0357666015625, -0.03466796875, 0.08905029296875, -0.0275421142578125, 0.0621337890625, -0.037750244140625, 0.0176544189453125, -0.00616455078125, 0.021331787109375, -0.0089263916015625, -0.0333251953125, 0.0221710205078125, -0.0087738037109375, -0.0139312744140625, -0.005458831787109375, 0.0357666015625, -0.052703857421875, -0.0258941650390625, 0.044342041015625, 0.0255584716796875, 0.035491943359375, 0.00015735626220703125, -0.0760498046875, 0.0169677734375, 0.01013946533203125, -0.02191162109375, 0.030548095703125, 0.0295257568359375, 0.0213775634765625, 0.04486083984375, 0.040863037109375, 0.018157958984375, 0.01239013671875, 0.02862548828125, 0.0616455078125, -0.049102783203125, -0.04071044921875, -0.048858642578125, 0.033660888671875, -0.009429931640625, -0.01983642578125, 0.06304931640625, 0.04974365234375, 0.07122802734375, -0.006389617919921875, 0.0526123046875, 0.0067596435546875, 0.060577392578125, -0.0291900634765625, 0.0692138671875, -0.035614013671875, 0.0185394287109375, -0.01372528076171875, -0.0616455078125, -0.0186920166015625, 0.0513916015625, -0.0299530029296875, 0.0019388198852539062, 0.047760009765625, 0.072998046875, 0.00128936767578125, -0.00247955322265625, 0.0182037353515625, 0.031280517578125, -0.005817413330078125, 0.048553466796875, 0.031463623046875, -0.06378173828125, 0.06488037109375, -0.03662109375, -0.001781463623046875, 0.00295257568359375, -0.031463623046875, -0.0577392578125, -0.049530029296875, -0.040618896484375, -0.03912353515625, 0.0147857666015625, 0.07666015625, 0.04705810546875, -0.07672119140625, -0.03936767578125, -0.01409912109375, -0.0006289482116699219, -0.0189666748046875, -0.0198516845703125, 0.048431396484375, -0.0083465576171875, -0.07086181640625, 0.0301513671875, -0.007190704345703125, 0.01219940185546875, 0.0004341602325439453, -0.01580810546875, -0.0413818359375, -0.0016717910766601562, 0.018157958984375, 0.0308837890625, -0.051239013671875, 0.0036067962646484375, 0.000011682510375976562, -0.0171966552734375, 0.0260772705078125, 0.029632568359375, -0.060577392578125, 0.0217132568359375, 0.0435791015625, 0.040435791015625, 0.055908203125, -0.0113372802734375, 0.0325927734375, -0.041046142578125, 0.0258026123046875, 0.028594970703125, 0.0229034423828125, 0.0352783203125, -0.0219268798828125, 0.016021728515625, 0.02825927734375, -0.061248779296875, -0.057708740234375, -0.01419830322265625, -0.0992431640625, -0.004863739013671875, 0.08673095703125, -0.0174102783203125, -0.035430908203125, -0.005588531494140625, -0.0089569091796875, 0.06201171875, -0.052276611328125, 0.036041259765625, 0.0286407470703125, -0.00579833984375, -0.01129913330078125, -0.028076171875, 0.046905517578125, 0.045013427734375, -0.035552978515625, 0.010833740234375, 0.032928466796875, 0.0350341796875, 0.0209808349609375, 0.047210693359375, -0.009429931640625, 0.01611328125, 0.005352020263671875, 0.036163330078125, -0.0087738037109375, -0.0003437995910644531, -0.06463623046875, 0.007045745849609375, -0.0220947265625, -0.036956787109375 ] ]
LoneStriker/zephyr-7b-beta-6.0bpw-h6-exl2
2023-10-27T14:55:50.000Z
[ "transformers", "safetensors", "mistral", "text-generation", "generated_from_trainer", "en", "dataset:HuggingFaceH4/ultrachat_200k", "dataset:HuggingFaceH4/ultrafeedback_binarized", "arxiv:2305.18290", "arxiv:2310.16944", "license:mit", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
LoneStriker
null
null
LoneStriker/zephyr-7b-beta-6.0bpw-h6-exl2
0
2
transformers
2023-10-27T14:55:33
--- tags: - generated_from_trainer model-index: - name: zephyr-7b-beta results: [] license: mit datasets: - HuggingFaceH4/ultrachat_200k - HuggingFaceH4/ultrafeedback_binarized language: - en base_model: mistralai/Mistral-7B-v0.1 --- <!-- 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. --> <img src="https://huggingface.co/HuggingFaceH4/zephyr-7b-alpha/resolve/main/thumbnail.png" alt="Zephyr Logo" width="800" style="margin-left:'auto' margin-right:'auto' display:'block'"/> # Model Card for Zephyr 7B β Zephyr is a series of language models that are trained to act as helpful assistants. Zephyr-7B-β is the second model in the series, and is a fine-tuned version of [mistralai/Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1) that was trained on on a mix of publicly available, synthetic datasets using [Direct Preference Optimization (DPO)](https://arxiv.org/abs/2305.18290). We found that removing the in-built alignment of these datasets boosted performance on [MT Bench](https://huggingface.co/spaces/lmsys/mt-bench) and made the model more helpful. However, this means that model is likely to generate problematic text when prompted to do so and should only be used for educational and research purposes. You can find more details in the [technical report](https://arxiv.org/abs/2310.16944). ## Model description - **Model type:** A 7B parameter GPT-like model fine-tuned on a mix of publicly available, synthetic datasets. - **Language(s) (NLP):** Primarily English - **License:** MIT - **Finetuned from model:** [mistralai/Mistral-7B-v0.1](https://huggingface.co/mistralai/Mistral-7B-v0.1) ### Model Sources <!-- Provide the basic links for the model. --> - **Repository:** https://github.com/huggingface/alignment-handbook - **Demo:** https://huggingface.co/spaces/HuggingFaceH4/zephyr-chat - **Chatbot Arena:** Evaluate Zephyr 7B against 10+ LLMs in the LMSYS arena: http://arena.lmsys.org ## Performance At the time of release, Zephyr-7B-β is the highest ranked 7B chat model on the [MT-Bench](https://huggingface.co/spaces/lmsys/mt-bench) and [AlpacaEval](https://tatsu-lab.github.io/alpaca_eval/) benchmarks: | Model | Size | Alignment | MT-Bench (score) | AlpacaEval (win rate %) | |-------------|-----|----|---------------|--------------| | StableLM-Tuned-α | 7B| dSFT |2.75| -| | MPT-Chat | 7B |dSFT |5.42| -| | Xwin-LMv0.1 | 7B| dPPO| 6.19| 87.83| | Mistral-Instructv0.1 | 7B| - | 6.84 |-| | Zephyr-7b-α |7B| dDPO| 6.88| -| | **Zephyr-7b-β** 🪁 | **7B** | **dDPO** | **7.34** | **90.60** | | Falcon-Instruct | 40B |dSFT |5.17 |45.71| | Guanaco | 65B | SFT |6.41| 71.80| | Llama2-Chat | 70B |RLHF |6.86| 92.66| | Vicuna v1.3 | 33B |dSFT |7.12 |88.99| | WizardLM v1.0 | 70B |dSFT |7.71 |-| | Xwin-LM v0.1 | 70B |dPPO |- |95.57| | GPT-3.5-turbo | - |RLHF |7.94 |89.37| | Claude 2 | - |RLHF |8.06| 91.36| | GPT-4 | -| RLHF |8.99| 95.28| In particular, on several categories of MT-Bench, Zephyr-7B-β has strong performance compared to larger open models like Llama2-Chat-70B: ![image/png](https://cdn-uploads.huggingface.co/production/uploads/6200d0a443eb0913fa2df7cc/raxvt5ma16d7T23my34WC.png) However, on more complex tasks like coding and mathematics, Zephyr-7B-β lags behind proprietary models and more research is needed to close the gap. ## Intended uses & limitations The model was initially fine-tuned on a filtered and preprocessed of the [`UltraChat`](https://huggingface.co/datasets/stingning/ultrachat) dataset, which contains a diverse range of synthetic dialogues generated by ChatGPT. We then further aligned the model with [🤗 TRL's](https://github.com/huggingface/trl) `DPOTrainer` on the [openbmb/UltraFeedback](https://huggingface.co/datasets/openbmb/UltraFeedback) dataset, which contains 64k prompts and model completions that are ranked by GPT-4. As a result, the model can be used for chat and you can check out our [demo](https://huggingface.co/spaces/HuggingFaceH4/zephyr-chat) to test its capabilities. You can find the datasets used for training Zephyr-7B-β [here](https://huggingface.co/collections/HuggingFaceH4/zephyr-7b-6538c6d6d5ddd1cbb1744a66) Here's how you can run the model using the `pipeline()` function from 🤗 Transformers: ```python # Install transformers from source - only needed for versions <= v4.34 # pip install git+https://github.com/huggingface/transformers.git # pip install accelerate import torch from transformers import pipeline pipe = pipeline("text-generation", model="HuggingFaceH4/zephyr-7b-beta", torch_dtype=torch.bfloat16, device_map="auto") # We use the tokenizer's chat template to format each message - see https://huggingface.co/docs/transformers/main/en/chat_templating messages = [ { "role": "system", "content": "You are a friendly chatbot who always responds in the style of a pirate", }, {"role": "user", "content": "How many helicopters can a human eat in one sitting?"}, ] prompt = pipe.tokenizer.apply_chat_template(messages, tokenize=False, add_generation_prompt=True) outputs = pipe(prompt, max_new_tokens=256, do_sample=True, temperature=0.7, top_k=50, top_p=0.95) print(outputs[0]["generated_text"]) # <|system|> # You are a friendly chatbot who always responds in the style of a pirate.</s> # <|user|> # How many helicopters can a human eat in one sitting?</s> # <|assistant|> # Ah, me hearty matey! But yer question be a puzzler! A human cannot eat a helicopter in one sitting, as helicopters are not edible. They be made of metal, plastic, and other materials, not food! ``` ## Bias, Risks, and Limitations <!-- This section is meant to convey both technical and sociotechnical limitations. --> Zephyr-7B-β has not been aligned to human preferences with techniques like RLHF or deployed with in-the-loop filtering of responses like ChatGPT, so the model can produce problematic outputs (especially when prompted to do so). It is also unknown what the size and composition of the corpus was used to train the base model (`mistralai/Mistral-7B-v0.1`), however it is likely to have included a mix of Web data and technical sources like books and code. See the [Falcon 180B model card](https://huggingface.co/tiiuae/falcon-180B#training-data) for an example of this. ## Training and evaluation data During DPO training, this model achieves the following results on the evaluation set: - Loss: 0.7496 - Rewards/chosen: -4.5221 - Rewards/rejected: -8.3184 - Rewards/accuracies: 0.7812 - Rewards/margins: 3.7963 - Logps/rejected: -340.1541 - Logps/chosen: -299.4561 - Logits/rejected: -2.3081 - Logits/chosen: -2.3531 ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 5e-07 - train_batch_size: 2 - eval_batch_size: 4 - seed: 42 - distributed_type: multi-GPU - num_devices: 16 - total_train_batch_size: 32 - total_eval_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: 3.0 ### Training results The table below shows the full set of DPO training metrics: | Training Loss | Epoch | Step | Validation Loss | Rewards/chosen | Rewards/rejected | Rewards/accuracies | Rewards/margins | Logps/rejected | Logps/chosen | Logits/rejected | Logits/chosen | |:-------------:|:-----:|:----:|:---------------:|:--------------:|:----------------:|:------------------:|:---------------:|:--------------:|:------------:|:---------------:|:-------------:| | 0.6284 | 0.05 | 100 | 0.6098 | 0.0425 | -0.1872 | 0.7344 | 0.2297 | -258.8416 | -253.8099 | -2.7976 | -2.8234 | | 0.4908 | 0.1 | 200 | 0.5426 | -0.0279 | -0.6842 | 0.75 | 0.6563 | -263.8124 | -254.5145 | -2.7719 | -2.7960 | | 0.5264 | 0.15 | 300 | 0.5324 | 0.0414 | -0.9793 | 0.7656 | 1.0207 | -266.7627 | -253.8209 | -2.7892 | -2.8122 | | 0.5536 | 0.21 | 400 | 0.4957 | -0.0185 | -1.5276 | 0.7969 | 1.5091 | -272.2460 | -254.4203 | -2.8542 | -2.8764 | | 0.5362 | 0.26 | 500 | 0.5031 | -0.2630 | -1.5917 | 0.7812 | 1.3287 | -272.8869 | -256.8653 | -2.8702 | -2.8958 | | 0.5966 | 0.31 | 600 | 0.5963 | -0.2993 | -1.6491 | 0.7812 | 1.3499 | -273.4614 | -257.2279 | -2.8778 | -2.8986 | | 0.5014 | 0.36 | 700 | 0.5382 | -0.2859 | -1.4750 | 0.75 | 1.1891 | -271.7204 | -257.0942 | -2.7659 | -2.7869 | | 0.5334 | 0.41 | 800 | 0.5677 | -0.4289 | -1.8968 | 0.7969 | 1.4679 | -275.9378 | -258.5242 | -2.7053 | -2.7265 | | 0.5251 | 0.46 | 900 | 0.5772 | -0.2116 | -1.3107 | 0.7344 | 1.0991 | -270.0768 | -256.3507 | -2.8463 | -2.8662 | | 0.5205 | 0.52 | 1000 | 0.5262 | -0.3792 | -1.8585 | 0.7188 | 1.4793 | -275.5552 | -258.0276 | -2.7893 | -2.7979 | | 0.5094 | 0.57 | 1100 | 0.5433 | -0.6279 | -1.9368 | 0.7969 | 1.3089 | -276.3377 | -260.5136 | -2.7453 | -2.7536 | | 0.5837 | 0.62 | 1200 | 0.5349 | -0.3780 | -1.9584 | 0.7656 | 1.5804 | -276.5542 | -258.0154 | -2.7643 | -2.7756 | | 0.5214 | 0.67 | 1300 | 0.5732 | -1.0055 | -2.2306 | 0.7656 | 1.2251 | -279.2761 | -264.2903 | -2.6986 | -2.7113 | | 0.6914 | 0.72 | 1400 | 0.5137 | -0.6912 | -2.1775 | 0.7969 | 1.4863 | -278.7448 | -261.1467 | -2.7166 | -2.7275 | | 0.4655 | 0.77 | 1500 | 0.5090 | -0.7987 | -2.2930 | 0.7031 | 1.4943 | -279.8999 | -262.2220 | -2.6651 | -2.6838 | | 0.5731 | 0.83 | 1600 | 0.5312 | -0.8253 | -2.3520 | 0.7812 | 1.5268 | -280.4902 | -262.4876 | -2.6543 | -2.6728 | | 0.5233 | 0.88 | 1700 | 0.5206 | -0.4573 | -2.0951 | 0.7812 | 1.6377 | -277.9205 | -258.8084 | -2.6870 | -2.7097 | | 0.5593 | 0.93 | 1800 | 0.5231 | -0.5508 | -2.2000 | 0.7969 | 1.6492 | -278.9703 | -259.7433 | -2.6221 | -2.6519 | | 0.4967 | 0.98 | 1900 | 0.5290 | -0.5340 | -1.9570 | 0.8281 | 1.4230 | -276.5395 | -259.5749 | -2.6564 | -2.6878 | | 0.0921 | 1.03 | 2000 | 0.5368 | -1.1376 | -3.1615 | 0.7812 | 2.0239 | -288.5854 | -265.6111 | -2.6040 | -2.6345 | | 0.0733 | 1.08 | 2100 | 0.5453 | -1.1045 | -3.4451 | 0.7656 | 2.3406 | -291.4208 | -265.2799 | -2.6289 | -2.6595 | | 0.0972 | 1.14 | 2200 | 0.5571 | -1.6915 | -3.9823 | 0.8125 | 2.2908 | -296.7934 | -271.1505 | -2.6471 | -2.6709 | | 0.1058 | 1.19 | 2300 | 0.5789 | -1.0621 | -3.8941 | 0.7969 | 2.8319 | -295.9106 | -264.8563 | -2.5527 | -2.5798 | | 0.2423 | 1.24 | 2400 | 0.5455 | -1.1963 | -3.5590 | 0.7812 | 2.3627 | -292.5599 | -266.1981 | -2.5414 | -2.5784 | | 0.1177 | 1.29 | 2500 | 0.5889 | -1.8141 | -4.3942 | 0.7969 | 2.5801 | -300.9120 | -272.3761 | -2.4802 | -2.5189 | | 0.1213 | 1.34 | 2600 | 0.5683 | -1.4608 | -3.8420 | 0.8125 | 2.3812 | -295.3901 | -268.8436 | -2.4774 | -2.5207 | | 0.0889 | 1.39 | 2700 | 0.5890 | -1.6007 | -3.7337 | 0.7812 | 2.1330 | -294.3068 | -270.2423 | -2.4123 | -2.4522 | | 0.0995 | 1.45 | 2800 | 0.6073 | -1.5519 | -3.8362 | 0.8281 | 2.2843 | -295.3315 | -269.7538 | -2.4685 | -2.5050 | | 0.1145 | 1.5 | 2900 | 0.5790 | -1.7939 | -4.2876 | 0.8438 | 2.4937 | -299.8461 | -272.1744 | -2.4272 | -2.4674 | | 0.0644 | 1.55 | 3000 | 0.5735 | -1.7285 | -4.2051 | 0.8125 | 2.4766 | -299.0209 | -271.5201 | -2.4193 | -2.4574 | | 0.0798 | 1.6 | 3100 | 0.5537 | -1.7226 | -4.2850 | 0.8438 | 2.5624 | -299.8200 | -271.4610 | -2.5367 | -2.5696 | | 0.1013 | 1.65 | 3200 | 0.5575 | -1.5715 | -3.9813 | 0.875 | 2.4098 | -296.7825 | -269.9498 | -2.4926 | -2.5267 | | 0.1254 | 1.7 | 3300 | 0.5905 | -1.6412 | -4.4703 | 0.8594 | 2.8291 | -301.6730 | -270.6473 | -2.5017 | -2.5340 | | 0.085 | 1.76 | 3400 | 0.6133 | -1.9159 | -4.6760 | 0.8438 | 2.7601 | -303.7296 | -273.3941 | -2.4614 | -2.4960 | | 0.065 | 1.81 | 3500 | 0.6074 | -1.8237 | -4.3525 | 0.8594 | 2.5288 | -300.4951 | -272.4724 | -2.4597 | -2.5004 | | 0.0755 | 1.86 | 3600 | 0.5836 | -1.9252 | -4.4005 | 0.8125 | 2.4753 | -300.9748 | -273.4872 | -2.4327 | -2.4716 | | 0.0746 | 1.91 | 3700 | 0.5789 | -1.9280 | -4.4906 | 0.8125 | 2.5626 | -301.8762 | -273.5149 | -2.4686 | -2.5115 | | 0.1348 | 1.96 | 3800 | 0.6015 | -1.8658 | -4.2428 | 0.8281 | 2.3769 | -299.3976 | -272.8936 | -2.4943 | -2.5393 | | 0.0217 | 2.01 | 3900 | 0.6122 | -2.3335 | -4.9229 | 0.8281 | 2.5894 | -306.1988 | -277.5699 | -2.4841 | -2.5272 | | 0.0219 | 2.07 | 4000 | 0.6522 | -2.9890 | -6.0164 | 0.8281 | 3.0274 | -317.1334 | -284.1248 | -2.4105 | -2.4545 | | 0.0119 | 2.12 | 4100 | 0.6922 | -3.4777 | -6.6749 | 0.7969 | 3.1972 | -323.7187 | -289.0121 | -2.4272 | -2.4699 | | 0.0153 | 2.17 | 4200 | 0.6993 | -3.2406 | -6.6775 | 0.7969 | 3.4369 | -323.7453 | -286.6413 | -2.4047 | -2.4465 | | 0.011 | 2.22 | 4300 | 0.7178 | -3.7991 | -7.4397 | 0.7656 | 3.6406 | -331.3667 | -292.2260 | -2.3843 | -2.4290 | | 0.0072 | 2.27 | 4400 | 0.6840 | -3.3269 | -6.8021 | 0.8125 | 3.4752 | -324.9908 | -287.5042 | -2.4095 | -2.4536 | | 0.0197 | 2.32 | 4500 | 0.7013 | -3.6890 | -7.3014 | 0.8125 | 3.6124 | -329.9841 | -291.1250 | -2.4118 | -2.4543 | | 0.0182 | 2.37 | 4600 | 0.7476 | -3.8994 | -7.5366 | 0.8281 | 3.6372 | -332.3356 | -293.2291 | -2.4163 | -2.4565 | | 0.0125 | 2.43 | 4700 | 0.7199 | -4.0560 | -7.5765 | 0.8438 | 3.5204 | -332.7345 | -294.7952 | -2.3699 | -2.4100 | | 0.0082 | 2.48 | 4800 | 0.7048 | -3.6613 | -7.1356 | 0.875 | 3.4743 | -328.3255 | -290.8477 | -2.3925 | -2.4303 | | 0.0118 | 2.53 | 4900 | 0.6976 | -3.7908 | -7.3152 | 0.8125 | 3.5244 | -330.1224 | -292.1431 | -2.3633 | -2.4047 | | 0.0118 | 2.58 | 5000 | 0.7198 | -3.9049 | -7.5557 | 0.8281 | 3.6508 | -332.5271 | -293.2844 | -2.3764 | -2.4194 | | 0.006 | 2.63 | 5100 | 0.7506 | -4.2118 | -7.9149 | 0.8125 | 3.7032 | -336.1194 | -296.3530 | -2.3407 | -2.3860 | | 0.0143 | 2.68 | 5200 | 0.7408 | -4.2433 | -7.9802 | 0.8125 | 3.7369 | -336.7721 | -296.6682 | -2.3509 | -2.3946 | | 0.0057 | 2.74 | 5300 | 0.7552 | -4.3392 | -8.0831 | 0.7969 | 3.7439 | -337.8013 | -297.6275 | -2.3388 | -2.3842 | | 0.0138 | 2.79 | 5400 | 0.7404 | -4.2395 | -7.9762 | 0.8125 | 3.7367 | -336.7322 | -296.6304 | -2.3286 | -2.3737 | | 0.0079 | 2.84 | 5500 | 0.7525 | -4.4466 | -8.2196 | 0.7812 | 3.7731 | -339.1662 | -298.7007 | -2.3200 | -2.3641 | | 0.0077 | 2.89 | 5600 | 0.7520 | -4.5586 | -8.3485 | 0.7969 | 3.7899 | -340.4545 | -299.8206 | -2.3078 | -2.3517 | | 0.0094 | 2.94 | 5700 | 0.7527 | -4.5542 | -8.3509 | 0.7812 | 3.7967 | -340.4790 | -299.7773 | -2.3062 | -2.3510 | | 0.0054 | 2.99 | 5800 | 0.7520 | -4.5169 | -8.3079 | 0.7812 | 3.7911 | -340.0493 | -299.4038 | -2.3081 | -2.3530 | ### Framework versions - Transformers 4.35.0.dev0 - Pytorch 2.0.1+cu118 - Datasets 2.12.0 - Tokenizers 0.14.0 ## Citation If you find Zephyr-7B-β is useful in your work, please cite it with: ``` @misc{tunstall2023zephyr, title={Zephyr: Direct Distillation of LM Alignment}, author={Lewis Tunstall and Edward Beeching and Nathan Lambert and Nazneen Rajani and Kashif Rasul and Younes Belkada and Shengyi Huang and Leandro von Werra and Clémentine Fourrier and Nathan Habib and Nathan Sarrazin and Omar Sanseviero and Alexander M. Rush and Thomas Wolf}, year={2023}, eprint={2310.16944}, archivePrefix={arXiv}, primaryClass={cs.LG} } ```
19,420
[ [ -0.0302276611328125, -0.05584716796875, 0.01290130615234375, 0.00811004638671875, -0.01471710205078125, -0.00655364990234375, -0.006839752197265625, -0.044097900390625, 0.0271759033203125, 0.01953125, -0.038787841796875, -0.0269927978515625, -0.046417236328125, -0.0022563934326171875, -0.0009918212890625, 0.0634765625, 0.0118408203125, -0.0027942657470703125, 0.011016845703125, -0.00911712646484375, -0.036529541015625, -0.038604736328125, -0.045013427734375, -0.0256195068359375, 0.02789306640625, 0.0209808349609375, 0.07354736328125, 0.05596923828125, 0.040618896484375, 0.02734375, -0.03912353515625, 0.003604888916015625, -0.042755126953125, -0.012969970703125, 0.0189361572265625, -0.041717529296875, -0.051513671875, -0.006805419921875, 0.049774169921875, 0.0400390625, -0.006103515625, 0.0153045654296875, 0.00954437255859375, 0.0521240234375, -0.025634765625, 0.0318603515625, -0.038787841796875, -0.0028839111328125, -0.020355224609375, -0.0020046234130859375, -0.0159149169921875, -0.015625, 0.0069580078125, -0.0501708984375, 0.01654052734375, 0.007511138916015625, 0.095703125, 0.01219940185546875, -0.0135650634765625, -0.00540924072265625, -0.0469970703125, 0.041717529296875, -0.06085205078125, 0.0287628173828125, 0.006317138671875, 0.025634765625, -0.0247344970703125, -0.041290283203125, -0.050689697265625, -0.003726959228515625, -0.0091094970703125, 0.0279998779296875, -0.0303802490234375, 0.0054473876953125, 0.02703857421875, 0.0340576171875, -0.044219970703125, 0.0006194114685058594, -0.0478515625, -0.02508544921875, 0.0361328125, 0.006938934326171875, 0.01763916015625, -0.032379150390625, -0.031494140625, -0.02734375, -0.032440185546875, 0.038238525390625, 0.03338623046875, 0.0272979736328125, -0.011962890625, 0.04443359375, -0.0229034423828125, 0.059661865234375, 0.01291656494140625, -0.021728515625, 0.046600341796875, -0.01323699951171875, -0.0210723876953125, 0.0014448165893554688, 0.07830810546875, 0.052459716796875, -0.005584716796875, 0.004314422607421875, -0.01276397705078125, 0.020355224609375, -0.0059814453125, -0.07305908203125, -0.00803375244140625, 0.0276031494140625, -0.030487060546875, -0.03985595703125, -0.001922607421875, -0.050567626953125, 0.009185791015625, 0.00001233816146850586, 0.039276123046875, -0.04296875, -0.028289794921875, 0.00875091552734375, -0.028076171875, 0.00815582275390625, 0.0116424560546875, -0.0694580078125, 0.0134124755859375, 0.034515380859375, 0.07293701171875, 0.019073486328125, -0.018890380859375, -0.0135650634765625, -0.0035152435302734375, -0.024993896484375, 0.05413818359375, -0.027862548828125, -0.028961181640625, -0.0221710205078125, 0.009735107421875, -0.0215911865234375, -0.035308837890625, 0.046173095703125, -0.028656005859375, 0.028961181640625, -0.0298919677734375, -0.048614501953125, -0.01910400390625, 0.0151519775390625, -0.041961669921875, 0.086669921875, 0.0212554931640625, -0.0694580078125, 0.026336669921875, -0.04107666015625, 0.007030487060546875, -0.0011243820190429688, -0.00949859619140625, -0.0308380126953125, -0.01026153564453125, 0.01007080078125, 0.0265655517578125, -0.025848388671875, 0.01629638671875, -0.037200927734375, -0.0271759033203125, 0.007755279541015625, -0.01318359375, 0.07232666015625, 0.022308349609375, -0.033966064453125, 0.010528564453125, -0.059051513671875, 0.006084442138671875, 0.0301361083984375, -0.013580322265625, -0.0024585723876953125, -0.020721435546875, -0.0024929046630859375, 0.02801513671875, 0.019287109375, -0.044189453125, 0.0111083984375, -0.04022216796875, 0.04388427734375, 0.04998779296875, -0.006023406982421875, 0.026824951171875, -0.04998779296875, 0.031890869140625, 0.01428985595703125, 0.03118896484375, 0.006633758544921875, -0.053741455078125, -0.056488037109375, -0.0128326416015625, 0.0141448974609375, 0.041717529296875, -0.034210205078125, 0.0576171875, -0.014678955078125, -0.06964111328125, -0.043426513671875, 0.00801849365234375, 0.032745361328125, 0.0704345703125, 0.02386474609375, -0.01497650146484375, -0.025909423828125, -0.0711669921875, 0.0016660690307617188, -0.03509521484375, 0.02001953125, 0.035736083984375, 0.032562255859375, -0.0104827880859375, 0.0701904296875, -0.040313720703125, -0.025909423828125, -0.036468505859375, -0.027984619140625, 0.035308837890625, 0.03546142578125, 0.0701904296875, -0.053131103515625, -0.041656494140625, -0.006313323974609375, -0.06109619140625, -0.002895355224609375, 0.0143890380859375, -0.0251922607421875, 0.01050567626953125, 0.005123138427734375, -0.059417724609375, 0.026397705078125, 0.0433349609375, -0.0338134765625, 0.037109375, -0.0160675048828125, 0.003231048583984375, -0.0828857421875, 0.0214996337890625, 0.004909515380859375, 0.0094146728515625, -0.051910400390625, -0.01314544677734375, 0.00470733642578125, -0.005603790283203125, -0.037445068359375, 0.0546875, -0.034515380859375, 0.007457733154296875, -0.004840850830078125, 0.00421905517578125, 0.006999969482421875, 0.046600341796875, 0.0147857666015625, 0.045928955078125, 0.0506591796875, -0.03070068359375, 0.017486572265625, 0.027679443359375, -0.0198211669921875, 0.013916015625, -0.070556640625, -0.007335662841796875, -0.015777587890625, 0.02508544921875, -0.08245849609375, -0.018524169921875, 0.03985595703125, -0.045074462890625, 0.0163116455078125, -0.033172607421875, -0.0263671875, -0.040283203125, -0.020172119140625, -0.0020389556884765625, 0.05584716796875, -0.02410888671875, 0.0233001708984375, 0.0219573974609375, 0.00298309326171875, -0.051422119140625, -0.026153564453125, -0.0252685546875, -0.0256500244140625, -0.0733642578125, 0.035888671875, -0.0082244873046875, -0.00439453125, 0.0011835098266601562, -0.0091552734375, 0.006847381591796875, 0.0028533935546875, 0.034271240234375, 0.04156494140625, -0.00904083251953125, -0.004978179931640625, -0.00439453125, -0.005168914794921875, -0.0022449493408203125, -0.004486083984375, 0.05694580078125, -0.0292816162109375, -0.005168914794921875, -0.038543701171875, -0.000255584716796875, 0.048980712890625, -0.01119232177734375, 0.0703125, 0.053497314453125, -0.0226898193359375, 0.01849365234375, -0.046234130859375, -0.011627197265625, -0.036163330078125, 0.020050048828125, -0.034027099609375, -0.052734375, 0.060760498046875, 0.019439697265625, 0.0180511474609375, 0.0701904296875, 0.03509521484375, 0.00968170166015625, 0.07965087890625, 0.03411865234375, -0.00791168212890625, 0.0460205078125, -0.0509033203125, -0.0122528076171875, -0.0712890625, -0.032989501953125, -0.036895751953125, -0.03131103515625, -0.04229736328125, -0.0184478759765625, 0.026336669921875, 0.0277557373046875, -0.0248565673828125, 0.03350830078125, -0.055145263671875, 0.0134124755859375, 0.028533935546875, 0.0201263427734375, 0.00867462158203125, -0.00809478759765625, -0.0202484130859375, -0.0057525634765625, -0.0672607421875, -0.043060302734375, 0.0794677734375, 0.033905029296875, 0.03912353515625, 0.01279449462890625, 0.06402587890625, -0.0115966796875, 0.0207061767578125, -0.044647216796875, 0.030792236328125, 0.00855255126953125, -0.0701904296875, -0.01480865478515625, -0.046295166015625, -0.07379150390625, 0.04449462890625, -0.0217437744140625, -0.06292724609375, 0.01654052734375, 0.0214080810546875, -0.041778564453125, 0.0284576416015625, -0.065673828125, 0.09014892578125, -0.02960205078125, -0.03546142578125, 0.0059814453125, -0.05780029296875, 0.0241241455078125, 0.0206756591796875, 0.0175628662109375, -0.0284576416015625, 0.0083770751953125, 0.0726318359375, -0.04840087890625, 0.0556640625, -0.03839111328125, 0.02325439453125, 0.031585693359375, -0.00759124755859375, 0.03399658203125, 0.0009360313415527344, -0.01324462890625, 0.007297515869140625, 0.0112457275390625, -0.03411865234375, -0.0302886962890625, 0.052734375, -0.0904541015625, -0.04296875, -0.04449462890625, -0.0260467529296875, -0.00421905517578125, 0.032257080078125, 0.0386962890625, 0.03717041015625, -0.01239013671875, 0.021087646484375, 0.03887939453125, -0.01485443115234375, 0.0195770263671875, 0.0325927734375, -0.0252838134765625, -0.0330810546875, 0.056304931640625, 0.0191192626953125, 0.028076171875, 0.0191650390625, 0.034423828125, -0.036865234375, -0.030426025390625, -0.0440673828125, 0.0229034423828125, -0.039520263671875, -0.0172576904296875, -0.06427001953125, -0.021881103515625, -0.04840087890625, 0.0005941390991210938, -0.035003662109375, -0.03765869140625, -0.0292510986328125, 0.0004150867462158203, 0.039703369140625, 0.0399169921875, 0.012115478515625, 0.03179931640625, -0.0665283203125, 0.005096435546875, 0.0055084228515625, 0.01207733154296875, 0.004047393798828125, -0.065673828125, 0.004077911376953125, 0.0250396728515625, -0.034027099609375, -0.06890869140625, 0.05108642578125, 0.00948333740234375, 0.055877685546875, 0.0295257568359375, -0.0034637451171875, 0.06414794921875, -0.018890380859375, 0.05230712890625, 0.0225067138671875, -0.040679931640625, 0.051727294921875, -0.0274505615234375, 0.0144500732421875, 0.0302276611328125, 0.042816162109375, -0.031494140625, -0.018829345703125, -0.0821533203125, -0.060455322265625, 0.060089111328125, 0.02783203125, -0.004528045654296875, 0.0009169578552246094, 0.033966064453125, -0.0166473388671875, 0.007297515869140625, -0.053619384765625, -0.0281219482421875, -0.027069091796875, -0.0010862350463867188, -0.00617218017578125, -0.006175994873046875, 0.0012960433959960938, -0.0247650146484375, 0.054443359375, 0.00423431396484375, 0.019287109375, 0.0283660888671875, -0.003826141357421875, -0.0123138427734375, 0.0112152099609375, 0.03759765625, 0.041351318359375, -0.049713134765625, -0.0200347900390625, -0.004795074462890625, -0.0309906005859375, -0.0005698204040527344, 0.0186004638671875, -0.019866943359375, 0.0021820068359375, 0.0216827392578125, 0.0679931640625, 0.00667572021484375, -0.02960205078125, 0.034942626953125, -0.0078887939453125, -0.0199127197265625, -0.01727294921875, 0.023956298828125, 0.01438140869140625, 0.0209808349609375, 0.0170135498046875, 0.01763916015625, 0.0025177001953125, -0.04742431640625, -0.0072174072265625, 0.028076171875, -0.036041259765625, -0.034912109375, 0.06573486328125, 0.01435089111328125, -0.00757598876953125, 0.03955078125, -0.00798797607421875, -0.05169677734375, 0.051177978515625, 0.039581298828125, 0.04046630859375, -0.010040283203125, 0.00791168212890625, 0.050323486328125, 0.0170135498046875, -0.017547607421875, 0.021881103515625, 0.01169586181640625, -0.05792236328125, 0.00577545166015625, -0.05169677734375, -0.0173797607421875, 0.00830078125, -0.04736328125, 0.021392822265625, -0.034454345703125, -0.047332763671875, 0.024505615234375, 0.0227203369140625, -0.057891845703125, 0.00867462158203125, -0.0055084228515625, 0.0697021484375, -0.07073974609375, 0.0635986328125, 0.045745849609375, -0.049530029296875, -0.0777587890625, -0.034332275390625, 0.007572174072265625, -0.06927490234375, 0.0443115234375, 0.0183868408203125, 0.01515960693359375, -0.0095367431640625, -0.0174560546875, -0.06585693359375, 0.10107421875, 0.0233917236328125, -0.05084228515625, -0.01468658447265625, -0.00014150142669677734, 0.052734375, -0.01129913330078125, 0.049591064453125, 0.031585693359375, 0.0227813720703125, 0.0233612060546875, -0.08154296875, 0.006694793701171875, -0.04248046875, 0.007595062255859375, 0.012237548828125, -0.09967041015625, 0.07403564453125, -0.01468658447265625, 0.007122039794921875, -0.00821685791015625, 0.047088623046875, 0.030792236328125, -0.0037212371826171875, 0.04632568359375, 0.054901123046875, 0.049346923828125, -0.01151275634765625, 0.07379150390625, -0.0416259765625, 0.03326416015625, 0.051788330078125, -0.014495849609375, 0.057403564453125, 0.0260467529296875, -0.022216796875, 0.0244903564453125, 0.04974365234375, 0.0019664764404296875, 0.0249786376953125, -0.003383636474609375, -0.004467010498046875, -0.013092041015625, 0.002147674560546875, -0.054901123046875, 0.02581787109375, 0.0225677490234375, -0.0311279296875, -0.00678253173828125, -0.0269775390625, 0.00992584228515625, -0.0234527587890625, -0.0006375312805175781, 0.048675537109375, -0.00579833984375, -0.054901123046875, 0.06060791015625, -0.006366729736328125, 0.05535888671875, -0.0552978515625, 0.00789642333984375, -0.0187835693359375, 0.030548095703125, -0.0257110595703125, -0.06243896484375, 0.01312255859375, -0.005825042724609375, -0.005889892578125, -0.0011205673217773438, 0.0572509765625, -0.0193634033203125, -0.03839111328125, 0.025054931640625, 0.0309600830078125, 0.0168914794921875, -0.0013380050659179688, -0.0709228515625, 0.0182647705078125, 0.0089874267578125, -0.039520263671875, 0.036102294921875, 0.03265380859375, 0.01139068603515625, 0.0540771484375, 0.055267333984375, 0.01192474365234375, 0.00823211669921875, -0.00616455078125, 0.08013916015625, -0.043914794921875, -0.0357666015625, -0.052276611328125, 0.0302886962890625, -0.01021575927734375, -0.039306640625, 0.06585693359375, 0.060577392578125, 0.054473876953125, 0.00901031494140625, 0.0478515625, -0.0305938720703125, 0.04071044921875, -0.0216827392578125, 0.0528564453125, -0.04266357421875, 0.016082763671875, -0.0287017822265625, -0.0648193359375, -0.0011196136474609375, 0.05426025390625, -0.019866943359375, 0.0084686279296875, 0.0214080810546875, 0.0726318359375, -0.000736236572265625, -0.004604339599609375, 0.01241302490234375, 0.01043701171875, 0.036285400390625, 0.0552978515625, 0.048004150390625, -0.05584716796875, 0.058837890625, -0.059295654296875, -0.032073974609375, -0.02337646484375, -0.0386962890625, -0.06683349609375, -0.034576416015625, -0.022491455078125, -0.038787841796875, -0.0009822845458984375, 0.07574462890625, 0.047088623046875, -0.031402587890625, -0.0287628173828125, 0.00968170166015625, -0.007663726806640625, -0.0179901123046875, -0.016815185546875, 0.0318603515625, -0.014312744140625, -0.047119140625, 0.007099151611328125, 0.0008358955383300781, 0.026519775390625, -0.002658843994140625, -0.0167388916015625, -0.00592041015625, -0.01409149169921875, 0.0300750732421875, 0.01922607421875, -0.053558349609375, -0.0201263427734375, 0.022857666015625, -0.010650634765625, 0.0178070068359375, 0.01178741455078125, -0.03955078125, 0.032440185546875, 0.046783447265625, 0.00969696044921875, 0.04486083984375, -0.0014743804931640625, 0.018402099609375, -0.02972412109375, 0.026702880859375, 0.01033782958984375, 0.03802490234375, 0.0102996826171875, -0.022064208984375, 0.034454345703125, 0.035400390625, -0.042022705078125, -0.062744140625, -0.0171966552734375, -0.10028076171875, -0.0016794204711914062, 0.08648681640625, -0.00925445556640625, -0.0419921875, 0.0238037109375, -0.0270538330078125, 0.0229949951171875, -0.048492431640625, 0.048126220703125, 0.0546875, -0.021087646484375, 0.00020051002502441406, -0.04449462890625, 0.04022216796875, 0.02130126953125, -0.045562744140625, 0.003948211669921875, 0.035675048828125, 0.043365478515625, 0.01568603515625, 0.06134033203125, -0.0188140869140625, 0.0169219970703125, 0.01204681396484375, 0.0042572021484375, -0.01239776611328125, -0.00594329833984375, -0.01029205322265625, 0.00244903564453125, 0.00920867919921875, -0.01385498046875 ] ]
maddiehope/airlinetweets
2023-10-27T19:02:18.000Z
[ "transformers", "pytorch", "bert", "text-classification", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-classification
maddiehope
null
null
maddiehope/airlinetweets
0
2
transformers
2023-10-27T15:18:02
--- license: apache-2.0 base_model: bert-base-cased tags: - generated_from_trainer model-index: - name: airlinetweets 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. --> # airlinetweets 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: - Loss: 0.6723 ## 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: 64 - 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.5255 | 1.0 | 641 | 0.4095 | | 0.3334 | 2.0 | 1282 | 0.4872 | | 0.2082 | 3.0 | 1923 | 0.6723 | ### Framework versions - Transformers 4.34.1 - Pytorch 1.12.1 - Datasets 2.14.6 - Tokenizers 0.14.1
1,369
[ [ -0.03424072265625, -0.035675048828125, 0.00982666015625, 0.0169525146484375, -0.0330810546875, -0.0276641845703125, -0.01019287109375, -0.00795745849609375, 0.0144500732421875, 0.02947998046875, -0.064208984375, -0.03143310546875, -0.038238525390625, -0.024749755859375, -0.024261474609375, 0.1019287109375, 0.003818511962890625, 0.0335693359375, -0.002674102783203125, -0.00037026405334472656, -0.026458740234375, -0.07196044921875, -0.058349609375, -0.040130615234375, 0.0252685546875, 0.018341064453125, 0.05059814453125, 0.052642822265625, 0.0576171875, 0.008758544921875, -0.0270233154296875, -0.0174102783203125, -0.03857421875, -0.044036865234375, 0.0082550048828125, -0.02667236328125, -0.048370361328125, -0.01213836669921875, 0.05072021484375, 0.046539306640625, -0.0312042236328125, 0.0254058837890625, 0.0020294189453125, 0.047027587890625, -0.029388427734375, 0.00907135009765625, -0.0439453125, 0.0247650146484375, -0.00701141357421875, -0.0178680419921875, -0.0212860107421875, -0.009674072265625, 0.00972747802734375, -0.037109375, 0.034759521484375, -0.000560760498046875, 0.10791015625, 0.0201568603515625, -0.0258636474609375, -0.0009493827819824219, -0.058319091796875, 0.04248046875, -0.055938720703125, 0.032867431640625, 0.0196380615234375, 0.046722412109375, 0.00247955322265625, -0.053375244140625, -0.0277862548828125, 0.0011491775512695312, 0.004425048828125, 0.010650634765625, -0.009185791015625, 0.00914764404296875, 0.040283203125, 0.024749755859375, -0.042022705078125, 0.0160675048828125, -0.039031982421875, -0.02191162109375, 0.038909912109375, 0.0234375, -0.0186309814453125, -0.00998687744140625, -0.0308074951171875, -0.014556884765625, -0.0267333984375, 0.0197906494140625, 0.040252685546875, 0.023162841796875, -0.0251007080078125, 0.039215087890625, -0.020294189453125, 0.048431396484375, 0.00818634033203125, 0.0016202926635742188, 0.042724609375, 0.007843017578125, -0.040069580078125, 0.001636505126953125, 0.03497314453125, 0.04791259765625, 0.0224151611328125, -0.0014352798461914062, -0.031890869140625, -0.02032470703125, 0.02685546875, -0.0738525390625, -0.0301361083984375, 0.00959014892578125, -0.058441162109375, -0.043182373046875, 0.004337310791015625, -0.0282440185546875, 0.015716552734375, -0.02703857421875, 0.04241943359375, -0.03375244140625, -0.01255035400390625, 0.007266998291015625, -0.016510009765625, 0.035400390625, 0.0174407958984375, -0.05804443359375, 0.01534271240234375, 0.034820556640625, 0.0389404296875, 0.01177978515625, -0.016754150390625, -0.006427764892578125, -0.0052490234375, -0.03131103515625, 0.036712646484375, -0.0032329559326171875, -0.032470703125, 0.00438690185546875, 0.01006317138671875, -0.005840301513671875, -0.02978515625, 0.08062744140625, -0.037445068359375, 0.00958251953125, -0.0340576171875, -0.04718017578125, -0.0215301513671875, 0.027374267578125, -0.04620361328125, 0.07830810546875, -0.0007319450378417969, -0.03900146484375, 0.058319091796875, -0.039947509765625, -0.0206451416015625, -0.0003769397735595703, -0.01406097412109375, -0.06805419921875, 0.0035572052001953125, 0.01076507568359375, 0.037628173828125, 0.00400543212890625, 0.023223876953125, -0.03045654296875, -0.04119873046875, -0.01300048828125, -0.038299560546875, 0.06939697265625, 0.01529693603515625, -0.01708984375, 0.006549835205078125, -0.08624267578125, 0.02667236328125, 0.020782470703125, -0.04815673828125, 0.005634307861328125, -0.01082611083984375, 0.0408935546875, 0.0140228271484375, 0.0251617431640625, -0.03607177734375, 0.0198974609375, -0.0276641845703125, 0.01140594482421875, 0.055999755859375, 0.00882720947265625, -0.005218505859375, -0.043975830078125, 0.005741119384765625, 0.01525115966796875, 0.036407470703125, 0.0183258056640625, -0.031829833984375, -0.07574462890625, -0.0038909912109375, 0.0239105224609375, 0.0229644775390625, -0.01739501953125, 0.0718994140625, -0.0173187255859375, -0.056640625, -0.0181732177734375, 0.0013971328735351562, 0.0197296142578125, 0.036224365234375, 0.0206298828125, -0.006465911865234375, -0.045745849609375, -0.093505859375, 0.003383636474609375, -0.01361083984375, 0.01308441162109375, 0.0181884765625, 0.052703857421875, -0.015167236328125, 0.05267333984375, -0.035308837890625, -0.0122222900390625, -0.0106658935546875, 0.00536346435546875, 0.035064697265625, 0.06695556640625, 0.06451416015625, -0.0306243896484375, -0.01525115966796875, -0.01306915283203125, -0.051727294921875, 0.0275115966796875, -0.0208740234375, -0.032470703125, 0.006061553955078125, 0.019622802734375, -0.03289794921875, 0.05224609375, 0.0167236328125, -0.0285186767578125, 0.0487060546875, -0.0242156982421875, -0.01302337646484375, -0.07208251953125, 0.0153656005859375, 0.005451202392578125, 0.0022487640380859375, -0.019561767578125, -0.0010776519775390625, 0.01122283935546875, -0.019317626953125, -0.0300445556640625, 0.0251617431640625, -0.0036773681640625, -0.0003414154052734375, -0.008941650390625, -0.04791259765625, 0.004177093505859375, 0.07025146484375, 0.0148162841796875, 0.031646728515625, 0.041900634765625, -0.041534423828125, 0.0146484375, 0.0295867919921875, -0.0279693603515625, 0.03265380859375, -0.056976318359375, 0.00441741943359375, -0.00737762451171875, 0.00556182861328125, -0.05322265625, -0.01074981689453125, 0.0182037353515625, -0.0307464599609375, 0.006778717041015625, -0.021209716796875, -0.03411865234375, -0.0325927734375, -0.00662994384765625, 0.01036834716796875, 0.043121337890625, -0.049163818359375, 0.031219482421875, -0.01474761962890625, 0.0251007080078125, -0.0361328125, -0.056365966796875, -0.00998687744140625, -0.00812530517578125, -0.039794921875, 0.0171356201171875, -0.00792694091796875, 0.0126495361328125, 0.0063934326171875, -0.01471710205078125, -0.03082275390625, 0.0007524490356445312, 0.02716064453125, 0.02545166015625, -0.0157623291015625, 0.00273895263671875, 0.00948333740234375, 0.009521484375, 0.026947021484375, -0.0006098747253417969, 0.041534423828125, -0.0171661376953125, -0.0235137939453125, -0.0482177734375, 0.00737762451171875, 0.03924560546875, -0.0018224716186523438, 0.0682373046875, 0.0556640625, -0.05352783203125, -0.00482177734375, -0.041534423828125, -0.01052093505859375, -0.031158447265625, 0.04156494140625, -0.04608154296875, -0.006923675537109375, 0.058868408203125, 0.0151214599609375, 0.01206207275390625, 0.074462890625, 0.036529541015625, -0.0085296630859375, 0.075927734375, 0.034332275390625, -0.00949859619140625, 0.0239105224609375, -0.06732177734375, -0.0164947509765625, -0.0479736328125, -0.040008544921875, -0.042755126953125, -0.0162353515625, -0.042633056640625, 0.01038360595703125, 0.0206146240234375, 0.01160430908203125, -0.05950927734375, 0.01238250732421875, -0.037445068359375, 0.0248870849609375, 0.059539794921875, 0.033233642578125, -0.0088043212890625, 0.00736236572265625, -0.0306243896484375, -0.0030651092529296875, -0.06768798828125, -0.0271148681640625, 0.097900390625, 0.03765869140625, 0.052978515625, -0.006999969482421875, 0.05877685546875, 0.015472412109375, 0.0081329345703125, -0.046142578125, 0.03192138671875, 0.00507354736328125, -0.07855224609375, -0.0131072998046875, -0.0241851806640625, -0.048980712890625, 0.0006995201110839844, -0.026885986328125, -0.036376953125, 0.0196990966796875, 0.0147857666015625, -0.0301971435546875, 0.0316162109375, -0.044830322265625, 0.0772705078125, -0.04022216796875, -0.01107025146484375, -0.01161956787109375, -0.03759765625, 0.0091400146484375, -0.002201080322265625, -0.0259246826171875, 0.00357818603515625, 0.01806640625, 0.08184814453125, -0.05694580078125, 0.0499267578125, -0.03594970703125, 0.026885986328125, 0.0166778564453125, -0.0149993896484375, 0.04119873046875, -0.001552581787109375, -0.0189971923828125, 0.0313720703125, -0.0012912750244140625, -0.042999267578125, -0.024871826171875, 0.05377197265625, -0.09210205078125, -0.006450653076171875, -0.042633056640625, -0.024810791015625, -0.00606536865234375, 0.029754638671875, 0.0411376953125, 0.04815673828125, -0.0030956268310546875, 0.0212249755859375, 0.0237884521484375, -0.00623321533203125, 0.036102294921875, 0.0289306640625, -0.0014047622680664062, -0.03314208984375, 0.0618896484375, 0.003574371337890625, 0.006381988525390625, 0.0032062530517578125, 0.002777099609375, -0.027923583984375, -0.04986572265625, -0.039947509765625, 0.01122283935546875, -0.06878662109375, -0.01263427734375, -0.018463134765625, -0.04962158203125, -0.0190887451171875, -0.00998687744140625, -0.02996826171875, -0.0225982666015625, -0.03619384765625, -0.0173797607421875, 0.0145416259765625, 0.034332275390625, 0.00583648681640625, 0.051666259765625, -0.04180908203125, -0.005702972412109375, 0.01021575927734375, 0.045440673828125, 0.0084381103515625, -0.057220458984375, -0.0428466796875, -0.00044918060302734375, -0.03411865234375, -0.0361328125, 0.028411865234375, 0.0138092041015625, 0.060272216796875, 0.045745849609375, -0.008514404296875, 0.07257080078125, -0.033660888671875, 0.06243896484375, 0.01515960693359375, -0.04547119140625, 0.03350830078125, -0.0176849365234375, 0.00968170166015625, 0.042999267578125, 0.03167724609375, -0.0028171539306640625, -0.004299163818359375, -0.0853271484375, -0.05682373046875, 0.06768798828125, 0.036224365234375, 0.0030612945556640625, 0.01543426513671875, 0.033660888671875, -0.0091400146484375, 0.0223541259765625, -0.062744140625, -0.041412353515625, -0.0308990478515625, -0.0016279220581054688, 0.0005998611450195312, -0.0251617431640625, -0.01053619384765625, -0.0452880859375, 0.082275390625, 0.0127105712890625, 0.03863525390625, 0.01171112060546875, 0.01395416259765625, -0.0232086181640625, -0.00890350341796875, 0.048126220703125, 0.055694580078125, -0.06976318359375, -0.0224761962890625, 0.005519866943359375, -0.0201873779296875, -0.0126800537109375, 0.024078369140625, -0.0025348663330078125, 0.018524169921875, 0.032958984375, 0.07763671875, -0.0018873214721679688, -0.0242156982421875, 0.0318603515625, -0.00778961181640625, -0.031219482421875, -0.045166015625, -0.001018524169921875, -0.01654052734375, 0.0006031990051269531, 0.037078857421875, 0.03607177734375, 0.01213836669921875, -0.00811767578125, 0.0224456787109375, 0.027618408203125, -0.0291748046875, -0.00853729248046875, 0.06341552734375, 0.0242156982421875, -0.0221099853515625, 0.053436279296875, -0.006649017333984375, -0.03045654296875, 0.07080078125, 0.02349853515625, 0.06854248046875, 0.0069122314453125, -0.015960693359375, 0.04656982421875, 0.030059814453125, -0.0006871223449707031, 0.041473388671875, 0.00988006591796875, -0.050048828125, -0.01959228515625, -0.048431396484375, -0.027313232421875, 0.05072021484375, -0.091552734375, 0.03515625, -0.042510986328125, -0.0308990478515625, 0.0252227783203125, 0.0105743408203125, -0.07989501953125, 0.04949951171875, 0.01012420654296875, 0.09423828125, -0.07012939453125, 0.06011962890625, 0.05670166015625, -0.035980224609375, -0.07916259765625, 0.004077911376953125, -0.0297088623046875, -0.07421875, 0.0638427734375, 0.007289886474609375, 0.032684326171875, 0.0054473876953125, -0.027252197265625, -0.047027587890625, 0.061065673828125, 0.01255035400390625, -0.055389404296875, -0.00948333740234375, 0.01512908935546875, 0.042572021484375, -0.00217437744140625, 0.03912353515625, 0.01145172119140625, 0.0142974853515625, 0.011383056640625, -0.07342529296875, -0.017608642578125, -0.0243377685546875, 0.0185394287109375, 0.00643157958984375, -0.0482177734375, 0.07373046875, 0.0004112720489501953, 0.0313720703125, 0.005077362060546875, 0.038055419921875, 0.0060272216796875, 0.0158233642578125, 0.04022216796875, 0.07244873046875, 0.0306549072265625, -0.00806427001953125, 0.07861328125, -0.042572021484375, 0.059844970703125, 0.07086181640625, 0.005084991455078125, 0.045867919921875, 0.0340576171875, -0.01392364501953125, 0.0306854248046875, 0.06854248046875, -0.024688720703125, 0.045806884765625, 0.01094818115234375, 0.00891876220703125, -0.0325927734375, 0.0257568359375, -0.046478271484375, 0.0231781005859375, -0.0014743804931640625, -0.044403076171875, -0.03179931640625, -0.00958251953125, -0.00867462158203125, -0.0279083251953125, -0.03302001953125, 0.04376220703125, -0.032196044921875, -0.03472900390625, 0.0709228515625, 0.01148223876953125, 0.025634765625, -0.044281005859375, -0.01055145263671875, -0.00848388671875, 0.0249786376953125, -0.0150604248046875, -0.044097900390625, 0.0191802978515625, -0.006603240966796875, -0.0211029052734375, 0.0033588409423828125, 0.03265380859375, -0.00797271728515625, -0.07611083984375, 0.00495147705078125, 0.0241851806640625, 0.0186309814453125, -0.0017766952514648438, -0.071533203125, 0.00916290283203125, 0.007080078125, -0.0249786376953125, 0.002132415771484375, 0.016021728515625, 0.00551605224609375, 0.049957275390625, 0.041229248046875, 0.003879547119140625, 0.0086517333984375, 0.01044464111328125, 0.07611083984375, -0.04437255859375, -0.055328369140625, -0.04962158203125, 0.035614013671875, -0.009918212890625, -0.05377197265625, 0.042449951171875, 0.08489990234375, 0.06988525390625, -0.0246734619140625, 0.056640625, 0.0007777214050292969, 0.033111572265625, -0.0400390625, 0.050689697265625, -0.043182373046875, 0.0101165771484375, -0.011444091796875, -0.0447998046875, 0.0020599365234375, 0.061187744140625, -0.0142059326171875, 0.01424407958984375, 0.026397705078125, 0.043609619140625, -0.003997802734375, -0.0016660690307617188, 0.01306915283203125, -0.0059661865234375, 0.031219482421875, 0.032745361328125, 0.030731201171875, -0.06414794921875, 0.052398681640625, -0.05621337890625, -0.00577545166015625, -0.034698486328125, -0.05133056640625, -0.0806884765625, -0.03125, -0.034088134765625, -0.03790283203125, 0.0169677734375, 0.073974609375, 0.0718994140625, -0.05517578125, -0.024810791015625, -0.01255035400390625, -0.020965576171875, -0.026397705078125, -0.0198211669921875, 0.039825439453125, -0.01561737060546875, -0.047119140625, -0.01233673095703125, -0.0335693359375, 0.022735595703125, -0.0135345458984375, -0.0178680419921875, -0.0113983154296875, -0.0137939453125, 0.01175689697265625, -0.0008082389831542969, -0.037933349609375, -0.033111572265625, -0.01364898681640625, -0.001659393310546875, 0.009246826171875, 0.0224609375, -0.034759521484375, 0.0245361328125, 0.0103759765625, 0.03302001953125, 0.051025390625, 0.002994537353515625, 0.014068603515625, -0.06842041015625, 0.027069091796875, 0.0255126953125, 0.03692626953125, -0.004241943359375, -0.033660888671875, 0.0275115966796875, 0.0307464599609375, -0.044281005859375, -0.07061767578125, -0.024261474609375, -0.10015869140625, 0.006053924560546875, 0.0789794921875, 0.0081329345703125, -0.01605224609375, 0.0261993408203125, -0.0189056396484375, 0.016876220703125, -0.034912109375, 0.043121337890625, 0.05718994140625, -0.0142059326171875, 0.01326751708984375, -0.03155517578125, 0.035125732421875, 0.02813720703125, -0.0419921875, -0.024444580078125, 0.024810791015625, 0.0428466796875, 0.001800537109375, 0.026458740234375, 0.01184844970703125, 0.0268096923828125, 0.004840850830078125, 0.036468505859375, -0.0227508544921875, -0.0214691162109375, -0.02288818359375, -0.0019855499267578125, 0.0118560791015625, -0.058502197265625 ] ]
sahilnagaralu/movie-script-generator
2023-10-31T19:41:44.000Z
[ "transformers", "pytorch", "bart", "text-generation", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
text-generation
sahilnagaralu
null
null
sahilnagaralu/movie-script-generator
0
2
transformers
2023-10-27T15:58:09
--- license: apache-2.0 base_model: facebook/bart-base tags: - generated_from_trainer model-index: - name: movie-script-generator 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. --> # movie-script-generator This model is a fine-tuned version of [facebook/bart-base](https://huggingface.co/facebook/bart-base) on an unknown dataset. It achieves the following results on the evaluation set: - Loss: 3.7368 ## Model description More information needed ## Intended uses & limitations More information needed ## Training and evaluation data More information needed ## Training procedure ### Training hyperparameters The following hyperparameters were used during training: - learning_rate: 2e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 1.0 | 47 | 6.7213 | | No log | 2.0 | 94 | 4.6579 | | No log | 3.0 | 141 | 3.7368 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,401
[ [ -0.0282135009765625, -0.05938720703125, 0.0208282470703125, 0.0036449432373046875, -0.0221710205078125, -0.01416778564453125, -0.0055999755859375, -0.002933502197265625, 0.0162353515625, 0.0386962890625, -0.06585693359375, -0.04266357421875, -0.04547119140625, -0.01488494873046875, -0.031829833984375, 0.09869384765625, 0.004383087158203125, 0.026885986328125, -0.005550384521484375, 0.00937652587890625, -0.0257720947265625, -0.041259765625, -0.060516357421875, -0.03759765625, 0.024749755859375, 0.019866943359375, 0.0692138671875, 0.070556640625, 0.0557861328125, 0.012298583984375, -0.0118408203125, -0.01039886474609375, -0.056976318359375, -0.03436279296875, -0.0201416015625, -0.028076171875, -0.049713134765625, -0.0080718994140625, 0.056427001953125, 0.039398193359375, -0.007843017578125, 0.052490234375, -0.007904052734375, 0.038055419921875, -0.036865234375, 0.0244293212890625, -0.04022216796875, 0.02099609375, -0.01023101806640625, -0.0195465087890625, -0.023162841796875, -0.009735107421875, -0.007198333740234375, -0.03692626953125, 0.054107666015625, 0.007053375244140625, 0.10308837890625, 0.02056884765625, -0.0177459716796875, 0.01142120361328125, -0.06304931640625, 0.036376953125, -0.0460205078125, 0.018463134765625, 0.035736083984375, 0.046783447265625, 0.00775909423828125, -0.058197021484375, -0.037322998046875, -0.0022830963134765625, 0.00641632080078125, -0.0024127960205078125, -0.01751708984375, 0.007656097412109375, 0.057220458984375, 0.038177490234375, -0.0462646484375, 0.005035400390625, -0.049346923828125, -0.0278167724609375, 0.042449951171875, 0.035888671875, -0.017364501953125, -0.0265350341796875, -0.02972412109375, -0.0280914306640625, -0.02685546875, 0.021392822265625, 0.04998779296875, 0.0207672119140625, -0.0274810791015625, 0.049957275390625, -0.023529052734375, 0.04705810546875, 0.01419830322265625, -0.01273345947265625, 0.043975830078125, -0.0045623779296875, -0.0341796875, -0.00679779052734375, 0.05523681640625, 0.06158447265625, 0.024688720703125, 0.0196075439453125, -0.019012451171875, 0.006816864013671875, 0.029327392578125, -0.06878662109375, -0.0218963623046875, 0.00186920166015625, -0.05194091796875, -0.0565185546875, 0.016998291015625, -0.032806396484375, 0.00525665283203125, -0.0160675048828125, 0.036956787109375, -0.0322265625, -0.019439697265625, -0.004764556884765625, -0.0173797607421875, 0.01528167724609375, 0.00919342041015625, -0.05889892578125, 0.0221099853515625, 0.020233154296875, 0.03851318359375, 0.0119781494140625, -0.019561767578125, -0.0298614501953125, 0.01371002197265625, -0.0287933349609375, 0.0340576171875, -0.00664520263671875, -0.0254364013671875, 0.004985809326171875, 0.03228759765625, -0.00136566162109375, -0.02783203125, 0.052398681640625, -0.0286102294921875, 0.0162353515625, -0.01058197021484375, -0.040985107421875, -0.0204010009765625, 0.0255279541015625, -0.06024169921875, 0.0777587890625, 0.018524169921875, -0.044647216796875, 0.0419921875, -0.03900146484375, -0.00965118408203125, -0.0002008676528930664, -0.0086822509765625, -0.0543212890625, 0.0059051513671875, 0.0051422119140625, 0.042266845703125, -0.0167694091796875, 0.036224365234375, -0.038543701171875, -0.04473876953125, 0.001857757568359375, -0.043304443359375, 0.058441162109375, 0.01393890380859375, -0.0169525146484375, 0.0099334716796875, -0.09197998046875, 0.02105712890625, 0.036895751953125, -0.035614013671875, 0.01654052734375, -0.0230255126953125, 0.03656005859375, 0.0185394287109375, 0.025726318359375, -0.03289794921875, 0.0000864863395690918, -0.021270751953125, 0.001651763916015625, 0.05145263671875, 0.0156097412109375, 0.00588226318359375, -0.0343017578125, 0.036407470703125, 0.0024433135986328125, 0.026947021484375, -0.01090240478515625, -0.02996826171875, -0.05438232421875, -0.005908966064453125, 0.00824737548828125, 0.0158233642578125, -0.0202178955078125, 0.050506591796875, -0.01251220703125, -0.05303955078125, -0.0177001953125, 0.00424957275390625, 0.03753662109375, 0.04913330078125, 0.023284912109375, -0.032806396484375, -0.04022216796875, -0.08807373046875, 0.01322174072265625, -0.01560211181640625, 0.01548004150390625, 0.0135955810546875, 0.03717041015625, -0.0172576904296875, 0.0687255859375, -0.03961181640625, -0.00870513916015625, -0.02825927734375, -0.0155029296875, 0.037445068359375, 0.0528564453125, 0.056243896484375, -0.0229644775390625, -0.0185546875, -0.0115814208984375, -0.06585693359375, 0.0179443359375, -0.016845703125, -0.019622802734375, -0.007099151611328125, 0.0192718505859375, -0.03912353515625, 0.05523681640625, 0.0225677490234375, -0.02117919921875, 0.061798095703125, -0.021514892578125, -0.0097503662109375, -0.08477783203125, 0.0160675048828125, 0.01276397705078125, -0.0194854736328125, -0.0164031982421875, -0.0042724609375, 0.0063323974609375, -0.033538818359375, -0.0276947021484375, 0.037506103515625, 0.0025234222412109375, -0.0026092529296875, -0.0186920166015625, -0.02374267578125, 0.01078033447265625, 0.066162109375, -0.0005817413330078125, 0.0160064697265625, 0.05133056640625, -0.045501708984375, 0.04315185546875, 0.0299224853515625, -0.0238800048828125, 0.034820556640625, -0.05267333984375, -0.002094268798828125, -0.0112762451171875, 0.01242828369140625, -0.058013916015625, -0.039276123046875, 0.0311431884765625, -0.03460693359375, 0.0164794921875, -0.0157623291015625, -0.03173828125, -0.042388916015625, -0.0082550048828125, 0.00860595703125, 0.040313720703125, -0.035400390625, 0.0222320556640625, -0.007171630859375, 0.01849365234375, -0.05047607421875, -0.0465087890625, -0.019775390625, -0.0115814208984375, -0.0341796875, 0.0150146484375, -0.00261688232421875, 0.004573822021484375, 0.00830841064453125, -0.01204681396484375, -0.01198577880859375, -0.017303466796875, 0.033966064453125, 0.0220489501953125, -0.01184844970703125, -0.0029430389404296875, 0.019805908203125, -0.01436614990234375, 0.0270538330078125, 0.010833740234375, 0.0511474609375, -0.01372528076171875, -0.035430908203125, -0.061798095703125, -0.0002868175506591797, 0.0304412841796875, -0.00229644775390625, 0.0521240234375, 0.0689697265625, -0.0399169921875, -0.007556915283203125, -0.036712646484375, -0.0133514404296875, -0.03192138671875, 0.057342529296875, -0.0283966064453125, -0.01470947265625, 0.056549072265625, -0.0052490234375, -0.004062652587890625, 0.0670166015625, 0.050262451171875, 0.001987457275390625, 0.07769775390625, 0.03179931640625, 0.00208282470703125, 0.038848876953125, -0.06988525390625, -0.01262664794921875, -0.0302276611328125, -0.02197265625, -0.0172576904296875, -0.0166778564453125, -0.04156494140625, -0.001033782958984375, 0.010955810546875, 0.01093292236328125, -0.05706787109375, 0.0404052734375, -0.026947021484375, 0.035308837890625, 0.04669189453125, 0.02447509765625, 0.0026264190673828125, 0.01287841796875, -0.024566650390625, 0.00569915771484375, -0.05865478515625, -0.04400634765625, 0.0980224609375, 0.04144287109375, 0.057586669921875, -0.0184783935546875, 0.054168701171875, 0.02056884765625, 0.0059051513671875, -0.035888671875, 0.0447998046875, 0.016326904296875, -0.0849609375, -0.01401519775390625, -0.0186920166015625, -0.0474853515625, 0.0036106109619140625, -0.0311279296875, -0.045166015625, 0.019500732421875, 0.0214996337890625, -0.02166748046875, 0.0280609130859375, -0.051727294921875, 0.09228515625, -0.0261383056640625, -0.032806396484375, -0.02069091796875, -0.05084228515625, 0.0185546875, -0.0033473968505859375, -0.006381988525390625, -0.0076904296875, 0.03802490234375, 0.058502197265625, -0.046844482421875, 0.05303955078125, -0.0257720947265625, 0.030792236328125, 0.0318603515625, -0.00572967529296875, 0.03802490234375, 0.0147552490234375, -0.008880615234375, 0.0175323486328125, -0.005401611328125, -0.03668212890625, -0.030364990234375, 0.051788330078125, -0.07501220703125, -0.0121002197265625, -0.0330810546875, -0.032012939453125, -0.0033245086669921875, 0.0244293212890625, 0.04705810546875, 0.051788330078125, -0.0240631103515625, 0.016204833984375, 0.016510009765625, -0.01491546630859375, 0.037445068359375, 0.020172119140625, -0.02288818359375, -0.044342041015625, 0.0662841796875, -0.01522064208984375, 0.02752685546875, -0.00447845458984375, 0.0028781890869140625, -0.0196075439453125, -0.0231475830078125, -0.0533447265625, 0.0254974365234375, -0.06439208984375, -0.02490234375, -0.01580810546875, -0.037689208984375, -0.02252197265625, -0.011199951171875, -0.036224365234375, -0.029327392578125, -0.0279541015625, -0.042449951171875, 0.0224456787109375, 0.04022216796875, -0.002841949462890625, 0.058563232421875, -0.044219970703125, 0.00335693359375, 0.002655029296875, 0.034881591796875, -0.00009906291961669922, -0.051513671875, -0.050262451171875, -0.004791259765625, -0.0498046875, -0.053558349609375, 0.03826904296875, 0.008087158203125, 0.044708251953125, 0.056854248046875, -0.01702880859375, 0.0648193359375, -0.0254669189453125, 0.054168701171875, 0.032135009765625, -0.040618896484375, 0.03363037109375, -0.03369140625, 0.00725555419921875, 0.0458984375, 0.028839111328125, 0.0007505416870117188, -0.01074981689453125, -0.09588623046875, -0.0506591796875, 0.08453369140625, 0.025360107421875, 0.017852783203125, 0.0054931640625, 0.0177154541015625, -0.0062408447265625, 0.030517578125, -0.07037353515625, -0.038177490234375, -0.026885986328125, -0.0089569091796875, -0.002338409423828125, -0.0172119140625, -0.0106964111328125, -0.032806396484375, 0.06976318359375, 0.004833221435546875, 0.028228759765625, -0.00258636474609375, 0.005352020263671875, -0.04205322265625, -0.0145263671875, 0.0200347900390625, 0.0511474609375, -0.059539794921875, -0.0177001953125, 0.004589080810546875, -0.02392578125, -0.0027370452880859375, 0.022186279296875, -0.0028171539306640625, 0.020294189453125, 0.0289306640625, 0.09112548828125, 0.0033092498779296875, -0.037384033203125, 0.035400390625, 0.00921630859375, -0.01654052734375, -0.04510498046875, 0.016204833984375, -0.016510009765625, 0.00885009765625, 0.021331787109375, 0.034149169921875, 0.0035152435302734375, -0.0246429443359375, 0.016510009765625, 0.0151519775390625, -0.032745361328125, -0.017303466796875, 0.06085205078125, -0.0033321380615234375, -0.0364990234375, 0.0457763671875, -0.0186004638671875, -0.00777435302734375, 0.0662841796875, 0.045562744140625, 0.06158447265625, -0.01210784912109375, 0.009613037109375, 0.06439208984375, 0.0101776123046875, -0.0033931732177734375, 0.02069091796875, 0.01116943359375, -0.048187255859375, -0.0198211669921875, -0.055511474609375, -0.027191162109375, 0.038116455078125, -0.083251953125, 0.05126953125, -0.049285888671875, -0.040008544921875, 0.0169219970703125, -0.0053253173828125, -0.0770263671875, 0.045562744140625, 0.01369476318359375, 0.0625, -0.07171630859375, 0.058746337890625, 0.049285888671875, -0.053741455078125, -0.07550048828125, -0.017608642578125, -0.01372528076171875, -0.0726318359375, 0.050628662109375, 0.013641357421875, 0.02569580078125, 0.012115478515625, -0.043731689453125, -0.063232421875, 0.07318115234375, 0.0239715576171875, -0.041778564453125, -0.0160675048828125, 0.0203704833984375, 0.051971435546875, -0.0263824462890625, 0.038330078125, 0.0201416015625, 0.011962890625, 0.00658416748046875, -0.07525634765625, -0.0088043212890625, -0.02752685546875, 0.008087158203125, -0.005748748779296875, -0.038421630859375, 0.066162109375, -0.01454925537109375, 0.023284912109375, 0.004901885986328125, 0.0283966064453125, 0.0250396728515625, 0.03936767578125, 0.0335693359375, 0.052947998046875, 0.02490234375, 0.0037822723388671875, 0.083984375, -0.03668212890625, 0.06256103515625, 0.07275390625, 0.002655029296875, 0.033905029296875, 0.016937255859375, -0.01861572265625, 0.046600341796875, 0.059661865234375, -0.0343017578125, 0.0335693359375, 0.006206512451171875, 0.0123443603515625, -0.0295257568359375, 0.01165008544921875, -0.037994384765625, 0.026519775390625, 0.0147552490234375, -0.072021484375, -0.0287017822265625, -0.007049560546875, -0.004932403564453125, -0.0145263671875, -0.0271453857421875, 0.03436279296875, -0.0221710205078125, -0.0280303955078125, 0.060516357421875, 0.0135040283203125, 0.005832672119140625, -0.053131103515625, -0.00494384765625, 0.0011701583862304688, 0.03314208984375, -0.02490234375, -0.031463623046875, 0.0162353515625, 0.00832366943359375, -0.0228271484375, -0.0007824897766113281, 0.037322998046875, -0.01457977294921875, -0.0672607421875, 0.0060577392578125, 0.033966064453125, 0.0249176025390625, 0.0007185935974121094, -0.0728759765625, 0.001979827880859375, 0.0079803466796875, -0.0241546630859375, 0.007442474365234375, 0.0106201171875, -0.00907135009765625, 0.04193115234375, 0.050079345703125, -0.00890350341796875, 0.0012598037719726562, 0.0187225341796875, 0.0760498046875, -0.045501708984375, -0.044891357421875, -0.05328369140625, 0.0423583984375, -0.0198974609375, -0.04541015625, 0.05078125, 0.07904052734375, 0.075439453125, -0.037322998046875, 0.0472412109375, -0.00662994384765625, 0.037261962890625, -0.017364501953125, 0.043670654296875, -0.038330078125, -0.006443023681640625, -0.044891357421875, -0.0777587890625, -7.152557373046875e-7, 0.05810546875, -0.0156707763671875, 0.009765625, 0.04638671875, 0.058380126953125, -0.0071868896484375, -0.00542449951171875, 0.017669677734375, -0.00994873046875, 0.0187835693359375, 0.020782470703125, 0.0360107421875, -0.06207275390625, 0.049652099609375, -0.050262451171875, -0.01024627685546875, -0.0163421630859375, -0.044921875, -0.07220458984375, -0.02374267578125, -0.032073974609375, -0.04766845703125, 0.0014181137084960938, 0.07843017578125, 0.059661865234375, -0.054656982421875, -0.035614013671875, -0.00708770751953125, -0.0205535888671875, -0.03179931640625, -0.0203704833984375, 0.03802490234375, -0.01244354248046875, -0.061431884765625, 0.004550933837890625, -0.021697998046875, 0.00650787353515625, -0.0174713134765625, -0.0141448974609375, -0.0023670196533203125, -0.0186614990234375, 0.01338958740234375, 0.0056304931640625, -0.03564453125, -0.0181121826171875, -0.00531768798828125, 0.00290679931640625, 0.0014896392822265625, 0.0253753662109375, -0.04278564453125, 0.04193115234375, 0.017333984375, 0.015777587890625, 0.06329345703125, 0.0215606689453125, 0.0230712890625, -0.059417724609375, 0.0218353271484375, 0.00991058349609375, 0.039459228515625, 0.012237548828125, -0.0284881591796875, 0.0302276611328125, 0.04559326171875, -0.036224365234375, -0.06866455078125, 0.0005450248718261719, -0.09820556640625, 0.0225830078125, 0.08935546875, 0.01261138916015625, -0.0206451416015625, 0.0217742919921875, -0.0254974365234375, 0.026519775390625, -0.031341552734375, 0.0377197265625, 0.04736328125, -0.00737762451171875, 0.01435089111328125, -0.0343017578125, 0.0284576416015625, 0.01107025146484375, -0.029022216796875, -0.017608642578125, 0.042266845703125, 0.041961669921875, 0.013580322265625, 0.037384033203125, -0.0087738037109375, 0.023895263671875, 0.0130157470703125, 0.032958984375, -0.03192138671875, -0.0207061767578125, -0.0225372314453125, 0.0139312744140625, -0.0005459785461425781, -0.0364990234375 ] ]
RossAscends/Mistral_7B_Dolphin2.1_LIMA0.5_fp16
2023-10-28T11:20:53.000Z
[ "transformers", "safetensors", "mistral", "text-generation", "license:mit", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
RossAscends
null
null
RossAscends/Mistral_7B_Dolphin2.1_LIMA0.5_fp16
2
2
transformers
2023-10-27T16:19:35
--- license: mit --- ehartford's merge of Mistral 7B 0.1 with his Dolphin 2.1 dataset https://huggingface.co/ehartford/dolphin-2.1-mistral-7b and LIMA RP dataset applied as a lora at 0.5 weight https://huggingface.co/lemonilia/limarp-llama2-v2/ Purpose of the model is to be RP-focused, smart, fast, and lightweight for users with low VRAM. I've already built the exl2 4bpw quant (linked below), and it will run 8k ctx at around 6GB VRAM and respond to a full context at roughly 30tps (tested on my 3060) if exl2_hf loader is used with FA2 enabled. Model has been tested by several users on the SillyTavern discord server, and run on Horde for a full day - with good results. https://huggingface.co/RossAscends/Mistral7B_Dolphin2.1_LIMARP0.5_4bpw_exl2 Mistral or ChatML context presets both possible. exllama v2 4bpw quant: https://huggingface.co/RossAscends/Mistral7B_Dolphin2.1_LIMARP0.5_4bpw_exl2
912
[ [ -0.054046630859375, -0.03314208984375, 0.01557159423828125, 0.03399658203125, -0.042510986328125, -0.05548095703125, 0.015167236328125, -0.06732177734375, 0.0259246826171875, 0.05059814453125, -0.0291900634765625, 0.004241943359375, -0.0265655517578125, -0.01284027099609375, -0.0169219970703125, 0.07037353515625, 0.0030498504638671875, -0.029388427734375, 0.02008056640625, -0.045440673828125, -0.034820556640625, -0.039398193359375, -0.0745849609375, -0.0270843505859375, 0.040435791015625, 0.01495361328125, 0.05242919921875, 0.0413818359375, 0.05364990234375, 0.017608642578125, -0.01033782958984375, 0.021270751953125, -0.06396484375, 0.02032470703125, -0.0216217041015625, 0.0027637481689453125, -0.05950927734375, -0.010009765625, 0.037017822265625, 0.011138916015625, -0.04962158203125, 0.0207061767578125, 0.0056304931640625, 0.0487060546875, -0.035247802734375, 0.0220794677734375, -0.01253509521484375, 0.0233306884765625, -0.018951416015625, -0.00847625732421875, -0.01363372802734375, 0.0042266845703125, 0.038177490234375, -0.076904296875, 0.0038394927978515625, 0.042083740234375, 0.06768798828125, 0.031280517578125, -0.043426513671875, -0.009979248046875, -0.0170135498046875, 0.055999755859375, -0.05609130859375, 0.02862548828125, 0.0220794677734375, 0.0203399658203125, -0.023712158203125, -0.066162109375, -0.03662109375, 0.0182952880859375, 0.0110015869140625, 0.01181793212890625, -0.044647216796875, 0.0078582763671875, 0.03515625, 0.0322265625, -0.042022705078125, 0.00284576416015625, -0.043426513671875, -0.004848480224609375, 0.0198822021484375, 0.0174407958984375, -0.005222320556640625, -0.015716552734375, -0.0626220703125, -0.0213165283203125, -0.05078125, 0.0009565353393554688, 0.013275146484375, 0.0208740234375, -0.048370361328125, 0.056854248046875, -0.0006546974182128906, 0.0662841796875, 0.0222320556640625, -0.00469970703125, 0.006565093994140625, -0.0246429443359375, -0.021270751953125, 0.007366180419921875, 0.050262451171875, 0.041839599609375, -0.004608154296875, 0.036834716796875, -0.020782470703125, -0.02471923828125, 0.01256561279296875, -0.0758056640625, -0.0318603515625, 0.03753662109375, -0.0306243896484375, -0.007244110107421875, 0.008575439453125, -0.035552978515625, -0.0254364013671875, -0.0035076141357421875, 0.039031982421875, -0.033538818359375, -0.03680419921875, 0.01557159423828125, -0.040435791015625, 0.03936767578125, 0.039031982421875, -0.040069580078125, 0.04644775390625, 0.057464599609375, 0.06591796875, -0.0150604248046875, -0.01459503173828125, -0.045989990234375, 0.023712158203125, -0.0210113525390625, 0.0531005859375, 0.01470184326171875, -0.03173828125, -0.0169677734375, -0.0083160400390625, 0.0224456787109375, -0.043060302734375, 0.0242919921875, -0.0531005859375, 0.01462554931640625, -0.04571533203125, -0.039581298828125, -0.01548004150390625, 0.01419830322265625, -0.0870361328125, 0.083984375, 0.039886474609375, -0.06494140625, 0.01071929931640625, -0.03302001953125, -0.02178955078125, -0.0081787109375, -0.007137298583984375, -0.02447509765625, 0.01557159423828125, -0.018035888671875, 0.01110076904296875, -0.044586181640625, -0.00016820430755615234, -0.03741455078125, -0.02471923828125, 0.01068878173828125, -0.0129547119140625, 0.0592041015625, 0.032928466796875, -0.0244598388671875, -0.0321044921875, -0.037933349609375, 0.0163116455078125, -0.019317626953125, -0.0282440185546875, -0.00494384765625, -0.029052734375, 0.0278472900390625, 0.032989501953125, 0.033477783203125, -0.028106689453125, 0.004352569580078125, -0.01001739501953125, 0.00606536865234375, 0.05706787109375, -0.0028171539306640625, 0.006671905517578125, -0.048736572265625, 0.0279541015625, 0.0033779144287109375, 0.033660888671875, 0.0174560546875, -0.06915283203125, -0.0660400390625, -0.04052734375, -0.0021381378173828125, 0.00902557373046875, -0.052764892578125, 0.0338134765625, -0.00836944580078125, -0.02783203125, -0.0308837890625, -0.01275634765625, 0.03961181640625, 0.05810546875, 0.0308990478515625, -0.02569580078125, -0.047088623046875, -0.08001708984375, 0.01788330078125, -0.0266571044921875, 0.0118255615234375, 0.036041259765625, 0.0185394287109375, 0.0025768280029296875, 0.07794189453125, -0.032501220703125, -0.039886474609375, -0.0081787109375, -0.0001189112663269043, 0.0335693359375, 0.0338134765625, 0.048828125, -0.066650390625, -0.0304107666015625, 0.00913238525390625, -0.057464599609375, -0.0207977294921875, 0.04150390625, -0.0253448486328125, 0.0223846435546875, -0.004001617431640625, -0.06463623046875, 0.0313720703125, 0.058441162109375, -0.03662109375, 0.0223541259765625, -0.03997802734375, 0.025482177734375, -0.0885009765625, 0.0157623291015625, 0.0016508102416992188, -0.01654052734375, -0.043365478515625, 0.0103759765625, -0.0061492919921875, -0.0115509033203125, -0.056243896484375, 0.0712890625, -0.03704833984375, -0.026092529296875, -0.0254058837890625, -0.0139923095703125, 0.0033111572265625, 0.0164337158203125, 0.016082763671875, 0.044708251953125, 0.0309600830078125, -0.048095703125, 0.0252838134765625, 0.01165771484375, -0.0036258697509765625, 0.0222930908203125, -0.08001708984375, 0.00691986083984375, 0.007122039794921875, 0.041900634765625, -0.055145263671875, -0.0269012451171875, 0.02874755859375, 0.001438140869140625, -0.001972198486328125, -0.01751708984375, -0.0225830078125, -0.01611328125, -0.0413818359375, 0.044921875, 0.056610107421875, -0.05877685546875, 0.05474853515625, 0.03948974609375, 0.0030517578125, -0.04400634765625, -0.0528564453125, -0.023223876953125, -0.021148681640625, -0.04290771484375, 0.034912109375, -0.0015764236450195312, -0.0236663818359375, 0.0092010498046875, -0.00664520263671875, -0.011810302734375, -0.038818359375, 0.047454833984375, 0.040008544921875, -0.0112762451171875, -0.0297393798828125, 0.0028228759765625, -0.01548004150390625, -0.0215606689453125, -0.008697509765625, 0.041900634765625, -0.01079559326171875, -0.0226593017578125, -0.0308074951171875, 0.0145263671875, 0.042724609375, 0.0170135498046875, 0.05853271484375, 0.0411376953125, -0.02386474609375, -0.013916015625, -0.05023193359375, 0.00904083251953125, -0.0333251953125, 0.00838470458984375, -0.03631591796875, -0.061614990234375, 0.05267333984375, 0.035858154296875, 0.0144805908203125, 0.043853759765625, 0.03851318359375, 0.0032501220703125, 0.042083740234375, 0.05908203125, -0.0024204254150390625, 0.02362060546875, -0.0247802734375, 0.01213836669921875, -0.07012939453125, -0.0078277587890625, -0.0165252685546875, -0.0144805908203125, -0.03173828125, -0.0567626953125, 0.03741455078125, 0.006458282470703125, -0.033355712890625, 0.033721923828125, -0.0265960693359375, 0.01152801513671875, 0.0286407470703125, 0.0135650634765625, 0.0238189697265625, 0.0269317626953125, 0.0294952392578125, 0.0004088878631591797, -0.060302734375, -0.0129547119140625, 0.07183837890625, 0.0167388916015625, 0.0758056640625, 0.04705810546875, 0.03704833984375, 0.0325927734375, 0.0303955078125, -0.03179931640625, 0.031524658203125, -0.007686614990234375, -0.0526123046875, -0.0165252685546875, -0.0280914306640625, -0.045501708984375, 0.04864501953125, 0.00727081298828125, -0.0284423828125, 0.0217132568359375, 0.0390625, -0.035369873046875, 0.005954742431640625, -0.03924560546875, 0.033294677734375, 0.0009021759033203125, -0.0263519287109375, -0.024139404296875, -0.03521728515625, 0.048095703125, -0.027740478515625, -0.00469207763671875, -0.00994873046875, -0.0308380126953125, 0.0631103515625, -0.06695556640625, 0.0408935546875, -0.022003173828125, -0.033599853515625, 0.035430908203125, -0.010986328125, 0.03167724609375, 0.0064849853515625, -0.0242919921875, 0.0282440185546875, 0.0157470703125, -0.0197296142578125, -0.0284423828125, 0.0694580078125, -0.0845947265625, -0.0225830078125, -0.053619384765625, -0.03436279296875, 0.0024509429931640625, -0.010833740234375, 0.036041259765625, 0.0491943359375, 0.00010836124420166016, -0.00139617919921875, 0.05828857421875, 0.005390167236328125, 0.00676727294921875, 0.07049560546875, -0.0277862548828125, -0.0372314453125, 0.0489501953125, -0.0016355514526367188, 0.0284271240234375, 0.00580596923828125, 0.00374603271484375, -0.030609130859375, 0.0012340545654296875, -0.0251312255859375, 0.0206146240234375, -0.0390625, -0.0224456787109375, -0.043304443359375, -0.0161590576171875, -0.022796630859375, 0.00917816162109375, -0.040985107421875, -0.042083740234375, -0.020172119140625, 0.0290069580078125, 0.04608154296875, 0.062286376953125, -0.044403076171875, 0.032470703125, -0.041412353515625, 0.04644775390625, 0.017303466796875, 0.0035762786865234375, 0.00827789306640625, -0.07830810546875, 0.005657196044921875, 0.00921630859375, 0.00004506111145019531, -0.04290771484375, 0.0254974365234375, 0.0243682861328125, 0.02996826171875, 0.0430908203125, -0.002170562744140625, 0.07720947265625, -0.017791748046875, 0.046173095703125, 0.032501220703125, -0.04327392578125, 0.03802490234375, -0.0211639404296875, -0.004901885986328125, 0.02734375, 0.0303955078125, -0.0269927978515625, -0.01128387451171875, -0.049560546875, -0.052093505859375, 0.060546875, 0.01491546630859375, -0.0239715576171875, 0.005054473876953125, 0.042205810546875, 0.0179290771484375, 0.00621795654296875, -0.035064697265625, -0.02947998046875, -0.005523681640625, -0.00518798828125, -0.0023441314697265625, -0.01470184326171875, -0.02197265625, -0.0227508544921875, 0.0518798828125, -0.0029926300048828125, 0.01580810546875, 0.0108184814453125, 0.006305694580078125, -0.0167388916015625, -0.029876708984375, 0.032501220703125, 0.048095703125, -0.04248046875, 0.01248931884765625, -0.00257110595703125, -0.0413818359375, 0.00508880615234375, 0.01464080810546875, 0.014984130859375, -0.006061553955078125, 0.031646728515625, 0.05157470703125, 0.0270843505859375, -0.050811767578125, 0.034423828125, -0.0290985107421875, -0.0008678436279296875, -0.01544189453125, 0.0234222412109375, -0.002895355224609375, 0.030609130859375, 0.01422119140625, 0.0010251998901367188, -0.0023517608642578125, -0.031280517578125, 0.0144500732421875, 0.018951416015625, -0.0209197998046875, -0.0252838134765625, 0.04022216796875, 0.005146026611328125, 0.012176513671875, 0.0648193359375, -0.0163421630859375, -0.0217132568359375, 0.048797607421875, 0.062225341796875, 0.03155517578125, -0.0081329345703125, -0.0180816650390625, 0.023590087890625, 0.000042378902435302734, -0.03192138671875, 0.05157470703125, -0.016998291015625, -0.062103271484375, -0.01453399658203125, -0.048370361328125, -0.036285400390625, -0.0023708343505859375, -0.07489013671875, 0.025115966796875, -0.026092529296875, -0.03411865234375, -0.01873779296875, 0.0014047622680664062, -0.04986572265625, 0.0002639293670654297, 0.0007576942443847656, 0.0745849609375, -0.06298828125, 0.07830810546875, 0.05224609375, -0.0204925537109375, -0.0689697265625, -0.034881591796875, -0.0009012222290039062, -0.06732177734375, 0.06744384765625, -0.0105743408203125, -0.00936126708984375, 0.002300262451171875, -0.0236358642578125, -0.08624267578125, 0.103759765625, 0.00927734375, -0.03948974609375, 0.01312255859375, 0.002193450927734375, 0.028533935546875, -0.020477294921875, 0.01056671142578125, 0.0244598388671875, 0.0300140380859375, 0.0194854736328125, -0.08489990234375, 0.0020503997802734375, -0.0202789306640625, 0.007175445556640625, 0.01024627685546875, -0.0745849609375, 0.103759765625, -0.0196075439453125, 0.0010538101196289062, 0.0210113525390625, 0.064208984375, 0.06683349609375, -0.0131072998046875, 0.049346923828125, 0.08563232421875, 0.047607421875, 0.007205963134765625, 0.08056640625, -0.038909912109375, 0.048828125, 0.0845947265625, -0.052520751953125, 0.07403564453125, 0.04595947265625, -0.01001739501953125, 0.007724761962890625, 0.047515869140625, 0.0221099853515625, 0.055389404296875, -0.005611419677734375, -0.0301361083984375, 0.006488800048828125, -0.0141754150390625, -0.05859375, 0.01558685302734375, 0.0146942138671875, 0.0032100677490234375, -0.0202484130859375, 0.00283050537109375, -0.005489349365234375, -0.0740966796875, -0.0103302001953125, 0.031402587890625, 0.0262298583984375, -0.055084228515625, 0.042633056640625, 0.00020742416381835938, 0.059478759765625, -0.0550537109375, -0.0254364013671875, -0.0277557373046875, 0.028106689453125, -0.000888824462890625, -0.07012939453125, -0.01019287109375, -0.006561279296875, -0.0076141357421875, 0.0023365020751953125, 0.06597900390625, -0.0237274169921875, -0.00508880615234375, 0.0243072509765625, 0.041900634765625, 0.0267791748046875, 0.0072174072265625, -0.047760009765625, 0.04644775390625, -0.005275726318359375, -0.0289764404296875, 0.032501220703125, 0.0267791748046875, 0.01415252685546875, 0.059906005859375, 0.03228759765625, 0.0203857421875, 0.00904083251953125, 0.002635955810546875, 0.06829833984375, -0.03814697265625, -0.044830322265625, -0.030517578125, 0.0006809234619140625, -0.005977630615234375, -0.051788330078125, 0.04840087890625, 0.0577392578125, 0.0282745361328125, 0.007801055908203125, 0.0439453125, -0.03643798828125, 0.00972747802734375, -0.034027099609375, 0.035736083984375, -0.056121826171875, 0.0023593902587890625, 0.0169219970703125, -0.06781005859375, 0.0272979736328125, 0.043060302734375, 0.03173828125, 0.0024356842041015625, 0.042938232421875, 0.061614990234375, -0.024139404296875, 0.00748443603515625, 0.0148773193359375, 0.0117950439453125, 0.02838134765625, 0.045074462890625, 0.05059814453125, -0.0458984375, 0.00923919677734375, -0.039337158203125, -0.037384033203125, -0.0193939208984375, -0.060699462890625, -0.0521240234375, -0.032073974609375, -0.00797271728515625, -0.0399169921875, 0.0204925537109375, 0.07257080078125, 0.05755615234375, -0.03656005859375, -0.0284881591796875, 0.016448974609375, -0.0380859375, -0.0004730224609375, -0.012664794921875, 0.03411865234375, 0.01120758056640625, -0.037933349609375, 0.00872802734375, 0.028045654296875, 0.0179290771484375, -0.02886962890625, -0.0254364013671875, 0.0151214599609375, -0.00812530517578125, 0.057037353515625, 0.040283203125, -0.055908203125, -0.0265350341796875, -0.029327392578125, -0.0186614990234375, -0.01849365234375, 0.044586181640625, -0.0611572265625, 0.00618743896484375, 0.03466796875, 0.01483154296875, 0.049224853515625, 0.01629638671875, 0.032196044921875, -0.0227203369140625, 0.03228759765625, -0.0019025802612304688, 0.03656005859375, -0.00396728515625, -0.005950927734375, 0.045745849609375, -0.0007472038269042969, -0.031585693359375, -0.054718017578125, -0.007755279541015625, -0.11376953125, 0.0017108917236328125, 0.07318115234375, -0.0020599365234375, -0.0311431884765625, -0.0001938343048095703, -0.023590087890625, 0.006160736083984375, -0.02960205078125, 0.030670166015625, 0.0318603515625, -0.046112060546875, 0.004241943359375, -0.046844482421875, 0.03826904296875, 0.0196990966796875, -0.058013916015625, -0.0014505386352539062, 0.034210205078125, 0.0234832763671875, -0.0030269622802734375, 0.07373046875, -0.0023555755615234375, 0.035369873046875, 0.0059967041015625, 0.0103759765625, -0.00888824462890625, -0.00885772705078125, -0.01251983642578125, 0.01332855224609375, -0.0005178451538085938, 0.01055908203125 ] ]
keylazy/bert-finetuned-ner
2023-10-27T17:55:22.000Z
[ "transformers", "pytorch", "bert", "token-classification", "generated_from_trainer", "dataset:conll2003", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
token-classification
keylazy
null
null
keylazy/bert-finetuned-ner
0
2
transformers
2023-10-27T17:37:44
--- license: apache-2.0 base_model: bert-base-cased tags: - generated_from_trainer datasets: - conll2003 model-index: - name: bert-finetuned-ner 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. --> # bert-finetuned-ner This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on the conll2003 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: 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 ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,056
[ [ -0.04364013671875, -0.056060791015625, 0.00637054443359375, 0.01226806640625, -0.03350830078125, -0.039825439453125, -0.0159912109375, -0.020172119140625, 0.0087432861328125, 0.0311126708984375, -0.060455322265625, -0.031951904296875, -0.040008544921875, -0.0096435546875, -0.0186614990234375, 0.10601806640625, 0.0185394287109375, 0.04278564453125, -0.00687408447265625, 0.0009927749633789062, -0.028350830078125, -0.057952880859375, -0.070068359375, -0.057281494140625, 0.034881591796875, 0.02099609375, 0.056304931640625, 0.0513916015625, 0.0501708984375, 0.0186614990234375, -0.0276947021484375, -0.0163726806640625, -0.048187255859375, -0.0236968994140625, -0.00547027587890625, -0.02618408203125, -0.063232421875, -0.000789642333984375, 0.03509521484375, 0.0399169921875, -0.019134521484375, 0.031463623046875, 0.0098724365234375, 0.03448486328125, -0.0311279296875, 0.0283050537109375, -0.04949951171875, 0.02117919921875, -0.00655364990234375, -0.0119476318359375, -0.03143310546875, -0.0217437744140625, 0.0164642333984375, -0.04144287109375, 0.052642822265625, -0.01259613037109375, 0.089599609375, 0.02471923828125, -0.006580352783203125, 0.0013866424560546875, -0.058807373046875, 0.044525146484375, -0.052642822265625, 0.02459716796875, 0.0260772705078125, 0.0439453125, -0.011077880859375, -0.0638427734375, -0.02996826171875, -0.006763458251953125, 0.004566192626953125, 0.0084228515625, -0.006816864013671875, 0.01403045654296875, 0.05645751953125, 0.0196380615234375, -0.0288848876953125, 0.007244110107421875, -0.046295166015625, -0.0225067138671875, 0.043792724609375, 0.0158538818359375, -0.01751708984375, -0.01020050048828125, -0.03436279296875, -0.01544189453125, -0.038482666015625, 0.002452850341796875, 0.0400390625, 0.031646728515625, -0.0222320556640625, 0.045318603515625, -0.007671356201171875, 0.05401611328125, 0.020965576171875, 0.0089263916015625, 0.035797119140625, 0.01251220703125, -0.0355224609375, -0.00281524658203125, 0.0452880859375, 0.04144287109375, 0.036834716796875, -0.00901031494140625, -0.0286712646484375, -0.018096923828125, 0.0266265869140625, -0.06707763671875, -0.042205810546875, 0.005573272705078125, -0.0528564453125, -0.031402587890625, -0.002887725830078125, -0.038421630859375, 0.01160430908203125, -0.042144775390625, 0.0550537109375, -0.042572021484375, -0.0006256103515625, 0.0012674331665039062, -0.01486968994140625, 0.025299072265625, 0.0193328857421875, -0.0692138671875, 0.03131103515625, 0.03997802734375, 0.0239410400390625, 0.0166015625, -0.0172119140625, -0.0147247314453125, 0.00008231401443481445, -0.0171356201171875, 0.032928466796875, -0.0029773712158203125, -0.02734375, -0.0033512115478515625, 0.0171966552734375, 0.00632476806640625, -0.03485107421875, 0.0762939453125, -0.037841796875, 0.01230621337890625, -0.0258026123046875, -0.06219482421875, -0.01361846923828125, 0.03240966796875, -0.05499267578125, 0.07275390625, 0.009307861328125, -0.04205322265625, 0.049041748046875, -0.05126953125, -0.022369384765625, 0.0153961181640625, -0.0024623870849609375, -0.05810546875, 0.00042819976806640625, 0.0022716522216796875, 0.041351318359375, 0.0009489059448242188, 0.032867431640625, -0.037109375, -0.03814697265625, -0.005878448486328125, -0.040496826171875, 0.060882568359375, 0.0221099853515625, -0.01544189453125, 0.0079803466796875, -0.09088134765625, 0.021636962890625, 0.00948333740234375, -0.037994384765625, 0.004558563232421875, -0.00966644287109375, 0.04248046875, 0.00890350341796875, 0.037750244140625, -0.051300048828125, 0.01280975341796875, -0.032806396484375, 0.0196380615234375, 0.05059814453125, -0.001827239990234375, 0.00045180320739746094, -0.034942626953125, -0.004741668701171875, -0.00395965576171875, 0.043487548828125, 0.035980224609375, -0.0282745361328125, -0.07830810546875, -0.0188751220703125, 0.035247802734375, 0.0240631103515625, -0.01332855224609375, 0.07098388671875, 0.002079010009765625, -0.05963134765625, -0.0190277099609375, -0.0007467269897460938, 0.0285186767578125, 0.032379150390625, 0.045806884765625, -0.00870513916015625, -0.040191650390625, -0.08953857421875, 0.005100250244140625, 0.009368896484375, 0.007434844970703125, 0.016448974609375, 0.044403076171875, -0.0173492431640625, 0.059906005859375, -0.03076171875, -0.00887298583984375, -0.0147247314453125, 0.00788116455078125, 0.03924560546875, 0.079345703125, 0.052734375, -0.0268707275390625, -0.0172882080078125, -0.024749755859375, -0.044158935546875, 0.0164642333984375, -0.010528564453125, -0.026611328125, -0.00848388671875, 0.032440185546875, -0.0435791015625, 0.040618896484375, 0.01331329345703125, -0.00946044921875, 0.036376953125, -0.043212890625, -0.030029296875, -0.0732421875, 0.0113677978515625, 0.01136016845703125, -0.002826690673828125, -0.023895263671875, 0.00876617431640625, 0.010589599609375, -0.00798797607421875, -0.02984619140625, 0.03253173828125, -0.00911712646484375, 0.003875732421875, -0.0105133056640625, -0.0384521484375, -0.00244903564453125, 0.05413818359375, 0.0051422119140625, 0.0302734375, 0.040924072265625, -0.05120849609375, 0.0287933349609375, 0.043243408203125, -0.0208587646484375, 0.0362548828125, -0.0743408203125, 0.01114654541015625, -0.0025177001953125, -0.0014896392822265625, -0.05108642578125, -0.01702880859375, 0.0239410400390625, -0.022186279296875, 0.027618408203125, -0.0182342529296875, -0.0418701171875, -0.0296173095703125, 0.0012645721435546875, 0.01898193359375, 0.043121337890625, -0.054718017578125, 0.031951904296875, -0.00951385498046875, 0.0229949951171875, -0.0230712890625, -0.05242919921875, -0.0222015380859375, 0.002288818359375, -0.034027099609375, 0.02325439453125, -0.0201873779296875, 0.0087127685546875, -0.007152557373046875, -0.001983642578125, -0.0268707275390625, -0.0073394775390625, 0.01666259765625, 0.023223876953125, -0.01074981689453125, 0.00196075439453125, 0.00913238525390625, -0.01136016845703125, 0.0251312255859375, 0.0140380859375, 0.042694091796875, -0.0027332305908203125, -0.01910400390625, -0.049896240234375, 0.002262115478515625, 0.03460693359375, 0.0016832351684570312, 0.04998779296875, 0.0604248046875, -0.0460205078125, -0.004314422607421875, -0.0391845703125, -0.0255126953125, -0.034515380859375, 0.029083251953125, -0.03564453125, -0.0213165283203125, 0.04486083984375, 0.01021575927734375, 0.01214599609375, 0.06500244140625, 0.04083251953125, -0.00620269775390625, 0.08740234375, 0.032440185546875, 0.005828857421875, 0.03375244140625, -0.056610107421875, -0.0142822265625, -0.058258056640625, -0.03369140625, -0.0303955078125, -0.0298614501953125, -0.056884765625, 0.0192108154296875, 0.01123046875, 0.0142974853515625, -0.061431884765625, 0.0306854248046875, -0.04388427734375, 0.02716064453125, 0.07049560546875, 0.043121337890625, -0.0175018310546875, 0.00250244140625, -0.0165252685546875, -0.00010830163955688477, -0.05926513671875, -0.0287017822265625, 0.0970458984375, 0.037384033203125, 0.0567626953125, -0.00817108154296875, 0.050262451171875, 0.0024127960205078125, 0.00841522216796875, -0.038726806640625, 0.041229248046875, -0.0101165771484375, -0.0787353515625, -0.01074981689453125, -0.0072021484375, -0.06121826171875, 0.0019741058349609375, -0.043212890625, -0.035980224609375, 0.018341064453125, 0.02264404296875, -0.032012939453125, 0.01126861572265625, -0.05767822265625, 0.08526611328125, -0.025054931640625, -0.0248870849609375, -0.01776123046875, -0.046844482421875, 0.0018129348754882812, 0.00783538818359375, -0.02734375, -0.00616455078125, 0.0293426513671875, 0.06268310546875, -0.064208984375, 0.05914306640625, -0.036956787109375, 0.0318603515625, 0.018096923828125, -0.01149749755859375, 0.04150390625, 0.00922393798828125, -0.01496124267578125, 0.0174102783203125, 0.0055694580078125, -0.046417236328125, -0.0131072998046875, 0.05517578125, -0.090576171875, -0.00965118408203125, -0.033721923828125, -0.042633056640625, -0.0191802978515625, 0.0204315185546875, 0.04669189453125, 0.0599365234375, -0.0215301513671875, 0.022064208984375, 0.0347900390625, 0.00949859619140625, 0.034423828125, 0.0184173583984375, 0.01430511474609375, -0.031646728515625, 0.054962158203125, -0.0022830963134765625, 0.01085662841796875, -0.00099945068359375, 0.0147857666015625, -0.021209716796875, -0.046417236328125, -0.0157318115234375, 0.01363372802734375, -0.05096435546875, -0.0196533203125, -0.0208892822265625, -0.04718017578125, -0.0155029296875, -0.0079803466796875, -0.0265350341796875, -0.0179901123046875, -0.051239013671875, -0.0120849609375, 0.035247802734375, 0.040985107421875, -0.01198577880859375, 0.058013916015625, -0.045074462890625, 0.005298614501953125, 0.023101806640625, 0.045989990234375, -0.0019321441650390625, -0.04833984375, -0.0261993408203125, 0.011444091796875, -0.0265045166015625, -0.02923583984375, 0.026519775390625, 0.01288604736328125, 0.055877685546875, 0.0286712646484375, -0.0087127685546875, 0.06146240234375, -0.03790283203125, 0.04876708984375, 0.016510009765625, -0.040679931640625, 0.0298919677734375, -0.0225372314453125, 0.0205230712890625, 0.049652099609375, 0.0274810791015625, 0.0172576904296875, -0.0153656005859375, -0.09356689453125, -0.05572509765625, 0.056121826171875, 0.0257568359375, 0.024261474609375, 0.003421783447265625, 0.04156494140625, 0.0110931396484375, 0.0142059326171875, -0.06024169921875, -0.03424072265625, -0.026153564453125, -0.014892578125, -0.0016613006591796875, -0.034088134765625, -0.01386260986328125, -0.061370849609375, 0.0758056640625, 0.0061798095703125, 0.0283050537109375, 0.0102691650390625, 0.00555419921875, -0.01390838623046875, -0.00865936279296875, 0.0408935546875, 0.04766845703125, -0.070556640625, -0.0223236083984375, 0.01276397705078125, -0.038787841796875, -0.0222015380859375, 0.033111572265625, -0.0123748779296875, 0.0176849365234375, 0.0204010009765625, 0.07415771484375, 0.012359619140625, -0.00850677490234375, 0.0266876220703125, -0.007778167724609375, -0.032318115234375, -0.035736083984375, 0.0195465087890625, -0.0189666748046875, 0.0218963623046875, 0.0100860595703125, 0.043701171875, 0.0084686279296875, -0.0072021484375, 0.022674560546875, 0.026947021484375, -0.038482666015625, -0.019073486328125, 0.0589599609375, 0.025726318359375, -0.0200042724609375, 0.04931640625, -0.004055023193359375, -0.0168609619140625, 0.058380126953125, 0.04632568359375, 0.06280517578125, 0.0093994140625, -0.012969970703125, 0.056549072265625, 0.010101318359375, -0.00720977783203125, 0.048736572265625, 0.006946563720703125, -0.05853271484375, -0.01812744140625, -0.0443115234375, -0.025299072265625, 0.048004150390625, -0.086181640625, 0.038604736328125, -0.057220458984375, -0.03350830078125, 0.02978515625, 0.00908660888671875, -0.07830810546875, 0.047943115234375, 0.0123443603515625, 0.09466552734375, -0.056549072265625, 0.0703125, 0.043792724609375, -0.033111572265625, -0.0657958984375, -0.01459503173828125, -0.0287017822265625, -0.064453125, 0.053131103515625, -0.005062103271484375, 0.0301361083984375, 0.02349853515625, -0.05926513671875, -0.048980712890625, 0.060302734375, 0.018524169921875, -0.05242919921875, 0.00695037841796875, 0.0010194778442382812, 0.0513916015625, -0.0109405517578125, 0.0384521484375, 0.0208587646484375, 0.01470184326171875, 0.01419830322265625, -0.06243896484375, -0.02392578125, -0.01751708984375, 0.006580352783203125, 0.010498046875, -0.04241943359375, 0.0789794921875, 0.0035648345947265625, 0.035736083984375, 0.02764892578125, 0.042266845703125, 0.01219940185546875, -0.001983642578125, 0.029937744140625, 0.05596923828125, 0.0372314453125, -0.0125274658203125, 0.06201171875, -0.046783447265625, 0.05902099609375, 0.088623046875, 0.0003910064697265625, 0.050628662109375, 0.031341552734375, -0.00884246826171875, 0.0206451416015625, 0.061553955078125, -0.04302978515625, 0.051513671875, 0.0177001953125, 0.005443572998046875, -0.036346435546875, 0.0235443115234375, -0.048431396484375, 0.0243682861328125, 0.0120697021484375, -0.049041748046875, -0.03497314453125, -0.0166778564453125, -0.00753021240234375, -0.0132293701171875, -0.038055419921875, 0.044525146484375, -0.0311737060546875, -0.0306243896484375, 0.05224609375, 0.005001068115234375, 0.042205810546875, -0.046417236328125, -0.0102691650390625, -0.004344940185546875, 0.0357666015625, -0.0098724365234375, -0.05059814453125, 0.0163726806640625, -0.0080718994140625, -0.02325439453125, -0.00684356689453125, 0.040618896484375, -0.027587890625, -0.060791015625, 0.00714874267578125, 0.0255889892578125, 0.019073486328125, 0.01032257080078125, -0.08343505859375, -0.0056610107421875, -0.007724761962890625, -0.01303863525390625, 0.0057373046875, 0.0249786376953125, 0.0081939697265625, 0.034393310546875, 0.049468994140625, -0.006488800048828125, 0.0005564689636230469, 0.0242919921875, 0.06585693359375, -0.0390625, -0.0308990478515625, -0.056396484375, 0.0278167724609375, -0.0139312744140625, -0.0645751953125, 0.034820556640625, 0.078369140625, 0.0755615234375, -0.026153564453125, 0.038116455078125, -0.00024437904357910156, 0.041961669921875, -0.0333251953125, 0.05352783203125, -0.0250244140625, -0.0103607177734375, -0.0186614990234375, -0.06719970703125, -0.008758544921875, 0.06097412109375, -0.01043701171875, 0.00969696044921875, 0.0258636474609375, 0.048431396484375, -0.0128021240234375, 0.01171875, 0.0114288330078125, 0.00823211669921875, 0.01160430908203125, 0.024200439453125, 0.033843994140625, -0.060333251953125, 0.031005859375, -0.051605224609375, -0.0002225637435913086, -0.0232086181640625, -0.0560302734375, -0.079833984375, -0.026702880859375, -0.031646728515625, -0.0302734375, 0.00814056396484375, 0.0782470703125, 0.06524658203125, -0.06671142578125, -0.0268402099609375, -0.0182342529296875, -0.020233154296875, -0.0140228271484375, -0.01538848876953125, 0.029632568359375, -0.0240478515625, -0.053741455078125, -0.0117034912109375, -0.034149169921875, 0.0297088623046875, -0.00922393798828125, -0.0089874267578125, -0.015777587890625, -0.01348114013671875, 0.0285186767578125, 0.004116058349609375, -0.042144775390625, -0.049224853515625, -0.01318359375, -0.0139923095703125, 0.01047515869140625, 0.0143890380859375, -0.0435791015625, 0.02935791015625, 0.016021728515625, 0.01296234130859375, 0.055023193359375, -0.003376007080078125, 0.0374755859375, -0.064697265625, 0.032867431640625, 0.0160980224609375, 0.0357666015625, 0.007434844970703125, -0.0266876220703125, 0.034271240234375, 0.022613525390625, -0.042694091796875, -0.047088623046875, -0.0181732177734375, -0.09063720703125, 0.00638580322265625, 0.08441162109375, 0.0186309814453125, -0.03021240234375, 0.0190887451171875, -0.032958984375, 0.032958984375, -0.0243682861328125, 0.0367431640625, 0.049468994140625, -0.01397705078125, 0.01145172119140625, -0.035430908203125, 0.0447998046875, 0.0200958251953125, -0.039276123046875, -0.0231475830078125, 0.03240966796875, 0.036529541015625, -0.0008325576782226562, 0.016326904296875, 0.0050201416015625, 0.030059814453125, -0.004810333251953125, 0.044921875, -0.0182647705078125, -0.01497650146484375, -0.012359619140625, -0.0030670166015625, 0.007720947265625, -0.047454833984375 ] ]
TheBloke/AshhLimaRP-Mistral-7B-GGUF
2023-10-27T20:10:01.000Z
[ "transformers", "mistral", "license:apache-2.0", "text-generation-inference", "region:us" ]
null
TheBloke
null
null
TheBloke/AshhLimaRP-Mistral-7B-GGUF
0
2
transformers
2023-10-27T20:00:13
--- base_model: lemonilia/AshhLimaRP-Mistral-7B inference: false license: apache-2.0 model_creator: Suikamelon model_name: AshhLimaRP Mistral 7B model_type: mistral prompt_template: "### Instruction:\nCharacter's Persona: bot character description\n\ \nUser's persona: user character description\n \nScenario: what happens in the\ \ story\n\nPlay the role of Character. You must engage in a roleplaying chat with\ \ User below this line. Do not write dialogues and narration for User. Character\ \ should respond with messages of medium length.\n\n### Input:\nUser: {prompt}\n\ \n### Response:\nCharacter: \n" quantized_by: TheBloke --- <!-- markdownlint-disable MD041 --> <!-- header start --> <!-- 200823 --> <div style="width: auto; margin-left: auto; margin-right: auto"> <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;"> </div> <div style="display: flex; justify-content: space-between; width: 100%;"> <div style="display: flex; flex-direction: column; align-items: flex-start;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p> </div> <div style="display: flex; flex-direction: column; align-items: flex-end;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p> </div> </div> <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div> <hr style="margin-top: 1.0em; margin-bottom: 1.0em;"> <!-- header end --> # AshhLimaRP Mistral 7B - GGUF - Model creator: [Suikamelon](https://huggingface.co/lemonilia) - Original model: [AshhLimaRP Mistral 7B](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B) <!-- description start --> ## Description This repo contains GGUF format model files for [Suikamelon's AshhLimaRP Mistral 7B](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B). These files were quantised using hardware kindly provided by [Massed Compute](https://massedcompute.com/). <!-- description end --> <!-- README_GGUF.md-about-gguf start --> ### About GGUF GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. Here is an incomplate list of clients and libraries that are known to support GGUF: * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option. * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration. * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling. * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration. * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection. * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration. * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server. * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server. * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use. <!-- README_GGUF.md-about-gguf end --> <!-- repositories-available start --> ## Repositories available * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-AWQ) * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GPTQ) * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF) * [Suikamelon's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B) <!-- repositories-available end --> <!-- prompt-template start --> ## Prompt template: LimaRP-Alpaca ``` ### Instruction: Character's Persona: bot character description User's persona: user character description Scenario: what happens in the story Play the role of Character. You must engage in a roleplaying chat with User below this line. Do not write dialogues and narration for User. Character should respond with messages of medium length. ### Input: User: {prompt} ### Response: Character: ``` <!-- prompt-template end --> <!-- compatibility_gguf start --> ## Compatibility These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) They are also compatible with many third party UIs and libraries - please see the list at the top of this README. ## Explanation of quantisation methods <details> <summary>Click to see details</summary> The new methods available are: * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw) * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw. * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw. * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw Refer to the Provided Files table below to see what files use which methods, and how. </details> <!-- compatibility_gguf end --> <!-- README_GGUF.md-provided-files start --> ## Provided files | Name | Quant method | Bits | Size | Max RAM required | Use case | | ---- | ---- | ---- | ---- | ---- | ----- | | [ashhlimarp-mistral-7b.Q2_K.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q2_K.gguf) | Q2_K | 2 | 3.08 GB| 5.58 GB | smallest, significant quality loss - not recommended for most purposes | | [ashhlimarp-mistral-7b.Q3_K_S.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q3_K_S.gguf) | Q3_K_S | 3 | 3.16 GB| 5.66 GB | very small, high quality loss | | [ashhlimarp-mistral-7b.Q3_K_M.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q3_K_M.gguf) | Q3_K_M | 3 | 3.52 GB| 6.02 GB | very small, high quality loss | | [ashhlimarp-mistral-7b.Q3_K_L.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q3_K_L.gguf) | Q3_K_L | 3 | 3.82 GB| 6.32 GB | small, substantial quality loss | | [ashhlimarp-mistral-7b.Q4_0.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q4_0.gguf) | Q4_0 | 4 | 4.11 GB| 6.61 GB | legacy; small, very high quality loss - prefer using Q3_K_M | | [ashhlimarp-mistral-7b.Q4_K_S.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q4_K_S.gguf) | Q4_K_S | 4 | 4.14 GB| 6.64 GB | small, greater quality loss | | [ashhlimarp-mistral-7b.Q4_K_M.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q4_K_M.gguf) | Q4_K_M | 4 | 4.37 GB| 6.87 GB | medium, balanced quality - recommended | | [ashhlimarp-mistral-7b.Q5_0.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q5_0.gguf) | Q5_0 | 5 | 5.00 GB| 7.50 GB | legacy; medium, balanced quality - prefer using Q4_K_M | | [ashhlimarp-mistral-7b.Q5_K_S.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q5_K_S.gguf) | Q5_K_S | 5 | 5.00 GB| 7.50 GB | large, low quality loss - recommended | | [ashhlimarp-mistral-7b.Q5_K_M.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q5_K_M.gguf) | Q5_K_M | 5 | 5.13 GB| 7.63 GB | large, very low quality loss - recommended | | [ashhlimarp-mistral-7b.Q6_K.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q6_K.gguf) | Q6_K | 6 | 5.94 GB| 8.44 GB | very large, extremely low quality loss | | [ashhlimarp-mistral-7b.Q8_0.gguf](https://huggingface.co/TheBloke/AshhLimaRP-Mistral-7B-GGUF/blob/main/ashhlimarp-mistral-7b.Q8_0.gguf) | Q8_0 | 8 | 7.70 GB| 10.20 GB | very large, extremely low quality loss - not recommended | **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead. <!-- README_GGUF.md-provided-files end --> <!-- README_GGUF.md-how-to-download start --> ## How to download GGUF files **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file. The following clients/libraries will automatically download models for you, providing a list of available models to choose from: * LM Studio * LoLLMS Web UI * Faraday.dev ### In `text-generation-webui` Under Download Model, you can enter the model repo: TheBloke/AshhLimaRP-Mistral-7B-GGUF and below it, a specific filename to download, such as: ashhlimarp-mistral-7b.Q4_K_M.gguf. Then click Download. ### On the command line, including multiple files at once I recommend using the `huggingface-hub` Python library: ```shell pip3 install huggingface-hub ``` Then you can download any individual model file to the current directory, at high speed, with a command like this: ```shell huggingface-cli download TheBloke/AshhLimaRP-Mistral-7B-GGUF ashhlimarp-mistral-7b.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` <details> <summary>More advanced huggingface-cli download usage</summary> You can also download multiple files at once with a pattern: ```shell huggingface-cli download TheBloke/AshhLimaRP-Mistral-7B-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf' ``` For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli). To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`: ```shell pip3 install hf_transfer ``` And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`: ```shell HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/AshhLimaRP-Mistral-7B-GGUF ashhlimarp-mistral-7b.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command. </details> <!-- README_GGUF.md-how-to-download end --> <!-- README_GGUF.md-how-to-run start --> ## Example `llama.cpp` command Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later. ```shell ./main -ngl 32 -m ashhlimarp-mistral-7b.Q4_K_M.gguf --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction:\nCharacter's Persona: bot character description\n\nUser's persona: user character description\n \nScenario: what happens in the story\n\nPlay the role of Character. You must engage in a roleplaying chat with User below this line. Do not write dialogues and narration for User. Character should respond with messages of medium length.\n\n### Input:\nUser: {prompt}\n\n### Response:\nCharacter:" ``` Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration. Change `-c 2048` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins` For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md) ## How to run in `text-generation-webui` Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md). ## How to run from Python code You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries. ### How to load this model in Python code, using ctransformers #### First install the package Run one of the following commands, according to your system: ```shell # Base ctransformers with no GPU acceleration pip install ctransformers # Or with CUDA GPU acceleration pip install ctransformers[cuda] # Or with AMD ROCm GPU acceleration (Linux only) CT_HIPBLAS=1 pip install ctransformers --no-binary ctransformers # Or with Metal GPU acceleration for macOS systems only CT_METAL=1 pip install ctransformers --no-binary ctransformers ``` #### Simple ctransformers example code ```python from ctransformers import AutoModelForCausalLM # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system. llm = AutoModelForCausalLM.from_pretrained("TheBloke/AshhLimaRP-Mistral-7B-GGUF", model_file="ashhlimarp-mistral-7b.Q4_K_M.gguf", model_type="mistral", gpu_layers=50) print(llm("AI is going to")) ``` ## How to use with LangChain Here are guides on using llama-cpp-python and ctransformers with LangChain: * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp) * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers) <!-- README_GGUF.md-how-to-run end --> <!-- footer start --> <!-- 200823 --> ## Discord For further support, and discussions on these models and AI in general, join us at: [TheBloke AI's Discord server](https://discord.gg/theblokeai) ## Thanks, and how to contribute Thanks to the [chirper.ai](https://chirper.ai) team! Thanks to Clay from [gpus.llm-utils.org](llm-utils)! I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training. If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects. Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits. * Patreon: https://patreon.com/TheBlokeAI * Ko-Fi: https://ko-fi.com/TheBlokeAI **Special thanks to**: Aemon Algiz. **Patreon special mentions**: Pierre Kircher, Stanislav Ovsiannikov, Michael Levine, Eugene Pentland, Andrey, 준교 김, Randy H, Fred von Graf, Artur Olbinski, Caitlyn Gatomon, terasurfer, Jeff Scroggin, James Bentley, Vadim, Gabriel Puliatti, Harry Royden McLaughlin, Sean Connelly, Dan Guido, Edmond Seymore, Alicia Loh, subjectnull, AzureBlack, Manuel Alberto Morcote, Thomas Belote, Lone Striker, Chris Smitley, Vitor Caleffi, Johann-Peter Hartmann, Clay Pascal, biorpg, Brandon Frisco, sidney chen, transmissions 11, Pedro Madruga, jinyuan sun, Ajan Kanaga, Emad Mostaque, Trenton Dambrowitz, Jonathan Leane, Iucharbius, usrbinkat, vamX, George Stoitzev, Luke Pendergrass, theTransient, Olakabola, Swaroop Kallakuri, Cap'n Zoog, Brandon Phillips, Michael Dempsey, Nikolai Manek, danny, Matthew Berman, Gabriel Tamborski, alfie_i, Raymond Fosdick, Tom X Nguyen, Raven Klaugh, LangChain4j, Magnesian, Illia Dulskyi, David Ziegler, Mano Prime, Luis Javier Navarrete Lozano, Erik Bjäreholt, 阿明, Nathan Dryer, Alex, Rainer Wilmers, zynix, TL, Joseph William Delisle, John Villwock, Nathan LeClaire, Willem Michiel, Joguhyik, GodLy, OG, Alps Aficionado, Jeffrey Morgan, ReadyPlayerEmma, Tiffany J. Kim, Sebastain Graf, Spencer Kim, Michael Davis, webtim, Talal Aujan, knownsqashed, John Detwiler, Imad Khwaja, Deo Leter, Jerry Meng, Elijah Stavena, Rooh Singh, Pieter, SuperWojo, Alexandros Triantafyllidis, Stephen Murray, Ai Maven, ya boyyy, Enrico Ros, Ken Nordquist, Deep Realms, Nicholas, Spiking Neurons AB, Elle, Will Dee, Jack West, RoA, Luke @flexchar, Viktor Bowallius, Derek Yates, Subspace Studios, jjj, Toran Billups, Asp the Wyvern, Fen Risland, Ilya, NimbleBox.ai, Chadd, Nitin Borwankar, Emre, Mandus, Leonard Tan, Kalila, K, Trailburnt, S_X, Cory Kujawski Thank you to all my generous patrons and donaters! And thank you again to a16z for their generous grant. <!-- footer end --> <!-- original-model-card start --> # Original model card: Suikamelon's AshhLimaRP Mistral 7B # AshhLimaRP-Mistral-7B (Alpaca, v1) This is a version of LimaRP with 2000 training samples _up to_ about 9k tokens length finetuned on [Ashhwriter-Mistral-7B](https://huggingface.co/lemonilia/Ashhwriter-Mistral-7B). LimaRP is a longform-oriented, novel-style roleplaying chat model intended to replicate the experience of 1-on-1 roleplay on Internet forums. Short-form, IRC/Discord-style RP (aka "Markdown format") is not supported. The model does not include instruction tuning, only manually picked and slightly edited RP conversations with persona and scenario data. Ashhwriter, the base, is a model entirely finetuned on human-written lewd stories. ## Available versions - Float16 HF weights - LoRA Adapter ([adapter_config.json](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B/resolve/main/adapter_config.json) and [adapter_model.bin](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B/resolve/main/adapter_model.bin)) - [4bit AWQ](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B/tree/main/AWQ) - [Q4_K_M GGUF](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B/resolve/main/AshhLimaRP-Mistral-7B.Q4_K_M.gguf) - [Q6_K GGUF](https://huggingface.co/lemonilia/AshhLimaRP-Mistral-7B/resolve/main/AshhLimaRP-Mistral-7B.Q6_K.gguf) ## Prompt format [Extended Alpaca format](https://github.com/tatsu-lab/stanford_alpaca), with `### Instruction:`, `### Input:` immediately preceding user inputs and `### Response:` immediately preceding model outputs. While Alpaca wasn't originally intended for multi-turn responses, in practice this is not a problem; the format follows a pattern already used by other models. ``` ### Instruction: Character's Persona: {bot character description} User's Persona: {user character description} Scenario: {what happens in the story} Play the role of Character. You must engage in a roleplaying chat with User below this line. Do not write dialogues and narration for User. ### Input: User: {utterance} ### Response: Character: {utterance} ### Input User: {utterance} ### Response: Character: {utterance} (etc.) ``` You should: - Replace all text in curly braces (curly braces included) with your own text. - Replace `User` and `Character` with appropriate names. ### Message length control Inspired by the previously named "Roleplay" preset in SillyTavern, with this version of LimaRP it is possible to append a length modifier to the response instruction sequence, like this: ``` ### Input User: {utterance} ### Response: (length = medium) Character: {utterance} ``` This has an immediately noticeable effect on bot responses. The lengths using during training are: `micro`, `tiny`, `short`, `medium`, `long`, `massive`, `huge`, `enormous`, `humongous`, `unlimited`. **The recommended starting length is medium**. Keep in mind that the AI can ramble or impersonate the user with very long messages. The length control effect is reproducible, but the messages will not necessarily follow lengths very precisely, rather follow certain ranges on average, as seen in this table with data from tests made with one reply at the beginning of the conversation: ![lengths](https://i.imgur.com/2WXGgaV.png) Response length control appears to work well also deep into the conversation. **By omitting the modifier, the model will choose the most appropriate response length** (although it might not necessarily be what the user desires). ## Suggested settings You can follow these instruction format settings in SillyTavern. Replace `medium` with your desired response length: ![settings](https://files.catbox.moe/fpieug.png) ## Text generation settings These settings could be a good general starting point: - TFS = 0.90 - Temperature = 0.70 - Repetition penalty = ~1.11 - Repetition penalty range = ~2048 - top-k = 0 (disabled) - top-p = 1 (disabled) ## Training procedure [Axolotl](https://github.com/OpenAccess-AI-Collective/axolotl) was used for training on 2x NVidia A40 GPUs. The A40 GPUs have been graciously provided by [Arc Compute](https://www.arccompute.io/). ### Training hyperparameters A lower learning rate than usual was employed. Due to an unforeseen issue the training was cut short and as a result 3 epochs were trained instead of the planned 4. Using 2 GPUs, the effective global batch size would have been 16. Training was continued from the most recent LoRA adapter from Ashhwriter, using the same LoRA R and LoRA alpha. - lora_model_dir: /home/anon/bin/axolotl/OUT_mistral-stories/checkpoint-6000/ - learning_rate: 0.00005 - lr_scheduler: cosine - noisy_embedding_alpha: 3.5 - num_epochs: 4 - sequence_len: 8750 - lora_r: 256 - lora_alpha: 16 - lora_dropout: 0.05 - lora_target_linear: True - bf16: True - fp16: false - tf32: True - load_in_8bit: True - adapter: lora - micro_batch_size: 2 - optimizer: adamw_bnb_8bit - warmup_steps: 10 - optimizer: adamw_torch - flash_attention: true - sample_packing: true - pad_to_sequence_len: true ### Loss graphs Values are higher than typical because the training is performed on the entire sample, similar to unsupervised finetuning. #### Train loss ![Train loss](https://files.catbox.moe/ovw8c7.png) #### Eval loss ![Eval loss](https://files.catbox.moe/yp7o0h.png) <!-- original-model-card end -->
23,134
[ [ -0.050811767578125, -0.052490234375, 0.022125244140625, 0.024749755859375, -0.0306396484375, -0.0128021240234375, 0.002239227294921875, -0.043670654296875, 0.034698486328125, 0.0171661376953125, -0.055938720703125, -0.03594970703125, -0.03973388671875, 0.00418853759765625, -0.0080413818359375, 0.08013916015625, 0.0031070709228515625, -0.0163116455078125, -0.001983642578125, -0.016937255859375, -0.0162506103515625, -0.033477783203125, -0.048248291015625, -0.0295562744140625, 0.0390625, 0.020263671875, 0.069580078125, 0.0404052734375, 0.0307159423828125, 0.0266265869140625, -0.01493072509765625, 0.0014801025390625, -0.033355712890625, -0.0122833251953125, 0.015472412109375, -0.0198516845703125, -0.06768798828125, -0.007358551025390625, 0.039337158203125, 0.00499725341796875, -0.022308349609375, 0.025482177734375, 0.00516510009765625, 0.058441162109375, -0.035552978515625, 0.0164031982421875, -0.004230499267578125, 0.0123443603515625, -0.0248870849609375, 0.00203704833984375, -0.0026607513427734375, -0.030731201171875, 0.00007963180541992188, -0.070556640625, 0.0030879974365234375, 0.0030841827392578125, 0.09173583984375, 0.005733489990234375, -0.023406982421875, -0.00046563148498535156, -0.026336669921875, 0.06329345703125, -0.07049560546875, 0.01494598388671875, 0.0294647216796875, 0.0280303955078125, -0.019500732421875, -0.0654296875, -0.0367431640625, 0.00701904296875, -0.019195556640625, 0.0187225341796875, -0.04730224609375, 0.0145416259765625, 0.0292816162109375, 0.0618896484375, -0.05743408203125, -0.0134429931640625, -0.0206146240234375, -0.00514984130859375, 0.05780029296875, 0.00868988037109375, 0.046600341796875, -0.02130126953125, -0.025604248046875, -0.0156402587890625, -0.04083251953125, 0.0009250640869140625, 0.035186767578125, -0.018798828125, -0.0601806640625, 0.03271484375, -0.007312774658203125, 0.0433349609375, 0.0189361572265625, -0.033233642578125, 0.0166168212890625, -0.028228759765625, -0.03955078125, -0.02178955078125, 0.080078125, 0.034912109375, -0.00768280029296875, 0.01837158203125, 0.0153350830078125, -0.004802703857421875, -0.00426483154296875, -0.0791015625, -0.03070068359375, 0.039703369140625, -0.052093505859375, -0.0210113525390625, -0.0123748779296875, -0.0732421875, -0.019256591796875, 0.00118255615234375, 0.0268707275390625, -0.048126220703125, -0.03167724609375, 0.00289154052734375, -0.0266876220703125, 0.0286712646484375, 0.038604736328125, -0.06890869140625, 0.0228729248046875, 0.024993896484375, 0.055633544921875, 0.007598876953125, -0.009765625, -0.01358795166015625, 0.01169586181640625, -0.020172119140625, 0.04150390625, -0.0218353271484375, -0.048065185546875, -0.0237884521484375, 0.007808685302734375, 0.005474090576171875, -0.0263671875, 0.050994873046875, -0.0018396377563476562, 0.027679443359375, -0.03155517578125, -0.03173828125, -0.0333251953125, 0.0037994384765625, -0.04541015625, 0.08184814453125, 0.026214599609375, -0.0753173828125, 0.0072479248046875, -0.04486083984375, -0.0053558349609375, 0.005626678466796875, -0.00452423095703125, -0.044586181640625, 0.0007352828979492188, 0.0218658447265625, 0.03326416015625, -0.03094482421875, 0.008514404296875, -0.0247802734375, -0.027587890625, 0.007537841796875, -0.0269012451171875, 0.08807373046875, 0.032806396484375, -0.03173828125, 0.00868988037109375, -0.058319091796875, 0.0045166015625, 0.033660888671875, -0.02362060546875, 0.00749969482421875, -0.015869140625, 0.004947662353515625, 0.004299163818359375, 0.0199432373046875, -0.019287109375, 0.0240631103515625, -0.00006502866744995117, 0.032989501953125, 0.049346923828125, 0.007167816162109375, 0.013763427734375, -0.043304443359375, 0.04949951171875, -0.006267547607421875, 0.050079345703125, -0.00399017333984375, -0.05389404296875, -0.05450439453125, -0.041473388671875, 0.01308441162109375, 0.0369873046875, -0.044586181640625, 0.04498291015625, -0.0007634162902832031, -0.06915283203125, -0.04498291015625, 0.005405426025390625, 0.044036865234375, 0.019683837890625, 0.034942626953125, -0.0252685546875, -0.0389404296875, -0.065673828125, 0.002452850341796875, -0.0307159423828125, 0.001659393310546875, 0.0447998046875, 0.031768798828125, -0.0233001708984375, 0.037139892578125, -0.051239013671875, -0.0280914306640625, -0.011444091796875, -0.004741668701171875, 0.013153076171875, 0.045806884765625, 0.078369140625, -0.050628662109375, -0.034759521484375, 0.005115509033203125, -0.062744140625, -0.00594329833984375, 0.005764007568359375, -0.0287933349609375, 0.0283660888671875, 0.01287841796875, -0.05615234375, 0.044219970703125, 0.06878662109375, -0.04132080078125, 0.052490234375, -0.02777099609375, 0.026947021484375, -0.0897216796875, 0.0203857421875, 0.0096435546875, -0.0206756591796875, -0.0421142578125, 0.0225677490234375, -0.006008148193359375, 0.00855255126953125, -0.036224365234375, 0.047943115234375, -0.038116455078125, 0.005901336669921875, 0.006061553955078125, -0.01032257080078125, 0.00042700767517089844, 0.04925537109375, -0.01242828369140625, 0.06231689453125, 0.0469970703125, -0.0290069580078125, 0.042999267578125, 0.02520751953125, 0.0037250518798828125, 0.04949951171875, -0.06439208984375, 0.00464630126953125, 0.0009245872497558594, 0.03741455078125, -0.07879638671875, -0.0303497314453125, 0.0526123046875, -0.048797607421875, 0.0273590087890625, -0.0345458984375, -0.0285797119140625, -0.028961181640625, -0.045928955078125, 0.035125732421875, 0.06439208984375, -0.043426513671875, 0.045745849609375, 0.032684326171875, -0.0034618377685546875, -0.03668212890625, -0.04852294921875, 0.0033435821533203125, -0.029876708984375, -0.043212890625, 0.030303955078125, -0.017425537109375, -0.0084228515625, 0.005832672119140625, -0.0027828216552734375, 0.0013761520385742188, -0.0008797645568847656, 0.037109375, 0.0244293212890625, -0.01270294189453125, -0.03277587890625, 0.0034656524658203125, -0.01197052001953125, -0.006282806396484375, -0.012908935546875, 0.04388427734375, -0.026458740234375, -0.0135650634765625, -0.044586181640625, 0.0177154541015625, 0.03289794921875, -0.004337310791015625, 0.04522705078125, 0.0694580078125, -0.031646728515625, 0.017913818359375, -0.04156494140625, 0.014678955078125, -0.0389404296875, -0.0079193115234375, -0.01910400390625, -0.0614013671875, 0.048431396484375, 0.0242156982421875, 0.012847900390625, 0.0587158203125, 0.02886962890625, 0.003215789794921875, 0.0789794921875, 0.03704833984375, -0.01329803466796875, 0.0401611328125, -0.040863037109375, -0.0026988983154296875, -0.0638427734375, -0.032562255859375, -0.0270843505859375, -0.028411865234375, -0.0504150390625, -0.035736083984375, 0.0207061767578125, 0.02886962890625, -0.01751708984375, 0.0379638671875, -0.0523681640625, 0.0240478515625, 0.033050537109375, 0.01146697998046875, 0.01078033447265625, -0.0008516311645507812, -0.0019321441650390625, -0.006847381591796875, -0.02935791015625, -0.019317626953125, 0.07086181640625, 0.02935791015625, 0.05218505859375, 0.0318603515625, 0.05145263671875, 0.0161590576171875, 0.01043701171875, -0.033905029296875, 0.05242919921875, 0.0028972625732421875, -0.049346923828125, -0.01322174072265625, -0.0291748046875, -0.06610107421875, 0.02020263671875, -0.0196533203125, -0.06402587890625, 0.01666259765625, 0.008636474609375, -0.0251617431640625, 0.036834716796875, -0.054351806640625, 0.059356689453125, -0.0008139610290527344, -0.023773193359375, -0.0089874267578125, -0.046417236328125, 0.040618896484375, 0.0185546875, 0.0003886222839355469, -0.0160369873046875, -0.0019683837890625, 0.059722900390625, -0.056243896484375, 0.0450439453125, -0.0209503173828125, -0.018951416015625, 0.040740966796875, -0.0032958984375, 0.023651123046875, 0.02178955078125, 0.01490020751953125, 0.0265350341796875, 0.016448974609375, -0.040771484375, -0.0310821533203125, 0.05523681640625, -0.06182861328125, -0.042694091796875, -0.048828125, -0.02105712890625, 0.01256561279296875, 0.008087158203125, 0.0404052734375, 0.03656005859375, -0.0087127685546875, 0.00757598876953125, 0.05169677734375, -0.0203704833984375, 0.040679931640625, 0.0050506591796875, -0.0300445556640625, -0.0621337890625, 0.06915283203125, -0.0079193115234375, 0.0102996826171875, 0.01206207275390625, 0.0103759765625, -0.019287109375, -0.0311431884765625, -0.050537109375, 0.028167724609375, -0.0307769775390625, -0.0294342041015625, -0.04132080078125, -0.0295257568359375, -0.0298614501953125, -0.0114288330078125, -0.0087738037109375, -0.03741455078125, -0.03912353515625, 0.007472991943359375, 0.06280517578125, 0.045928955078125, -0.019927978515625, 0.021240234375, -0.055511474609375, 0.0305938720703125, 0.0303955078125, 0.02105712890625, 0.0086212158203125, -0.04241943359375, -0.00032591819763183594, -0.0016927719116210938, -0.03826904296875, -0.0645751953125, 0.036834716796875, 0.0034809112548828125, 0.0306396484375, 0.04541015625, -0.01473236083984375, 0.07916259765625, -0.02252197265625, 0.08184814453125, 0.0303192138671875, -0.06671142578125, 0.042449951171875, -0.043975830078125, 0.01263427734375, 0.02587890625, 0.033905029296875, -0.036468505859375, -0.0169830322265625, -0.064697265625, -0.053375244140625, 0.046661376953125, 0.0298004150390625, -0.00847625732421875, 0.01529693603515625, 0.0278778076171875, 0.0005035400390625, 0.0034580230712890625, -0.041961669921875, -0.058197021484375, -0.0207061767578125, -0.01276397705078125, -0.00919342041015625, -0.02569580078125, -0.01206207275390625, -0.048797607421875, 0.062469482421875, -0.010009765625, 0.05108642578125, 0.0270233154296875, 0.00923919677734375, -0.00701904296875, 0.01129913330078125, 0.055450439453125, 0.04266357421875, -0.0278167724609375, -0.005680084228515625, 0.01525115966796875, -0.06561279296875, 0.01168060302734375, 0.031402587890625, -0.0122833251953125, 0.004497528076171875, 0.01110076904296875, 0.06256103515625, 0.017913818359375, -0.0211944580078125, 0.028167724609375, -0.0244903564453125, -0.0280303955078125, -0.021942138671875, 0.019287109375, 0.019927978515625, 0.0251617431640625, 0.0258941650390625, -0.008941650390625, 0.016937255859375, -0.041290283203125, 0.005474090576171875, 0.031829833984375, -0.025421142578125, -0.0273895263671875, 0.06671142578125, -0.00453948974609375, -0.003910064697265625, 0.018341064453125, -0.0303955078125, -0.02520751953125, 0.0443115234375, 0.041015625, 0.0653076171875, -0.023773193359375, 0.02386474609375, 0.040313720703125, 0.0031566619873046875, -0.0009236335754394531, 0.0390625, -0.0007576942443847656, -0.01082611083984375, -0.01363372802734375, -0.04937744140625, -0.0372314453125, 0.019989013671875, -0.044342041015625, 0.0167999267578125, -0.058135986328125, -0.0225067138671875, -0.009552001953125, 0.033477783203125, -0.036956787109375, 0.0184326171875, 0.0095672607421875, 0.0682373046875, -0.0418701171875, 0.06146240234375, 0.052825927734375, -0.03094482421875, -0.06610107421875, -0.01507568359375, 0.02056884765625, -0.059906005859375, -0.0012979507446289062, -0.00547027587890625, 0.01294708251953125, 0.00878143310546875, -0.05389404296875, -0.059051513671875, 0.11688232421875, 0.029083251953125, -0.0214385986328125, 0.0007944107055664062, -0.0129547119140625, 0.0290679931640625, -0.00505828857421875, 0.035736083984375, 0.0457763671875, 0.036407470703125, 0.01361846923828125, -0.0633544921875, 0.025238037109375, -0.03936767578125, 0.00533294677734375, 0.01934814453125, -0.0830078125, 0.06707763671875, -0.006870269775390625, -0.0174560546875, 0.0253448486328125, 0.058319091796875, 0.04913330078125, 0.00370025634765625, 0.019012451171875, 0.06878662109375, 0.05267333984375, -0.027679443359375, 0.08367919921875, -0.00974273681640625, 0.0287322998046875, 0.037200927734375, 0.015045166015625, 0.051513671875, 0.0251617431640625, -0.04022216796875, 0.047393798828125, 0.058135986328125, -0.0162811279296875, 0.0240325927734375, 0.0099639892578125, -0.0285186767578125, -0.0015153884887695312, -0.01068878173828125, -0.055877685546875, 0.0008001327514648438, 0.0239715576171875, -0.005870819091796875, -0.01067352294921875, -0.0241241455078125, 0.025421142578125, -0.031494140625, -0.02276611328125, 0.040313720703125, 0.01477813720703125, -0.028717041015625, 0.06085205078125, 0.0021190643310546875, 0.0706787109375, -0.0496826171875, -0.0155181884765625, -0.0357666015625, 0.010284423828125, -0.0322265625, -0.062744140625, -0.0004754066467285156, -0.00032782554626464844, 0.004425048828125, -0.00150299072265625, 0.06317138671875, -0.0149993896484375, -0.0272674560546875, 0.02105712890625, 0.01348876953125, 0.024139404296875, 0.0065460205078125, -0.06707763671875, 0.03192138671875, 0.002162933349609375, -0.0311431884765625, 0.04150390625, 0.0277252197265625, 0.017486572265625, 0.04833984375, 0.043670654296875, 0.0015239715576171875, 0.00910186767578125, -0.01511383056640625, 0.058624267578125, -0.048431396484375, -0.026336669921875, -0.060882568359375, 0.03961181640625, -0.0081634521484375, -0.043975830078125, 0.061614990234375, 0.042449951171875, 0.048248291015625, -0.005947113037109375, 0.0526123046875, -0.0211334228515625, 0.00212860107421875, -0.037750244140625, 0.0640869140625, -0.06146240234375, -0.00748443603515625, -0.046661376953125, -0.0587158203125, -0.0206756591796875, 0.05023193359375, 0.014801025390625, 0.0079803466796875, 0.0279388427734375, 0.045318603515625, -0.00421142578125, 0.004230499267578125, 0.014678955078125, 0.0004870891571044922, 0.02825927734375, 0.0782470703125, 0.046173095703125, -0.070556640625, 0.041748046875, -0.028411865234375, -0.0160675048828125, -0.0302734375, -0.06884765625, -0.07476806640625, -0.0447998046875, -0.0372314453125, -0.037872314453125, -0.00592041015625, 0.0604248046875, 0.05267333984375, -0.050537109375, -0.0203399658203125, 0.00521087646484375, 0.00438690185546875, -0.0127716064453125, -0.0192108154296875, 0.0295562744140625, 0.023895263671875, -0.054046630859375, 0.008392333984375, 0.025238037109375, 0.045562744140625, -0.010833740234375, -0.04046630859375, -0.01340484619140625, 0.00704193115234375, 0.037933349609375, 0.053619384765625, -0.052093505859375, -0.01554107666015625, -0.009674072265625, -0.0124664306640625, 0.01094818115234375, 0.0185089111328125, -0.040130615234375, -0.01297760009765625, 0.0374755859375, 0.017913818359375, 0.043365478515625, 0.003551483154296875, 0.0123443603515625, -0.03851318359375, 0.01439666748046875, -0.0101470947265625, 0.037322998046875, 0.00934600830078125, -0.024627685546875, 0.05487060546875, 0.0301513671875, -0.048858642578125, -0.05889892578125, -0.006214141845703125, -0.09161376953125, -0.006488800048828125, 0.08551025390625, -0.00957489013671875, -0.030853271484375, 0.018463134765625, -0.04669189453125, 0.0159149169921875, -0.031768798828125, 0.031524658203125, 0.047515869140625, -0.01461029052734375, -0.019012451171875, -0.04205322265625, 0.054718017578125, 0.020416259765625, -0.0732421875, -0.00604248046875, 0.04248046875, 0.01971435546875, 0.0203094482421875, 0.076416015625, -0.03277587890625, 0.0285186767578125, 0.002979278564453125, 0.0161590576171875, -0.0015554428100585938, -0.01351165771484375, -0.036773681640625, -0.0119171142578125, -0.01214599609375, -0.01873779296875 ] ]
valinor/classification-adapters-llama7b-4bit-lorar64
2023-10-27T20:09:49.000Z
[ "peft", "region:us" ]
null
valinor
null
null
valinor/classification-adapters-llama7b-4bit-lorar64
0
2
peft
2023-10-27T20:09:43
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 ### Framework versions - PEFT 0.5.0
464
[ [ -0.045135498046875, -0.05609130859375, 0.03338623046875, 0.0352783203125, -0.03857421875, 0.006984710693359375, 0.011749267578125, -0.01403045654296875, -0.01224517822265625, 0.0312347412109375, -0.041656494140625, -0.0094757080078125, -0.0333251953125, 0.01141357421875, 0.0008764266967773438, 0.06707763671875, -0.00717926025390625, 0.032958984375, -0.006671905517578125, 0.0019502639770507812, -0.0235443115234375, -0.0247955322265625, -0.07769775390625, -0.028106689453125, -0.0246429443359375, 0.02850341796875, 0.03192138671875, 0.00856781005859375, 0.05523681640625, 0.019439697265625, -0.0019407272338867188, -0.0235748291015625, -0.01409912109375, -0.029296875, 0.004852294921875, -0.0396728515625, -0.057525634765625, -0.00777435302734375, 0.07269287109375, 0.0147247314453125, -0.0078582763671875, 0.01163482666015625, -0.01739501953125, 0.064453125, -0.0491943359375, 0.006710052490234375, -0.03564453125, 0.038330078125, -0.00403594970703125, -0.007183074951171875, -0.01250457763671875, -0.01678466796875, 0.004444122314453125, -0.0369873046875, 0.0290985107421875, 0.0018320083618164062, 0.06829833984375, 0.00919342041015625, -0.051300048828125, 0.00830078125, -0.034454345703125, 0.050048828125, -0.0465087890625, 0.038299560546875, 0.04638671875, 0.0084991455078125, 0.009552001953125, -0.052825927734375, -0.029571533203125, 0.013946533203125, 0.0192718505859375, -0.01482391357421875, -0.003681182861328125, 0.03497314453125, 0.056304931640625, 0.041473388671875, -0.026031494140625, -0.022430419921875, -0.043365478515625, -0.0369873046875, 0.050506591796875, 0.00753021240234375, -0.02130126953125, 0.0250091552734375, -0.057861328125, -0.005260467529296875, -0.047149658203125, 0.0153045654296875, 0.0258636474609375, -0.0104522705078125, -0.04144287109375, 0.0200958251953125, -0.0232086181640625, 0.0399169921875, 0.061431884765625, 0.0013599395751953125, 0.06884765625, -0.032623291015625, -0.0428466796875, 0.0266876220703125, 0.06170654296875, 0.015960693359375, 0.0071258544921875, 0.0057525634765625, -0.038299560546875, -0.029388427734375, 0.0293121337890625, -0.0888671875, -0.027008056640625, 0.0300140380859375, -0.00830841064453125, -0.0297088623046875, 0.01361083984375, -0.03607177734375, 0.011749267578125, 0.012054443359375, 0.05816650390625, -0.06121826171875, -0.031402587890625, 0.02197265625, -0.0221405029296875, 0.0390625, 0.0072174072265625, -0.0843505859375, 0.04351806640625, 0.04144287109375, 0.04180908203125, 0.0149078369140625, -0.01264190673828125, -0.027069091796875, -0.0091705322265625, -0.015625, 0.03070068359375, 0.0217132568359375, -0.0196380615234375, -0.01459503173828125, 0.0093994140625, -0.0069580078125, -0.0433349609375, 0.05072021484375, -0.03814697265625, -0.00647735595703125, -0.01532745361328125, -0.037109375, -0.025238037109375, 0.0190582275390625, -0.040618896484375, 0.0814208984375, 0.03009033203125, -0.04913330078125, 0.0219268798828125, -0.034637451171875, -0.0240478515625, 0.0163726806640625, -0.0302276611328125, -0.053253173828125, 0.0389404296875, -0.0218505859375, 0.029876708984375, 0.010986328125, 0.0205078125, -0.01404571533203125, -0.058074951171875, 0.0261383056640625, -0.02789306640625, 0.0732421875, 0.01190185546875, -0.054107666015625, -0.005695343017578125, -0.06304931640625, 0.021209716796875, 0.0012178421020507812, -0.047149658203125, 0.03509521484375, -0.0330810546875, 0.0097198486328125, 0.0005750656127929688, 0.040252685546875, -0.060150146484375, -0.012176513671875, -0.0391845703125, 0.043701171875, 0.053497314453125, -0.0030231475830078125, 0.0220947265625, -0.0157928466796875, 0.029144287109375, 0.00521087646484375, 0.02783203125, 0.045166015625, -0.035858154296875, -0.05859375, -0.00281524658203125, 0.014434814453125, 0.033233642578125, -0.050079345703125, 0.052581787109375, 0.00803375244140625, -0.0166168212890625, -0.00788116455078125, -0.00899505615234375, 0.03521728515625, 0.00893402099609375, 0.01491546630859375, -0.00893402099609375, -0.035736083984375, -0.06976318359375, 0.032196044921875, 0.0060577392578125, 0.0063018798828125, -0.0027370452880859375, 0.05816650390625, 0.01313018798828125, 0.039581298828125, -0.0292510986328125, 0.0004413127899169922, 0.0037517547607421875, 0.00482177734375, 0.033111572265625, 0.053375244140625, 0.057342529296875, -0.0689697265625, -0.0281524658203125, -0.045074462890625, -0.00936126708984375, 0.013580322265625, -0.01104736328125, -0.0198974609375, 0.02899169921875, 0.01739501953125, -0.02557373046875, 0.039276123046875, 0.035369873046875, -0.055694580078125, 0.061309814453125, -0.015899658203125, 0.02099609375, -0.0594482421875, 0.0022869110107421875, 0.0006394386291503906, -0.03472900390625, 0.00971221923828125, 0.00069427490234375, 0.029876708984375, 0.0040283203125, -0.055084228515625, 0.0165863037109375, -0.022369384765625, -0.007038116455078125, -0.0091705322265625, -0.042694091796875, 0.0228271484375, 0.037445068359375, 0.006328582763671875, 0.071533203125, 0.0491943359375, -0.04364013671875, 0.0304412841796875, 0.005420684814453125, 0.0087890625, 0.0478515625, -0.04437255859375, 0.010101318359375, 0.034210205078125, 0.001495361328125, -0.0570068359375, 0.003696441650390625, 0.0211639404296875, -0.0273895263671875, 0.0273590087890625, -0.01015472412109375, -0.036163330078125, -0.00583648681640625, -0.052825927734375, 0.041748046875, 0.033843994140625, -0.0164794921875, 0.020751953125, 0.00914764404296875, 0.041748046875, -0.0167236328125, -0.06427001953125, -0.0307464599609375, -0.00811004638671875, -0.036041259765625, 0.0557861328125, -0.03131103515625, 0.0032367706298828125, -0.023529052734375, -0.038604736328125, -0.03155517578125, 0.011566162109375, 0.0242462158203125, 0.017822265625, -0.015716552734375, -0.004863739013671875, 0.0186920166015625, -0.006931304931640625, 0.033599853515625, -0.010345458984375, 0.04449462890625, -0.045166015625, -0.0021190643310546875, -0.028045654296875, 0.007427215576171875, 0.00937652587890625, 0.01509857177734375, 0.055450439453125, 0.0799560546875, -0.039459228515625, 0.0103607177734375, -0.03125, -0.0205841064453125, -0.03887939453125, 0.0220947265625, -0.04302978515625, -0.0748291015625, 0.0159912109375, -0.0037326812744140625, -0.0024166107177734375, 0.0556640625, 0.0196990966796875, -0.02435302734375, 0.049896240234375, 0.0333251953125, 0.0288238525390625, 0.0482177734375, -0.039337158203125, -0.0027103424072265625, -0.07562255859375, -0.0022525787353515625, -0.0306396484375, -0.0288238525390625, -0.054931640625, -0.004611968994140625, 0.037750244140625, 0.04388427734375, -0.060760498046875, 0.01081085205078125, -0.040130615234375, 0.035614013671875, 0.042205810546875, 0.0299835205078125, -0.01654052734375, 0.01439666748046875, -0.01367950439453125, 0.0103607177734375, -0.038055419921875, -0.0012884140014648438, 0.0992431640625, 0.017730712890625, 0.0328369140625, -0.00501251220703125, 0.058685302734375, 0.00595855712890625, -0.034881591796875, -0.038116455078125, 0.04412841796875, -0.01172637939453125, -0.06756591796875, -0.013427734375, -0.03167724609375, -0.041717529296875, -0.01154327392578125, -0.0273895263671875, -0.05328369140625, 0.0162506103515625, 0.025909423828125, -0.0472412109375, 0.007465362548828125, -0.039581298828125, 0.07073974609375, -0.035980224609375, -0.01084136962890625, -0.024627685546875, -0.05413818359375, 0.00926971435546875, 0.0015468597412109375, -0.00577545166015625, -0.00501251220703125, -0.0058135986328125, 0.07183837890625, -0.02716064453125, 0.047332763671875, -0.0239715576171875, 0.0222015380859375, 0.0264739990234375, -0.0184478759765625, 0.02716064453125, 0.013427734375, -0.0028362274169921875, 0.045623779296875, 0.033599853515625, -0.0450439453125, 0.0018310546875, 0.039306640625, -0.0733642578125, 0.002094268798828125, -0.053070068359375, -0.0181732177734375, -0.014984130859375, 0.0080718994140625, 0.044281005859375, 0.0203704833984375, 0.004421234130859375, 0.0268402099609375, 0.0821533203125, 0.016693115234375, 0.0423583984375, 0.03155517578125, -0.0097198486328125, -0.0693359375, 0.05609130859375, 0.005878448486328125, 0.0380859375, 0.0300140380859375, 0.02313232421875, -0.0201568603515625, -0.0616455078125, -0.02630615234375, 0.01059722900390625, -0.0251922607421875, -0.033447265625, -0.01415252685546875, -0.0389404296875, -0.0513916015625, 0.0043487548828125, -0.039276123046875, -0.052734375, -0.0305328369140625, -0.01274871826171875, 0.0494384765625, -0.004634857177734375, -0.022979736328125, 0.060882568359375, -0.0748291015625, 0.01131439208984375, 0.003772735595703125, 0.025482177734375, -0.02386474609375, -0.046417236328125, -0.0645751953125, -0.0018243789672851562, -0.0631103515625, -0.06195068359375, -0.0021991729736328125, 0.021820068359375, 0.0266876220703125, 0.0389404296875, -0.0044403076171875, 0.0228271484375, -0.01342010498046875, 0.044525146484375, 0.0109100341796875, -0.07879638671875, 0.0406494140625, -0.00807952880859375, 0.02569580078125, 0.05810546875, 0.03692626953125, 0.0026035308837890625, 0.01422882080078125, -0.07891845703125, -0.06915283203125, 0.05047607421875, 0.0194244384765625, -0.0074005126953125, 0.0116729736328125, 0.034820556640625, -0.0009493827819824219, 0.055389404296875, -0.052947998046875, -0.00662994384765625, -0.012603759765625, -0.0024280548095703125, 0.03155517578125, -0.021881103515625, -0.00003165006637573242, -0.026031494140625, 0.0799560546875, -0.01136016845703125, 0.039154052734375, 0.019012451171875, -0.004596710205078125, -0.0281982421875, 0.0036373138427734375, 0.0245361328125, 0.050811767578125, -0.06365966796875, 0.01078033447265625, 0.0009169578552246094, -0.0703125, 0.006160736083984375, 0.014434814453125, -0.018218994140625, -0.0216064453125, 0.0013799667358398438, 0.07708740234375, 0.01078033447265625, -0.0213623046875, 0.0202484130859375, -0.006069183349609375, -0.04437255859375, -0.04547119140625, 0.034576416015625, -0.005840301513671875, 0.0322265625, 0.006595611572265625, 0.005619049072265625, 0.01263427734375, -0.0127105712890625, 0.0095367431640625, 0.0282745361328125, -0.0233001708984375, -0.0246734619140625, 0.0298614501953125, 0.03076171875, -0.016021728515625, 0.0626220703125, -0.05084228515625, -0.0277252197265625, 0.057159423828125, 0.037200927734375, 0.07794189453125, -0.00084686279296875, 0.0030155181884765625, 0.0236053466796875, 0.01448822021484375, -0.0022220611572265625, 0.0726318359375, -0.0216217041015625, -0.0765380859375, -0.020477294921875, -0.0743408203125, -0.0163116455078125, 0.014801025390625, -0.05877685546875, 0.0164031982421875, -0.066162109375, -0.035247802734375, 0.0122528076171875, 0.04583740234375, -0.052398681640625, 0.0311431884765625, 0.0241546630859375, 0.08148193359375, -0.059967041015625, 0.0869140625, 0.06781005859375, -0.0274200439453125, -0.052490234375, -0.016632080078125, -0.00870513916015625, -0.05072021484375, 0.037506103515625, 0.004119873046875, 0.019287109375, 0.0333251953125, -0.042633056640625, -0.041259765625, 0.09417724609375, 0.02294921875, -0.05316162109375, 0.012237548828125, 0.018463134765625, 0.0005006790161132812, -0.0107574462890625, 0.0169830322265625, 0.042205810546875, 0.023284912109375, 0.014617919921875, -0.06463623046875, 0.0065460205078125, 0.0013418197631835938, -0.01386260986328125, 0.047943115234375, -0.058685302734375, 0.091552734375, 0.0005431175231933594, 0.02996826171875, -0.006168365478515625, 0.03436279296875, 0.042755126953125, 0.015960693359375, 0.050994873046875, 0.060546875, 0.028472900390625, -0.004634857177734375, 0.0291290283203125, -0.03509521484375, 0.052337646484375, 0.06903076171875, -0.00644683837890625, 0.052734375, 0.06793212890625, -0.048553466796875, 0.00908660888671875, 0.0631103515625, -0.0194549560546875, 0.03436279296875, 0.0036296844482421875, -0.0333251953125, -0.0281982421875, 0.022369384765625, -0.0268096923828125, 0.004425048828125, 0.036773681640625, -0.0195465087890625, -0.0029201507568359375, -0.0107269287109375, 0.00710296630859375, -0.056182861328125, -0.0259552001953125, 0.0421142578125, 0.003978729248046875, -0.012115478515625, 0.044647216796875, 0.0050506591796875, 0.06304931640625, -0.06024169921875, -0.0212860107421875, -0.0013284683227539062, 0.022186279296875, -0.01800537109375, -0.05242919921875, 0.0291290283203125, -0.018707275390625, -0.0323486328125, -0.011322021484375, 0.04522705078125, -0.005847930908203125, -0.0535888671875, -0.0028362274169921875, -0.009063720703125, 0.015899658203125, -0.04986572265625, -0.06646728515625, 0.0088043212890625, 0.0293121337890625, -0.036041259765625, 0.04486083984375, 0.053131103515625, 0.0156707763671875, 0.01488494873046875, 0.0225677490234375, 0.008270263671875, 0.0108795166015625, -0.01258087158203125, 0.049591064453125, -0.056304931640625, -0.043853759765625, -0.06414794921875, 0.0364990234375, 0.004947662353515625, -0.04278564453125, 0.02557373046875, 0.05682373046875, 0.08465576171875, 0.00867462158203125, 0.027801513671875, -0.0179595947265625, -0.0145416259765625, -0.060028076171875, 0.038818359375, -0.01404571533203125, 0.0007810592651367188, 0.01593017578125, -0.040924072265625, 0.02490234375, 0.06561279296875, -0.003948211669921875, 0.005115509033203125, 0.0758056640625, 0.028564453125, -0.00939178466796875, 0.0211334228515625, 0.01412200927734375, 0.0147247314453125, 0.0017881393432617188, 0.048797607421875, 0.0088043212890625, -0.0648193359375, 0.025909423828125, -0.060455322265625, -0.025238037109375, -0.010498046875, -0.06024169921875, -0.03411865234375, -0.01580810546875, -0.051727294921875, -0.0308990478515625, -0.006549835205078125, 0.060791015625, 0.06292724609375, -0.05743408203125, -0.03167724609375, -0.0255279541015625, -0.00930023193359375, -0.013031005859375, -0.021728515625, 0.0250701904296875, -0.00846099853515625, -0.0296478271484375, 0.008819580078125, 0.007259368896484375, 0.02685546875, -0.0224456787109375, -0.01561737060546875, -0.03363037109375, -0.005252838134765625, 0.01129150390625, -0.016143798828125, -0.003387451171875, -0.01015472412109375, -0.0261993408203125, 0.0067291259765625, 0.0400390625, 0.03717041015625, -0.0625, 0.0036945343017578125, 0.046051025390625, 0.0175018310546875, 0.050537109375, -0.0256805419921875, 0.02294921875, -0.07080078125, 0.0250701904296875, 0.0247955322265625, 0.0279998779296875, -0.00737762451171875, -0.049041748046875, 0.0311737060546875, 0.039215087890625, -0.059814453125, -0.03948974609375, -0.0085296630859375, -0.0836181640625, -0.00336456298828125, 0.052581787109375, -0.01030731201171875, -0.040924072265625, 0.027008056640625, -0.01052093505859375, 0.016693115234375, -0.048187255859375, 0.0297088623046875, 0.037811279296875, -0.04046630859375, -0.004329681396484375, -0.05047607421875, 0.0303802490234375, 0.018402099609375, -0.047943115234375, -0.05419921875, 0.03033447265625, 0.0350341796875, 0.005840301513671875, 0.05682373046875, -0.005748748779296875, 0.024169921875, 0.0292510986328125, 0.0251007080078125, -0.01690673828125, -0.0059051513671875, -0.034820556640625, -0.0012369155883789062, 0.002544403076171875, -0.06304931640625 ] ]
colemane/ppo-Pyramids1
2023-10-27T22:40:48.000Z
[ "ml-agents", "tensorboard", "onnx", "Pyramids", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Pyramids", "region:us" ]
reinforcement-learning
colemane
null
null
colemane/ppo-Pyramids1
0
2
ml-agents
2023-10-27T22:40:45
--- 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://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub: - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction - A *longer tutorial* to understand how works ML-Agents: https://huggingface.co/learn/deep-rl-course/unit5/introduction ### Resume the training ```bash mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume ``` ### Watch your Agent play You can watch your agent **playing directly in your browser** 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity 2. Step 1: Find your model_id: colemane/ppo-Pyramids1 3. Step 2: Select your *.nn /*.onnx file 4. Click on Watch the agent play 👀
1,334
[ [ -0.039764404296875, -0.033355712890625, 0.002140045166015625, 0.0139312744140625, -0.01050567626953125, 0.011322021484375, 0.017425537109375, -0.0135040283203125, 0.03399658203125, 0.02947998046875, -0.04052734375, -0.05059814453125, -0.029876708984375, -0.0150146484375, 0.013214111328125, 0.095703125, 0.006748199462890625, 0.02935791015625, -0.00020396709442138672, 0.011474609375, 0.00502777099609375, -0.01436614990234375, -0.069580078125, -0.05975341796875, 0.036346435546875, 0.0246429443359375, 0.06365966796875, 0.04034423828125, 0.0285491943359375, 0.0290679931640625, -0.00261688232421875, -0.03656005859375, -0.038787841796875, -0.01097869873046875, -0.012176513671875, -0.030609130859375, -0.060455322265625, 0.0283203125, 0.048736572265625, 0.0183258056640625, -0.0225677490234375, 0.01702880859375, -0.02813720703125, 0.032073974609375, -0.035369873046875, 0.0172576904296875, -0.0134429931640625, 0.0347900390625, 0.023284912109375, -0.01544952392578125, -0.0257568359375, -0.0243682861328125, 0.0286865234375, -0.06768798828125, 0.0004661083221435547, -0.0172119140625, 0.08734130859375, 0.0189056396484375, -0.033905029296875, -0.0218353271484375, -0.03564453125, 0.0478515625, -0.0301666259765625, 0.0038776397705078125, 0.036651611328125, 0.0513916015625, -0.0283203125, -0.07916259765625, -0.031280517578125, -0.0535888671875, 0.003902435302734375, 0.00815582275390625, -0.001251220703125, 0.0186004638671875, 0.033416748046875, 0.02386474609375, -0.03125, -0.01064300537109375, -0.0170440673828125, -0.02008056640625, 0.0474853515625, 0.006328582763671875, 0.0223236083984375, 0.01580810546875, -0.04425048828125, -0.03460693359375, -0.047821044921875, 0.044464111328125, 0.032501220703125, 0.00047850608825683594, -0.035491943359375, 0.058868408203125, 0.00539398193359375, 0.0209197998046875, 0.02862548828125, -0.037811279296875, 0.0162811279296875, 0.0174102783203125, -0.0248260498046875, -0.0011625289916992188, 0.039794921875, 0.0240936279296875, 0.0222930908203125, -0.017059326171875, -0.0273895263671875, -0.004425048828125, 0.036865234375, -0.0689697265625, -0.03839111328125, 0.015960693359375, -0.032745361328125, -0.037353515625, 0.006565093994140625, -0.0311431884765625, -0.019195556640625, -0.01434326171875, 0.03546142578125, -0.038848876953125, -0.03851318359375, 0.005283355712890625, -0.030120849609375, 0.0513916015625, 0.01325225830078125, -0.057891845703125, 0.0260772705078125, 0.044097900390625, 0.039093017578125, 0.040679931640625, -0.052978515625, -0.042236328125, 0.007541656494140625, -0.01464080810546875, 0.053009033203125, -0.019439697265625, -0.0236968994140625, 0.01136016845703125, 0.00004690885543823242, -0.0060577392578125, -0.04302978515625, 0.013671875, -0.04931640625, 0.0172271728515625, 0.00983428955078125, -0.04931640625, -0.021148681640625, 0.0341796875, -0.033477783203125, 0.06591796875, 0.0303802490234375, -0.037200927734375, 0.0210723876953125, -0.0677490234375, -0.027587890625, 0.0073089599609375, -0.0026264190673828125, -0.0357666015625, -0.010955810546875, -0.0246734619140625, 0.0262451171875, 0.0198211669921875, -0.00991058349609375, -0.027435302734375, -0.030914306640625, 0.0203399658203125, 0.0172119140625, 0.0697021484375, 0.007686614990234375, -0.0295867919921875, 0.033355712890625, -0.05767822265625, 0.0008134841918945312, 0.01511383056640625, -0.03497314453125, 0.0228271484375, -0.0039215087890625, 0.0033416748046875, 0.0272979736328125, 0.028564453125, -0.0287322998046875, 0.0499267578125, -0.01837158203125, 0.0033245086669921875, 0.04962158203125, -0.01690673828125, 0.052398681640625, -0.040008544921875, 0.052978515625, 0.0027923583984375, 0.030029296875, -0.00037360191345214844, -0.0304718017578125, -0.0533447265625, -0.0304718017578125, 0.0105743408203125, 0.0439453125, -0.05712890625, 0.046295166015625, 0.01459503173828125, -0.04986572265625, -0.044403076171875, -0.012969970703125, 0.0306243896484375, 0.01029205322265625, 0.01377105712890625, -0.037811279296875, -0.03466796875, -0.046142578125, 0.026214599609375, -0.01491546630859375, -0.027435302734375, 0.0246734619140625, 0.054168701171875, -0.027801513671875, 0.07037353515625, -0.019256591796875, -0.0307769775390625, -0.0064849853515625, 0.005176544189453125, 0.001903533935546875, 0.040283203125, 0.0513916015625, -0.0450439453125, -0.0306243896484375, -0.01065826416015625, -0.0750732421875, 0.022064208984375, 0.0014772415161132812, -0.004512786865234375, -0.00601959228515625, 0.019073486328125, -0.054595947265625, 0.0270538330078125, 0.032806396484375, -0.056976318359375, 0.056304931640625, -0.017120361328125, -0.0081024169921875, -0.07122802734375, 0.0054473876953125, 0.004634857177734375, -0.021881103515625, -0.0304718017578125, 0.0280914306640625, -0.0291900634765625, -0.0124664306640625, -0.04766845703125, 0.03955078125, -0.032928466796875, -0.028778076171875, -0.03631591796875, -0.0099945068359375, -0.016143798828125, 0.045562744140625, -0.0029544830322265625, 0.04766845703125, 0.08758544921875, -0.05377197265625, 0.044525146484375, 0.02911376953125, -0.005279541015625, 0.0284423828125, -0.041534423828125, 0.0167388916015625, -0.018646240234375, 0.038055419921875, -0.04864501953125, -0.0105743408203125, 0.05450439453125, -0.039886474609375, 0.03814697265625, -0.03515625, -0.01092529296875, -0.00902557373046875, -0.026641845703125, 0.0031986236572265625, 0.036956787109375, -0.038360595703125, 0.058868408203125, 0.053375244140625, 0.027130126953125, -0.064697265625, -0.00591278076171875, -0.007053375244140625, -0.0195465087890625, -0.0379638671875, 0.0253448486328125, -0.01471710205078125, -0.0187530517578125, -0.00016808509826660156, 0.01026153564453125, -0.01123046875, 0.0158843994140625, 0.04052734375, 0.001850128173828125, -0.0288543701171875, -0.018768310546875, -0.0230712890625, -0.03436279296875, 0.0107879638671875, -0.0076141357421875, 0.039459228515625, -0.037353515625, 0.0006155967712402344, -0.061279296875, -0.0031337738037109375, 0.038787841796875, 0.0088043212890625, 0.055999755859375, 0.0657958984375, -0.0208740234375, -0.007171630859375, -0.0207061767578125, -0.0439453125, -0.03729248046875, 0.0089874267578125, -0.046478271484375, -0.050201416015625, 0.035491943359375, -0.029541015625, 0.005031585693359375, 0.019500732421875, 0.037353515625, -0.02313232421875, 0.06591796875, 0.07305908203125, -0.00885009765625, 0.049560546875, -0.0589599609375, -0.015655517578125, -0.0513916015625, -0.031707763671875, -0.027862548828125, -0.027740478515625, -0.032745361328125, -0.0148468017578125, 0.00846099853515625, 0.040924072265625, -0.045196533203125, 0.04290771484375, -0.02374267578125, 0.04266357421875, 0.04052734375, 0.0015382766723632812, 0.0008573532104492188, 0.011383056640625, -0.0112762451171875, 0.01312255859375, -0.04998779296875, -0.05938720703125, 0.06695556640625, 0.05389404296875, 0.06005859375, 0.01181793212890625, 0.055633544921875, 0.01371002197265625, 0.039306640625, -0.05377197265625, 0.0533447265625, 0.0238037109375, -0.039459228515625, -0.0254364013671875, -0.00399017333984375, -0.06927490234375, 0.01678466796875, -0.0227813720703125, -0.04547119140625, -0.00818634033203125, 0.00926971435546875, -0.0106353759765625, 0.0266876220703125, -0.043914794921875, 0.09014892578125, -0.00678253173828125, -0.015350341796875, -0.02008056640625, -0.05181884765625, 0.0036792755126953125, 0.04608154296875, -0.023162841796875, -0.01404571533203125, -0.005157470703125, 0.0270843505859375, -0.02093505859375, 0.05767822265625, -0.04229736328125, -0.004425048828125, 0.036956787109375, 0.019500732421875, 0.0293731689453125, 0.017791748046875, 0.0074310302734375, 0.012359619140625, -0.005123138427734375, -0.048187255859375, -0.0189361572265625, 0.0294952392578125, -0.088134765625, -0.01885986328125, -0.0478515625, -0.01444244384765625, 0.024871826171875, -0.00013327598571777344, 0.0204315185546875, -0.0010223388671875, -0.032501220703125, -0.0038547515869140625, 0.037200927734375, -0.007122039794921875, 0.03509521484375, 0.05487060546875, -0.0249786376953125, -0.026885986328125, 0.061676025390625, -0.0212860107421875, -0.012664794921875, 0.0240631103515625, 0.009613037109375, -0.0263824462890625, -0.035369873046875, -0.0447998046875, 0.01334381103515625, -0.028778076171875, -0.0013780593872070312, -0.0274658203125, -0.017181396484375, -0.0340576171875, -0.01074981689453125, -0.03656005859375, -0.00679779052734375, -0.033355712890625, -0.001346588134765625, 0.01456451416015625, 0.0487060546875, -0.03851318359375, 0.053375244140625, -0.037872314453125, 0.0205230712890625, 0.0316162109375, 0.032012939453125, -0.006969451904296875, -0.025909423828125, -0.025634765625, 0.0013332366943359375, -0.040740966796875, -0.058563232421875, 0.0259246826171875, 0.0002739429473876953, 0.04425048828125, 0.062744140625, -0.01471710205078125, 0.031280517578125, -0.0294036865234375, 0.04052734375, 0.019012451171875, -0.045379638671875, 0.0330810546875, -0.02972412109375, 0.0036258697509765625, 0.047698974609375, 0.05548095703125, -0.0284881591796875, -0.004169464111328125, -0.054229736328125, -0.045196533203125, 0.05938720703125, 0.0214996337890625, 0.0051422119140625, 0.0117034912109375, 0.03240966796875, -0.0144195556640625, 0.0208282470703125, -0.08197021484375, -0.041900634765625, -0.023284912109375, 0.0259246826171875, 0.0005369186401367188, -0.023223876953125, -0.02178955078125, -0.0276031494140625, 0.0838623046875, -0.0098419189453125, 0.031280517578125, 0.006542205810546875, -0.00429534912109375, -0.04058837890625, -0.01140594482421875, 0.033477783203125, 0.050201416015625, -0.049224853515625, -0.025054931640625, -0.00848388671875, -0.043914794921875, 0.0133209228515625, 0.0125274658203125, -0.006320953369140625, -0.003643035888671875, 0.00616455078125, 0.057464599609375, 0.01290130615234375, -0.042755126953125, 0.043609619140625, -0.012542724609375, -0.01558685302734375, -0.07110595703125, 0.0163116455078125, 0.0074005126953125, 0.041290283203125, 0.012664794921875, -0.00846099853515625, -0.004497528076171875, -0.051483154296875, 0.0298919677734375, 0.036956787109375, -0.039398193359375, -0.020050048828125, 0.03521728515625, 0.01384735107421875, -0.05169677734375, 0.0477294921875, -0.041412353515625, -0.0313720703125, 0.0732421875, 0.038543701171875, 0.062255859375, -0.017120361328125, 0.043792724609375, 0.032073974609375, 0.01074981689453125, 0.014617919921875, 0.019500732421875, -0.0070953369140625, -0.06884765625, -0.027008056640625, -0.037200927734375, -0.0418701171875, 0.0146636962890625, -0.03900146484375, 0.0256195068359375, -0.0496826171875, -0.00926971435546875, 0.0081024169921875, 0.0303955078125, -0.04193115234375, -0.00237274169921875, 0.02178955078125, 0.07861328125, -0.0361328125, 0.0806884765625, 0.08050537109375, -0.041046142578125, -0.060943603515625, -0.0172882080078125, -0.00705718994140625, -0.0594482421875, 0.034576416015625, 0.0167388916015625, -0.0042724609375, 0.0276336669921875, -0.06549072265625, -0.03729248046875, 0.098876953125, 0.0117645263671875, -0.023193359375, 0.0005331039428710938, 0.003360748291015625, 0.04388427734375, -0.057464599609375, 0.05548095703125, 0.0258026123046875, 0.0271759033203125, 0.0232696533203125, -0.0509033203125, -0.0254669189453125, -0.0144500732421875, -0.027587890625, -0.008514404296875, -0.047576904296875, 0.0703125, -0.03436279296875, -0.005672454833984375, 0.0322265625, 0.0439453125, 0.029815673828125, 0.04351806640625, 0.04327392578125, 0.06134033203125, 0.0299835205078125, 0.006969451904296875, 0.067626953125, -0.0301513671875, 0.056976318359375, 0.07470703125, -0.033538818359375, 0.04107666015625, 0.0191497802734375, -0.0113983154296875, 0.0625, 0.06024169921875, -0.023468017578125, 0.032073974609375, 0.044464111328125, -0.037261962890625, -0.018768310546875, -0.006511688232421875, -0.0372314453125, 0.0302734375, 0.0080413818359375, -0.01617431640625, -0.0225372314453125, 0.00504302978515625, -0.0123443603515625, -0.010833740234375, -0.033172607421875, 0.08056640625, -0.0015697479248046875, -0.037841796875, 0.0298309326171875, 0.01241302490234375, 0.045318603515625, -0.06573486328125, -0.0247039794921875, -0.0164337158203125, 0.0301513671875, -0.0088348388671875, -0.041534423828125, -0.01593017578125, -0.0204925537109375, -0.00226593017578125, -0.0155029296875, 0.05108642578125, -0.023345947265625, -0.003753662109375, 0.04266357421875, 0.0357666015625, 0.042572021484375, -0.004108428955078125, -0.08721923828125, -0.033416748046875, -0.00939178466796875, -0.0300445556640625, 0.052490234375, 0.00870513916015625, 0.035552978515625, 0.06585693359375, 0.04229736328125, -0.0189361572265625, -0.0035076141357421875, -0.001300811767578125, 0.072998046875, -0.0528564453125, -0.034454345703125, -0.040618896484375, 0.048370361328125, 0.006069183349609375, -0.036224365234375, 0.0396728515625, 0.0594482421875, 0.0799560546875, -0.037506103515625, 0.0196990966796875, -0.016082763671875, 0.0039215087890625, -0.009490966796875, 0.060882568359375, -0.0284423828125, -0.012664794921875, 0.0006251335144042969, -0.07196044921875, 0.004100799560546875, 0.07843017578125, 0.01045989990234375, -0.00345611572265625, 0.0281524658203125, 0.069091796875, -0.00841522216796875, -0.0115814208984375, 0.0280914306640625, 0.0238494873046875, 0.006374359130859375, 0.03466796875, 0.07659912109375, -0.044158935546875, 0.037261962890625, -0.04608154296875, -0.02386474609375, -0.01065826416015625, -0.054473876953125, -0.08197021484375, -0.01165008544921875, -0.03240966796875, -0.0653076171875, 0.003139495849609375, 0.07562255859375, 0.07122802734375, -0.055084228515625, -0.0504150390625, -0.00449371337890625, 0.02655029296875, -0.02386474609375, -0.017486572265625, 0.017333984375, -0.016204833984375, -0.056365966796875, 0.036102294921875, 0.00016617774963378906, 0.0295867919921875, -0.0299835205078125, -0.04107666015625, -0.029083251953125, -0.030731201171875, 0.034210205078125, 0.052734375, -0.021881103515625, -0.004749298095703125, -0.017730712890625, -0.0249481201171875, 0.01134490966796875, 0.06915283203125, -0.07208251953125, 0.005649566650390625, 0.00965118408203125, 0.00406646728515625, 0.040863037109375, -0.015899658203125, 0.0288848876953125, -0.042816162109375, 0.02508544921875, 0.0274810791015625, 0.017303466796875, -0.00412750244140625, -0.0207977294921875, 0.046875, 0.02166748046875, -0.049652099609375, -0.033721923828125, 0.0182647705078125, -0.0780029296875, -0.0181121826171875, 0.0653076171875, -0.0271759033203125, -0.0172576904296875, -0.0034027099609375, -0.033538818359375, 0.029022216796875, -0.03546142578125, 0.06878662109375, 0.02593994140625, -0.003017425537109375, -0.007083892822265625, -0.0264892578125, 0.058258056640625, 0.015655517578125, -0.044403076171875, -0.04595947265625, 0.032958984375, 0.0265960693359375, 0.0222015380859375, 0.05328369140625, 0.00637054443359375, 0.03460693359375, 0.019775390625, 0.03839111328125, -0.0164031982421875, -0.044036865234375, -0.0367431640625, 0.0273895263671875, -0.00093841552734375, -0.03131103515625 ] ]
vincegmz/dreamboost_lora_mnist_zero_A_photo_of_zero_with_color_background
2023-10-27T23:44:27.000Z
[ "diffusers", "stable-diffusion", "stable-diffusion-diffusers", "text-to-image", "lora", "license:creativeml-openrail-m", "region:us" ]
text-to-image
vincegmz
null
null
vincegmz/dreamboost_lora_mnist_zero_A_photo_of_zero_with_color_background
0
2
diffusers
2023-10-27T23:09:30
--- license: creativeml-openrail-m base_model: runwayml/stable-diffusion-v1-5 instance_prompt: a photo of zero with black background tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - vincegmz/dreamboost_lora_mnist_zero_A_photo_of_zero_with_color_background These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were trained on a photo of zero with black background using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. ![img_0](./image_0.png) ![img_1](./image_1.png) ![img_2](./image_2.png) ![img_3](./image_3.png) LoRA for the text encoder was enabled: False.
725
[ [ -0.01568603515625, -0.02532958984375, 0.0269927978515625, 0.017852783203125, -0.043609619140625, 0.01435089111328125, 0.0279693603515625, -0.015533447265625, 0.05889892578125, 0.03515625, -0.0555419921875, -0.045013427734375, -0.043487548828125, -0.018280029296875, -0.03631591796875, 0.08062744140625, -0.01447296142578125, -0.0044708251953125, 0.00684356689453125, -0.034881591796875, -0.061920166015625, -0.00824737548828125, -0.03546142578125, -0.0271453857421875, 0.040283203125, 0.041595458984375, 0.044830322265625, 0.0220489501953125, 0.03173828125, 0.018585205078125, -0.00147247314453125, -0.039215087890625, -0.047943115234375, -0.01934814453125, 0.00733184814453125, -0.012969970703125, -0.028350830078125, -0.0004353523254394531, 0.06634521484375, 0.033843994140625, -0.028289794921875, 0.037567138671875, -0.01824951171875, 0.05072021484375, -0.065673828125, -0.0290985107421875, -0.048187255859375, 0.0293731689453125, 0.000293731689453125, 0.006931304931640625, 0.00247955322265625, -0.01568603515625, -0.046356201171875, -0.052276611328125, -0.0033016204833984375, 0.0032520294189453125, 0.09722900390625, 0.034698486328125, -0.0264434814453125, 0.0007500648498535156, -0.048004150390625, 0.052886962890625, -0.0399169921875, 0.0145263671875, 0.01108551025390625, 0.032318115234375, 0.009857177734375, -0.043365478515625, -0.04388427734375, 0.0299072265625, 0.01201629638671875, 0.0170440673828125, -0.019073486328125, -0.00992584228515625, 0.024932861328125, 0.020843505859375, -0.0270538330078125, 0.01043701171875, -0.05450439453125, -0.00856781005859375, 0.0243988037109375, 0.004241943359375, 0.020721435546875, 0.0179290771484375, -0.03717041015625, 0.0120849609375, -0.038482666015625, -0.031463623046875, 0.0177764892578125, 0.0087738037109375, -0.0572509765625, 0.0438232421875, -0.01422119140625, 0.07373046875, 0.0045013427734375, -0.01499176025390625, 0.06884765625, -0.016357421875, -0.036651611328125, 0.007144927978515625, 0.03350830078125, 0.050140380859375, -0.0022678375244140625, 0.01678466796875, -0.0193328857421875, 0.00510406494140625, 0.018829345703125, -0.09295654296875, 0.00557708740234375, 0.018798828125, -0.0482177734375, -0.03460693359375, 0.00902557373046875, -0.0487060546875, -0.025054931640625, 0.01313018798828125, 0.0672607421875, -0.0278167724609375, -0.019378662109375, 0.0247802734375, -0.036956787109375, 0.047149658203125, 0.046112060546875, -0.04095458984375, 0.027191162109375, -0.00495147705078125, 0.0576171875, -0.0011806488037109375, -0.00447845458984375, -0.0199432373046875, 0.00341796875, -0.0204010009765625, 0.048065185546875, 0.00598907470703125, -0.023681640625, -0.003204345703125, 0.01160430908203125, -0.0179290771484375, -0.0228729248046875, 0.0623779296875, -0.0430908203125, 0.01012420654296875, -0.0230712890625, -0.014617919921875, -0.028717041015625, 0.01187896728515625, -0.028228759765625, 0.05804443359375, 0.0290069580078125, -0.0625, 0.036102294921875, -0.056396484375, -0.0228424072265625, 0.004123687744140625, -0.0159912109375, -0.038055419921875, 0.009857177734375, -0.02056884765625, 0.025390625, 0.02984619140625, -0.048431396484375, -0.004093170166015625, -0.0634765625, 0.003124237060546875, 0.0200653076171875, 0.06298828125, 0.0263519287109375, -0.0126190185546875, 0.00921630859375, -0.0826416015625, 0.005523681640625, 0.0369873046875, -0.02203369140625, -0.0155029296875, -0.022247314453125, 0.0241546630859375, 0.0238189697265625, 0.0236053466796875, -0.05657958984375, 0.0006518363952636719, 0.0012683868408203125, -0.003734588623046875, 0.0491943359375, 0.004909515380859375, -0.00131988525390625, -0.0330810546875, 0.05279541015625, 0.012451171875, -0.01078033447265625, 0.0020160675048828125, -0.05084228515625, -0.07757568359375, -0.0061492919921875, 0.00479888916015625, 0.0296173095703125, -0.037933349609375, 0.0272979736328125, -0.0018138885498046875, -0.040313720703125, -0.0270538330078125, 0.00936126708984375, 0.0020294189453125, 0.039947509765625, 0.01251220703125, -0.019683837890625, -0.04205322265625, -0.060150146484375, 0.020111083984375, 0.01007080078125, 0.0138092041015625, -0.00887298583984375, 0.07635498046875, -0.004375457763671875, 0.04278564453125, -0.046173095703125, -0.01428985595703125, -0.0008678436279296875, -0.01226043701171875, 0.0635986328125, 0.060699462890625, 0.06939697265625, -0.051361083984375, -0.039825439453125, -0.0131072998046875, -0.047943115234375, 0.0037708282470703125, 0.002475738525390625, -0.020782470703125, -0.0061187744140625, 0.028228759765625, -0.039276123046875, 0.045440673828125, 0.05694580078125, -0.07220458984375, 0.0258331298828125, -0.020416259765625, 0.0140228271484375, -0.08917236328125, 0.024200439453125, -0.005207061767578125, -0.038787841796875, -0.05621337890625, 0.0201416015625, 0.00792694091796875, -0.012176513671875, -0.049285888671875, 0.046417236328125, -0.0240325927734375, -0.0173187255859375, -0.034454345703125, 0.0022563934326171875, 0.01024627685546875, 0.025115966796875, 0.00357818603515625, 0.044281005859375, 0.0303497314453125, -0.0322265625, 0.0149383544921875, 0.035858154296875, -0.042236328125, 0.05712890625, -0.04541015625, 0.0288848876953125, -0.022552490234375, 0.01262664794921875, -0.06842041015625, -0.0182037353515625, 0.045440673828125, -0.0171356201171875, -0.00008106231689453125, -0.018524169921875, -0.0291900634765625, -0.0282745361328125, -0.03143310546875, 0.038055419921875, 0.086669921875, -0.0192413330078125, 0.012603759765625, 0.01001739501953125, 0.01666259765625, -0.0433349609375, -0.0654296875, -0.0018739700317382812, -0.024505615234375, -0.008148193359375, 0.03802490234375, -0.02117919921875, -0.0168914794921875, -0.01287841796875, -0.0016984939575195312, -0.007297515869140625, 0.0108489990234375, 0.046417236328125, 0.0191802978515625, -0.0206451416015625, -0.0170745849609375, 0.007781982421875, 0.01287841796875, -0.01617431640625, -0.00817108154296875, 0.045318603515625, -0.0017642974853515625, -0.027008056640625, -0.03558349609375, -0.0028667449951171875, 0.0301666259765625, 0.0418701171875, 0.086669921875, 0.06475830078125, -0.059600830078125, 0.00545501708984375, -0.029876708984375, 0.00954437255859375, -0.035491943359375, 0.0203857421875, -0.0179290771484375, -0.02166748046875, 0.045135498046875, 0.031768798828125, -0.0161895751953125, 0.05914306640625, 0.05072021484375, -0.018157958984375, 0.039337158203125, 0.045989990234375, 0.0023651123046875, 0.0302734375, -0.041046142578125, -0.0308074951171875, -0.0595703125, -0.0240020751953125, -0.03607177734375, -0.048797607421875, -0.0018310546875, -0.038909912109375, 0.010833740234375, 0.03662109375, -0.0555419921875, 0.0299072265625, -0.0267181396484375, 0.046142578125, 0.0186920166015625, 0.0187530517578125, 0.0171966552734375, 0.00687408447265625, -0.0162353515625, 0.0024318695068359375, -0.044830322265625, -0.00022089481353759766, 0.053680419921875, 0.0318603515625, 0.0640869140625, -0.002452850341796875, 0.04345703125, 0.0164794921875, 0.02984619140625, -0.039886474609375, 0.038665771484375, 0.003536224365234375, -0.045135498046875, 0.00023949146270751953, -0.00878143310546875, -0.0606689453125, 0.011474609375, -0.037017822265625, -0.04876708984375, 0.0249481201171875, 0.01100921630859375, -0.020050048828125, 0.029296875, -0.03057861328125, 0.04949951171875, -0.00646209716796875, -0.0030040740966796875, -0.01525115966796875, -0.031005859375, 0.007568359375, -0.01422119140625, 0.0325927734375, -0.0231475830078125, -0.0228424072265625, 0.09027099609375, -0.039581298828125, 0.06671142578125, -0.03497314453125, -0.01776123046875, 0.0125579833984375, -0.0169525146484375, 0.03509521484375, -0.03204345703125, -0.02838134765625, 0.01983642578125, -0.018280029296875, -0.043975830078125, -0.0170745849609375, 0.033843994140625, -0.05474853515625, -0.0032024383544921875, -0.0350341796875, -0.0263519287109375, 0.0034885406494140625, 0.029449462890625, 0.035400390625, 0.0008893013000488281, -0.01214599609375, 0.00835418701171875, 0.0205841064453125, -0.0166168212890625, 0.0289459228515625, 0.043121337890625, -0.046844482421875, -0.036712646484375, 0.0732421875, -0.0012340545654296875, 0.0226593017578125, 0.0180816650390625, 0.0176239013671875, 0.004772186279296875, -0.0721435546875, -0.037689208984375, 0.00989532470703125, -0.08331298828125, -0.01971435546875, -0.0268096923828125, -0.03704833984375, -0.0086669921875, -0.038238525390625, -0.01554107666015625, -0.054229736328125, -0.05047607421875, -0.01490020751953125, 0.038970947265625, 0.065185546875, 0.00240325927734375, 0.04937744140625, -0.0185394287109375, 0.03021240234375, 0.0194244384765625, 0.0240478515625, -0.0171356201171875, -0.06597900390625, -0.0458984375, -0.004711151123046875, -0.0294342041015625, -0.058013916015625, 0.0136566162109375, 0.00405120849609375, 0.028472900390625, 0.04217529296875, -0.0186309814453125, 0.040374755859375, -0.02362060546875, 0.056671142578125, 0.053070068359375, -0.047027587890625, 0.0606689453125, -0.050048828125, 0.03057861328125, 0.046234130859375, 0.0220489501953125, -0.029296875, -0.0057373046875, -0.046356201171875, -0.03680419921875, 0.029541015625, 0.05291748046875, 0.027313232421875, 0.03302001953125, 0.03509521484375, 0.0071563720703125, 0.03326416015625, -0.09161376953125, -0.0298004150390625, -0.036651611328125, -0.0305633544921875, -0.00035500526428222656, -0.00919342041015625, -0.0192413330078125, -0.0242156982421875, 0.03759765625, -0.025115966796875, 0.028228759765625, -0.001514434814453125, 0.004863739013671875, -0.0306243896484375, 0.00270843505859375, 0.0560302734375, 0.05487060546875, -0.0614013671875, -0.031494140625, 0.02447509765625, -0.040313720703125, 0.016845703125, -0.00382232666015625, -0.0271453857421875, 0.000023543834686279297, 0.0202178955078125, 0.07061767578125, 0.005435943603515625, -0.026153564453125, 0.039886474609375, 0.0078887939453125, -0.0261077880859375, -0.0316162109375, 0.0186004638671875, -0.01300811767578125, -0.007343292236328125, 0.03961181640625, 0.0258331298828125, 0.0014333724975585938, -0.02508544921875, -0.0143585205078125, 0.048614501953125, -0.0413818359375, -0.022705078125, 0.061248779296875, 0.016204833984375, -0.0218048095703125, 0.019805908203125, -0.00937652587890625, -0.015350341796875, 0.06854248046875, 0.06451416015625, 0.055145263671875, -0.0060577392578125, 0.019927978515625, 0.04083251953125, 0.01971435546875, 0.0036754608154296875, 0.0589599609375, 0.019744873046875, -0.08758544921875, -0.007564544677734375, -0.062408447265625, -0.031463623046875, 0.0176544189453125, -0.037933349609375, 0.05255126953125, -0.053436279296875, -0.005313873291015625, -0.0161590576171875, -0.01446533203125, -0.0345458984375, 0.041290283203125, 0.0223846435546875, 0.09600830078125, -0.057159423828125, 0.055938720703125, 0.058349609375, -0.0164031982421875, -0.03839111328125, -0.0037250518798828125, -0.007221221923828125, -0.09307861328125, 0.047576904296875, 0.021697998046875, 0.002941131591796875, 0.004364013671875, -0.046539306640625, -0.060455322265625, 0.095458984375, 0.0281982421875, -0.0216064453125, -0.00008755922317504883, -0.00791168212890625, 0.0215301513671875, -0.050506591796875, -0.004795074462890625, -0.015899658203125, 0.020782470703125, 0.0264739990234375, -0.040679931640625, 0.0185089111328125, -0.0218353271484375, -0.004100799560546875, -0.003978729248046875, -0.06475830078125, 0.065673828125, -0.026702880859375, 0.00360870361328125, 0.0360107421875, 0.0408935546875, 0.0312347412109375, 0.009246826171875, 0.05859375, 0.064697265625, 0.0243072509765625, 0.004947662353515625, 0.0723876953125, -0.0191650390625, 0.0304107666015625, 0.06854248046875, -0.0185089111328125, 0.052947998046875, 0.040283203125, -0.0075225830078125, 0.07843017578125, 0.043975830078125, -0.0188446044921875, 0.0311126708984375, 0.0277252197265625, -0.0005373954772949219, 0.00428009033203125, -0.004230499267578125, -0.04840087890625, 0.02734375, 0.025177001953125, -0.020660400390625, -0.00974273681640625, 0.00682830810546875, 0.0103759765625, -0.025115966796875, -0.042022705078125, 0.0293731689453125, 0.0003681182861328125, -0.00989532470703125, 0.059814453125, 0.01226806640625, 0.05218505859375, -0.05865478515625, -0.016326904296875, -0.012054443359375, 0.0005769729614257812, -0.029449462890625, -0.05914306640625, 0.0162353515625, -0.010467529296875, 0.0110626220703125, -0.016021728515625, 0.07464599609375, 0.0028743743896484375, -0.07452392578125, 0.0249481201171875, 0.0162506103515625, 0.0034351348876953125, 0.0125885009765625, -0.0595703125, 0.0293731689453125, -0.0024471282958984375, -0.00991058349609375, 0.0162811279296875, -0.0115203857421875, 0.035858154296875, 0.035247802734375, 0.0192718505859375, 0.0172271728515625, -0.011871337890625, 0.00783538818359375, 0.0703125, -0.06427001953125, -0.053131103515625, -0.0504150390625, 0.045806884765625, -0.008575439453125, -0.0126190185546875, 0.055816650390625, 0.05084228515625, 0.0252532958984375, -0.0227203369140625, 0.035614013671875, -0.02215576171875, 0.01409912109375, -0.0740966796875, 0.060821533203125, -0.061248779296875, 0.0009436607360839844, -0.04351806640625, -0.062225341796875, -0.005573272705078125, 0.05670166015625, 0.034698486328125, 0.0126953125, 0.04443359375, 0.037506103515625, -0.01328277587890625, -0.019866943359375, 0.015228271484375, 0.0281524658203125, -0.0184783935546875, 0.02734375, 0.05059814453125, -0.07122802734375, 0.0277252197265625, -0.00875091552734375, -0.01491546630859375, -0.00432586669921875, -0.08978271484375, -0.062744140625, -0.03033447265625, -0.0594482421875, -0.06585693359375, 0.0101470947265625, 0.0443115234375, 0.07684326171875, -0.066162109375, -0.018402099609375, -0.0024967193603515625, 0.03094482421875, 0.002643585205078125, -0.01192474365234375, 0.01190185546875, 0.03631591796875, -0.033599853515625, 0.0138397216796875, 0.00726318359375, 0.057037353515625, -0.01050567626953125, -0.0185394287109375, -0.020599365234375, -0.008941650390625, 0.01187896728515625, 0.024505615234375, -0.01110076904296875, -0.0206451416015625, -0.04815673828125, 0.0120391845703125, 0.0194854736328125, 0.0304107666015625, -0.0672607421875, -0.0263824462890625, 0.0250244140625, 0.0023441314697265625, 0.034149169921875, 0.0021686553955078125, 0.00870513916015625, -0.0653076171875, 0.049285888671875, -0.00588226318359375, 0.048309326171875, 0.0116729736328125, -0.016571044921875, 0.038604736328125, 0.046295166015625, -0.014984130859375, -0.053680419921875, -0.009063720703125, -0.1031494140625, -0.01486968994140625, 0.0780029296875, 0.0216522216796875, -0.007568359375, 0.0076904296875, -0.0171356201171875, -0.029052734375, -0.0211334228515625, 0.0221710205078125, 0.0252532958984375, 0.0087738037109375, -0.0207061767578125, -0.04669189453125, 0.01378631591796875, -0.0034427642822265625, -0.068603515625, -0.049072265625, 0.0256805419921875, 0.044586181640625, 0.035491943359375, 0.08502197265625, 0.00007331371307373047, 0.0106201171875, 0.015960693359375, 0.0044708251953125, 0.01136016845703125, -0.00022137165069580078, -0.0261688232421875, 0.0131072998046875, 0.00017404556274414062, -0.0440673828125 ] ]
vincegmz/dreamboost_lora_mnist_zero
2023-10-28T00:19:05.000Z
[ "diffusers", "stable-diffusion", "stable-diffusion-diffusers", "text-to-image", "lora", "license:creativeml-openrail-m", "region:us" ]
text-to-image
vincegmz
null
null
vincegmz/dreamboost_lora_mnist_zero
0
2
diffusers
2023-10-27T23:48:06
--- license: creativeml-openrail-m base_model: runwayml/stable-diffusion-v1-5 instance_prompt: a photo of zero with black background tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - vincegmz/dreamboost_lora_mnist_zero These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were trained on a photo of zero with black background using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. ![img_0](./image_0.png) ![img_1](./image_1.png) ![img_2](./image_2.png) ![img_3](./image_3.png) LoRA for the text encoder was enabled: False.
687
[ [ -0.0114288330078125, -0.031585693359375, 0.0262603759765625, 0.01416015625, -0.0379638671875, 0.0185394287109375, 0.037017822265625, -0.01194000244140625, 0.060272216796875, 0.04229736328125, -0.057769775390625, -0.04022216796875, -0.0445556640625, -0.01611328125, -0.041168212890625, 0.0780029296875, -0.017059326171875, 0.0018396377563476562, 0.0025157928466796875, -0.0270233154296875, -0.0509033203125, -0.00691986083984375, -0.03411865234375, -0.03155517578125, 0.043792724609375, 0.040374755859375, 0.04547119140625, 0.0254058837890625, 0.035430908203125, 0.0177154541015625, -0.0023365020751953125, -0.04083251953125, -0.047088623046875, -0.023590087890625, 0.0144805908203125, -0.0102081298828125, -0.0384521484375, 0.00034618377685546875, 0.06640625, 0.03912353515625, -0.0283050537109375, 0.03662109375, -0.016082763671875, 0.051849365234375, -0.0601806640625, -0.03216552734375, -0.042449951171875, 0.03271484375, -0.0021514892578125, 0.0103912353515625, -0.0014848709106445312, -0.017242431640625, -0.042449951171875, -0.051239013671875, -0.004619598388671875, 0.0038299560546875, 0.09381103515625, 0.036529541015625, -0.0271148681640625, -0.00043582916259765625, -0.0382080078125, 0.049072265625, -0.0487060546875, 0.0164642333984375, 0.011474609375, 0.0310516357421875, 0.0027217864990234375, -0.047698974609375, -0.034576416015625, 0.03277587890625, 0.0167236328125, 0.0122222900390625, -0.020263671875, -0.005767822265625, 0.0229949951171875, 0.018798828125, -0.027618408203125, 0.0187835693359375, -0.0533447265625, -0.00855255126953125, 0.02398681640625, 0.000812530517578125, 0.017852783203125, 0.0194854736328125, -0.043853759765625, 0.01328277587890625, -0.04534912109375, -0.0330810546875, 0.0165252685546875, 0.01242828369140625, -0.05743408203125, 0.048126220703125, -0.010894775390625, 0.075439453125, 0.0079498291015625, -0.0159454345703125, 0.06890869140625, -0.01021575927734375, -0.04205322265625, 0.00827789306640625, 0.032745361328125, 0.038177490234375, -0.0011262893676757812, 0.01226806640625, -0.0191802978515625, -0.005157470703125, 0.0231475830078125, -0.0897216796875, 0.00588226318359375, 0.01611328125, -0.054443359375, -0.042999267578125, 0.007843017578125, -0.04486083984375, -0.02947998046875, 0.0134124755859375, 0.0701904296875, -0.02716064453125, -0.020294189453125, 0.0305938720703125, -0.037750244140625, 0.050506591796875, 0.04107666015625, -0.03924560546875, 0.028472900390625, -0.004486083984375, 0.05517578125, 0.003997802734375, -0.0007266998291015625, -0.0247802734375, 0.00571441650390625, -0.017913818359375, 0.050750732421875, 0.0027618408203125, -0.026519775390625, -0.0022430419921875, 0.006984710693359375, -0.021728515625, -0.0241851806640625, 0.06732177734375, -0.03900146484375, 0.00855255126953125, -0.0235443115234375, -0.024993896484375, -0.0296478271484375, 0.011138916015625, -0.03277587890625, 0.061248779296875, 0.0301361083984375, -0.0618896484375, 0.03729248046875, -0.061187744140625, -0.0249481201171875, 0.0027408599853515625, -0.01312255859375, -0.036102294921875, 0.0117645263671875, -0.018157958984375, 0.029266357421875, 0.0213775634765625, -0.05364990234375, -0.0016450881958007812, -0.053436279296875, 0.0033016204833984375, 0.01453399658203125, 0.062103271484375, 0.025115966796875, -0.00920867919921875, 0.01262664794921875, -0.08538818359375, 0.00902557373046875, 0.031341552734375, -0.02532958984375, -0.01459503173828125, -0.0187835693359375, 0.02484130859375, 0.0232086181640625, 0.0268096923828125, -0.050384521484375, 0.0044403076171875, -0.0037479400634765625, -0.00015795230865478516, 0.0516357421875, 0.00609588623046875, -0.006870269775390625, -0.032379150390625, 0.05401611328125, 0.017791748046875, -0.003734588623046875, 0.01267242431640625, -0.052093505859375, -0.07470703125, -0.0029239654541015625, 0.00572967529296875, 0.0197601318359375, -0.044036865234375, 0.0271759033203125, -0.0049896240234375, -0.04449462890625, -0.031768798828125, 0.01335906982421875, 0.00021076202392578125, 0.035400390625, 0.01043701171875, -0.016998291015625, -0.043304443359375, -0.059051513671875, 0.0088043212890625, 0.0048675537109375, 0.0113525390625, -0.022796630859375, 0.073974609375, -0.004352569580078125, 0.044342041015625, -0.041748046875, -0.01227569580078125, -0.00579833984375, -0.01529693603515625, 0.06085205078125, 0.055145263671875, 0.069580078125, -0.04779052734375, -0.035308837890625, -0.015777587890625, -0.04473876953125, -0.00006282329559326172, 0.000043332576751708984, -0.017547607421875, -0.0117034912109375, 0.0253143310546875, -0.041351318359375, 0.041046142578125, 0.054656982421875, -0.07421875, 0.0241851806640625, -0.020660400390625, 0.00939178466796875, -0.0885009765625, 0.0177764892578125, -0.0040740966796875, -0.04119873046875, -0.052734375, 0.022186279296875, 0.0030498504638671875, -0.001331329345703125, -0.052825927734375, 0.04449462890625, -0.0296783447265625, -0.01404571533203125, -0.026763916015625, 0.01239776611328125, 0.01445770263671875, 0.0204620361328125, -0.002803802490234375, 0.042266845703125, 0.0322265625, -0.036834716796875, 0.018096923828125, 0.035186767578125, -0.04144287109375, 0.054962158203125, -0.0462646484375, 0.03204345703125, -0.0213470458984375, 0.010345458984375, -0.06640625, -0.020782470703125, 0.045501708984375, -0.019378662109375, -0.00336456298828125, -0.0149688720703125, -0.0285186767578125, -0.0306243896484375, -0.03369140625, 0.03369140625, 0.0845947265625, -0.020599365234375, 0.0147705078125, 0.0178070068359375, 0.025146484375, -0.04486083984375, -0.0667724609375, -0.00516510009765625, -0.02899169921875, -0.0079345703125, 0.029022216796875, -0.020416259765625, -0.0171356201171875, -0.0164947509765625, -0.007305145263671875, -0.01088714599609375, 0.0087432861328125, 0.046783447265625, 0.01389312744140625, -0.0182647705078125, -0.0199737548828125, 0.01491546630859375, 0.01497650146484375, -0.01273345947265625, -0.00982666015625, 0.04083251953125, 0.002422332763671875, -0.0275115966796875, -0.033203125, -0.00548553466796875, 0.033966064453125, 0.0433349609375, 0.08538818359375, 0.0733642578125, -0.058441162109375, 0.00811767578125, -0.031494140625, 0.0097198486328125, -0.035614013671875, 0.0166778564453125, -0.02294921875, -0.0241546630859375, 0.041656494140625, 0.0204315185546875, -0.01268768310546875, 0.061798095703125, 0.04888916015625, -0.01239776611328125, 0.04315185546875, 0.0399169921875, -0.0021915435791015625, 0.0225830078125, -0.040618896484375, -0.0277862548828125, -0.059295654296875, -0.029632568359375, -0.041656494140625, -0.051116943359375, 0.005001068115234375, -0.046417236328125, 0.01009368896484375, 0.0350341796875, -0.05401611328125, 0.0355224609375, -0.027069091796875, 0.044158935546875, 0.01491546630859375, 0.01168060302734375, 0.015838623046875, 0.00506591796875, -0.016998291015625, 0.00379180908203125, -0.05194091796875, -0.00371551513671875, 0.05999755859375, 0.03619384765625, 0.07342529296875, 0.00013327598571777344, 0.043731689453125, 0.022552490234375, 0.024444580078125, -0.044677734375, 0.04248046875, 0.00214385986328125, -0.047088623046875, 0.0012769699096679688, -0.01226806640625, -0.06494140625, 0.007343292236328125, -0.03729248046875, -0.04638671875, 0.020233154296875, 0.005802154541015625, -0.021942138671875, 0.034881591796875, -0.032073974609375, 0.050140380859375, -0.003147125244140625, -0.0010461807250976562, -0.0216064453125, -0.033172607421875, 0.004894256591796875, -0.00927734375, 0.03326416015625, -0.02130126953125, -0.0218658447265625, 0.08941650390625, -0.03887939453125, 0.06964111328125, -0.036407470703125, -0.0241851806640625, 0.0167694091796875, -0.0205841064453125, 0.035186767578125, -0.032135009765625, -0.027130126953125, 0.0193634033203125, -0.01209259033203125, -0.043670654296875, -0.01242828369140625, 0.038177490234375, -0.056610107421875, 0.0007748603820800781, -0.029876708984375, -0.0221405029296875, 0.0092010498046875, 0.032470703125, 0.0305328369140625, 0.01000213623046875, -0.0182037353515625, 0.01410675048828125, 0.0287628173828125, -0.01441192626953125, 0.0293731689453125, 0.0430908203125, -0.050628662109375, -0.036102294921875, 0.06646728515625, -0.00020122528076171875, 0.0238494873046875, 0.0305938720703125, 0.0119171142578125, 0.00008511543273925781, -0.06756591796875, -0.035064697265625, 0.0086822509765625, -0.0765380859375, -0.021697998046875, -0.024200439453125, -0.037567138671875, -0.01812744140625, -0.0303955078125, -0.0158233642578125, -0.060272216796875, -0.04534912109375, -0.0184783935546875, 0.037445068359375, 0.07452392578125, 0.00296783447265625, 0.056915283203125, -0.0213775634765625, 0.02978515625, 0.01470947265625, 0.0255889892578125, -0.021575927734375, -0.0618896484375, -0.052825927734375, -0.003253936767578125, -0.0301361083984375, -0.05682373046875, 0.0134124755859375, 0.004940032958984375, 0.02783203125, 0.051910400390625, -0.0196075439453125, 0.040069580078125, -0.023345947265625, 0.0611572265625, 0.0509033203125, -0.049041748046875, 0.05548095703125, -0.04620361328125, 0.027923583984375, 0.039947509765625, 0.0197296142578125, -0.028717041015625, 0.004047393798828125, -0.04638671875, -0.03436279296875, 0.0235595703125, 0.05059814453125, 0.0207672119140625, 0.027130126953125, 0.037628173828125, 0.01474761962890625, 0.033233642578125, -0.08477783203125, -0.0285186767578125, -0.033447265625, -0.03118896484375, 0.0027408599853515625, -0.010284423828125, -0.0174407958984375, -0.02349853515625, 0.042083740234375, -0.0226287841796875, 0.025421142578125, 0.00004374980926513672, 0.005725860595703125, -0.030029296875, 0.00009626150131225586, 0.05535888671875, 0.051116943359375, -0.05914306640625, -0.03033447265625, 0.0227203369140625, -0.045806884765625, 0.01474761962890625, -0.00905609130859375, -0.017547607421875, 0.0033283233642578125, 0.0186767578125, 0.07281494140625, 0.01277923583984375, -0.0290679931640625, 0.037445068359375, 0.0067291259765625, -0.027740478515625, -0.03704833984375, 0.0159759521484375, -0.01361083984375, -0.006076812744140625, 0.03399658203125, 0.0299835205078125, 0.007152557373046875, -0.0210723876953125, -0.0142822265625, 0.047332763671875, -0.04229736328125, -0.0235443115234375, 0.0653076171875, 0.0220947265625, -0.0236968994140625, 0.01507568359375, 0.0002593994140625, -0.00689697265625, 0.060791015625, 0.061981201171875, 0.05914306640625, -0.0098876953125, 0.0213470458984375, 0.036529541015625, 0.0208740234375, 0.00007456541061401367, 0.0517578125, 0.0207366943359375, -0.08349609375, -0.00951385498046875, -0.059783935546875, -0.02947998046875, 0.01641845703125, -0.044036865234375, 0.054351806640625, -0.051727294921875, -0.01172637939453125, -0.0186309814453125, -0.01438140869140625, -0.037872314453125, 0.04022216796875, 0.01690673828125, 0.107666015625, -0.055145263671875, 0.059478759765625, 0.0601806640625, -0.01482391357421875, -0.041961669921875, -0.006931304931640625, -0.005458831787109375, -0.099365234375, 0.037933349609375, 0.0157318115234375, 0.004268646240234375, 0.0106658935546875, -0.0484619140625, -0.06195068359375, 0.09417724609375, 0.02899169921875, -0.0212554931640625, -0.013336181640625, -0.002735137939453125, 0.0182647705078125, -0.04656982421875, 0.0002894401550292969, -0.00885009765625, 0.0255584716796875, 0.0220794677734375, -0.041412353515625, 0.0113677978515625, -0.0223236083984375, -0.007167816162109375, -0.00299072265625, -0.06292724609375, 0.061676025390625, -0.027587890625, 0.01366424560546875, 0.03680419921875, 0.0418701171875, 0.03009033203125, 0.007030487060546875, 0.05584716796875, 0.0626220703125, 0.0233917236328125, 0.00470733642578125, 0.07183837890625, -0.0210723876953125, 0.029541015625, 0.06561279296875, -0.01430511474609375, 0.0556640625, 0.04931640625, -0.0133819580078125, 0.08154296875, 0.045257568359375, -0.006702423095703125, 0.0225830078125, 0.030792236328125, 0.0009751319885253906, 0.0014553070068359375, 0.0003173351287841797, -0.051116943359375, 0.0260009765625, 0.031463623046875, -0.0206146240234375, -0.0097808837890625, 0.00917816162109375, 0.0142822265625, -0.0304412841796875, -0.0419921875, 0.029266357421875, 0.01047515869140625, -0.003704071044921875, 0.05999755859375, 0.00902557373046875, 0.04815673828125, -0.065673828125, -0.01410675048828125, -0.006343841552734375, 0.0012302398681640625, -0.0279693603515625, -0.059173583984375, 0.00959014892578125, -0.00970458984375, 0.011962890625, -0.0200347900390625, 0.07275390625, 0.00251007080078125, -0.07244873046875, 0.024658203125, 0.0207061767578125, 0.0113372802734375, 0.0133819580078125, -0.058349609375, 0.0285186767578125, -0.0016574859619140625, -0.0155487060546875, 0.016845703125, -0.0091094970703125, 0.03955078125, 0.041412353515625, 0.0086822509765625, 0.015869140625, -0.004032135009765625, 0.0171051025390625, 0.06494140625, -0.05828857421875, -0.046478271484375, -0.04486083984375, 0.047760009765625, -0.00691986083984375, -0.01053619384765625, 0.055938720703125, 0.054962158203125, 0.021728515625, -0.0300445556640625, 0.036529541015625, -0.026702880859375, 0.0196990966796875, -0.07550048828125, 0.06341552734375, -0.059051513671875, 0.004878997802734375, -0.04608154296875, -0.0623779296875, -0.00539398193359375, 0.05712890625, 0.036376953125, 0.013458251953125, 0.0406494140625, 0.03240966796875, -0.008026123046875, -0.0217132568359375, 0.018310546875, 0.034820556640625, -0.01499176025390625, 0.0308990478515625, 0.043426513671875, -0.075927734375, 0.024810791015625, 0.0009369850158691406, -0.0112457275390625, -0.0081024169921875, -0.08331298828125, -0.0635986328125, -0.03631591796875, -0.05865478515625, -0.065185546875, 0.0081329345703125, 0.054534912109375, 0.0765380859375, -0.05877685546875, -0.0186614990234375, -0.00041031837463378906, 0.0306396484375, -0.0017786026000976562, -0.0122528076171875, 0.01230621337890625, 0.037200927734375, -0.031707763671875, 0.0211944580078125, 0.00521087646484375, 0.057220458984375, -0.0138397216796875, -0.020416259765625, -0.020263671875, -0.0028133392333984375, 0.01433563232421875, 0.0186767578125, -0.01313018798828125, -0.0274200439453125, -0.047760009765625, 0.016204833984375, 0.01381683349609375, 0.029876708984375, -0.07183837890625, -0.0273284912109375, 0.02789306640625, -0.0005297660827636719, 0.028167724609375, 0.001598358154296875, 0.00862884521484375, -0.06341552734375, 0.044189453125, -0.0092315673828125, 0.04779052734375, 0.0087890625, -0.0116729736328125, 0.040130615234375, 0.043212890625, -0.0200347900390625, -0.056427001953125, -0.01049041748046875, -0.10577392578125, -0.01160430908203125, 0.072998046875, 0.0216827392578125, -0.00921630859375, 0.00864410400390625, -0.0216064453125, -0.0240936279296875, -0.018157958984375, 0.0229034423828125, 0.0257415771484375, 0.00798797607421875, -0.0190582275390625, -0.0498046875, 0.0193328857421875, -0.0038928985595703125, -0.07037353515625, -0.048004150390625, 0.02227783203125, 0.0452880859375, 0.0272216796875, 0.08154296875, -0.00528717041015625, 0.0033969879150390625, 0.0194244384765625, 0.004642486572265625, 0.0187835693359375, -0.004436492919921875, -0.01922607421875, 0.01468658447265625, 0.00262451171875, -0.042327880859375 ] ]
immich-app/RN50__openai
2023-10-29T03:24:52.000Z
[ "transformers", "onnx", "immich", "clip", "endpoints_compatible", "region:us" ]
null
immich-app
null
null
immich-app/RN50__openai
0
2
transformers
2023-10-28T01:45:26
--- tags: - immich - clip --- # Model Description This repo contains ONNX exports for the corresponding ResNet-50-based CLIP model by OpenAI. See the [CLIP](https://github.com/openai/CLIP/tree/main) repo for more info. Visual and textual encoders are separated into separate models for the purpose of generating image and text embeddings. This repo is specifically intended for use with [Immich](https://immich.app/), a self-hosted photo library.
451
[ [ -0.027374267578125, -0.01027679443359375, 0.02215576171875, 0.0028743743896484375, -0.018310546875, -0.0090179443359375, 0.0153656005859375, -0.0200347900390625, 0.0300445556640625, 0.06573486328125, -0.05059814453125, -0.033111572265625, -0.0140380859375, 0.01268768310546875, -0.028961181640625, 0.05908203125, -0.01525115966796875, 0.007411956787109375, -0.0054168701171875, -0.0160980224609375, -0.00826263427734375, -0.024810791015625, -0.0233001708984375, -0.00917816162109375, 0.0249786376953125, 0.03912353515625, 0.0484619140625, 0.06512451171875, 0.048431396484375, 0.019134521484375, -0.0047454833984375, -0.0218353271484375, -0.0225372314453125, 0.01052093505859375, -0.02069091796875, -0.026947021484375, -0.0213623046875, -0.02288818359375, 0.049407958984375, -0.0207061767578125, 0.0065155029296875, 0.0208740234375, -0.031280517578125, 0.0262603759765625, -0.05926513671875, -0.022125244140625, -0.03265380859375, 0.01534271240234375, -0.0180206298828125, 0.005565643310546875, -0.00731658935546875, -0.0190887451171875, 0.0230712890625, -0.06292724609375, 0.002155303955078125, -0.006069183349609375, 0.09423828125, 0.0183868408203125, -0.027618408203125, -0.01113128662109375, -0.02545166015625, 0.043243408203125, -0.05560302734375, 0.0178375244140625, 0.01427459716796875, 0.056976318359375, 0.02490234375, -0.08770751953125, -0.0219268798828125, 0.019134521484375, 0.01468658447265625, 0.019134521484375, -0.021270751953125, 0.00006258487701416016, 0.01203155517578125, 0.043670654296875, -0.0174102783203125, -0.0038318634033203125, -0.044036865234375, -0.01348114013671875, 0.0234375, 0.01541900634765625, 0.0650634765625, -0.045684814453125, -0.0458984375, -0.025299072265625, -0.05828857421875, -0.0026187896728515625, 0.0216064453125, -0.01136016845703125, -0.017791748046875, 0.06488037109375, -0.0023345947265625, 0.03216552734375, -0.0223388671875, -0.0020236968994140625, -0.0007491111755371094, -0.032806396484375, -0.01454925537109375, 0.00646209716796875, 0.06378173828125, 0.03521728515625, 0.0233306884765625, 0.006237030029296875, -0.021484375, -0.01508331298828125, 0.0224609375, -0.08831787109375, -0.0297698974609375, 0.006008148193359375, -0.052032470703125, -0.031829833984375, 0.0229339599609375, -0.04888916015625, -0.0014696121215820312, -0.00145721435546875, 0.03619384765625, -0.035125732421875, -0.01253509521484375, -0.00824737548828125, -0.046600341796875, 0.00547027587890625, 0.0168609619140625, -0.048126220703125, 0.0222625732421875, 0.0262298583984375, 0.08831787109375, 0.0051727294921875, -0.02545166015625, -0.01324462890625, 0.0131378173828125, -0.0083160400390625, 0.038604736328125, -0.0261077880859375, -0.01375579833984375, 0.0030498504638671875, 0.039886474609375, 0.0189666748046875, -0.02630615234375, 0.0352783203125, -0.03167724609375, -0.003086090087890625, -0.0226593017578125, -0.02264404296875, -0.043670654296875, 0.02337646484375, -0.0682373046875, 0.047607421875, 0.01971435546875, -0.070556640625, -0.002994537353515625, -0.0555419921875, 0.01338958740234375, -0.0139312744140625, 0.0007410049438476562, -0.0312347412109375, -0.01445770263671875, 0.021636962890625, 0.014892578125, -0.032684326171875, 0.007305145263671875, -0.0297698974609375, -0.0154266357421875, 0.033447265625, -0.006195068359375, 0.06170654296875, 0.0302734375, 0.01300811767578125, 0.036651611328125, -0.05816650390625, -0.004856109619140625, 0.0042572021484375, -0.010589599609375, -0.05401611328125, -0.0285491943359375, 0.02386474609375, 0.01491546630859375, 0.0005407333374023438, -0.07672119140625, 0.00974273681640625, -0.01160430908203125, 0.072021484375, 0.03497314453125, 0.01532745361328125, 0.025054931640625, -0.0167999267578125, 0.043212890625, 0.0011043548583984375, 0.0277557373046875, -0.05560302734375, -0.043670654296875, -0.043182373046875, -0.0255584716796875, 0.03887939453125, 0.037750244140625, -0.06634521484375, -0.006557464599609375, -0.0106353759765625, -0.0428466796875, -0.04010009765625, -0.0286102294921875, 0.03900146484375, 0.01026153564453125, 0.00115966796875, -0.0413818359375, -0.04302978515625, -0.0738525390625, 0.0177001953125, 0.00463104248046875, -0.018768310546875, 0.0205230712890625, 0.06414794921875, -0.0298919677734375, 0.07843017578125, -0.031402587890625, -0.0130615234375, 0.016845703125, -0.007801055908203125, 0.0023555755615234375, 0.04052734375, 0.07000732421875, -0.046844482421875, -0.0253753662109375, 0.009185791015625, -0.049652099609375, 0.007633209228515625, 0.004802703857421875, -0.029541015625, -0.01134490966796875, 0.0146331787109375, -0.034637451171875, 0.0491943359375, 0.045440673828125, -0.025482177734375, 0.0494384765625, -0.0027923583984375, 0.020904541015625, -0.1055908203125, 0.01416778564453125, -0.005748748779296875, -0.041412353515625, -0.0213775634765625, 0.0218963623046875, 0.0143890380859375, -0.05322265625, -0.06597900390625, 0.043609619140625, -0.028717041015625, -0.03436279296875, -0.00768280029296875, -0.020965576171875, 0.0220794677734375, 0.0289154052734375, 0.01336669921875, 0.05938720703125, 0.039459228515625, -0.033050537109375, 0.028076171875, 0.044342041015625, -0.0231170654296875, 0.0137481689453125, -0.07843017578125, 0.0008854866027832031, 0.0122833251953125, 0.0027637481689453125, -0.04180908203125, -0.041259765625, 0.0338134765625, -0.0294189453125, 0.0005631446838378906, -0.048126220703125, -0.0216217041015625, -0.01837158203125, -0.045135498046875, 0.041107177734375, 0.02191162109375, -0.051116943359375, 0.0269622802734375, 0.044677734375, 0.00525665283203125, -0.0267333984375, -0.08026123046875, -0.01461029052734375, 0.0010137557983398438, -0.045135498046875, 0.041900634765625, 0.0092010498046875, -0.0137176513671875, 0.040557861328125, 0.0298919677734375, -0.03369140625, -0.02081298828125, 0.044891357421875, 0.0223388671875, -0.03765869140625, 0.01041412353515625, 0.013763427734375, 0.007671356201171875, -0.006061553955078125, -0.01378631591796875, 0.00785064697265625, -0.006565093994140625, -0.03448486328125, -0.035308837890625, 0.02325439453125, 0.05206298828125, -0.0247344970703125, 0.050140380859375, 0.033477783203125, -0.038726806640625, -0.004791259765625, -0.00041174888610839844, -0.026580810546875, -0.033172607421875, 0.0298004150390625, -0.0355224609375, -0.06549072265625, 0.048431396484375, -0.002288818359375, -0.0023345947265625, 0.038116455078125, 0.0190582275390625, 0.01177978515625, 0.046844482421875, 0.04345703125, 0.0128631591796875, 0.044708251953125, -0.039825439453125, -0.0163116455078125, -0.08349609375, -0.003627777099609375, -0.01922607421875, -0.0094757080078125, -0.0293731689453125, -0.0306549072265625, 0.0093231201171875, 0.016571044921875, -0.054443359375, 0.0484619140625, -0.060760498046875, 0.0421142578125, 0.052703857421875, 0.003162384033203125, 0.01544189453125, 0.0140838623046875, 0.00384521484375, -0.0258941650390625, -0.06536865234375, -0.0302276611328125, 0.07208251953125, 0.0535888671875, 0.06390380859375, 0.013885498046875, 0.0247955322265625, 0.0159454345703125, 0.01146697998046875, -0.06390380859375, 0.025726318359375, -0.0382080078125, -0.0458984375, -0.0137481689453125, -0.0198516845703125, -0.05810546875, 0.00974273681640625, -0.00392913818359375, -0.042755126953125, 0.0294952392578125, -0.0030841827392578125, -0.0154266357421875, 0.058380126953125, -0.03314208984375, 0.0787353515625, -0.006809234619140625, 0.00505828857421875, 0.0089874267578125, -0.02655029296875, 0.051513671875, 0.019500732421875, -0.016510009765625, -0.00604248046875, -0.01268768310546875, 0.06195068359375, -0.0562744140625, 0.05889892578125, 0.01453399658203125, 0.0239105224609375, 0.056732177734375, 0.0194091796875, 0.01041412353515625, 0.01415252685546875, 0.004291534423828125, 0.023834228515625, 0.0294647216796875, 0.0172119140625, -0.02691650390625, 0.0517578125, -0.0635986328125, 0.0045928955078125, -0.023590087890625, -0.0171051025390625, 0.0416259765625, 0.01552581787109375, 0.046966552734375, 0.072509765625, -0.016693115234375, 0.02490234375, 0.0391845703125, -0.03253173828125, 0.03765869140625, 0.024566650390625, -0.04718017578125, -0.07598876953125, 0.0704345703125, 0.013153076171875, 0.0229339599609375, 0.0271148681640625, 0.0181121826171875, -0.007602691650390625, -0.0081024169921875, -0.061767578125, 0.0216064453125, -0.0732421875, -0.034027099609375, -0.032257080078125, -0.03192138671875, -0.03375244140625, 0.0005936622619628906, -0.048431396484375, -0.044891357421875, -0.042633056640625, 0.0135345458984375, 0.05621337890625, 0.06915283203125, 0.0015115737915039062, 0.027313232421875, -0.089599609375, 0.0144805908203125, 0.0239715576171875, 0.0243682861328125, 0.01488494873046875, -0.031494140625, -0.0211944580078125, 0.0018558502197265625, -0.0369873046875, -0.0780029296875, 0.056976318359375, 0.02197265625, 0.023468017578125, 0.035125732421875, 0.0168304443359375, 0.0227203369140625, -0.023590087890625, 0.057159423828125, 0.0276947021484375, -0.066650390625, 0.05889892578125, -0.031585693359375, 0.04638671875, 0.0166473388671875, 0.0399169921875, -0.042510986328125, 0.00015652179718017578, -0.0284576416015625, -0.0538330078125, 0.0672607421875, 0.0199737548828125, -0.01491546630859375, 0.0088958740234375, 0.0232086181640625, -0.00007826089859008789, -0.002964019775390625, -0.053192138671875, 0.00341033935546875, -0.054412841796875, -0.0180816650390625, 0.04425048828125, -0.03643798828125, -0.022491455078125, -0.001979827880859375, 0.04241943359375, -0.01454925537109375, 0.0305633544921875, 0.043487548828125, -0.0127716064453125, -0.0036869049072265625, -0.0017805099487304688, 0.030303955078125, 0.0289154052734375, -0.01788330078125, -0.0101776123046875, -0.01357269287109375, -0.036712646484375, -0.004119873046875, -0.02191162109375, -0.0435791015625, 0.018280029296875, 0.0242462158203125, 0.09161376953125, 0.0396728515625, -0.048828125, 0.040191650390625, -0.00891876220703125, -0.0133819580078125, -0.036163330078125, -0.0107421875, -0.005237579345703125, 0.011688232421875, -0.00017750263214111328, 0.01134490966796875, 0.0270233154296875, -0.048736572265625, 0.0251007080078125, -0.00580596923828125, -0.055206298828125, -0.04833984375, 0.04638671875, 0.0186767578125, -0.02880859375, 0.056976318359375, 0.0012521743774414062, -0.050140380859375, 0.06524658203125, 0.05596923828125, 0.0670166015625, 0.0052032470703125, 0.032745361328125, 0.0523681640625, 0.01428985595703125, 0.0021514892578125, 0.03790283203125, -0.0034503936767578125, -0.046142578125, -0.017242431640625, -0.03546142578125, -0.05108642578125, -0.0105133056640625, -0.047821044921875, 0.031768798828125, -0.041107177734375, -0.028656005859375, -0.01100921630859375, -0.051605224609375, -0.0298004150390625, 0.004791259765625, 0.008819580078125, 0.08526611328125, -0.030303955078125, 0.0667724609375, 0.06817626953125, -0.04443359375, -0.054473876953125, -0.0192108154296875, 0.0005712509155273438, -0.0243682861328125, 0.0391845703125, 0.0195770263671875, 0.01342010498046875, -0.01035308837890625, -0.04266357421875, -0.07281494140625, 0.08551025390625, 0.0265960693359375, -0.0282440185546875, 0.01355743408203125, -0.00724029541015625, 0.0264129638671875, -0.049560546875, 0.04034423828125, -0.01220703125, 0.01082611083984375, 0.00647735595703125, -0.062164306640625, 0.0020580291748046875, -0.02032470703125, 0.02294921875, 0.005126953125, -0.045501708984375, 0.0870361328125, -0.0035610198974609375, -0.033477783203125, 0.0271453857421875, 0.0309600830078125, 0.0176849365234375, 0.01097869873046875, 0.01178741455078125, 0.049285888671875, 0.01343536376953125, -0.00632476806640625, 0.0908203125, -0.012115478515625, 0.0180816650390625, 0.0853271484375, 0.0052032470703125, 0.0794677734375, 0.014129638671875, -0.0017805099487304688, 0.044342041015625, 0.06146240234375, -0.01369476318359375, 0.04217529296875, -0.0030803680419921875, 0.00472259521484375, 0.0032329559326171875, -0.026763916015625, -0.0312347412109375, 0.0233917236328125, 0.01123046875, -0.048065185546875, 0.0011749267578125, 0.018524169921875, -0.0154266357421875, -0.0147247314453125, -0.03497314453125, 0.038818359375, 0.00982666015625, -0.03546142578125, 0.0233001708984375, 0.004123687744140625, 0.0535888671875, -0.051116943359375, -0.0137481689453125, 0.015380859375, 0.00982666015625, -0.004596710205078125, -0.08843994140625, 0.05523681640625, -0.00958251953125, -0.0169525146484375, -0.00530242919921875, 0.08331298828125, -0.0239105224609375, -0.024932861328125, 0.0242156982421875, 0.0025081634521484375, 0.02850341796875, -0.01230621337890625, -0.045501708984375, 0.017791748046875, -0.0010633468627929688, -0.0133209228515625, 0.01296234130859375, 0.035614013671875, -0.01082611083984375, 0.05322265625, 0.03826904296875, -0.018463134765625, 0.00917816162109375, 0.018035888671875, 0.0679931640625, -0.054229736328125, -0.042724609375, -0.04022216796875, 0.036163330078125, -0.0130462646484375, -0.05767822265625, 0.050018310546875, 0.04180908203125, 0.042755126953125, -0.0516357421875, 0.039306640625, -0.0100250244140625, 0.0165863037109375, -0.03900146484375, 0.0777587890625, -0.045989990234375, -0.0177764892578125, -0.00872039794921875, -0.0657958984375, -0.007152557373046875, 0.024688720703125, 0.019012451171875, -0.05755615234375, 0.029693603515625, 0.051849365234375, -0.0234222412109375, 0.01540374755859375, 0.017608642578125, -0.0146026611328125, 0.0028781890869140625, 0.0208892822265625, 0.05291748046875, -0.06341552734375, 0.049835205078125, -0.0298309326171875, 0.0005559921264648438, 0.00007462501525878906, -0.0535888671875, -0.0709228515625, -0.042327880859375, -0.0216064453125, -0.020416259765625, 0.0005364418029785156, 0.0458984375, 0.0792236328125, -0.0645751953125, -0.0236053466796875, 0.001514434814453125, 0.00307464599609375, 0.01953125, -0.013671875, 0.01088714599609375, 0.0233917236328125, -0.042236328125, 0.016693115234375, 0.015899658203125, 0.0270233154296875, -0.039398193359375, -0.021331787109375, -0.012054443359375, -0.003345489501953125, 0.0183868408203125, 0.040435791015625, -0.050872802734375, -0.01360321044921875, 0.00785064697265625, -0.004222869873046875, 0.00719451904296875, 0.0626220703125, -0.04833984375, 0.045318603515625, 0.07989501953125, 0.03729248046875, 0.04266357421875, -0.01107025146484375, 0.060272216796875, -0.046600341796875, 0.019378662109375, -0.006092071533203125, 0.041839599609375, 0.0267333984375, -0.0133056640625, 0.05609130859375, 0.017120361328125, -0.045806884765625, -0.05487060546875, 0.0163421630859375, -0.056976318359375, -0.0220947265625, 0.05743408203125, -0.043853759765625, -0.06292724609375, 0.018646240234375, -0.028717041015625, 0.020111083984375, -0.035125732421875, 0.00475311279296875, 0.03125, 0.033111572265625, -0.056640625, -0.0294189453125, 0.0173187255859375, -0.0140228271484375, -0.04766845703125, -0.039947509765625, 0.00786590576171875, 0.0189971923828125, 0.037353515625, 0.0276947021484375, -0.020477294921875, 0.030029296875, 0.026458740234375, 0.04034423828125, -0.0283660888671875, -0.03570556640625, -0.01125335693359375, 0.0041961669921875, -0.025421142578125, -0.052001953125 ] ]
benjipeng/ppo-LunarLander-v2
2023-10-31T00:01:13.000Z
[ "transformers", "tensorboard", "LunarLander-v2", "ppo", "deep-reinforcement-learning", "reinforcement-learning", "custom-implementation", "deep-rl-course", "model-index", "endpoints_compatible", "region:us" ]
reinforcement-learning
benjipeng
null
null
benjipeng/ppo-LunarLander-v2
0
2
transformers
2023-10-28T01:58:19
--- 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: -163.76 +/- 70.87 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': 20000 'learning_rate': 0.0001 'num_envs': 4 'num_steps': 128 'anneal_lr': True 'gae': True 'gamma': 0.99 'gae_lambda': 0.95 'num_minibatches': 4 'update_epochs': 10 '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': 'caioiglesias/ppo-LunarLander-v2' 'batch_size': 512 'minibatch_size': 128} ```
1,163
[ [ -0.0037403106689453125, -0.029296875, 0.0276947021484375, 0.0201873779296875, -0.0235443115234375, 0.0003788471221923828, 0.01512908935546875, 0.005615234375, 0.006214141845703125, 0.056182861328125, -0.03973388671875, -0.0435791015625, -0.048004150390625, -0.0061798095703125, 0.0008893013000488281, 0.0816650390625, 0.013916015625, 0.007358551025390625, 0.00939178466796875, 0.010833740234375, -0.020233154296875, -0.021881103515625, -0.067138671875, -0.04937744140625, 0.01395416259765625, 0.04986572265625, 0.05609130859375, 0.03564453125, 0.0274658203125, 0.032623291015625, -0.023895263671875, -0.0016927719116210938, -0.0390625, 0.0015211105346679688, -0.0052490234375, -0.051483154296875, -0.053436279296875, 0.0118408203125, 0.037841796875, -0.0130462646484375, -0.006656646728515625, 0.00527191162109375, -0.015228271484375, 0.021484375, -0.03350830078125, 0.03704833984375, -0.024383544921875, 0.011322021484375, 0.01273345947265625, -0.01519012451171875, -0.01354217529296875, 0.01025390625, 0.01375579833984375, -0.0941162109375, 0.01540374755859375, -0.009185791015625, 0.10064697265625, 0.00806427001953125, -0.033355712890625, -0.0038623809814453125, -0.03961181640625, 0.055328369140625, -0.0540771484375, -0.0013151168823242188, 0.0526123046875, 0.030426025390625, -0.0027675628662109375, -0.0599365234375, -0.035736083984375, -0.0263671875, 0.00473785400390625, 0.045074462890625, 0.0174102783203125, 0.0209197998046875, 0.034393310546875, -0.0014057159423828125, -0.03839111328125, 0.022918701171875, -0.0216217041015625, -0.0338134765625, 0.034454345703125, 0.039306640625, -0.0241241455078125, -0.0238037109375, -0.04217529296875, -0.03143310546875, -0.00714874267578125, 0.02093505859375, 0.055908203125, 0.01259613037109375, -0.024383544921875, 0.0535888671875, -0.0269317626953125, 0.0271453857421875, 0.0261688232421875, -0.0220794677734375, 0.04046630859375, -0.0207977294921875, -0.023345947265625, -0.026885986328125, 0.07427978515625, 0.0654296875, 0.0182952880859375, 0.016448974609375, -0.036285400390625, -0.0290985107421875, 0.00980377197265625, -0.057342529296875, -0.037567138671875, 0.047760009765625, -0.00463104248046875, -0.04217529296875, 0.02850341796875, -0.06439208984375, -0.025665283203125, -0.00047469139099121094, 0.04400634765625, -0.05694580078125, -0.0243377685546875, 0.0030002593994140625, -0.0278778076171875, 0.036376953125, 0.01210784912109375, -0.061798095703125, 0.021270751953125, 0.050384521484375, 0.057830810546875, 0.0406494140625, -0.06292724609375, -0.04449462890625, 0.0165557861328125, -0.02294921875, 0.04437255859375, 0.008087158203125, -0.03533935546875, -0.0012149810791015625, 0.01287078857421875, -0.0030307769775390625, -0.046051025390625, 0.01230621337890625, -0.0296478271484375, 0.023162841796875, -0.0180816650390625, -0.0308990478515625, -0.01065826416015625, 0.035064697265625, -0.031463623046875, 0.08355712890625, 0.0305633544921875, -0.040924072265625, 0.044158935546875, -0.048248291015625, -0.0018758773803710938, 0.0245513916015625, 0.01068878173828125, -0.052886962890625, -0.0111236572265625, -0.00921630859375, 0.028289794921875, -0.0180206298828125, 0.016937255859375, -0.007167816162109375, -0.0263671875, 0.0257720947265625, 0.005950927734375, 0.042724609375, 0.01177978515625, -0.01629638671875, 0.0127410888671875, -0.06060791015625, 0.01043701171875, 0.008209228515625, -0.0217742919921875, -0.001865386962890625, -0.01287841796875, 0.043487548828125, 0.0225677490234375, 0.0237884521484375, -0.029266357421875, 0.027923583984375, -0.0266571044921875, 0.02288818359375, 0.0592041015625, 0.0203094482421875, 0.0233612060546875, -0.033355712890625, 0.0275115966796875, 0.02130126953125, 0.0322265625, 0.0186309814453125, -0.034271240234375, -0.040252685546875, -0.03643798828125, 0.014404296875, 0.04791259765625, -0.07122802734375, 0.06024169921875, 0.01318359375, -0.052886962890625, -0.025177001953125, -0.006740570068359375, 0.038665771484375, 0.036865234375, 0.01110076904296875, -0.0272216796875, -0.03363037109375, -0.05657958984375, 0.01088714599609375, -0.041900634765625, -0.0193634033203125, 0.0115203857421875, 0.07421875, -0.0157470703125, 0.0592041015625, -0.03546142578125, -0.026275634765625, -0.0164794921875, 0.02783203125, 0.05224609375, 0.03643798828125, 0.04022216796875, -0.05157470703125, -0.0335693359375, -0.011322021484375, -0.06793212890625, -0.003376007080078125, -0.02178955078125, -0.00115203857421875, -0.009429931640625, 0.0061798095703125, -0.051666259765625, 0.00982666015625, 0.0178680419921875, -0.05767822265625, 0.059783935546875, -0.05340576171875, 0.018402099609375, -0.07684326171875, 0.0032291412353515625, 0.01434326171875, -0.0031337738037109375, -0.0230255126953125, 0.01337432861328125, -0.0011425018310546875, 0.00443267822265625, -0.057952880859375, 0.038543701171875, -0.023040771484375, -0.0004067420959472656, -0.02508544921875, -0.00981903076171875, -0.009979248046875, 0.0263214111328125, 0.00038313865661621094, 0.055511474609375, 0.07958984375, -0.043853759765625, 0.0517578125, 0.0164794921875, -0.004138946533203125, 0.03643798828125, -0.05633544921875, 0.01078033447265625, 0.0009551048278808594, 0.005580902099609375, -0.0665283203125, -0.035552978515625, 0.033294677734375, -0.0428466796875, 0.00971221923828125, -0.0322265625, -0.0457763671875, -0.01070404052734375, -0.040008544921875, 0.01416015625, 0.0423583984375, -0.00913238525390625, 0.03179931640625, 0.02056884765625, 0.021240234375, -0.042144775390625, -0.00720977783203125, -0.005153656005859375, -0.0196685791015625, -0.032562255859375, 0.01139068603515625, 0.01261138916015625, -0.0056915283203125, -0.006824493408203125, 0.00580596923828125, -0.0167694091796875, 0.0107879638671875, 0.026092529296875, 0.0173187255859375, -0.0011129379272460938, -0.017181396484375, -0.0235137939453125, -0.042388916015625, 0.0038700103759765625, -0.017822265625, 0.061370849609375, -0.005344390869140625, 0.007640838623046875, -0.047576904296875, -0.01019287109375, 0.06451416015625, 0.0043182373046875, 0.06756591796875, 0.04400634765625, -0.0204315185546875, -0.007648468017578125, -0.006072998046875, -0.01177215576171875, -0.031646728515625, 0.0599365234375, -0.042999267578125, -0.01287078857421875, 0.06396484375, 0.00542449951171875, -0.021270751953125, 0.055816650390625, 0.0379638671875, -0.01270294189453125, 0.058441162109375, 0.03717041015625, -0.01042938232421875, 0.0307159423828125, -0.07623291015625, -0.03826904296875, -0.06024169921875, -0.040771484375, -0.0233001708984375, 0.002765655517578125, -0.04547119140625, -0.024169921875, 0.0244140625, 0.009185791015625, -0.050323486328125, 0.051025390625, -0.018707275390625, 0.044677734375, 0.05584716796875, 0.023529052734375, -0.01285552978515625, -0.028289794921875, -0.01666259765625, 0.0012483596801757812, -0.039154052734375, -0.0289154052734375, 0.0924072265625, 0.028717041015625, 0.0506591796875, -0.00592803955078125, 0.0491943359375, 0.006427764892578125, -0.0031452178955078125, -0.05511474609375, 0.0531005859375, 0.0013360977172851562, -0.0592041015625, -0.031646728515625, -0.0260162353515625, -0.0606689453125, 0.0233001708984375, -0.0230255126953125, -0.060333251953125, -0.01030731201171875, 0.00820159912109375, -0.0241546630859375, 0.0160675048828125, -0.03497314453125, 0.061370849609375, -0.028045654296875, -0.0504150390625, -0.0003561973571777344, -0.0394287109375, 0.003021240234375, -0.01043701171875, -0.00658416748046875, 0.0050506591796875, -0.0176849365234375, 0.07568359375, -0.043792724609375, 0.042022705078125, -0.04345703125, 0.0217742919921875, 0.025665283203125, -0.0069580078125, 0.038543701171875, 0.034210205078125, 0.00579071044921875, 0.003017425537109375, -0.008697509765625, -0.037200927734375, -0.023162841796875, 0.02783203125, -0.0994873046875, -0.020111083984375, -0.0687255859375, -0.0447998046875, 0.006114959716796875, 0.01001739501953125, 0.049530029296875, -0.0023822784423828125, 0.003559112548828125, -0.0035533905029296875, 0.019927978515625, -0.00656890869140625, 0.0166473388671875, 0.05950927734375, -0.0097503662109375, -0.051422119140625, 0.04974365234375, 0.0181884765625, 0.009918212890625, 0.0178680419921875, 0.006023406982421875, -0.03656005859375, -0.051055908203125, -0.0015277862548828125, 0.04437255859375, -0.033233642578125, -0.005489349365234375, -0.01197052001953125, -0.023956298828125, -0.03424072265625, 0.0111846923828125, -0.0382080078125, 0.00036072731018066406, -0.0259246826171875, -0.0219879150390625, 0.032318115234375, 0.038665771484375, -0.0181884765625, 0.07427978515625, -0.04449462890625, 0.02142333984375, 0.0260467529296875, 0.0162811279296875, -0.041595458984375, -0.0628662109375, -0.0233001708984375, -0.0137481689453125, -0.034393310546875, -0.0777587890625, 0.055908203125, -0.010101318359375, 0.042388916015625, 0.044281005859375, -0.01041412353515625, 0.043701171875, -0.00914764404296875, 0.056854248046875, 0.0224456787109375, -0.05059814453125, 0.0357666015625, -0.04925537109375, 0.00897979736328125, 0.0278778076171875, 0.021636962890625, -0.0300140380859375, -0.02630615234375, -0.07391357421875, -0.08349609375, 0.0849609375, 0.031982421875, -0.0225677490234375, 0.0196990966796875, 0.020111083984375, -0.01324462890625, 0.00872802734375, -0.05224609375, -0.0186920166015625, -0.0089569091796875, 0.01026153564453125, -0.0241546630859375, -0.00977325439453125, -0.01427459716796875, -0.01392364501953125, 0.07806396484375, -0.002704620361328125, 0.0284576416015625, 0.007648468017578125, 0.0024509429931640625, -0.021697998046875, -0.01611328125, 0.03240966796875, 0.04022216796875, -0.0653076171875, -0.0222625732421875, 0.0064849853515625, -0.04693603515625, 0.0287933349609375, 0.0298309326171875, -0.00580596923828125, 0.00197601318359375, 0.045318603515625, 0.0570068359375, 0.006450653076171875, -0.0203857421875, 0.0377197265625, 0.007293701171875, -0.0423583984375, -0.04217529296875, 0.0182952880859375, -0.0175018310546875, 0.03790283203125, 0.027923583984375, 0.0017375946044921875, -0.02203369140625, -0.0350341796875, 0.0138092041015625, 0.004261016845703125, -0.0302276611328125, -0.034027099609375, 0.060089111328125, 0.0032501220703125, -0.044158935546875, 0.058929443359375, -0.0102996826171875, -0.040435791015625, 0.0906982421875, 0.020111083984375, 0.0706787109375, -0.0140228271484375, 0.027923583984375, 0.038116455078125, 0.018218994140625, -0.015655517578125, 0.03741455078125, 0.0279541015625, -0.05908203125, -0.0144805908203125, -0.01534271240234375, -0.04229736328125, 0.04241943359375, -0.051483154296875, 0.0307159423828125, -0.035797119140625, -0.0361328125, 0.004543304443359375, 0.029998779296875, -0.051910400390625, 0.0208740234375, -0.004207611083984375, 0.0767822265625, -0.0894775390625, 0.0687255859375, 0.058868408203125, -0.03857421875, -0.0677490234375, 0.0022220611572265625, -0.0011501312255859375, -0.061187744140625, 0.04449462890625, 0.0011301040649414062, 0.03472900390625, 0.0013227462768554688, -0.044097900390625, -0.048065185546875, 0.096923828125, 0.00838470458984375, -0.0311126708984375, 0.00788116455078125, 0.007015228271484375, 0.055328369140625, -0.0031833648681640625, 0.060333251953125, 0.0157928466796875, 0.045623779296875, 0.01151275634765625, -0.05810546875, -0.0230865478515625, -0.01331329345703125, -0.01419830322265625, 0.00826263427734375, -0.067138671875, 0.10638427734375, -0.020111083984375, 0.03271484375, 0.01009368896484375, 0.0232391357421875, 0.043792724609375, 0.03448486328125, 0.04400634765625, 0.044677734375, 0.0258331298828125, -0.01300048828125, 0.07366943359375, -0.01654052734375, 0.0731201171875, 0.05523681640625, -0.032623291015625, 0.0240325927734375, 0.033233642578125, -0.0199432373046875, 0.00652313232421875, 0.05816650390625, -0.02215576171875, 0.061614990234375, 0.00453948974609375, -0.00013172626495361328, -0.0228729248046875, 0.0251312255859375, -0.0200958251953125, 0.03729248046875, 0.0035228729248046875, -0.0185089111328125, -0.008758544921875, -0.00791168212890625, 0.00807952880859375, -0.0117340087890625, -0.0170440673828125, 0.0548095703125, -0.0268402099609375, -0.0577392578125, 0.03204345703125, 0.01280975341796875, 0.0305938720703125, -0.07574462890625, -0.01190185546875, -0.0180816650390625, 0.039886474609375, -0.00672149658203125, -0.06878662109375, -0.028594970703125, -0.01104736328125, -0.00023484230041503906, 0.003307342529296875, 0.0260009765625, -0.014801025390625, -0.021881103515625, 0.042724609375, 0.03729248046875, 0.017730712890625, -0.01000213623046875, -0.06640625, -0.034393310546875, -0.01175689697265625, -0.04290771484375, 0.0291595458984375, 0.05047607421875, 0.0182647705078125, 0.05010986328125, 0.03887939453125, 0.016265869140625, -0.00963592529296875, -0.01016998291015625, 0.06500244140625, -0.05560302734375, -0.051300048828125, -0.05291748046875, 0.0540771484375, -0.0081329345703125, -0.07928466796875, 0.05426025390625, 0.06829833984375, 0.046356201171875, -0.02362060546875, 0.041290283203125, -0.00737762451171875, 0.004169464111328125, -0.03729248046875, 0.047027587890625, -0.010009765625, 0.0007457733154296875, -0.016510009765625, -0.05218505859375, 0.007709503173828125, 0.046356201171875, -0.017974853515625, -0.006805419921875, 0.039459228515625, 0.06817626953125, -0.0017576217651367188, -0.031463623046875, 0.0302581787109375, 0.04095458984375, 0.0198974609375, 0.058349609375, 0.0540771484375, -0.052581787109375, 0.0282440185546875, -0.0350341796875, -0.028533935546875, -0.01132965087890625, -0.038818359375, -0.058349609375, -0.033416748046875, -0.0270843505859375, -0.044158935546875, 0.0141754150390625, 0.06524658203125, 0.061187744140625, -0.0460205078125, -0.042938232421875, -0.005130767822265625, -0.00833892822265625, -0.043121337890625, -0.0175628662109375, 0.014984130859375, -0.003910064697265625, -0.058990478515625, 0.004520416259765625, -0.019073486328125, 0.0057220458984375, 0.01496124267578125, -0.0357666015625, -0.032470703125, -0.0161590576171875, 0.01457977294921875, 0.01236724853515625, -0.0191650390625, -0.0286712646484375, -0.01116943359375, -0.00901031494140625, 0.0062103271484375, 0.01190185546875, -0.05194091796875, 0.0252532958984375, 0.0335693359375, -0.0198211669921875, 0.06280517578125, -0.000225067138671875, 0.018768310546875, -0.049102783203125, 0.028717041015625, 0.0263214111328125, 0.0251312255859375, -0.01103973388671875, -0.01346588134765625, 0.03997802734375, 0.042083740234375, -0.04522705078125, -0.0443115234375, -0.0080718994140625, -0.068603515625, -0.00933074951171875, 0.083740234375, -0.0146331787109375, -0.02130126953125, 0.003627777099609375, -0.02740478515625, 0.030426025390625, -0.053131103515625, 0.040252685546875, 0.042022705078125, -0.0016736984252929688, -0.0028324127197265625, -0.036651611328125, 0.015594482421875, 0.010833740234375, -0.046234130859375, -0.0343017578125, 0.0215606689453125, 0.035736083984375, 0.01885986328125, 0.048126220703125, 0.004184722900390625, 0.03656005859375, 0.0295867919921875, 0.0007462501525878906, -0.03387451171875, -0.032806396484375, -0.0287628173828125, 0.0170440673828125, 0.00090789794921875, -0.04852294921875 ] ]
keylazy/distilbert-base-uncased-finetuned-imdb
2023-10-28T18:09:40.000Z
[ "transformers", "pytorch", "distilbert", "fill-mask", "generated_from_trainer", "dataset:imdb", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
fill-mask
keylazy
null
null
keylazy/distilbert-base-uncased-finetuned-imdb
0
2
transformers
2023-10-28T02:10:41
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - imdb model-index: - name: distilbert-base-uncased-finetuned-imdb 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-imdb This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the imdb dataset. It achieves the following results on the evaluation set: - Loss: 2.4119 ## 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: 3.0 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | 2.7024 | 1.0 | 157 | 2.4966 | | 2.5796 | 2.0 | 314 | 2.4282 | | 2.5355 | 3.0 | 471 | 2.4510 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,465
[ [ -0.041412353515625, -0.04351806640625, 0.011016845703125, 0.006816864013671875, -0.03155517578125, -0.0119171142578125, -0.0008363723754882812, 0.0005626678466796875, 0.0111541748046875, 0.0279541015625, -0.058349609375, -0.037811279296875, -0.061004638671875, -0.01163482666015625, -0.0286712646484375, 0.0980224609375, 0.007167816162109375, 0.032928466796875, -0.0092926025390625, 0.0006232261657714844, -0.02496337890625, -0.05450439453125, -0.040283203125, -0.043060302734375, 0.01453399658203125, 0.02880859375, 0.0606689453125, 0.06866455078125, 0.0562744140625, 0.01372528076171875, -0.027740478515625, -0.005397796630859375, -0.050750732421875, -0.03790283203125, -0.0160064697265625, -0.0205078125, -0.047515869140625, 0.0024127960205078125, 0.05303955078125, 0.041229248046875, -0.0249176025390625, 0.0406494140625, 0.009063720703125, 0.04888916015625, -0.044189453125, 0.0220947265625, -0.04571533203125, 0.0199127197265625, -0.018096923828125, -0.02044677734375, -0.0184326171875, 0.00896453857421875, -0.00308990478515625, -0.0322265625, 0.040313720703125, 0.009765625, 0.084228515625, 0.03204345703125, -0.026611328125, 0.00858306884765625, -0.06158447265625, 0.0411376953125, -0.04638671875, 0.0182647705078125, 0.0283050537109375, 0.034576416015625, -0.0022125244140625, -0.045684814453125, -0.0396728515625, -0.0136260986328125, -0.0029506683349609375, 0.0034198760986328125, -0.015106201171875, 0.01390838623046875, 0.06683349609375, 0.05059814453125, -0.033294677734375, 0.0164794921875, -0.05230712890625, -0.0184173583984375, 0.0369873046875, 0.034820556640625, -0.02679443359375, -0.0127716064453125, -0.03643798828125, -0.021087646484375, -0.025177001953125, 0.018585205078125, 0.0465087890625, 0.01003265380859375, -0.0230560302734375, 0.05523681640625, -0.02545166015625, 0.0462646484375, 0.0220489501953125, -0.007152557373046875, 0.03460693359375, 0.0010175704956054688, -0.0309600830078125, 0.0106353759765625, 0.0498046875, 0.0599365234375, 0.02410888671875, 0.0149078369140625, -0.021148681640625, -0.002597808837890625, 0.0215911865234375, -0.080078125, -0.02728271484375, 0.01026153564453125, -0.0377197265625, -0.0399169921875, 0.0167999267578125, -0.036285400390625, -0.0054473876953125, -0.0307464599609375, 0.0350341796875, -0.027923583984375, -0.0166168212890625, 0.004924774169921875, -0.0137939453125, 0.0215911865234375, 0.0093994140625, -0.071533203125, 0.029266357421875, 0.021331787109375, 0.041351318359375, 0.0094146728515625, -0.0220489501953125, -0.0233001708984375, 0.004177093505859375, -0.01226806640625, 0.0259857177734375, -0.003963470458984375, -0.032562255859375, -0.01438140869140625, 0.0182037353515625, 0.0023097991943359375, -0.039276123046875, 0.063232421875, -0.018463134765625, 0.0036449432373046875, -0.0116119384765625, -0.035858154296875, -0.01300048828125, 0.033416748046875, -0.056610107421875, 0.0791015625, 0.015655517578125, -0.056793212890625, 0.04083251953125, -0.03192138671875, -0.004611968994140625, -0.01372528076171875, -0.007171630859375, -0.05523681640625, 0.01163482666015625, 0.0125885009765625, 0.039825439453125, -0.032440185546875, 0.033966064453125, -0.03192138671875, -0.052398681640625, -0.00167083740234375, -0.04571533203125, 0.05615234375, 0.0159149169921875, -0.0309906005859375, -0.0099334716796875, -0.09539794921875, 0.014801025390625, 0.023101806640625, -0.037841796875, 0.00449371337890625, -0.028839111328125, 0.02545166015625, 0.01763916015625, 0.01488494873046875, -0.039154052734375, 0.00681304931640625, -0.0181732177734375, 0.0151214599609375, 0.04278564453125, 0.00820159912109375, 0.005184173583984375, -0.027191162109375, 0.017852783203125, 0.040130615234375, 0.0313720703125, 0.00937652587890625, -0.0158843994140625, -0.06671142578125, -0.016082763671875, 0.019256591796875, 0.0306243896484375, -0.01477813720703125, 0.052703857421875, -0.00543212890625, -0.050079345703125, -0.02288818359375, 0.006504058837890625, 0.038299560546875, 0.0555419921875, 0.034149169921875, -0.0237579345703125, -0.041961669921875, -0.097412109375, 0.0095062255859375, -0.005985260009765625, 0.0177154541015625, -0.00272369384765625, 0.0426025390625, -0.02001953125, 0.05902099609375, -0.038330078125, -0.0138092041015625, -0.005268096923828125, -0.007099151611328125, 0.046783447265625, 0.06402587890625, 0.051849365234375, -0.0289154052734375, -0.0205078125, -0.0212249755859375, -0.06097412109375, 0.026702880859375, -0.005985260009765625, -0.0237884521484375, -0.0224761962890625, 0.0246734619140625, -0.03997802734375, 0.055908203125, 0.01690673828125, -0.0188140869140625, 0.05035400390625, -0.0297698974609375, 0.00402069091796875, -0.08270263671875, 0.0088653564453125, 0.02032470703125, -0.003055572509765625, -0.0151519775390625, -0.01430511474609375, 0.01165008544921875, -0.0160064697265625, -0.03204345703125, 0.031707763671875, -0.0184478759765625, 0.0092315673828125, -0.00991058349609375, -0.03515625, 0.0168914794921875, 0.06494140625, 0.003025054931640625, 0.0325927734375, 0.051788330078125, -0.045257568359375, 0.030731201171875, 0.03216552734375, -0.02996826171875, 0.0474853515625, -0.06475830078125, -0.0008912086486816406, -0.022216796875, -0.0030536651611328125, -0.054779052734375, -0.01071929931640625, 0.023193359375, -0.0172882080078125, 0.03363037109375, -0.03594970703125, -0.0258636474609375, -0.03125, -0.0109405517578125, 0.01424407958984375, 0.036346435546875, -0.0400390625, 0.016082763671875, 0.0029201507568359375, 0.0190277099609375, -0.056610107421875, -0.05609130859375, -0.0207061767578125, -0.0255279541015625, -0.0249176025390625, 0.026824951171875, -0.00846099853515625, -0.00911712646484375, -0.00571441650390625, -0.0137939453125, -0.024017333984375, -0.004467010498046875, 0.03607177734375, 0.029998779296875, -0.0117645263671875, -0.01446533203125, 0.0189056396484375, -0.016845703125, 0.020111083984375, 0.006839752197265625, 0.030853271484375, -0.01294708251953125, -0.0279541015625, -0.050537109375, 0.01055908203125, 0.050201416015625, -0.01165008544921875, 0.06658935546875, 0.05157470703125, -0.04132080078125, 0.0035552978515625, -0.035675048828125, -0.01229095458984375, -0.030548095703125, 0.051513671875, -0.038299560546875, -0.00955963134765625, 0.0482177734375, -0.00023818016052246094, 0.006092071533203125, 0.0770263671875, 0.042633056640625, -0.00872039794921875, 0.081787109375, 0.02484130859375, 0.004497528076171875, 0.024505615234375, -0.07305908203125, -0.014801025390625, -0.0611572265625, -0.033782958984375, -0.0293121337890625, -0.0245208740234375, -0.039337158203125, 0.0005288124084472656, 0.02093505859375, 0.0313720703125, -0.0565185546875, 0.02923583984375, -0.043853759765625, 0.038604736328125, 0.05340576171875, 0.02813720703125, 0.00960540771484375, 0.0116119384765625, -0.028350830078125, -0.0086517333984375, -0.045196533203125, -0.0379638671875, 0.09417724609375, 0.0380859375, 0.07470703125, -0.004268646240234375, 0.0523681640625, 0.020843505859375, 0.0050811767578125, -0.03717041015625, 0.023468017578125, 0.004974365234375, -0.0762939453125, -0.0104522705078125, -0.016357421875, -0.03314208984375, 0.014801025390625, -0.03546142578125, -0.04241943359375, 0.027557373046875, 0.0254058837890625, -0.02716064453125, 0.0274200439453125, -0.048736572265625, 0.07965087890625, -0.0335693359375, -0.03387451171875, -0.016082763671875, -0.040252685546875, 0.01739501953125, 0.0016145706176757812, -0.021392822265625, -0.0115509033203125, 0.0323486328125, 0.056854248046875, -0.051513671875, 0.042877197265625, -0.035003662109375, 0.038421630859375, 0.028839111328125, -0.00992584228515625, 0.04742431640625, 0.0289764404296875, -0.0182647705078125, 0.025238037109375, 0.00885009765625, -0.03204345703125, -0.03057861328125, 0.057861328125, -0.07879638671875, -0.0196990966796875, -0.05126953125, -0.0304107666015625, -0.007572174072265625, 0.011444091796875, 0.050262451171875, 0.05902099609375, -0.0183563232421875, 0.0241241455078125, 0.0396728515625, 0.0052337646484375, 0.025665283203125, 0.022857666015625, 0.007442474365234375, -0.037567138671875, 0.041748046875, 0.001678466796875, 0.01336669921875, 0.004467010498046875, 0.001575469970703125, -0.040069580078125, -0.05072021484375, -0.057220458984375, 0.013671875, -0.0706787109375, -0.0161895751953125, -0.028411865234375, -0.038818359375, -0.011932373046875, 0.01078033447265625, -0.035736083984375, -0.0306243896484375, -0.0400390625, -0.030975341796875, 0.02813720703125, 0.032440185546875, 0.005359649658203125, 0.048065185546875, -0.049224853515625, -0.00391387939453125, 0.003448486328125, 0.035430908203125, -0.00047087669372558594, -0.06805419921875, -0.041748046875, 0.009674072265625, -0.04046630859375, -0.04425048828125, 0.0251312255859375, 0.0158538818359375, 0.061126708984375, 0.03704833984375, -0.003387451171875, 0.07366943359375, -0.0289459228515625, 0.03948974609375, 0.0292205810546875, -0.040374755859375, 0.033203125, -0.01218414306640625, 0.01436614990234375, 0.0655517578125, 0.044921875, 0.00605010986328125, 0.00482940673828125, -0.07781982421875, -0.050933837890625, 0.06744384765625, 0.0274200439453125, 0.006725311279296875, 0.0085296630859375, 0.026947021484375, -0.0028438568115234375, 0.0271148681640625, -0.0643310546875, -0.04571533203125, -0.026824951171875, -0.0054168701171875, -0.01031494140625, -0.031829833984375, -0.0158538818359375, -0.05108642578125, 0.0738525390625, 0.0042266845703125, 0.0172882080078125, 0.006641387939453125, -0.00621795654296875, -0.00991058349609375, -0.004352569580078125, 0.0303192138671875, 0.049652099609375, -0.06781005859375, -0.007335662841796875, 0.01023101806640625, -0.03472900390625, 0.00732421875, 0.0273590087890625, 0.00426483154296875, 0.0123748779296875, 0.017120361328125, 0.0838623046875, 0.00514984130859375, -0.0251922607421875, 0.03082275390625, -0.0068817138671875, -0.020965576171875, -0.041961669921875, 0.009552001953125, -0.0171966552734375, 0.019378662109375, 0.02484130859375, 0.032196044921875, 0.01453399658203125, -0.024871826171875, 0.018707275390625, 0.01407623291015625, -0.043609619140625, -0.01013946533203125, 0.0640869140625, 0.0019006729125976562, -0.0118255615234375, 0.06683349609375, -0.00927734375, -0.00455474853515625, 0.0606689453125, 0.032562255859375, 0.06158447265625, 0.0033664703369140625, -0.0132598876953125, 0.0653076171875, 0.01507568359375, -0.006694793701171875, 0.0181732177734375, 0.00968170166015625, -0.035003662109375, -0.004611968994140625, -0.06756591796875, -0.022186279296875, 0.031829833984375, -0.0865478515625, 0.04437255859375, -0.052032470703125, -0.0352783203125, 0.0257110595703125, 0.0038356781005859375, -0.0765380859375, 0.0419921875, 0.00997161865234375, 0.07733154296875, -0.0679931640625, 0.0675048828125, 0.0421142578125, -0.050537109375, -0.067138671875, -0.0247039794921875, -0.011383056640625, -0.057342529296875, 0.05084228515625, 0.01404571533203125, 0.0209808349609375, 0.0124359130859375, -0.0283050537109375, -0.06378173828125, 0.0816650390625, 0.034210205078125, -0.064453125, -0.006000518798828125, 0.019256591796875, 0.039031982421875, -0.0199432373046875, 0.059295654296875, 0.0279998779296875, 0.00919342041015625, 0.0235595703125, -0.0704345703125, -0.0196990966796875, -0.028045654296875, 0.006839752197265625, 0.010650634765625, -0.04058837890625, 0.080322265625, -0.011932373046875, 0.025634765625, 0.0020160675048828125, 0.03558349609375, 0.0221405029296875, 0.02105712890625, 0.036712646484375, 0.06402587890625, 0.033111572265625, -0.0113372802734375, 0.070556640625, -0.036529541015625, 0.056793212890625, 0.0814208984375, 0.00014138221740722656, 0.0290679931640625, 0.0352783203125, -0.021942138671875, 0.0295562744140625, 0.06317138671875, -0.026763916015625, 0.047821044921875, 0.020416259765625, 0.00653839111328125, -0.0194854736328125, 0.01345062255859375, -0.0455322265625, 0.033935546875, 0.01071929931640625, -0.05517578125, -0.0300750732421875, -0.01094818115234375, -0.007358551025390625, -0.01233673095703125, -0.033111572265625, 0.03375244140625, -0.018585205078125, -0.0295867919921875, 0.076416015625, 0.01073455810546875, 0.027923583984375, -0.0474853515625, -0.0172271728515625, -0.01079559326171875, 0.038330078125, -0.0228424072265625, -0.04254150390625, 0.0205841064453125, 0.0030689239501953125, -0.038421630859375, 0.0123443603515625, 0.01554107666015625, -0.025665283203125, -0.06512451171875, 0.004291534423828125, 0.018218994140625, 0.019683837890625, -0.01015472412109375, -0.0791015625, -0.000014841556549072266, 0.00170135498046875, -0.0223541259765625, 0.01375579833984375, 0.0160064697265625, -0.0098876953125, 0.03363037109375, 0.045257568359375, -0.01184844970703125, 0.0074310302734375, 0.006725311279296875, 0.07696533203125, -0.046356201171875, -0.03717041015625, -0.06494140625, 0.053314208984375, -0.0206298828125, -0.054901123046875, 0.044189453125, 0.08209228515625, 0.0657958984375, -0.0284271240234375, 0.033843994140625, -0.0042724609375, 0.029571533203125, -0.035614013671875, 0.043731689453125, -0.0343017578125, 0.004913330078125, -0.0297393798828125, -0.0830078125, 0.00847625732421875, 0.044403076171875, -0.01117706298828125, 0.00797271728515625, 0.039306640625, 0.059539794921875, -0.0199737548828125, -0.012847900390625, 0.0215301513671875, -0.00542449951171875, 0.01529693603515625, 0.032440185546875, 0.04022216796875, -0.066162109375, 0.03216552734375, -0.05780029296875, -0.019378662109375, -0.01250457763671875, -0.057159423828125, -0.074462890625, -0.032257080078125, -0.0340576171875, -0.0372314453125, -0.0026836395263671875, 0.080078125, 0.0655517578125, -0.058135986328125, -0.02783203125, 0.00838470458984375, -0.0279083251953125, -0.0210113525390625, -0.014801025390625, 0.028778076171875, 0.01422119140625, -0.06695556640625, 0.003810882568359375, -0.01465606689453125, 0.0224609375, -0.0257110595703125, -0.01529693603515625, -0.02130126953125, -0.0260162353515625, 0.011932373046875, 0.0021457672119140625, -0.031219482421875, -0.01171875, -0.01605224609375, -0.0024471282958984375, 0.01113128662109375, 0.02313232421875, -0.0421142578125, 0.040374755859375, 0.0106048583984375, 0.017791748046875, 0.0672607421875, 0.0084075927734375, 0.0169830322265625, -0.059814453125, 0.042510986328125, 0.0192413330078125, 0.04638671875, 0.01213836669921875, -0.037933349609375, 0.0360107421875, 0.0290069580078125, -0.03350830078125, -0.0650634765625, -0.0184478759765625, -0.08807373046875, 0.0230255126953125, 0.07305908203125, 0.00937652587890625, -0.0216064453125, 0.0243377685546875, -0.0220947265625, 0.022857666015625, -0.0242462158203125, 0.0347900390625, 0.0511474609375, 0.00025200843811035156, 0.002796173095703125, -0.033782958984375, 0.0303802490234375, 0.01416778564453125, -0.0305023193359375, -0.0171966552734375, 0.03460693359375, 0.037384033203125, 0.0037631988525390625, 0.0250701904296875, -0.01454925537109375, 0.01371002197265625, 0.0112152099609375, 0.025543212890625, -0.0433349609375, -0.025360107421875, -0.024444580078125, -0.007843017578125, 0.0164337158203125, -0.041015625 ] ]
toobiza/margin-element-detector-fm-clean-oath-16
2023-10-28T03:58:57.000Z
[ "transformers", "pytorch", "table-transformer", "object-detection", "generated_from_trainer", "endpoints_compatible", "region:us" ]
object-detection
toobiza
null
null
toobiza/margin-element-detector-fm-clean-oath-16
0
2
transformers
2023-10-28T02:18:21
--- base_model: toobiza/MT-ancient-spaceship-83 tags: - generated_from_trainer model-index: - name: margin-element-detector-fm-clean-oath-16 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. --> # margin-element-detector-fm-clean-oath-16 This model is a fine-tuned version of [toobiza/MT-ancient-spaceship-83](https://huggingface.co/toobiza/MT-ancient-spaceship-83) on an unknown dataset. It achieves the following results on the evaluation set: - eval_loss: 0.9676 - eval_loss_ce: 0.0858 - eval_loss_bbox: 0.0424 - eval_cardinality_error: 0.3683 - eval_giou: 66.5256 - eval_runtime: 47.1617 - eval_samples_per_second: 18.977 - eval_steps_per_second: 4.75 - epoch: 7.53 - step: 17000 ## 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: 40 ### Framework versions - Transformers 4.33.2 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.13.3
1,400
[ [ -0.04132080078125, -0.04693603515625, 0.028289794921875, 0.0018033981323242188, -0.032745361328125, -0.0274658203125, -0.005397796630859375, -0.016845703125, 0.01004791259765625, 0.029205322265625, -0.0599365234375, -0.047576904296875, -0.03912353515625, -0.00891876220703125, -0.019012451171875, 0.0928955078125, 0.0069580078125, 0.0302276611328125, -0.006805419921875, -0.0029964447021484375, -0.0229644775390625, -0.040252685546875, -0.05841064453125, -0.0465087890625, 0.0265655517578125, 0.0205078125, 0.06298828125, 0.07855224609375, 0.0491943359375, 0.017730712890625, -0.030548095703125, -0.0015325546264648438, -0.048828125, -0.047210693359375, -0.01189422607421875, -0.040069580078125, -0.07843017578125, -0.004871368408203125, 0.05206298828125, 0.020843505859375, -0.0095977783203125, 0.0465087890625, -0.0005588531494140625, 0.02752685546875, -0.032073974609375, 0.0217742919921875, -0.031402587890625, 0.01104736328125, -0.032012939453125, -0.03363037109375, -0.02325439453125, 0.0008630752563476562, -0.00971221923828125, -0.058685302734375, 0.03277587890625, 0.01497650146484375, 0.08599853515625, 0.030731201171875, -0.01666259765625, 0.002498626708984375, -0.052520751953125, 0.04901123046875, -0.05828857421875, 0.018218994140625, 0.024505615234375, 0.036529541015625, -0.01361846923828125, -0.056671142578125, -0.041900634765625, -0.0103302001953125, 0.00730133056640625, 0.0187835693359375, -0.0020732879638671875, -0.005054473876953125, 0.051361083984375, 0.029144287109375, -0.049896240234375, 0.0156402587890625, -0.05224609375, -0.013916015625, 0.04608154296875, 0.037841796875, -0.00676727294921875, -0.0292205810546875, -0.0377197265625, -0.024658203125, -0.04296875, 0.01038360595703125, 0.054443359375, 0.0172576904296875, -0.03240966796875, 0.049713134765625, -0.01593017578125, 0.049957275390625, 0.007152557373046875, -0.006862640380859375, 0.04058837890625, 0.004367828369140625, -0.024261474609375, -0.00659942626953125, 0.0655517578125, 0.04534912109375, 0.007904052734375, 0.0124053955078125, -0.0217132568359375, 0.0025463104248046875, 0.034088134765625, -0.06707763671875, -0.0229644775390625, 0.0015583038330078125, -0.0567626953125, -0.036590576171875, 0.0016193389892578125, -0.04827880859375, 0.01047515869140625, -0.023468017578125, 0.043914794921875, -0.03680419921875, -0.009796142578125, 0.0084991455078125, -0.00586700439453125, 0.014495849609375, 0.006893157958984375, -0.03955078125, 0.00934600830078125, 0.034454345703125, 0.033782958984375, 0.015228271484375, -0.0259552001953125, -0.0152740478515625, 0.002254486083984375, -0.0285797119140625, 0.061920166015625, -0.0304107666015625, -0.049285888671875, -0.0235595703125, 0.020782470703125, 0.005008697509765625, -0.02569580078125, 0.0889892578125, -0.031341552734375, 0.02264404296875, -0.017852783203125, -0.04840087890625, -0.0284576416015625, 0.0281982421875, -0.058441162109375, 0.07879638671875, 0.00423431396484375, -0.047576904296875, 0.043731689453125, -0.061767578125, -0.009979248046875, 0.018585205078125, -0.004245758056640625, -0.07196044921875, 0.017364501953125, 0.0034275054931640625, 0.0270233154296875, -0.0222015380859375, 0.0301055908203125, -0.047637939453125, -0.050750732421875, -0.002197265625, -0.044189453125, 0.045989990234375, 0.021697998046875, -0.021209716796875, 0.01513671875, -0.1033935546875, 0.022796630859375, 0.02923583984375, -0.034454345703125, 0.00653076171875, -0.009918212890625, 0.0310211181640625, 0.0157012939453125, 0.0225372314453125, -0.0301513671875, 0.01445770263671875, -0.0286865234375, 0.00800323486328125, 0.0479736328125, 0.0019207000732421875, 0.0025501251220703125, -0.0369873046875, 0.018310546875, -0.0020198822021484375, 0.0250396728515625, 0.012908935546875, -0.037811279296875, -0.06280517578125, -0.0105438232421875, 0.016632080078125, 0.007671356201171875, -0.03082275390625, 0.06280517578125, -0.016265869140625, -0.0625, -0.021759033203125, -0.01052093505859375, 0.033538818359375, 0.033111572265625, 0.039459228515625, -0.016448974609375, -0.0297393798828125, -0.08135986328125, 0.0002391338348388672, -0.00585174560546875, 0.00846099853515625, 0.01316070556640625, 0.06036376953125, -0.005779266357421875, 0.045867919921875, -0.040313720703125, -0.0101165771484375, -0.01145172119140625, 0.006378173828125, 0.031219482421875, 0.06451416015625, 0.0523681640625, -0.0304718017578125, -0.0128631591796875, -0.019744873046875, -0.057037353515625, 0.0263214111328125, -0.0082244873046875, -0.031890869140625, -0.0253143310546875, 0.01529693603515625, -0.043548583984375, 0.0516357421875, 0.0154266357421875, -0.0293426513671875, 0.0394287109375, -0.04058837890625, -0.0009613037109375, -0.09442138671875, 0.030181884765625, 0.01806640625, -0.00562286376953125, -0.02789306640625, 0.0167388916015625, 0.017303466796875, -0.019744873046875, -0.032928466796875, 0.03851318359375, -0.0113372802734375, 0.00945281982421875, -0.035919189453125, -0.019561767578125, 0.0028400421142578125, 0.05877685546875, 0.0142364501953125, 0.03533935546875, 0.03961181640625, -0.046661376953125, 0.028472900390625, 0.042999267578125, -0.025390625, 0.0523681640625, -0.06048583984375, 0.0182952880859375, -0.01508331298828125, 0.0078277587890625, -0.0472412109375, -0.01448822021484375, 0.042266845703125, -0.034149169921875, 0.032073974609375, -0.0197601318359375, -0.0364990234375, -0.0347900390625, -0.00350189208984375, 0.032257080078125, 0.029205322265625, -0.049835205078125, 0.049102783203125, -0.01007080078125, 0.0277099609375, -0.0369873046875, -0.04034423828125, -0.0240631103515625, -0.0223541259765625, -0.029510498046875, 0.02716064453125, -0.0207672119140625, 0.01800537109375, 0.00240325927734375, -0.006378173828125, 0.0031585693359375, 0.0007028579711914062, 0.036651611328125, 0.04534912109375, -0.014312744140625, -0.003910064697265625, 0.00856781005859375, -0.0258331298828125, 0.02886962890625, 0.0005440711975097656, 0.05419921875, -0.01299285888671875, -0.029510498046875, -0.056640625, -0.0119171142578125, 0.044189453125, -0.0156097412109375, 0.062286376953125, 0.06097412109375, -0.03875732421875, -0.001499176025390625, -0.023529052734375, -0.0017652511596679688, -0.03155517578125, 0.0516357421875, -0.056671142578125, 0.002246856689453125, 0.049407958984375, 0.00022423267364501953, 0.00492095947265625, 0.08111572265625, 0.03948974609375, 0.01192474365234375, 0.08709716796875, 0.025238037109375, -0.0010356903076171875, 0.0179290771484375, -0.0638427734375, -0.01000213623046875, -0.0633544921875, -0.040069580078125, -0.044036865234375, -0.029510498046875, -0.0491943359375, -0.0052947998046875, 0.0190887451171875, 0.00865936279296875, -0.04058837890625, 0.029144287109375, -0.03326416015625, 0.030181884765625, 0.0478515625, 0.039215087890625, 0.002979278564453125, 0.0000718235969543457, -0.0087738037109375, -0.0015163421630859375, -0.059478759765625, -0.03973388671875, 0.1131591796875, 0.029876708984375, 0.05120849609375, -0.013092041015625, 0.0465087890625, -0.0079498291015625, 0.01554107666015625, -0.03399658203125, 0.040863037109375, 0.0087432861328125, -0.08013916015625, -0.002468109130859375, -0.036773681640625, -0.0433349609375, 0.00518798828125, -0.042877197265625, -0.035125732421875, 0.00894927978515625, 0.0144500732421875, -0.038970947265625, 0.03131103515625, -0.0335693359375, 0.0894775390625, -0.0274505615234375, -0.038909912109375, -0.03033447265625, -0.03729248046875, 0.007389068603515625, -0.004608154296875, -0.013092041015625, -0.0015726089477539062, 0.0277557373046875, 0.07293701171875, -0.027862548828125, 0.039306640625, -0.0207366943359375, 0.0222320556640625, 0.022491455078125, -0.01192474365234375, 0.05224609375, 0.0168914794921875, -0.01551055908203125, 0.019866943359375, -0.0029449462890625, -0.039154052734375, -0.0289154052734375, 0.058746337890625, -0.08648681640625, -0.0187835693359375, -0.035064697265625, -0.04315185546875, 0.0059661865234375, 0.021240234375, 0.056060791015625, 0.0557861328125, -0.0177764892578125, 0.0169677734375, 0.0302276611328125, -0.00966644287109375, 0.03155517578125, 0.032806396484375, -0.0004286766052246094, -0.027862548828125, 0.06829833984375, -0.00919342041015625, 0.003215789794921875, -0.0010433197021484375, 0.007595062255859375, -0.02978515625, -0.036041259765625, -0.048614501953125, 0.0229949951171875, -0.054779052734375, -0.0167694091796875, -0.016265869140625, -0.032440185546875, -0.004852294921875, 0.0099945068359375, -0.048309326171875, -0.018585205078125, -0.049957275390625, -0.014434814453125, 0.0126190185546875, 0.040557861328125, 0.0097198486328125, 0.0484619140625, -0.049407958984375, 0.004505157470703125, -0.01276397705078125, 0.0386962890625, 0.0014400482177734375, -0.0751953125, -0.027374267578125, 0.0049896240234375, -0.039459228515625, -0.04217529296875, 0.033477783203125, 0.0002777576446533203, 0.053985595703125, 0.04730224609375, -0.010589599609375, 0.0750732421875, -0.03179931640625, 0.0509033203125, 0.0159912109375, -0.0445556640625, 0.0187835693359375, -0.01468658447265625, 0.0205230712890625, 0.031219482421875, 0.038604736328125, 0.01088714599609375, -0.00847625732421875, -0.0899658203125, -0.043731689453125, 0.0732421875, 0.025848388671875, 0.0086517333984375, 0.01611328125, 0.031219482421875, 0.005126953125, 0.0185394287109375, -0.0657958984375, -0.042999267578125, -0.0231170654296875, -0.01070404052734375, -0.01177978515625, -0.0209503173828125, -0.01227569580078125, -0.033538818359375, 0.08636474609375, 0.0024204254150390625, 0.0269012451171875, -0.007061004638671875, 0.01025390625, -0.02935791015625, 0.00225067138671875, 0.043212890625, 0.0543212890625, -0.045654296875, -0.0167083740234375, 0.0169219970703125, -0.021087646484375, -0.0125732421875, 0.03155517578125, -0.0023708343505859375, 0.0021572113037109375, 0.0187225341796875, 0.08056640625, 0.0013055801391601562, -0.01345062255859375, 0.0205535888671875, -0.0029697418212890625, -0.0174102783203125, -0.03338623046875, 0.01200103759765625, -0.0144500732421875, 0.02569580078125, 0.0106964111328125, 0.04400634765625, 0.01126861572265625, -0.0188446044921875, 0.0018072128295898438, 0.0218963623046875, -0.0201416015625, -0.0295867919921875, 0.0750732421875, 0.0008292198181152344, -0.0259857177734375, 0.049835205078125, -0.023193359375, -0.0190582275390625, 0.04840087890625, 0.04107666015625, 0.051361083984375, -0.01148223876953125, -0.0101776123046875, 0.0584716796875, 0.00464630126953125, -0.016998291015625, 0.03289794921875, 0.00689697265625, -0.037872314453125, -0.0145721435546875, -0.048736572265625, -0.00994873046875, 0.045440673828125, -0.0809326171875, 0.04949951171875, -0.035797119140625, -0.0367431640625, 0.01450347900390625, 0.00879669189453125, -0.068115234375, 0.0472412109375, 0.0102386474609375, 0.06842041015625, -0.06854248046875, 0.06036376953125, 0.051910400390625, -0.032470703125, -0.076416015625, -0.0130157470703125, -0.015899658203125, -0.0709228515625, 0.043731689453125, 0.00726318359375, 0.0245208740234375, 0.0108795166015625, -0.0443115234375, -0.065673828125, 0.0648193359375, 0.00991058349609375, -0.057403564453125, -0.00839996337890625, 0.00894927978515625, 0.052154541015625, -0.00826263427734375, 0.050201416015625, 0.01934814453125, 0.02374267578125, 0.0185546875, -0.061187744140625, -0.00655364990234375, -0.04168701171875, 0.006229400634765625, 0.01184844970703125, -0.0509033203125, 0.06683349609375, 0.0016870498657226562, 0.019195556640625, 0.0283203125, 0.048553466796875, 0.0263214111328125, 0.02532958984375, 0.0256805419921875, 0.0689697265625, 0.0306854248046875, -0.01151275634765625, 0.07562255859375, -0.053314208984375, 0.0513916015625, 0.07513427734375, 0.0015249252319335938, 0.0445556640625, 0.0212860107421875, -0.00605010986328125, 0.0247955322265625, 0.05755615234375, -0.0440673828125, 0.03851318359375, 0.01099395751953125, 0.01331329345703125, -0.027069091796875, 0.01800537109375, -0.054931640625, 0.026214599609375, 0.004791259765625, -0.046661376953125, -0.02227783203125, -0.01995849609375, -0.002712249755859375, -0.0121002197265625, -0.03369140625, 0.0269317626953125, -0.01558685302734375, -0.03240966796875, 0.04962158203125, 0.0203094482421875, 0.0168609619140625, -0.04840087890625, -0.006183624267578125, 0.00489044189453125, 0.0350341796875, -0.0209197998046875, -0.03741455078125, 0.01044464111328125, -0.0016460418701171875, -0.0047607421875, 0.01015472412109375, 0.0289764404296875, -0.0175933837890625, -0.06829833984375, 0.006381988525390625, 0.0239715576171875, 0.01702880859375, -0.005462646484375, -0.06658935546875, 0.0022029876708984375, -0.001316070556640625, -0.035186767578125, 0.007152557373046875, 0.0206298828125, 0.006587982177734375, 0.0369873046875, 0.053314208984375, 0.0016527175903320312, -0.002216339111328125, 0.003162384033203125, 0.07244873046875, -0.04718017578125, -0.0516357421875, -0.05670166015625, 0.047210693359375, -0.00783538818359375, -0.062225341796875, 0.0491943359375, 0.08642578125, 0.06982421875, -0.0222930908203125, 0.029815673828125, 0.00353240966796875, 0.0288238525390625, -0.039459228515625, 0.04931640625, -0.052886962890625, 0.00913238525390625, -0.023681640625, -0.079833984375, 0.01094818115234375, 0.0567626953125, -0.0259552001953125, 0.01326751708984375, 0.0445556640625, 0.05621337890625, -0.013580322265625, 0.0183258056640625, 0.02081298828125, -0.0005450248718261719, 0.0189666748046875, 0.038665771484375, 0.0517578125, -0.0634765625, 0.041259765625, -0.035430908203125, -0.0023288726806640625, -0.00530242919921875, -0.04290771484375, -0.08758544921875, -0.0187225341796875, -0.03076171875, -0.040557861328125, -0.00417327880859375, 0.07330322265625, 0.05963134765625, -0.046112060546875, -0.0228729248046875, 0.0014715194702148438, -0.034515380859375, -0.01385498046875, -0.0135345458984375, 0.038055419921875, 0.0046234130859375, -0.06500244140625, 0.01800537109375, -0.022247314453125, 0.019256591796875, -0.003726959228515625, -0.0147552490234375, -0.00017833709716796875, -0.028472900390625, -0.001255035400390625, -0.005123138427734375, -0.023345947265625, -0.0238494873046875, -0.01067352294921875, 0.005352020263671875, 0.0215606689453125, 0.023406982421875, -0.032684326171875, 0.03167724609375, 0.01129913330078125, 0.00824737548828125, 0.06866455078125, 0.008880615234375, 0.027069091796875, -0.043731689453125, 0.0272979736328125, 0.01163482666015625, 0.0379638671875, 0.0020809173583984375, -0.03216552734375, 0.0234527587890625, 0.0289764404296875, -0.03961181640625, -0.057830810546875, -0.01120758056640625, -0.077392578125, 0.0030384063720703125, 0.06695556640625, 0.0079193115234375, -0.040740966796875, 0.03607177734375, -0.0156097412109375, 0.03717041015625, -0.026031494140625, 0.050079345703125, 0.041351318359375, 0.0098724365234375, 0.01236724853515625, -0.031768798828125, 0.0247802734375, 0.0182647705078125, -0.05181884765625, -0.036712646484375, 0.0257720947265625, 0.043701171875, 0.0208282470703125, 0.0045318603515625, -0.01364898681640625, 0.0277557373046875, 0.0087127685546875, 0.0325927734375, -0.03814697265625, -0.028564453125, -0.0163726806640625, 0.01421356201171875, -0.00021445751190185547, -0.0340576171875 ] ]
vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservation
2023-10-28T02:44:21.000Z
[ "diffusers", "stable-diffusion", "stable-diffusion-diffusers", "text-to-image", "lora", "license:creativeml-openrail-m", "region:us" ]
text-to-image
vincegmz
null
null
vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservation
0
2
diffusers
2023-10-28T02:40:03
--- license: creativeml-openrail-m base_model: runwayml/stable-diffusion-v1-5 instance_prompt: a photo of color zero tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservation These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were trained on a photo of color zero using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. ![img_0](./image_0.png) ![img_1](./image_1.png) ![img_2](./image_2.png) ![img_3](./image_3.png) LoRA for the text encoder was enabled: False.
692
[ [ -0.00907135009765625, -0.027496337890625, 0.0264129638671875, 0.0172576904296875, -0.035369873046875, 0.01349639892578125, 0.025543212890625, -0.004608154296875, 0.053497314453125, 0.041259765625, -0.055816650390625, -0.037933349609375, -0.041961669921875, -0.0136566162109375, -0.04473876953125, 0.08282470703125, -0.018096923828125, 0.001560211181640625, 0.00560760498046875, -0.03271484375, -0.060272216796875, -0.01103973388671875, -0.042724609375, -0.02130126953125, 0.039764404296875, 0.04559326171875, 0.044189453125, 0.03289794921875, 0.0374755859375, 0.019134521484375, 0.00017309188842773438, -0.0391845703125, -0.052886962890625, -0.01291656494140625, 0.0175323486328125, -0.0196990966796875, -0.037567138671875, 0.00093841552734375, 0.07135009765625, 0.038787841796875, -0.039215087890625, 0.03717041015625, -0.0200347900390625, 0.05291748046875, -0.06439208984375, -0.0338134765625, -0.05291748046875, 0.031402587890625, -0.0047760009765625, 0.00412750244140625, -0.010711669921875, -0.0216217041015625, -0.042694091796875, -0.051177978515625, 0.002605438232421875, 0.0103912353515625, 0.0863037109375, 0.038299560546875, -0.0230712890625, 0.00399017333984375, -0.044219970703125, 0.057769775390625, -0.049346923828125, 0.0161590576171875, 0.0116119384765625, 0.033935546875, -0.00034546852111816406, -0.059600830078125, -0.043609619140625, 0.038665771484375, 0.0191497802734375, 0.012176513671875, -0.0187835693359375, -0.00904083251953125, 0.0231781005859375, 0.021453857421875, -0.030120849609375, 0.0176849365234375, -0.05438232421875, -0.015899658203125, 0.0211639404296875, 0.006122589111328125, 0.0186614990234375, 0.0265350341796875, -0.048431396484375, 0.005840301513671875, -0.0479736328125, -0.041412353515625, 0.01165008544921875, 0.0120697021484375, -0.045257568359375, 0.0411376953125, -0.01177978515625, 0.0654296875, 0.0030269622802734375, -0.014984130859375, 0.06988525390625, -0.0167083740234375, -0.054718017578125, 0.01531982421875, 0.04327392578125, 0.033538818359375, 0.003101348876953125, 0.0165557861328125, -0.0180206298828125, -0.003509521484375, 0.0240936279296875, -0.0927734375, 0.005321502685546875, 0.0154876708984375, -0.053131103515625, -0.03466796875, 0.007694244384765625, -0.04498291015625, -0.031158447265625, 0.0164031982421875, 0.0682373046875, -0.028411865234375, -0.0146331787109375, 0.028533935546875, -0.040313720703125, 0.0421142578125, 0.04449462890625, -0.044403076171875, 0.029205322265625, -0.005218505859375, 0.056610107421875, -0.000995635986328125, -0.006927490234375, -0.0269927978515625, 0.005359649658203125, -0.0214080810546875, 0.044677734375, 0.004192352294921875, -0.0279388427734375, -0.00475311279296875, 0.0084686279296875, -0.018646240234375, -0.039459228515625, 0.062286376953125, -0.04119873046875, 0.0097198486328125, -0.0269622802734375, -0.025146484375, -0.022003173828125, 0.0098876953125, -0.031524658203125, 0.056610107421875, 0.027435302734375, -0.058868408203125, 0.046417236328125, -0.0518798828125, -0.0210418701171875, -0.002162933349609375, -0.0133514404296875, -0.0390625, 0.00905609130859375, -0.017303466796875, 0.030242919921875, 0.021881103515625, -0.037628173828125, -0.005107879638671875, -0.052734375, -0.00559234619140625, 0.00803375244140625, 0.06048583984375, 0.0273284912109375, -0.005466461181640625, 0.0171356201171875, -0.0762939453125, 0.00612640380859375, 0.029327392578125, -0.028411865234375, -0.01055908203125, -0.023712158203125, 0.021881103515625, 0.0202484130859375, 0.026519775390625, -0.04986572265625, 0.01030731201171875, 0.002162933349609375, -0.0008821487426757812, 0.055145263671875, 0.009613037109375, 0.001514434814453125, -0.0338134765625, 0.049407958984375, 0.0250091552734375, 0.0046234130859375, 0.004180908203125, -0.05029296875, -0.080078125, -0.006099700927734375, 0.0064544677734375, 0.025360107421875, -0.0355224609375, 0.0169830322265625, -0.0152130126953125, -0.04046630859375, -0.0281219482421875, 0.01458740234375, -0.000904083251953125, 0.035125732421875, 0.01544952392578125, -0.0220947265625, -0.0484619140625, -0.067626953125, 0.01076507568359375, 0.00820159912109375, 0.011077880859375, -0.0193634033203125, 0.07220458984375, -0.0088958740234375, 0.05291748046875, -0.044342041015625, -0.0188140869140625, -0.004428863525390625, -0.007556915283203125, 0.060821533203125, 0.0576171875, 0.06573486328125, -0.045074462890625, -0.03192138671875, -0.01271820068359375, -0.04193115234375, 0.0075225830078125, -0.0027027130126953125, -0.019256591796875, -0.0009508132934570312, 0.02783203125, -0.039154052734375, 0.042327880859375, 0.052337646484375, -0.067626953125, 0.0199127197265625, -0.0255889892578125, 0.01544952392578125, -0.09295654296875, 0.017974853515625, -0.01053619384765625, -0.039947509765625, -0.05120849609375, 0.0089263916015625, 0.01059722900390625, 0.002460479736328125, -0.05499267578125, 0.046417236328125, -0.02777099609375, -0.018829345703125, -0.0236968994140625, 0.009002685546875, 0.0079498291015625, 0.0252532958984375, -0.0006117820739746094, 0.039306640625, 0.0244293212890625, -0.03594970703125, 0.011566162109375, 0.032562255859375, -0.035980224609375, 0.050018310546875, -0.0404052734375, 0.0272674560546875, -0.0206298828125, 0.01110076904296875, -0.0631103515625, -0.01328277587890625, 0.03863525390625, -0.01514434814453125, 0.00478363037109375, -0.01947021484375, -0.03192138671875, -0.02874755859375, -0.037506103515625, 0.03192138671875, 0.09271240234375, -0.021209716796875, 0.01372528076171875, 0.00841522216796875, 0.0178375244140625, -0.044921875, -0.06866455078125, -0.0083770751953125, -0.029266357421875, -0.005634307861328125, 0.0268096923828125, -0.0281219482421875, -0.01515960693359375, -0.01654052734375, -0.012542724609375, -0.00957489013671875, 0.003505706787109375, 0.042938232421875, 0.016815185546875, -0.0189361572265625, -0.01506805419921875, 0.0162200927734375, 0.0188751220703125, -0.01739501953125, -0.01213836669921875, 0.04486083984375, -0.0018510818481445312, -0.0212554931640625, -0.031463623046875, -0.007549285888671875, 0.039764404296875, 0.0411376953125, 0.09320068359375, 0.07275390625, -0.05828857421875, 0.004306793212890625, -0.031982421875, 0.007312774658203125, -0.036468505859375, 0.016632080078125, -0.01441192626953125, -0.024810791015625, 0.04193115234375, 0.020355224609375, -0.0123443603515625, 0.060455322265625, 0.0489501953125, -0.00998687744140625, 0.037109375, 0.03857421875, 0.0019989013671875, 0.0276641845703125, -0.041717529296875, -0.0273895263671875, -0.06011962890625, -0.0269775390625, -0.035675048828125, -0.050994873046875, 0.00737762451171875, -0.045379638671875, 0.01148223876953125, 0.039794921875, -0.060760498046875, 0.031524658203125, -0.0211639404296875, 0.040130615234375, 0.0242156982421875, 0.0089569091796875, 0.0147705078125, 0.00640106201171875, -0.01331329345703125, 0.00885009765625, -0.05450439453125, -0.006015777587890625, 0.06201171875, 0.0307159423828125, 0.06585693359375, 0.0006971359252929688, 0.050018310546875, 0.022796630859375, 0.02978515625, -0.0418701171875, 0.0438232421875, -0.0012226104736328125, -0.040069580078125, -0.005218505859375, -0.017852783203125, -0.0704345703125, 0.003505706787109375, -0.03497314453125, -0.050140380859375, 0.022247314453125, 0.0169677734375, -0.022216796875, 0.03472900390625, -0.03729248046875, 0.0574951171875, -0.0006642341613769531, -0.00147247314453125, -0.0181884765625, -0.03570556640625, 0.004795074462890625, -0.0200958251953125, 0.0269775390625, -0.0189971923828125, -0.0233001708984375, 0.092529296875, -0.044677734375, 0.0657958984375, -0.036468505859375, -0.0189971923828125, 0.0136260986328125, -0.01238250732421875, 0.035675048828125, -0.035125732421875, -0.02313232421875, 0.0166168212890625, -0.00743865966796875, -0.040618896484375, -0.0213623046875, 0.03863525390625, -0.05145263671875, -0.005306243896484375, -0.0253143310546875, -0.0239105224609375, 0.002864837646484375, 0.037872314453125, 0.03363037109375, 0.00690460205078125, -0.0138092041015625, 0.020294189453125, 0.030487060546875, -0.0178070068359375, 0.036834716796875, 0.04034423828125, -0.042022705078125, -0.036224365234375, 0.0635986328125, 0.002803802490234375, 0.02728271484375, 0.0259857177734375, 0.01898193359375, 0.0021343231201171875, -0.076416015625, -0.036529541015625, 0.0026912689208984375, -0.07891845703125, -0.02685546875, -0.0299530029296875, -0.0258636474609375, -0.0156402587890625, -0.0296630859375, -0.0240020751953125, -0.05950927734375, -0.043975830078125, -0.01451873779296875, 0.04156494140625, 0.0751953125, 0.004665374755859375, 0.051300048828125, -0.0283660888671875, 0.024566650390625, 0.0107269287109375, 0.0276641845703125, -0.01641845703125, -0.0611572265625, -0.042236328125, 0.0017251968383789062, -0.0250091552734375, -0.0574951171875, 0.0219573974609375, 0.00792694091796875, 0.0310516357421875, 0.04962158203125, -0.01108551025390625, 0.043487548828125, -0.027191162109375, 0.06640625, 0.04742431640625, -0.049041748046875, 0.06292724609375, -0.04669189453125, 0.0294647216796875, 0.041290283203125, 0.02142333984375, -0.0308685302734375, 0.0026607513427734375, -0.050506591796875, -0.048431396484375, 0.0273895263671875, 0.045623779296875, 0.0187225341796875, 0.019866943359375, 0.031341552734375, 0.01412200927734375, 0.034423828125, -0.078125, -0.028594970703125, -0.031707763671875, -0.034210205078125, 0.00033926963806152344, -0.0171661376953125, -0.01519012451171875, -0.0187225341796875, 0.047943115234375, -0.015655517578125, 0.0240325927734375, -0.0016002655029296875, 0.00710296630859375, -0.025146484375, 0.005435943603515625, 0.05657958984375, 0.04327392578125, -0.05670166015625, -0.03106689453125, 0.02960205078125, -0.051177978515625, 0.01239013671875, -0.015045166015625, -0.0155792236328125, -0.01119232177734375, 0.0196533203125, 0.07403564453125, 0.00499725341796875, -0.0350341796875, 0.039794921875, -0.0020275115966796875, -0.0227813720703125, -0.033355712890625, 0.015838623046875, -0.0166168212890625, -0.007843017578125, 0.033203125, 0.036163330078125, 0.0062713623046875, -0.028167724609375, -0.01397705078125, 0.04266357421875, -0.0367431640625, -0.011932373046875, 0.0611572265625, 0.0100555419921875, -0.015777587890625, 0.0322265625, -0.0037670135498046875, -0.005290985107421875, 0.059234619140625, 0.063720703125, 0.06085205078125, -0.00849151611328125, 0.0117340087890625, 0.037689208984375, 0.0208740234375, -0.01209259033203125, 0.04827880859375, 0.020843505859375, -0.08319091796875, 0.0013179779052734375, -0.06427001953125, -0.0199432373046875, 0.01129150390625, -0.042633056640625, 0.0452880859375, -0.052581787109375, -0.01183319091796875, -0.0255279541015625, -0.0178375244140625, -0.041107177734375, 0.039642333984375, 0.012939453125, 0.09716796875, -0.048858642578125, 0.0601806640625, 0.05279541015625, -0.01580810546875, -0.050201416015625, -0.004283905029296875, -0.0061798095703125, -0.09320068359375, 0.047210693359375, 0.011474609375, 0.00603485107421875, 0.003665924072265625, -0.041290283203125, -0.06597900390625, 0.1060791015625, 0.03515625, -0.0289306640625, 0.00016129016876220703, -0.009613037109375, 0.0187225341796875, -0.03948974609375, -0.003818511962890625, -0.004261016845703125, 0.022003173828125, 0.0290985107421875, -0.049957275390625, 0.01512908935546875, -0.0225372314453125, -0.002109527587890625, 0.0018787384033203125, -0.054901123046875, 0.0621337890625, -0.0347900390625, 0.002529144287109375, 0.039031982421875, 0.039337158203125, 0.02783203125, 0.002315521240234375, 0.055755615234375, 0.06414794921875, 0.034271240234375, 0.0038661956787109375, 0.07958984375, -0.01349639892578125, 0.027435302734375, 0.07318115234375, -0.01526641845703125, 0.0673828125, 0.0501708984375, -0.01009368896484375, 0.06988525390625, 0.047637939453125, -0.00867462158203125, 0.025360107421875, 0.0347900390625, 0.003398895263671875, 0.00616455078125, 0.00013589859008789062, -0.04742431640625, 0.021728515625, 0.02349853515625, -0.030029296875, 0.0038661956787109375, 0.006717681884765625, 0.0222320556640625, -0.034423828125, -0.042755126953125, 0.02569580078125, 0.0009222030639648438, -0.009765625, 0.0638427734375, 0.00550079345703125, 0.0513916015625, -0.06298828125, -0.01207733154296875, -0.0198211669921875, 0.00475311279296875, -0.0265655517578125, -0.05450439453125, 0.0147552490234375, -0.01468658447265625, 0.00749969482421875, -0.01922607421875, 0.06280517578125, -0.0043487548828125, -0.06536865234375, 0.0173492431640625, 0.0177001953125, 0.008056640625, 0.015045166015625, -0.04852294921875, 0.034088134765625, -0.00396728515625, -0.017364501953125, 0.0166015625, -0.00804901123046875, 0.030975341796875, 0.046539306640625, 0.012054443359375, 0.013946533203125, -0.0009007453918457031, 0.0196533203125, 0.058746337890625, -0.0577392578125, -0.03857421875, -0.05072021484375, 0.0408935546875, -0.006618499755859375, -0.00902557373046875, 0.056243896484375, 0.055694580078125, 0.031005859375, -0.032470703125, 0.0361328125, -0.0204315185546875, 0.006092071533203125, -0.07574462890625, 0.05999755859375, -0.061859130859375, 0.007232666015625, -0.049835205078125, -0.060577392578125, -0.011444091796875, 0.052154541015625, 0.03375244140625, 0.018951416015625, 0.04498291015625, 0.0345458984375, -0.005321502685546875, -0.01922607421875, 0.0198516845703125, 0.039947509765625, -0.0176239013671875, 0.0281219482421875, 0.0408935546875, -0.0694580078125, 0.0296173095703125, 0.00015747547149658203, -0.006801605224609375, -0.00012302398681640625, -0.08782958984375, -0.056610107421875, -0.037200927734375, -0.05828857421875, -0.055084228515625, 0.007549285888671875, 0.05328369140625, 0.07861328125, -0.06085205078125, -0.0147247314453125, -0.00867462158203125, 0.0186920166015625, -0.00047278404235839844, -0.0121917724609375, 0.014312744140625, 0.033966064453125, -0.036163330078125, 0.0179290771484375, 0.01279449462890625, 0.057830810546875, -0.00470733642578125, -0.0200653076171875, -0.014251708984375, -0.0034313201904296875, 0.0163116455078125, 0.0174713134765625, -0.0171051025390625, -0.02484130859375, -0.047149658203125, 0.023101806640625, 0.01303863525390625, 0.03057861328125, -0.07305908203125, -0.0210723876953125, 0.0275421142578125, 0.005229949951171875, 0.0294647216796875, -0.006557464599609375, 0.0157470703125, -0.0701904296875, 0.038726806640625, -0.0082550048828125, 0.059326171875, 0.01148223876953125, -0.01422882080078125, 0.041412353515625, 0.03973388671875, -0.0194091796875, -0.05328369140625, -0.0099945068359375, -0.10791015625, -0.0159454345703125, 0.07489013671875, 0.017425537109375, -0.004108428955078125, 0.01904296875, -0.023773193359375, -0.0184326171875, -0.0227508544921875, 0.01532745361328125, 0.018463134765625, 0.00611114501953125, -0.0216522216796875, -0.042327880859375, 0.0207672119140625, -0.003643035888671875, -0.06884765625, -0.036590576171875, 0.0246429443359375, 0.04400634765625, 0.025787353515625, 0.08856201171875, -0.006488800048828125, 0.0017528533935546875, 0.0198211669921875, 0.00324249267578125, 0.0167388916015625, -0.00807952880859375, -0.017425537109375, 0.013641357421875, 0.00836181640625, -0.042266845703125 ] ]
vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservaiton
2023-10-28T03:13:28.000Z
[ "diffusers", "stable-diffusion", "stable-diffusion-diffusers", "text-to-image", "lora", "license:creativeml-openrail-m", "region:us" ]
text-to-image
vincegmz
null
null
vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservaiton
1
2
diffusers
2023-10-28T03:05:36
--- license: creativeml-openrail-m base_model: runwayml/stable-diffusion-v1-5 instance_prompt: a photo of color zero tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservaiton These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were trained on a photo of color zero using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. ![img_0](./image_0.png) ![img_1](./image_1.png) ![img_2](./image_2.png) ![img_3](./image_3.png) LoRA for the text encoder was enabled: False.
692
[ [ -0.0088348388671875, -0.0274200439453125, 0.0272369384765625, 0.023712158203125, -0.03631591796875, 0.01486968994140625, 0.027191162109375, -0.005527496337890625, 0.055908203125, 0.03973388671875, -0.05938720703125, -0.040863037109375, -0.043304443359375, -0.01404571533203125, -0.042205810546875, 0.08135986328125, -0.0203399658203125, 0.0013551712036132812, 0.007293701171875, -0.0297393798828125, -0.0594482421875, -0.00904083251953125, -0.0380859375, -0.0234527587890625, 0.044677734375, 0.0450439453125, 0.041473388671875, 0.026153564453125, 0.0400390625, 0.0185089111328125, 0.00366973876953125, -0.041961669921875, -0.0482177734375, -0.0195770263671875, 0.01702880859375, -0.0185394287109375, -0.0413818359375, 0.0019445419311523438, 0.07012939453125, 0.03759765625, -0.03857421875, 0.037872314453125, -0.0183258056640625, 0.05267333984375, -0.061859130859375, -0.031829833984375, -0.05059814453125, 0.031890869140625, -0.00658416748046875, 0.0073394775390625, -0.00728607177734375, -0.01739501953125, -0.043365478515625, -0.053741455078125, -0.0008215904235839844, 0.0113372802734375, 0.08514404296875, 0.036865234375, -0.02532958984375, -0.000545501708984375, -0.04412841796875, 0.055908203125, -0.050750732421875, 0.0163116455078125, 0.00820159912109375, 0.03448486328125, 0.0008721351623535156, -0.061248779296875, -0.043182373046875, 0.0352783203125, 0.01885986328125, 0.014801025390625, -0.0168304443359375, -0.007114410400390625, 0.0261077880859375, 0.018524169921875, -0.0303497314453125, 0.019287109375, -0.05078125, -0.00971221923828125, 0.020660400390625, 0.00724029541015625, 0.0152740478515625, 0.025909423828125, -0.046539306640625, 0.0064697265625, -0.042877197265625, -0.0357666015625, 0.01303863525390625, 0.01331329345703125, -0.048980712890625, 0.04241943359375, -0.0167694091796875, 0.06707763671875, 0.00286102294921875, -0.01375579833984375, 0.07012939453125, -0.0183258056640625, -0.05523681640625, 0.01568603515625, 0.04400634765625, 0.0305023193359375, 0.0018472671508789062, 0.0204925537109375, -0.020233154296875, -0.00681304931640625, 0.0239410400390625, -0.09454345703125, 0.003292083740234375, 0.017333984375, -0.050506591796875, -0.03717041015625, 0.00970458984375, -0.047515869140625, -0.032196044921875, 0.01441192626953125, 0.0726318359375, -0.025390625, -0.01873779296875, 0.0267486572265625, -0.039398193359375, 0.0452880859375, 0.042694091796875, -0.039642333984375, 0.028594970703125, -0.006191253662109375, 0.0579833984375, -0.00048089027404785156, -0.00791168212890625, -0.0257720947265625, 0.0014820098876953125, -0.02227783203125, 0.0435791015625, 0.005092620849609375, -0.026153564453125, -0.00714111328125, 0.00667572021484375, -0.0255126953125, -0.03411865234375, 0.058990478515625, -0.04095458984375, 0.007366180419921875, -0.027618408203125, -0.025390625, -0.020233154296875, 0.0080413818359375, -0.0299224853515625, 0.055450439453125, 0.0267181396484375, -0.0592041015625, 0.04254150390625, -0.0587158203125, -0.0252532958984375, -0.0006933212280273438, -0.01538848876953125, -0.035308837890625, 0.0071868896484375, -0.0164642333984375, 0.032562255859375, 0.0212249755859375, -0.042083740234375, -0.0029449462890625, -0.05572509765625, -0.00018584728240966797, 0.01033782958984375, 0.061370849609375, 0.027801513671875, -0.01097869873046875, 0.0204925537109375, -0.08038330078125, 0.007625579833984375, 0.03131103515625, -0.02435302734375, -0.0058441162109375, -0.0261077880859375, 0.0213470458984375, 0.02142333984375, 0.025726318359375, -0.046234130859375, 0.004123687744140625, 0.0021038055419921875, -0.003978729248046875, 0.054718017578125, 0.00879669189453125, -0.002197265625, -0.029266357421875, 0.054046630859375, 0.0216217041015625, 0.0024871826171875, 0.005893707275390625, -0.049652099609375, -0.0794677734375, -0.0099945068359375, 0.00872039794921875, 0.027984619140625, -0.0379638671875, 0.02069091796875, -0.01169586181640625, -0.04327392578125, -0.0236358642578125, 0.01434326171875, -0.00238037109375, 0.035308837890625, 0.0127716064453125, -0.021636962890625, -0.04595947265625, -0.06298828125, 0.00865936279296875, 0.007114410400390625, 0.0100860595703125, -0.0200958251953125, 0.0731201171875, -0.006237030029296875, 0.0504150390625, -0.04498291015625, -0.0195770263671875, -0.007778167724609375, -0.0059051513671875, 0.06390380859375, 0.0528564453125, 0.064697265625, -0.043975830078125, -0.0341796875, -0.0141143798828125, -0.040618896484375, 0.005283355712890625, -0.004978179931640625, -0.018096923828125, -0.00380706787109375, 0.03192138671875, -0.0360107421875, 0.042266845703125, 0.051971435546875, -0.0693359375, 0.0244140625, -0.0243988037109375, 0.01422882080078125, -0.08966064453125, 0.0167694091796875, -0.00560760498046875, -0.03704833984375, -0.05023193359375, 0.00958251953125, 0.007404327392578125, 0.004978179931640625, -0.053802490234375, 0.045196533203125, -0.0254364013671875, -0.0188140869140625, -0.0237884521484375, 0.00699615478515625, 0.006885528564453125, 0.0277557373046875, -0.0024166107177734375, 0.0396728515625, 0.0267181396484375, -0.037811279296875, 0.0161590576171875, 0.0275115966796875, -0.03924560546875, 0.04736328125, -0.043975830078125, 0.0225982666015625, -0.0171051025390625, 0.0101470947265625, -0.06622314453125, -0.016265869140625, 0.041595458984375, -0.01458740234375, -0.0010251998901367188, -0.0159759521484375, -0.035247802734375, -0.031280517578125, -0.03253173828125, 0.03271484375, 0.09234619140625, -0.0206146240234375, 0.01515960693359375, 0.0051422119140625, 0.0178070068359375, -0.04144287109375, -0.06732177734375, -0.0103607177734375, -0.0287017822265625, -0.0049591064453125, 0.0263824462890625, -0.026885986328125, -0.0147705078125, -0.0217742919921875, -0.00948333740234375, -0.011962890625, 0.0060577392578125, 0.041778564453125, 0.0137786865234375, -0.0202484130859375, -0.017303466796875, 0.0119476318359375, 0.019622802734375, -0.012420654296875, -0.0096282958984375, 0.0435791015625, -0.0020599365234375, -0.0245361328125, -0.032196044921875, -0.01168060302734375, 0.037811279296875, 0.040740966796875, 0.0908203125, 0.073974609375, -0.05682373046875, 0.0034694671630859375, -0.0275115966796875, 0.00843048095703125, -0.036102294921875, 0.0197296142578125, -0.0163421630859375, -0.01971435546875, 0.041351318359375, 0.0185394287109375, -0.014190673828125, 0.0592041015625, 0.049774169921875, -0.01087188720703125, 0.040069580078125, 0.040191650390625, 0.005893707275390625, 0.028839111328125, -0.03704833984375, -0.0245361328125, -0.05853271484375, -0.0252685546875, -0.035003662109375, -0.0516357421875, 0.003875732421875, -0.046112060546875, 0.00934600830078125, 0.04095458984375, -0.062255859375, 0.02972412109375, -0.0190887451171875, 0.037445068359375, 0.0249176025390625, 0.006687164306640625, 0.0132598876953125, 0.006317138671875, -0.0186614990234375, 0.006404876708984375, -0.0565185546875, -0.001873016357421875, 0.06304931640625, 0.03143310546875, 0.06591796875, 0.0009131431579589844, 0.04571533203125, 0.0209808349609375, 0.03021240234375, -0.04071044921875, 0.042633056640625, 0.000606536865234375, -0.036834716796875, -0.0036258697509765625, -0.017181396484375, -0.06866455078125, 0.00567626953125, -0.035552978515625, -0.04718017578125, 0.01922607421875, 0.0135040283203125, -0.0236663818359375, 0.03192138671875, -0.036590576171875, 0.058929443359375, -0.005527496337890625, 0.000797271728515625, -0.0174102783203125, -0.03448486328125, 0.0063018798828125, -0.01983642578125, 0.03173828125, -0.020660400390625, -0.0218658447265625, 0.09503173828125, -0.044830322265625, 0.068359375, -0.035369873046875, -0.017913818359375, 0.0152587890625, -0.0179290771484375, 0.035552978515625, -0.0323486328125, -0.0215606689453125, 0.0200042724609375, -0.011932373046875, -0.041839599609375, -0.0182952880859375, 0.0361328125, -0.051971435546875, -0.0019330978393554688, -0.028839111328125, -0.0224609375, 0.003185272216796875, 0.037078857421875, 0.034912109375, 0.006122589111328125, -0.0157623291015625, 0.0140838623046875, 0.0289459228515625, -0.0175018310546875, 0.0352783203125, 0.04180908203125, -0.047119140625, -0.037200927734375, 0.06707763671875, 0.0023708343505859375, 0.0264739990234375, 0.025238037109375, 0.01451873779296875, 0.0024242401123046875, -0.072509765625, -0.035308837890625, 0.005237579345703125, -0.076416015625, -0.021392822265625, -0.029296875, -0.028961181640625, -0.0193328857421875, -0.028045654296875, -0.0217742919921875, -0.055023193359375, -0.04229736328125, -0.0132598876953125, 0.03948974609375, 0.076171875, 0.00864410400390625, 0.0576171875, -0.0243988037109375, 0.02532958984375, 0.01444244384765625, 0.0285797119140625, -0.0178070068359375, -0.0616455078125, -0.044586181640625, 0.0011243820190429688, -0.027252197265625, -0.058349609375, 0.0184173583984375, 0.004703521728515625, 0.0303497314453125, 0.05029296875, -0.01456451416015625, 0.04302978515625, -0.0268707275390625, 0.0650634765625, 0.0499267578125, -0.04998779296875, 0.06329345703125, -0.04656982421875, 0.031280517578125, 0.037750244140625, 0.021697998046875, -0.0277557373046875, 0.001789093017578125, -0.051239013671875, -0.04608154296875, 0.0277252197265625, 0.050140380859375, 0.0150146484375, 0.022308349609375, 0.0301513671875, 0.01001739501953125, 0.036590576171875, -0.0789794921875, -0.0294952392578125, -0.0297393798828125, -0.03515625, -0.00372314453125, -0.01219940185546875, -0.01049041748046875, -0.020477294921875, 0.04595947265625, -0.0200042724609375, 0.0242462158203125, -0.0005326271057128906, 0.006160736083984375, -0.0237579345703125, 0.00482940673828125, 0.057037353515625, 0.049560546875, -0.05657958984375, -0.03350830078125, 0.0291900634765625, -0.048126220703125, 0.00848388671875, -0.00927734375, -0.01183319091796875, -0.005504608154296875, 0.02447509765625, 0.074951171875, 0.00392913818359375, -0.0361328125, 0.04217529296875, -0.005023956298828125, -0.025665283203125, -0.032928466796875, 0.0174713134765625, -0.01512908935546875, -0.00641632080078125, 0.033233642578125, 0.033660888671875, 0.00478363037109375, -0.0222930908203125, -0.01512908935546875, 0.04229736328125, -0.041046142578125, -0.0144805908203125, 0.0609130859375, 0.01479339599609375, -0.0161590576171875, 0.02978515625, -0.00498199462890625, -0.005336761474609375, 0.06658935546875, 0.061798095703125, 0.05718994140625, -0.00778961181640625, 0.0150604248046875, 0.03741455078125, 0.0217742919921875, -0.01030731201171875, 0.049835205078125, 0.021575927734375, -0.083251953125, -0.00504302978515625, -0.06353759765625, -0.022308349609375, 0.01340484619140625, -0.043975830078125, 0.050018310546875, -0.054168701171875, -0.0099334716796875, -0.02313232421875, -0.01490020751953125, -0.045257568359375, 0.0428466796875, 0.01300048828125, 0.1011962890625, -0.0516357421875, 0.0587158203125, 0.05767822265625, -0.0153350830078125, -0.052398681640625, -0.0026149749755859375, -0.007259368896484375, -0.0938720703125, 0.047515869140625, 0.0157318115234375, 0.0070953369140625, 0.00839996337890625, -0.040374755859375, -0.061737060546875, 0.1051025390625, 0.0308685302734375, -0.030120849609375, 0.0018091201782226562, -0.005985260009765625, 0.018890380859375, -0.0443115234375, 0.002399444580078125, -0.005130767822265625, 0.021728515625, 0.03045654296875, -0.048736572265625, 0.014892578125, -0.018798828125, -0.0034942626953125, -0.0012559890747070312, -0.055023193359375, 0.06524658203125, -0.03515625, 0.00780487060546875, 0.0352783203125, 0.04327392578125, 0.030029296875, 0.00423431396484375, 0.0576171875, 0.06256103515625, 0.034912109375, 0.007259368896484375, 0.08135986328125, -0.0142822265625, 0.0244903564453125, 0.07537841796875, -0.0183868408203125, 0.0640869140625, 0.0467529296875, -0.0133819580078125, 0.07373046875, 0.0482177734375, -0.005100250244140625, 0.022613525390625, 0.034027099609375, 0.004291534423828125, 0.0016565322875976562, 0.00417327880859375, -0.050140380859375, 0.0204620361328125, 0.0261077880859375, -0.0270843505859375, 0.00154876708984375, 0.007572174072265625, 0.01519775390625, -0.03515625, -0.04400634765625, 0.0270538330078125, 0.003536224365234375, -0.00910186767578125, 0.0604248046875, 0.00921630859375, 0.052581787109375, -0.064697265625, -0.0115203857421875, -0.0169219970703125, 0.00472259521484375, -0.025115966796875, -0.05474853515625, 0.01065826416015625, -0.01244354248046875, 0.01055908203125, -0.0196380615234375, 0.06243896484375, 0.00021660327911376953, -0.07110595703125, 0.0198974609375, 0.0205230712890625, 0.008544921875, 0.00876617431640625, -0.053436279296875, 0.030120849609375, -0.00301361083984375, -0.01812744140625, 0.0163726806640625, -0.004230499267578125, 0.031097412109375, 0.043609619140625, 0.0126495361328125, 0.01543426513671875, -0.00001919269561767578, 0.022857666015625, 0.05853271484375, -0.0596923828125, -0.043487548828125, -0.0504150390625, 0.04058837890625, -0.0070953369140625, -0.0098114013671875, 0.057373046875, 0.053314208984375, 0.0288238525390625, -0.02783203125, 0.035369873046875, -0.021331787109375, 0.007587432861328125, -0.07537841796875, 0.059844970703125, -0.0618896484375, 0.00930023193359375, -0.046966552734375, -0.0615234375, -0.00811767578125, 0.052093505859375, 0.03277587890625, 0.0214385986328125, 0.047882080078125, 0.034423828125, -0.004383087158203125, -0.0181121826171875, 0.0155487060546875, 0.043060302734375, -0.0166473388671875, 0.0277862548828125, 0.039398193359375, -0.0712890625, 0.0299530029296875, 0.0014820098876953125, -0.0106658935546875, -0.0029544830322265625, -0.08935546875, -0.059783935546875, -0.033966064453125, -0.05938720703125, -0.058441162109375, 0.00464630126953125, 0.053619384765625, 0.07635498046875, -0.06005859375, -0.015960693359375, -0.01316070556640625, 0.02349853515625, -0.003818511962890625, -0.01300048828125, 0.01026153564453125, 0.0306396484375, -0.03350830078125, 0.01494598388671875, 0.007259368896484375, 0.055908203125, -0.003711700439453125, -0.020843505859375, -0.0161590576171875, -0.00139617919921875, 0.01459503173828125, 0.014923095703125, -0.01605224609375, -0.0201416015625, -0.045867919921875, 0.0176544189453125, 0.01174163818359375, 0.032623291015625, -0.07330322265625, -0.0270538330078125, 0.025482177734375, 0.002414703369140625, 0.0263824462890625, -0.00632476806640625, 0.0134735107421875, -0.07135009765625, 0.04010009765625, -0.0101470947265625, 0.053802490234375, 0.007472991943359375, -0.0128631591796875, 0.0364990234375, 0.040740966796875, -0.0175323486328125, -0.051727294921875, -0.00913238525390625, -0.10491943359375, -0.0199127197265625, 0.0755615234375, 0.0207672119140625, -0.006572723388671875, 0.01922607421875, -0.0185394287109375, -0.02154541015625, -0.01947021484375, 0.012481689453125, 0.020843505859375, 0.004711151123046875, -0.0166168212890625, -0.0450439453125, 0.0184783935546875, -0.00017881393432617188, -0.0714111328125, -0.042449951171875, 0.0219268798828125, 0.04449462890625, 0.0218048095703125, 0.0916748046875, -0.0021038055419921875, 0.0027179718017578125, 0.019775390625, 0.004955291748046875, 0.0174407958984375, -0.00710296630859375, -0.0165863037109375, 0.01300048828125, 0.007312774658203125, -0.04144287109375 ] ]
leeboykt/codeparrot-ds
2023-10-28T05:10:35.000Z
[ "transformers", "pytorch", "gpt2", "text-generation", "generated_from_trainer", "license:mit", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
leeboykt
null
null
leeboykt/codeparrot-ds
0
2
transformers
2023-10-28T03:16:50
--- license: mit base_model: gpt2 tags: - generated_from_trainer model-index: - name: codeparrot-ds 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. --> # codeparrot-ds This model is a fine-tuned version of [gpt2](https://huggingface.co/gpt2) 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.0005 - train_batch_size: 32 - eval_batch_size: 32 - seed: 42 - gradient_accumulation_steps: 8 - total_train_batch_size: 256 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: cosine - lr_scheduler_warmup_steps: 1000 - num_epochs: 1 ### Training results ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,105
[ [ -0.033905029296875, -0.047943115234375, 0.01181793212890625, 0.00959014892578125, -0.035736083984375, -0.01531219482421875, -0.00811004638671875, -0.01824951171875, -0.0014057159423828125, 0.017852783203125, -0.04913330078125, -0.0303192138671875, -0.054779052734375, -0.0078277587890625, -0.01517486572265625, 0.1099853515625, -0.0060272216796875, 0.031829833984375, -0.0078582763671875, 0.005359649658203125, -0.0236358642578125, -0.0430908203125, -0.073974609375, -0.052001953125, 0.017669677734375, 0.00753021240234375, 0.059722900390625, 0.06353759765625, 0.04168701171875, 0.0157623291015625, -0.0205535888671875, -0.0190887451171875, -0.045196533203125, -0.03533935546875, -0.00632476806640625, -0.0295867919921875, -0.06903076171875, 0.007781982421875, 0.034271240234375, 0.01119232177734375, -0.02093505859375, 0.039337158203125, 0.01190185546875, 0.02569580078125, -0.025604248046875, 0.044189453125, -0.0367431640625, 0.025390625, -0.005672454833984375, -0.0163726806640625, -0.0106353759765625, -0.01090240478515625, 0.0010051727294921875, -0.0430908203125, 0.0548095703125, -0.0189361572265625, 0.0780029296875, 0.029022216796875, -0.01471710205078125, 0.0008473396301269531, -0.060211181640625, 0.0284271240234375, -0.04156494140625, 0.00525665283203125, 0.031951904296875, 0.045440673828125, 0.0131988525390625, -0.07110595703125, -0.0236968994140625, -0.0015859603881835938, 0.0009975433349609375, 0.01256561279296875, -0.00946807861328125, 0.00888824462890625, 0.0625, 0.02777099609375, -0.056610107421875, 0.002071380615234375, -0.05059814453125, -0.027862548828125, 0.050445556640625, 0.0299224853515625, -0.0032176971435546875, -0.00482940673828125, -0.03363037109375, -0.005115509033203125, -0.03594970703125, 0.0013799667358398438, 0.040924072265625, 0.0103912353515625, -0.039306640625, 0.05316162109375, -0.01490020751953125, 0.0469970703125, 0.0005660057067871094, -0.0009036064147949219, 0.033538818359375, 0.0011777877807617188, -0.02978515625, -0.00868988037109375, 0.056976318359375, 0.038116455078125, 0.034271240234375, -0.0026035308837890625, -0.0286102294921875, -0.00026679039001464844, 0.02294921875, -0.07550048828125, -0.052459716796875, 0.00887298583984375, -0.0323486328125, -0.048797607421875, 0.01092529296875, -0.051788330078125, 0.00763702392578125, -0.0295257568359375, 0.038421630859375, -0.018463134765625, -0.02386474609375, 0.00251007080078125, -0.016937255859375, 0.019866943359375, 0.01470184326171875, -0.056976318359375, 0.02978515625, 0.0400390625, 0.043304443359375, 0.014404296875, -0.031219482421875, -0.0138397216796875, 0.007083892822265625, -0.0157318115234375, 0.03955078125, -0.016448974609375, -0.037445068359375, -0.00856781005859375, 0.02288818359375, -0.00201416015625, -0.0299072265625, 0.065185546875, -0.033843994140625, 0.0217132568359375, -0.019287109375, -0.0478515625, -0.0105438232421875, 0.0193634033203125, -0.040557861328125, 0.08782958984375, 0.0263824462890625, -0.059051513671875, 0.039337158203125, -0.053802490234375, -0.0106964111328125, 0.01953125, -0.0150909423828125, -0.06231689453125, 0.0032100677490234375, 0.0027332305908203125, 0.02838134765625, -0.01421356201171875, 0.035614013671875, -0.024658203125, -0.04205322265625, -0.007587432861328125, -0.043182373046875, 0.0430908203125, 0.0238800048828125, -0.03240966796875, 0.00872802734375, -0.07574462890625, 0.022857666015625, 0.033966064453125, -0.0305633544921875, 0.0167999267578125, -0.02313232421875, 0.03857421875, 0.022125244140625, 0.026031494140625, -0.033966064453125, 0.032196044921875, -0.0149688720703125, 0.0367431640625, 0.050628662109375, 0.0020885467529296875, 0.0038127899169921875, -0.0218048095703125, 0.034088134765625, 0.005046844482421875, 0.03204345703125, 0.0234832763671875, -0.045928955078125, -0.0535888671875, -0.0204315185546875, 0.0186309814453125, 0.023712158203125, -0.036529541015625, 0.0506591796875, -0.01313018798828125, -0.0556640625, -0.0063629150390625, -0.01103973388671875, 0.035552978515625, 0.0377197265625, 0.036224365234375, -0.016265869140625, -0.0262603759765625, -0.06988525390625, -0.007106781005859375, 0.0056915283203125, 0.00543212890625, 0.006694793701171875, 0.063720703125, -0.0140533447265625, 0.06292724609375, -0.05523681640625, 0.0026493072509765625, -0.017303466796875, 0.00337982177734375, 0.022003173828125, 0.06854248046875, 0.0543212890625, -0.0294952392578125, -0.0233306884765625, -0.02734375, -0.0540771484375, 0.020416259765625, -0.006450653076171875, -0.0144500732421875, -0.01497650146484375, 0.024200439453125, -0.0445556640625, 0.051788330078125, 0.0166168212890625, -0.0250396728515625, 0.045318603515625, -0.040130615234375, -0.017333984375, -0.08282470703125, 0.0174102783203125, 0.0189971923828125, -0.01263427734375, -0.02301025390625, 0.012359619140625, 0.0085601806640625, -0.02789306640625, -0.0252227783203125, 0.044952392578125, -0.0133514404296875, 0.00426483154296875, -0.0252685546875, -0.0309295654296875, 0.0010728836059570312, 0.057220458984375, 0.01317596435546875, 0.06085205078125, 0.05487060546875, -0.04107666015625, 0.03076171875, 0.038665771484375, -0.01186370849609375, 0.0280914306640625, -0.0810546875, 0.0247344970703125, -0.00170135498046875, 0.0062103271484375, -0.049346923828125, -0.030853271484375, 0.049774169921875, -0.035186767578125, 0.032318115234375, -0.039886474609375, -0.03594970703125, -0.03936767578125, 0.004486083984375, 0.042266845703125, 0.049407958984375, -0.04443359375, 0.021484375, 0.003448486328125, 0.016876220703125, -0.021026611328125, -0.051727294921875, -0.021087646484375, -0.01076507568359375, -0.0210113525390625, 0.01255035400390625, -0.004024505615234375, 0.0204315185546875, -0.005756378173828125, -0.007045745849609375, -0.023956298828125, -0.013671875, 0.0249481201171875, 0.019866943359375, -0.001438140869140625, -0.00931549072265625, 0.01062774658203125, -0.0290374755859375, 0.0270233154296875, -0.0145111083984375, 0.04376220703125, -0.00334930419921875, -0.02227783203125, -0.055908203125, -0.005901336669921875, 0.0301055908203125, -0.01511383056640625, 0.048858642578125, 0.0736083984375, -0.03900146484375, -0.0006432533264160156, -0.021209716796875, -0.01267242431640625, -0.0325927734375, 0.0550537109375, -0.0413818359375, -0.0241546630859375, 0.04217529296875, 0.005886077880859375, -0.01513671875, 0.060455322265625, 0.0408935546875, 0.0228729248046875, 0.09100341796875, 0.0221099853515625, -0.0078887939453125, 0.024688720703125, -0.06689453125, -0.00811004638671875, -0.059661865234375, -0.034637451171875, -0.035400390625, -0.0086212158203125, -0.06024169921875, -0.0108795166015625, 0.0181884765625, 0.019134521484375, -0.061370849609375, 0.03668212890625, -0.048095703125, 0.03692626953125, 0.045867919921875, 0.038818359375, -0.00765228271484375, 0.01800537109375, -0.006565093994140625, 0.0003712177276611328, -0.062744140625, -0.027313232421875, 0.0992431640625, 0.041595458984375, 0.0465087890625, -0.0162353515625, 0.039825439453125, 0.0035991668701171875, 0.00775146484375, -0.0362548828125, 0.034332275390625, 0.01451873779296875, -0.06365966796875, -0.0015954971313476562, -0.031494140625, -0.04620361328125, 0.0033016204833984375, -0.0173187255859375, -0.040374755859375, -0.00020134449005126953, 0.020263671875, -0.014251708984375, 0.0246124267578125, -0.046630859375, 0.09149169921875, -0.0143585205078125, -0.035186767578125, -0.00876617431640625, -0.0374755859375, 0.0078277587890625, 0.0079498291015625, -0.019927978515625, 0.0004222393035888672, 0.01110076904296875, 0.06298828125, -0.055389404296875, 0.048431396484375, -0.038848876953125, 0.0243072509765625, 0.0316162109375, -0.00859832763671875, 0.05841064453125, 0.026519775390625, 0.00027370452880859375, 0.01806640625, -0.00036525726318359375, -0.05609130859375, -0.026458740234375, 0.049102783203125, -0.0908203125, -0.004852294921875, -0.0484619140625, -0.02764892578125, -0.01043701171875, 0.01343536376953125, 0.05389404296875, 0.054901123046875, -0.00756072998046875, -0.00897979736328125, 0.0208282470703125, 0.0023899078369140625, 0.0299072265625, 0.0187225341796875, 0.0029296875, -0.046234130859375, 0.07257080078125, -0.0168609619140625, 0.0110626220703125, -0.0155792236328125, 0.0084075927734375, -0.03265380859375, -0.046600341796875, -0.03253173828125, 0.020263671875, -0.04620361328125, -0.018585205078125, -0.0231781005859375, -0.034454345703125, -0.021484375, 0.01224517822265625, -0.035888671875, -0.0167083740234375, -0.040191650390625, -0.0183868408203125, 0.0290679931640625, 0.052276611328125, -0.002040863037109375, 0.051361083984375, -0.051971435546875, 0.0024662017822265625, 0.012664794921875, 0.0489501953125, -0.004566192626953125, -0.05987548828125, -0.031280517578125, 0.0084228515625, -0.031646728515625, -0.038177490234375, 0.0278167724609375, 0.0021648406982421875, 0.044219970703125, 0.026763916015625, -0.0184326171875, 0.0577392578125, -0.0240936279296875, 0.06146240234375, 0.0190887451171875, -0.043792724609375, 0.033966064453125, -0.033111572265625, 0.020751953125, 0.042327880859375, 0.0347900390625, 0.009429931640625, -0.00743865966796875, -0.0853271484375, -0.05267333984375, 0.06488037109375, 0.035919189453125, 0.0164337158203125, 0.01143646240234375, 0.050384521484375, -0.0019588470458984375, 0.0256500244140625, -0.0633544921875, -0.033172607421875, -0.027435302734375, -0.005756378173828125, -0.01885986328125, -0.029937744140625, -0.017120361328125, -0.05438232421875, 0.0706787109375, -0.0048980712890625, 0.03912353515625, 0.009429931640625, 0.00966644287109375, -0.0150299072265625, -0.0165252685546875, 0.045654296875, 0.054473876953125, -0.037689208984375, -0.02191162109375, -0.0011701583862304688, -0.05145263671875, -0.006778717041015625, 0.028564453125, -0.01171112060546875, 0.0018510818481445312, 0.021087646484375, 0.08013916015625, -0.00495147705078125, -0.0007395744323730469, 0.037261962890625, -0.010528564453125, -0.0303192138671875, -0.03289794921875, 0.0204620361328125, -0.0204620361328125, 0.018829345703125, 0.0029811859130859375, 0.0458984375, 0.00489044189453125, -0.001659393310546875, 0.019317626953125, 0.0130615234375, -0.04217529296875, -0.032745361328125, 0.07684326171875, 0.01184844970703125, -0.01861572265625, 0.05670166015625, -0.0264892578125, -0.027191162109375, 0.05999755859375, 0.035797119140625, 0.07470703125, 0.0019969940185546875, 0.006561279296875, 0.06298828125, 0.006374359130859375, -0.0175933837890625, 0.03497314453125, 0.001373291015625, -0.036956787109375, -0.019287109375, -0.042144775390625, -0.00954437255859375, 0.03314208984375, -0.08172607421875, 0.03662109375, -0.038726806640625, -0.0279541015625, 0.0005941390991210938, 0.0092315673828125, -0.07586669921875, 0.03692626953125, -0.0007290840148925781, 0.08404541015625, -0.0736083984375, 0.0762939453125, 0.045562744140625, -0.049774169921875, -0.075439453125, -0.0005249977111816406, -0.0140228271484375, -0.0723876953125, 0.036712646484375, -0.0031299591064453125, 0.035797119140625, 0.0282135009765625, -0.048797607421875, -0.03997802734375, 0.0762939453125, 0.0226898193359375, -0.040191650390625, -0.00318145751953125, 0.0201568603515625, 0.054168701171875, -0.00980377197265625, 0.05242919921875, 0.0199432373046875, 0.015655517578125, 0.01229095458984375, -0.06292724609375, -0.007366180419921875, -0.023193359375, 0.0180816650390625, 0.007354736328125, -0.047393798828125, 0.072265625, -0.004245758056640625, 0.028472900390625, 0.0230255126953125, 0.031219482421875, 0.01348876953125, 0.011199951171875, 0.014434814453125, 0.05682373046875, 0.0306549072265625, -0.016876220703125, 0.0794677734375, -0.052215576171875, 0.08282470703125, 0.087646484375, 0.0069732666015625, 0.0254974365234375, 0.020538330078125, -0.02886962890625, 0.006237030029296875, 0.06854248046875, -0.0421142578125, 0.040771484375, 0.0199737548828125, -0.0026760101318359375, -0.01806640625, 0.0302734375, -0.0653076171875, 0.02569580078125, -0.008087158203125, -0.050048828125, -0.0285797119140625, -0.01474761962890625, 0.0022373199462890625, -0.0238800048828125, -0.0294647216796875, 0.045501708984375, -0.027313232421875, -0.0306549072265625, 0.044952392578125, 0.00792694091796875, 0.0219268798828125, -0.0457763671875, -0.01056671142578125, -0.007022857666015625, 0.0280914306640625, -0.0188140869140625, -0.044708251953125, 0.0158538818359375, 0.0010976791381835938, -0.00847625732421875, -0.0019159317016601562, 0.03533935546875, -0.0211639404296875, -0.058868408203125, 0.00730133056640625, 0.032989501953125, 0.019744873046875, -0.0167083740234375, -0.08551025390625, -0.0052490234375, -0.003631591796875, -0.026763916015625, 0.0212860107421875, 0.0191192626953125, 0.0159759521484375, 0.031829833984375, 0.035186767578125, 0.001239776611328125, -0.004459381103515625, 0.01166534423828125, 0.076416015625, -0.037689208984375, -0.0419921875, -0.054962158203125, 0.042236328125, -0.012725830078125, -0.06451416015625, 0.040679931640625, 0.08984375, 0.08026123046875, -0.0303802490234375, 0.0533447265625, 0.0017652511596679688, 0.0250701904296875, -0.032989501953125, 0.045928955078125, -0.02593994140625, 0.0025577545166015625, -0.0240020751953125, -0.07281494140625, 0.00693511962890625, 0.04962158203125, -0.0216064453125, 0.0258026123046875, 0.03839111328125, 0.060638427734375, -0.017669677734375, 0.01367950439453125, 0.0103759765625, -0.0009031295776367188, 0.0195465087890625, 0.0264129638671875, 0.035888671875, -0.0699462890625, 0.035614013671875, -0.04541015625, -0.009124755859375, 0.0030307769775390625, -0.0423583984375, -0.072021484375, -0.022003173828125, -0.04620361328125, -0.0482177734375, 0.00690460205078125, 0.0706787109375, 0.059173583984375, -0.056854248046875, -0.017791748046875, -0.0350341796875, -0.02899169921875, -0.012939453125, -0.0172119140625, 0.03460693359375, -0.01470184326171875, -0.05975341796875, -0.0149688720703125, -0.0252227783203125, 0.0301361083984375, -0.006683349609375, -0.0228729248046875, 0.00922393798828125, -0.03948974609375, 0.011627197265625, 0.0052947998046875, -0.033538818359375, -0.02978515625, -0.0231475830078125, -0.00872802734375, 0.0165557861328125, 0.042816162109375, -0.03424072265625, 0.026458740234375, 0.01406097412109375, 0.01084136962890625, 0.061798095703125, 0.0018482208251953125, 0.02825927734375, -0.0533447265625, 0.038848876953125, 0.014434814453125, 0.0281829833984375, -0.004749298095703125, -0.027862548828125, 0.04498291015625, 0.043914794921875, -0.049530029296875, -0.049957275390625, -0.002170562744140625, -0.07684326171875, 0.0103302001953125, 0.09210205078125, -0.00034332275390625, -0.018463134765625, 0.01959228515625, -0.0261077880859375, 0.032073974609375, -0.0252227783203125, 0.033233642578125, 0.03411865234375, -0.0114288330078125, 0.00844573974609375, -0.0482177734375, 0.0521240234375, -0.0012912750244140625, -0.048675537109375, -0.0183258056640625, 0.0229034423828125, 0.046722412109375, -0.01617431640625, 0.031951904296875, -0.009857177734375, 0.0211181640625, 0.0167388916015625, 0.0244598388671875, -0.039581298828125, -0.0156707763671875, -0.031951904296875, 0.00472259521484375, 0.005634307861328125, -0.037017822265625 ] ]
vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservaiton_loss_weight0.5
2023-10-28T03:41:44.000Z
[ "diffusers", "stable-diffusion", "stable-diffusion-diffusers", "text-to-image", "lora", "license:creativeml-openrail-m", "region:us" ]
text-to-image
vincegmz
null
null
vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservaiton_loss_weight0.5
1
2
diffusers
2023-10-28T03:37:24
--- license: creativeml-openrail-m base_model: runwayml/stable-diffusion-v1-5 instance_prompt: a photo of color zero tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - vincegmz/dreamboost_lora_mnistm_zero_batch_size1_with_prior_preservaiton_loss_weight0.5 These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were trained on a photo of color zero using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. ![img_0](./image_0.png) ![img_1](./image_1.png) ![img_2](./image_2.png) ![img_3](./image_3.png) LoRA for the text encoder was enabled: False.
707
[ [ -0.007808685302734375, -0.0269317626953125, 0.02734375, 0.018585205078125, -0.03656005859375, 0.0130462646484375, 0.025726318359375, -0.0026912689208984375, 0.060516357421875, 0.0421142578125, -0.060638427734375, -0.04095458984375, -0.04229736328125, -0.0121917724609375, -0.04119873046875, 0.0816650390625, -0.026702880859375, 0.004344940185546875, 0.007537841796875, -0.0275115966796875, -0.06103515625, -0.01218414306640625, -0.040374755859375, -0.0272979736328125, 0.0435791015625, 0.04345703125, 0.039154052734375, 0.023040771484375, 0.040374755859375, 0.0171966552734375, 0.00626373291015625, -0.040313720703125, -0.05084228515625, -0.0204315185546875, 0.019744873046875, -0.0254669189453125, -0.038726806640625, 0.007598876953125, 0.0721435546875, 0.03497314453125, -0.043365478515625, 0.037445068359375, -0.01499176025390625, 0.053741455078125, -0.058990478515625, -0.0289154052734375, -0.048828125, 0.03448486328125, -0.0087890625, 0.00643157958984375, -0.0085601806640625, -0.0179290771484375, -0.0440673828125, -0.055145263671875, -0.0027027130126953125, 0.0121612548828125, 0.09063720703125, 0.035919189453125, -0.0260162353515625, -0.0003650188446044922, -0.042022705078125, 0.0528564453125, -0.05352783203125, 0.0150604248046875, 0.010223388671875, 0.03167724609375, 0.0053253173828125, -0.0548095703125, -0.04833984375, 0.031463623046875, 0.0186920166015625, 0.01507568359375, -0.0186920166015625, -0.009521484375, 0.025115966796875, 0.018402099609375, -0.03155517578125, 0.01459503173828125, -0.04766845703125, -0.01157379150390625, 0.0203704833984375, 0.00823974609375, 0.01473236083984375, 0.023681640625, -0.04388427734375, 0.003055572509765625, -0.043792724609375, -0.03564453125, 0.01554107666015625, 0.0110015869140625, -0.0478515625, 0.04541015625, -0.01277923583984375, 0.060638427734375, 0.0028591156005859375, -0.01849365234375, 0.0697021484375, -0.0189056396484375, -0.054840087890625, 0.0178375244140625, 0.04095458984375, 0.03375244140625, -0.00302886962890625, 0.0225067138671875, -0.0175628662109375, -0.0066680908203125, 0.01922607421875, -0.09368896484375, 0.00226593017578125, 0.01190948486328125, -0.0548095703125, -0.03399658203125, 0.01019287109375, -0.0413818359375, -0.0301971435546875, 0.01165771484375, 0.0765380859375, -0.0294342041015625, -0.016876220703125, 0.028900146484375, -0.03631591796875, 0.045135498046875, 0.04461669921875, -0.0361328125, 0.032379150390625, -0.00968170166015625, 0.05584716796875, -0.00012433528900146484, -0.004756927490234375, -0.025390625, 0.005611419677734375, -0.0269622802734375, 0.037353515625, 0.0089263916015625, -0.025146484375, -0.0115203857421875, 0.0073394775390625, -0.028045654296875, -0.03350830078125, 0.054046630859375, -0.041656494140625, 0.00827789306640625, -0.03265380859375, -0.0287322998046875, -0.02423095703125, 0.0118865966796875, -0.030120849609375, 0.052154541015625, 0.02020263671875, -0.059295654296875, 0.042388916015625, -0.055023193359375, -0.02532958984375, -0.004253387451171875, -0.0140838623046875, -0.038726806640625, 0.006069183349609375, -0.017608642578125, 0.032135009765625, 0.0193634033203125, -0.0401611328125, -0.0022754669189453125, -0.0555419921875, -0.0028514862060546875, 0.01090240478515625, 0.0584716796875, 0.0272064208984375, -0.01311492919921875, 0.0184478759765625, -0.0762939453125, 0.00783538818359375, 0.03887939453125, -0.0257415771484375, -0.0080413818359375, -0.0206146240234375, 0.0218353271484375, 0.0174560546875, 0.023895263671875, -0.04754638671875, 0.006641387939453125, 0.0019216537475585938, -0.005626678466796875, 0.052154541015625, 0.004230499267578125, -0.00594329833984375, -0.02972412109375, 0.05426025390625, 0.0162506103515625, 0.001117706298828125, 0.00931549072265625, -0.0469970703125, -0.07696533203125, -0.007564544677734375, 0.009765625, 0.0280914306640625, -0.035552978515625, 0.0218048095703125, -0.00981903076171875, -0.040496826171875, -0.0263671875, 0.01220703125, 0.00223541259765625, 0.039703369140625, 0.014801025390625, -0.021484375, -0.047637939453125, -0.06292724609375, 0.00946044921875, 0.00968170166015625, 0.00885009765625, -0.0164337158203125, 0.07354736328125, -0.00870513916015625, 0.05010986328125, -0.04644775390625, -0.02105712890625, -0.012451171875, -0.00626373291015625, 0.061431884765625, 0.054840087890625, 0.06292724609375, -0.046295166015625, -0.03167724609375, -0.0179901123046875, -0.039276123046875, 0.007537841796875, -0.00428009033203125, -0.01473236083984375, -0.006046295166015625, 0.029876708984375, -0.039886474609375, 0.0482177734375, 0.050506591796875, -0.06536865234375, 0.0308837890625, -0.02301025390625, 0.0162353515625, -0.0928955078125, 0.020721435546875, -0.0095672607421875, -0.03424072265625, -0.04266357421875, 0.00672149658203125, 0.0058746337890625, -0.002201080322265625, -0.050537109375, 0.04278564453125, -0.024139404296875, -0.0171051025390625, -0.01702880859375, 0.00244140625, 0.009857177734375, 0.02587890625, 0.000057637691497802734, 0.037933349609375, 0.0221099853515625, -0.03656005859375, 0.010223388671875, 0.0308074951171875, -0.039581298828125, 0.046722412109375, -0.044708251953125, 0.017059326171875, -0.0184478759765625, 0.01473236083984375, -0.06353759765625, -0.016082763671875, 0.044830322265625, -0.01549530029296875, 0.0022525787353515625, -0.01166534423828125, -0.0333251953125, -0.032257080078125, -0.035675048828125, 0.029327392578125, 0.08721923828125, -0.01473236083984375, 0.01351165771484375, 0.0022220611572265625, 0.0192413330078125, -0.037689208984375, -0.068115234375, -0.0093994140625, -0.0294647216796875, -0.003177642822265625, 0.0311279296875, -0.028839111328125, -0.01209259033203125, -0.0220794677734375, -0.01264190673828125, -0.006748199462890625, 0.000514984130859375, 0.034912109375, 0.01316070556640625, -0.0209197998046875, -0.0111541748046875, 0.00876617431640625, 0.01922607421875, -0.0103607177734375, -0.004596710205078125, 0.045257568359375, -0.002048492431640625, -0.0275421142578125, -0.04193115234375, -0.00464630126953125, 0.032379150390625, 0.03521728515625, 0.092041015625, 0.07476806640625, -0.05181884765625, 0.00499725341796875, -0.031158447265625, 0.00873565673828125, -0.034576416015625, 0.0207977294921875, -0.01629638671875, -0.017242431640625, 0.04339599609375, 0.01666259765625, -0.01739501953125, 0.0634765625, 0.045196533203125, -0.01374053955078125, 0.043212890625, 0.04296875, 0.00687408447265625, 0.026763916015625, -0.04443359375, -0.023651123046875, -0.06170654296875, -0.0296478271484375, -0.03643798828125, -0.052032470703125, 0.00463104248046875, -0.044281005859375, 0.0131072998046875, 0.0400390625, -0.065185546875, 0.0294342041015625, -0.0202178955078125, 0.03350830078125, 0.025665283203125, 0.01168060302734375, 0.0106201171875, 0.00402069091796875, -0.0211944580078125, 0.0010747909545898438, -0.051910400390625, -0.005222320556640625, 0.064208984375, 0.0301513671875, 0.07269287109375, 0.0003218650817871094, 0.050933837890625, 0.0182952880859375, 0.029876708984375, -0.041748046875, 0.041717529296875, 0.005809783935546875, -0.036865234375, -0.006298065185546875, -0.0235595703125, -0.068115234375, 0.005062103271484375, -0.035430908203125, -0.04510498046875, 0.016082763671875, 0.018585205078125, -0.022979736328125, 0.035980224609375, -0.039215087890625, 0.06475830078125, -0.009613037109375, 0.005451202392578125, -0.0177154541015625, -0.0394287109375, 0.005908966064453125, -0.0175628662109375, 0.0304107666015625, -0.019500732421875, -0.021484375, 0.102783203125, -0.053985595703125, 0.064453125, -0.0382080078125, -0.0163116455078125, 0.0156097412109375, -0.018035888671875, 0.038116455078125, -0.0308837890625, -0.01947021484375, 0.01904296875, -0.01016998291015625, -0.0382080078125, -0.017059326171875, 0.031829833984375, -0.053985595703125, -0.0024204254150390625, -0.0278472900390625, -0.01605224609375, 0.00228118896484375, 0.038787841796875, 0.037506103515625, 0.003299713134765625, -0.016876220703125, 0.014862060546875, 0.032745361328125, -0.023590087890625, 0.035003662109375, 0.0408935546875, -0.043243408203125, -0.041229248046875, 0.06500244140625, 0.0012845993041992188, 0.02447509765625, 0.0274810791015625, 0.0210113525390625, 0.003917694091796875, -0.07183837890625, -0.0308837890625, 0.0077667236328125, -0.0726318359375, -0.023101806640625, -0.0269317626953125, -0.028594970703125, -0.0185699462890625, -0.0259552001953125, -0.022918701171875, -0.046783447265625, -0.04205322265625, -0.01128387451171875, 0.033416748046875, 0.07489013671875, 0.012298583984375, 0.060272216796875, -0.0232391357421875, 0.0233612060546875, 0.015228271484375, 0.0254669189453125, -0.014923095703125, -0.058624267578125, -0.040435791015625, 0.0041656494140625, -0.0309906005859375, -0.06463623046875, 0.0224456787109375, 0.0085296630859375, 0.03057861328125, 0.0517578125, -0.011810302734375, 0.04736328125, -0.025848388671875, 0.06396484375, 0.05645751953125, -0.051483154296875, 0.065673828125, -0.043304443359375, 0.032989501953125, 0.0369873046875, 0.0250091552734375, -0.026763916015625, 0.008087158203125, -0.048919677734375, -0.045013427734375, 0.031341552734375, 0.0516357421875, 0.0133514404296875, 0.022979736328125, 0.0268096923828125, 0.010223388671875, 0.04058837890625, -0.0819091796875, -0.0293121337890625, -0.0330810546875, -0.031158447265625, -0.004119873046875, -0.0111541748046875, -0.0103759765625, -0.028839111328125, 0.0460205078125, -0.0189208984375, 0.0277862548828125, 0.0016641616821289062, 0.00453948974609375, -0.0231781005859375, 0.00463104248046875, 0.057159423828125, 0.04864501953125, -0.056640625, -0.035614013671875, 0.02410888671875, -0.048736572265625, 0.0076446533203125, -0.00838470458984375, -0.01421356201171875, -0.00452423095703125, 0.0260772705078125, 0.07489013671875, 0.0053863525390625, -0.0340576171875, 0.044189453125, -0.009063720703125, -0.0272064208984375, -0.03240966796875, 0.01007080078125, -0.01171112060546875, -0.01016998291015625, 0.036956787109375, 0.036346435546875, 0.0029735565185546875, -0.023193359375, -0.015869140625, 0.042572021484375, -0.0384521484375, -0.0137481689453125, 0.06536865234375, 0.014007568359375, -0.01233673095703125, 0.032562255859375, -0.00386810302734375, -0.0059661865234375, 0.06756591796875, 0.0606689453125, 0.058013916015625, -0.0117340087890625, 0.015777587890625, 0.037384033203125, 0.0213470458984375, -0.0087890625, 0.04791259765625, 0.0181427001953125, -0.078125, -0.004375457763671875, -0.0697021484375, -0.0176849365234375, 0.01678466796875, -0.045440673828125, 0.046539306640625, -0.05035400390625, -0.0137176513671875, -0.0193939208984375, -0.00936126708984375, -0.04705810546875, 0.043182373046875, 0.0137786865234375, 0.09478759765625, -0.04827880859375, 0.05609130859375, 0.054962158203125, -0.018798828125, -0.05865478515625, 0.000293731689453125, -0.005817413330078125, -0.095458984375, 0.049041748046875, 0.02130126953125, 0.0053253173828125, 0.004608154296875, -0.04193115234375, -0.06378173828125, 0.103759765625, 0.03961181640625, -0.031524658203125, 0.0006270408630371094, -0.0083160400390625, 0.01461029052734375, -0.044158935546875, 0.0005903244018554688, -0.0115203857421875, 0.023406982421875, 0.0343017578125, -0.05377197265625, 0.01175689697265625, -0.0166473388671875, -0.0022830963134765625, -0.0025119781494140625, -0.0548095703125, 0.0673828125, -0.038909912109375, 0.005523681640625, 0.032684326171875, 0.03973388671875, 0.0239715576171875, 0.005702972412109375, 0.056427001953125, 0.0660400390625, 0.03271484375, 0.01052093505859375, 0.08355712890625, -0.01114654541015625, 0.0254669189453125, 0.07733154296875, -0.01763916015625, 0.065673828125, 0.045257568359375, -0.016571044921875, 0.07293701171875, 0.052978515625, -0.002185821533203125, 0.0277099609375, 0.034576416015625, 0.00885009765625, -0.0006284713745117188, 0.006710052490234375, -0.051727294921875, 0.02459716796875, 0.022674560546875, -0.0287322998046875, 0.0008420944213867188, 0.0092620849609375, 0.0199432373046875, -0.034759521484375, -0.044769287109375, 0.0260162353515625, -0.000007569789886474609, -0.0074615478515625, 0.0648193359375, 0.0068359375, 0.050506591796875, -0.07061767578125, -0.0132293701171875, -0.017974853515625, 0.0089263916015625, -0.0218048095703125, -0.047821044921875, 0.01407623291015625, -0.0187225341796875, 0.009124755859375, -0.0205078125, 0.054840087890625, -0.0017786026000976562, -0.06842041015625, 0.018798828125, 0.0188446044921875, 0.00795745849609375, 0.005016326904296875, -0.05902099609375, 0.0316162109375, -0.0013132095336914062, -0.0216217041015625, 0.017364501953125, -0.0100555419921875, 0.0308074951171875, 0.046356201171875, 0.011932373046875, 0.01471710205078125, -0.004932403564453125, 0.019744873046875, 0.060028076171875, -0.059417724609375, -0.04473876953125, -0.04876708984375, 0.03375244140625, -0.00864410400390625, -0.0085906982421875, 0.062255859375, 0.055084228515625, 0.0316162109375, -0.0284576416015625, 0.03302001953125, -0.02587890625, 0.0091552734375, -0.07373046875, 0.063720703125, -0.06793212890625, 0.006824493408203125, -0.051055908203125, -0.058197021484375, -0.00431060791015625, 0.0528564453125, 0.031890869140625, 0.022491455078125, 0.05169677734375, 0.0350341796875, -0.00372314453125, -0.023101806640625, 0.013885498046875, 0.04144287109375, -0.0186920166015625, 0.0237274169921875, 0.031494140625, -0.072021484375, 0.032440185546875, 0.004764556884765625, -0.014190673828125, -0.0004253387451171875, -0.08367919921875, -0.05645751953125, -0.032745361328125, -0.057830810546875, -0.05413818359375, 0.00653076171875, 0.05084228515625, 0.0775146484375, -0.05914306640625, -0.018402099609375, -0.0075225830078125, 0.02264404296875, -0.00827789306640625, -0.0130615234375, 0.0162200927734375, 0.034210205078125, -0.028228759765625, 0.01422119140625, 0.003787994384765625, 0.05419921875, -0.00469970703125, -0.0247650146484375, -0.0222930908203125, -0.004505157470703125, 0.01540374755859375, 0.01468658447265625, -0.022308349609375, -0.0163421630859375, -0.04779052734375, 0.020172119140625, 0.00901031494140625, 0.0308074951171875, -0.072265625, -0.023468017578125, 0.0221099853515625, 0.0025653839111328125, 0.0277862548828125, -0.005954742431640625, 0.01523590087890625, -0.06732177734375, 0.03546142578125, -0.00537109375, 0.05169677734375, 0.01107025146484375, -0.0124359130859375, 0.035491943359375, 0.046356201171875, -0.0157470703125, -0.049224853515625, -0.0137481689453125, -0.1026611328125, -0.0178070068359375, 0.07171630859375, 0.017364501953125, -0.010101318359375, 0.0250091552734375, -0.0224456787109375, -0.0192413330078125, -0.019317626953125, 0.01062774658203125, 0.01812744140625, 0.0039520263671875, -0.017578125, -0.0428466796875, 0.0215606689453125, 0.0028839111328125, -0.06915283203125, -0.040374755859375, 0.020233154296875, 0.04718017578125, 0.0210723876953125, 0.09356689453125, -0.00023996829986572266, 0.0002321004867553711, 0.0209197998046875, 0.011077880859375, 0.0183563232421875, -0.0019426345825195312, -0.01184844970703125, 0.00994110107421875, 0.003894805908203125, -0.04608154296875 ] ]
abdullah0x/bert-finetuned-ner
2023-10-28T05:48:47.000Z
[ "transformers", "tf", "bert", "token-classification", "generated_from_keras_callback", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
token-classification
abdullah0x
null
null
abdullah0x/bert-finetuned-ner
0
2
transformers
2023-10-28T05:35:40
--- license: apache-2.0 base_model: bert-base-cased tags: - generated_from_keras_callback model-index: - name: abdullah0x/bert-finetuned-ner 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. --> # abdullah0x/bert-finetuned-ner This model is a fine-tuned version of [bert-base-cased](https://huggingface.co/bert-base-cased) on an unknown dataset. It achieves the following results on the evaluation set: - Train Loss: 0.0274 - Validation Loss: 0.0533 - 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': 2631, '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: float32 ### Training results | Train Loss | Validation Loss | Epoch | |:----------:|:---------------:|:-----:| | 0.1790 | 0.0639 | 0 | | 0.0480 | 0.0538 | 1 | | 0.0274 | 0.0533 | 2 | ### Framework versions - Transformers 4.33.0 - TensorFlow 2.12.0 - Datasets 2.1.0 - Tokenizers 0.13.3
1,582
[ [ -0.049285888671875, -0.04736328125, 0.0165557861328125, 0.0061187744140625, -0.036468505859375, -0.036712646484375, -0.018218994140625, -0.01288604736328125, 0.005054473876953125, 0.015472412109375, -0.06005859375, -0.04278564453125, -0.050201416015625, -0.0230560302734375, -0.01983642578125, 0.09783935546875, 0.01947021484375, 0.033935546875, -0.0065155029296875, -0.0009164810180664062, -0.0379638671875, -0.04388427734375, -0.07183837890625, -0.055908203125, 0.03900146484375, 0.020843505859375, 0.061279296875, 0.061553955078125, 0.045928955078125, 0.0149383544921875, -0.0338134765625, -0.01317596435546875, -0.04266357421875, -0.03863525390625, 0.005222320556640625, -0.029632568359375, -0.047119140625, -0.013336181640625, 0.048797607421875, 0.04541015625, -0.015472412109375, 0.030029296875, 0.0038890838623046875, 0.035919189453125, -0.033477783203125, 0.01235198974609375, -0.048553466796875, 0.0228118896484375, -0.01488494873046875, -0.00412750244140625, -0.0149993896484375, -0.010345458984375, 0.019744873046875, -0.03546142578125, 0.040008544921875, -0.012847900390625, 0.1026611328125, 0.0251007080078125, -0.010162353515625, -0.00341796875, -0.04754638671875, 0.052276611328125, -0.06884765625, 0.025360107421875, 0.032379150390625, 0.036590576171875, -0.0093994140625, -0.06011962890625, -0.039459228515625, 0.00031256675720214844, 0.00428009033203125, 0.01093292236328125, -0.0236053466796875, 0.005764007568359375, 0.031829833984375, 0.038055419921875, -0.0308074951171875, 0.019073486328125, -0.046051025390625, -0.030181884765625, 0.0357666015625, 0.0221405029296875, -0.0248260498046875, -0.0225372314453125, -0.03094482421875, -0.0272674560546875, -0.0222930908203125, 0.015716552734375, 0.056854248046875, 0.03460693359375, -0.0238037109375, 0.040313720703125, -0.01201629638671875, 0.0474853515625, 0.01490020751953125, -0.004283905029296875, 0.039825439453125, 0.0095672607421875, -0.03643798828125, 0.01294708251953125, 0.050140380859375, 0.046844482421875, 0.01078033447265625, 0.00762939453125, -0.025634765625, -0.0143280029296875, 0.0286102294921875, -0.07489013671875, -0.031341552734375, 0.009368896484375, -0.06207275390625, -0.04937744140625, -0.00873565673828125, -0.04327392578125, 0.0127410888671875, -0.03082275390625, 0.06268310546875, -0.041900634765625, -0.0017042160034179688, 0.006793975830078125, -0.00870513916015625, 0.0266265869140625, 0.008453369140625, -0.05169677734375, 0.031463623046875, 0.04595947265625, 0.037567138671875, 0.01428985595703125, -0.00991058349609375, -0.0011835098266601562, -0.0187225341796875, -0.020477294921875, 0.03192138671875, -0.01393890380859375, -0.0234832763671875, -0.01293182373046875, 0.0205841064453125, 0.0068817138671875, -0.0212554931640625, 0.08184814453125, -0.0333251953125, 0.020660400390625, -0.0252227783203125, -0.053741455078125, -0.0308074951171875, 0.0256195068359375, -0.0455322265625, 0.07391357421875, -0.01322174072265625, -0.047760009765625, 0.0489501953125, -0.032257080078125, -0.0257720947265625, -0.0023708343505859375, 0.00047326087951660156, -0.07440185546875, 0.0033969879150390625, 0.0037441253662109375, 0.04876708984375, -0.0101776123046875, 0.0114593505859375, -0.0309295654296875, -0.03546142578125, -0.017578125, -0.043670654296875, 0.05133056640625, 0.0295562744140625, -0.027801513671875, 0.0003566741943359375, -0.1007080078125, 0.02734375, 0.02044677734375, -0.035919189453125, -0.004047393798828125, -0.0092620849609375, 0.0304412841796875, 0.0045928955078125, 0.032135009765625, -0.046630859375, 0.005207061767578125, -0.033355712890625, 0.025482177734375, 0.056884765625, 0.008453369140625, -0.006572723388671875, -0.033477783203125, 0.0042724609375, 0.0089874267578125, 0.0207672119140625, 0.0126800537109375, -0.039398193359375, -0.07196044921875, -0.00472259521484375, 0.0423583984375, 0.0196075439453125, -0.007053375244140625, 0.0731201171875, 0.005199432373046875, -0.067138671875, -0.03338623046875, -0.0031833648681640625, 0.0296478271484375, 0.055145263671875, 0.0290985107421875, -0.01136016845703125, -0.0382080078125, -0.09722900390625, 0.0191802978515625, 0.00408172607421875, 0.0159149169921875, 0.026947021484375, 0.041259765625, -0.0157470703125, 0.04693603515625, -0.03466796875, -0.01512908935546875, 0.00402069091796875, 0.0122833251953125, 0.045135498046875, 0.06304931640625, 0.0450439453125, -0.036224365234375, -0.007183074951171875, -0.0104217529296875, -0.034637451171875, 0.0171661376953125, -0.0140838623046875, -0.0202789306640625, -0.004825592041015625, 0.01690673828125, -0.032012939453125, 0.04046630859375, 0.0150146484375, -0.0177459716796875, 0.04461669921875, -0.0469970703125, -0.0152435302734375, -0.07958984375, 0.0247344970703125, 0.0063934326171875, -0.0011014938354492188, -0.022430419921875, 0.005901336669921875, 0.0111846923828125, -0.00598907470703125, -0.025665283203125, 0.0273590087890625, 0.002635955810546875, -0.0043487548828125, -0.0088958740234375, -0.036895751953125, -0.004230499267578125, 0.06329345703125, 0.01137542724609375, 0.027069091796875, 0.040313720703125, -0.052581787109375, 0.022216796875, 0.03009033203125, -0.030670166015625, 0.0361328125, -0.07452392578125, 0.01090240478515625, -0.012786865234375, -0.0135345458984375, -0.06170654296875, -0.019622802734375, 0.019683837890625, -0.03375244140625, 0.0146026611328125, -0.0257415771484375, -0.033233642578125, -0.03436279296875, -0.007781982421875, 0.01538848876953125, 0.050628662109375, -0.046112060546875, 0.02032470703125, -0.01360321044921875, 0.0177764892578125, -0.04296875, -0.06243896484375, -0.0210418701171875, -0.006378173828125, -0.0303192138671875, 0.031585693359375, -0.0195465087890625, 0.01708984375, 0.0125885009765625, 0.00031113624572753906, -0.0209503173828125, -0.0009560585021972656, 0.024627685546875, 0.019134521484375, -0.01515960693359375, 0.008331298828125, 0.0197296142578125, -0.00667572021484375, 0.0189361572265625, 0.0083770751953125, 0.05804443359375, -0.019744873046875, -0.0263519287109375, -0.05352783203125, -0.00691986083984375, 0.038055419921875, 0.0009708404541015625, 0.046844482421875, 0.06439208984375, -0.0517578125, 0.005863189697265625, -0.027984619140625, -0.005725860595703125, -0.033416748046875, 0.038665771484375, -0.037109375, -0.0176239013671875, 0.06768798828125, 0.0168609619140625, 0.0149993896484375, 0.08154296875, 0.047821044921875, -0.0106353759765625, 0.0867919921875, 0.021331787109375, -0.0035724639892578125, 0.00995635986328125, -0.05255126953125, -0.017822265625, -0.052337646484375, -0.042205810546875, -0.033477783203125, -0.04229736328125, -0.0533447265625, 0.0177764892578125, 0.01910400390625, 0.017303466796875, -0.0487060546875, 0.0234375, -0.048492431640625, 0.027252197265625, 0.06646728515625, 0.042999267578125, -0.014251708984375, 0.005062103271484375, -0.03558349609375, -0.006229400634765625, -0.061370849609375, -0.0228729248046875, 0.09832763671875, 0.0433349609375, 0.041259765625, -0.01239013671875, 0.051666259765625, 0.017364501953125, -0.00421142578125, -0.058990478515625, 0.03338623046875, -0.004726409912109375, -0.061798095703125, -0.0156402587890625, -0.020904541015625, -0.06903076171875, 0.0014944076538085938, -0.037200927734375, -0.022735595703125, 0.022491455078125, 0.0150909423828125, -0.043121337890625, 0.0272216796875, -0.032135009765625, 0.07403564453125, -0.0198822021484375, -0.017730712890625, -0.0296478271484375, -0.04119873046875, 0.0070953369140625, -0.0004107952117919922, -0.0194091796875, -0.0019245147705078125, 0.0239105224609375, 0.07440185546875, -0.059539794921875, 0.0535888671875, -0.0333251953125, 0.01641845703125, 0.0164031982421875, -0.01297760009765625, 0.042205810546875, 0.00240325927734375, -0.01031494140625, 0.0184173583984375, 0.0017948150634765625, -0.04296875, -0.0128326416015625, 0.058319091796875, -0.0869140625, -0.0017995834350585938, -0.026031494140625, -0.036163330078125, -0.006237030029296875, 0.03558349609375, 0.049591064453125, 0.058990478515625, -0.005191802978515625, 0.021881103515625, 0.04449462890625, -0.0003209114074707031, 0.03472900390625, 0.0119476318359375, 0.01514434814453125, -0.053497314453125, 0.058319091796875, -0.004970550537109375, 0.0066680908203125, -0.00991058349609375, 0.016815185546875, -0.02069091796875, -0.04840087890625, -0.030181884765625, 0.0092010498046875, -0.061553955078125, -0.0212860107421875, -0.01316070556640625, -0.038482666015625, -0.0168304443359375, -0.006420135498046875, -0.036834716796875, -0.0239715576171875, -0.041259765625, -0.01157379150390625, 0.024993896484375, 0.03857421875, -0.01045989990234375, 0.048736572265625, -0.044586181640625, 0.0021762847900390625, 0.0233612060546875, 0.0479736328125, 0.0231170654296875, -0.054779052734375, -0.020355224609375, 0.01174163818359375, -0.0223388671875, -0.03143310546875, 0.0254058837890625, 0.01470184326171875, 0.06182861328125, 0.053863525390625, -0.0166778564453125, 0.07244873046875, -0.036285400390625, 0.04937744140625, 0.022186279296875, -0.03973388671875, 0.0299530029296875, -0.0170135498046875, 0.0211029052734375, 0.05023193359375, 0.036865234375, -0.0023250579833984375, 0.0009737014770507812, -0.08721923828125, -0.055145263671875, 0.054656982421875, 0.029144287109375, 0.0193328857421875, -0.0026912689208984375, 0.040985107421875, 0.0092620849609375, 0.0173797607421875, -0.05377197265625, -0.049163818359375, -0.019927978515625, -0.0146331787109375, 0.0120849609375, -0.032928466796875, -0.00508880615234375, -0.04840087890625, 0.0814208984375, 0.01538848876953125, 0.0367431640625, 0.0166168212890625, 0.01454925537109375, -0.018798828125, -0.004913330078125, 0.04913330078125, 0.039703369140625, -0.060028076171875, -0.00876617431640625, 0.015045166015625, -0.032623291015625, -0.0183868408203125, 0.0272064208984375, -0.0024929046630859375, 0.00931549072265625, 0.0197906494140625, 0.07373046875, 0.01358795166015625, -0.01641845703125, 0.0237884521484375, -0.0031337738037109375, -0.033905029296875, -0.037384033203125, 0.0069580078125, -0.02069091796875, 0.017120361328125, 0.0221099853515625, 0.0428466796875, 0.010498046875, -0.01203155517578125, 0.023345947265625, 0.026885986328125, -0.03594970703125, -0.0164031982421875, 0.062103271484375, 0.00725555419921875, -0.020355224609375, 0.050201416015625, -0.01103973388671875, -0.0272674560546875, 0.06768798828125, 0.03271484375, 0.059600830078125, 0.0003437995910644531, -0.01262664794921875, 0.05303955078125, 0.0162811279296875, 0.00009328126907348633, 0.039459228515625, -0.00394439697265625, -0.057464599609375, -0.0200653076171875, -0.052886962890625, -0.020782470703125, 0.056488037109375, -0.08929443359375, 0.039703369140625, -0.05145263671875, -0.03656005859375, 0.038787841796875, 0.01445770263671875, -0.06768798828125, 0.047607421875, 0.0264739990234375, 0.08544921875, -0.055694580078125, 0.055633544921875, 0.04266357421875, -0.0192413330078125, -0.054779052734375, -0.0193023681640625, -0.032684326171875, -0.07928466796875, 0.049591064453125, 0.00368499755859375, 0.026275634765625, 0.01535797119140625, -0.039886474609375, -0.0660400390625, 0.07305908203125, 0.01255035400390625, -0.048187255859375, 0.00176239013671875, 0.0149383544921875, 0.04443359375, 0.00350189208984375, 0.0273895263671875, 0.0198211669921875, 0.02685546875, 0.0186920166015625, -0.06805419921875, -0.0136260986328125, -0.0233306884765625, 0.00455474853515625, 0.012115478515625, -0.0538330078125, 0.07177734375, 0.0040435791015625, 0.0303192138671875, 0.02178955078125, 0.03900146484375, 0.01338958740234375, 0.0174102783203125, 0.040008544921875, 0.082763671875, 0.042144775390625, -0.0091400146484375, 0.06695556640625, -0.03558349609375, 0.051025390625, 0.0731201171875, 0.0186614990234375, 0.043731689453125, 0.0223388671875, -0.0164642333984375, 0.03143310546875, 0.0714111328125, -0.0439453125, 0.058197021484375, 0.0066375732421875, 0.0140838623046875, -0.0338134765625, 0.0214080810546875, -0.043609619140625, 0.025360107421875, 0.01045989990234375, -0.055938720703125, -0.03564453125, -0.0166015625, 0.00376129150390625, -0.020538330078125, -0.05181884765625, 0.032989501953125, -0.02899169921875, -0.019744873046875, 0.056427001953125, 0.0179290771484375, 0.035369873046875, -0.046478271484375, -0.010772705078125, 0.0022869110107421875, 0.02862548828125, -0.016845703125, -0.049560546875, 0.0167388916015625, -0.0162506103515625, -0.0249481201171875, 0.0111541748046875, 0.05181884765625, -0.0124359130859375, -0.06573486328125, -0.005031585693359375, 0.01065826416015625, 0.0256195068359375, 0.006725311279296875, -0.07342529296875, -0.0086822509765625, 0.0033054351806640625, -0.023468017578125, 0.0023975372314453125, 0.0136260986328125, 0.0111236572265625, 0.0400390625, 0.053436279296875, 0.0004260540008544922, 0.0034732818603515625, 0.007137298583984375, 0.06561279296875, -0.03912353515625, -0.048492431640625, -0.0567626953125, 0.03399658203125, -0.00812530517578125, -0.06182861328125, 0.037109375, 0.07513427734375, 0.06719970703125, -0.00873565673828125, 0.036712646484375, -0.003643035888671875, 0.0279083251953125, -0.038177490234375, 0.05853271484375, -0.034423828125, -0.00972747802734375, -0.01363372802734375, -0.053466796875, -0.0005621910095214844, 0.05438232421875, -0.00995635986328125, 0.00780487060546875, 0.01275634765625, 0.03790283203125, -0.00772857666015625, 0.0020503997802734375, 0.0185546875, 0.004703521728515625, 0.00518798828125, 0.0312347412109375, 0.0251007080078125, -0.058868408203125, 0.03924560546875, -0.060791015625, 0.0036754608154296875, -0.007282257080078125, -0.057830810546875, -0.07464599609375, -0.0350341796875, -0.030120849609375, -0.018402099609375, -0.0000021457672119140625, 0.070556640625, 0.06903076171875, -0.06207275390625, -0.006572723388671875, -0.0167388916015625, -0.022979736328125, -0.022369384765625, -0.01934814453125, 0.0435791015625, -0.021942138671875, -0.05889892578125, -0.002635955810546875, -0.04107666015625, 0.0240325927734375, -0.01194000244140625, -0.0088043212890625, -0.0038318634033203125, -0.0138092041015625, 0.0172882080078125, 0.00015163421630859375, -0.034912109375, -0.02996826171875, -0.0223388671875, 0.01044464111328125, 0.012237548828125, 0.007137298583984375, -0.050537109375, 0.03302001953125, 0.01419830322265625, 0.031951904296875, 0.060211181640625, -0.01128387451171875, 0.0185546875, -0.0693359375, 0.021087646484375, 0.01364898681640625, 0.035003662109375, -0.003414154052734375, -0.040374755859375, 0.0222930908203125, 0.0179901123046875, -0.041015625, -0.06243896484375, -0.021697998046875, -0.08538818359375, 0.00624847412109375, 0.0699462890625, 0.0097198486328125, -0.02447509765625, 0.03375244140625, -0.0116119384765625, 0.02777099609375, -0.02813720703125, 0.04730224609375, 0.06011962890625, -0.0103302001953125, 0.00800323486328125, -0.032379150390625, 0.034912109375, 0.032470703125, -0.0268096923828125, -0.0242767333984375, 0.023284912109375, 0.04132080078125, 0.013153076171875, -0.002330780029296875, -0.003387451171875, 0.03265380859375, -0.004978179931640625, 0.033111572265625, -0.0364990234375, -0.01012420654296875, -0.032928466796875, 0.006134033203125, 0.000005781650543212891, -0.050262451171875 ] ]
Chhabi/my_awesome_qa_model
2023-10-28T08:51:53.000Z
[ "transformers", "pytorch", "distilbert", "question-answering", "generated_from_trainer", "dataset:squad", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "region:us" ]
question-answering
Chhabi
null
null
Chhabi/my_awesome_qa_model
0
2
transformers
2023-10-28T07:10:23
--- license: apache-2.0 base_model: distilbert-base-uncased tags: - generated_from_trainer datasets: - squad model-index: - name: my_awesome_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. --> # my_awesome_qa_model This model is a fine-tuned version of [distilbert-base-uncased](https://huggingface.co/distilbert-base-uncased) on the squad dataset. It achieves the following results on the evaluation set: - Loss: 4.2907 ## 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: 3 ### Training results | Training Loss | Epoch | Step | Validation Loss | |:-------------:|:-----:|:----:|:---------------:| | No log | 1.0 | 25 | 4.9082 | | No log | 2.0 | 50 | 4.3927 | | No log | 3.0 | 75 | 4.2907 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,427
[ [ -0.0286407470703125, -0.04779052734375, 0.018218994140625, 0.0179290771484375, -0.0242462158203125, -0.005218505859375, 0.00928497314453125, -0.01331329345703125, 0.00547027587890625, 0.0195159912109375, -0.06317138671875, -0.04620361328125, -0.043182373046875, -0.00528717041015625, -0.0189666748046875, 0.09326171875, 0.0133209228515625, 0.032470703125, -0.00536346435546875, -0.00629425048828125, -0.04351806640625, -0.06610107421875, -0.05743408203125, -0.046630859375, 0.0098724365234375, 0.0130462646484375, 0.0628662109375, 0.06243896484375, 0.051483154296875, 0.018768310546875, -0.03277587890625, -0.00803375244140625, -0.055572509765625, -0.0269317626953125, -0.003528594970703125, -0.03765869140625, -0.064208984375, -0.0016880035400390625, 0.048736572265625, 0.01432037353515625, -0.024169921875, 0.03448486328125, -0.005435943603515625, 0.03778076171875, -0.03546142578125, 0.032684326171875, -0.043304443359375, 0.0147247314453125, -0.003154754638671875, -0.0261383056640625, -0.0177154541015625, -0.004894256591796875, 0.006717681884765625, -0.03887939453125, 0.034942626953125, -0.0045928955078125, 0.09326171875, 0.0281829833984375, -0.02349853515625, 0.004665374755859375, -0.057861328125, 0.042022705078125, -0.055694580078125, 0.01450347900390625, 0.0288238525390625, 0.044281005859375, 0.0002849102020263672, -0.041748046875, -0.036376953125, -0.007415771484375, 0.006175994873046875, 0.01983642578125, -0.0185089111328125, 0.00838470458984375, 0.045440673828125, 0.041107177734375, -0.03509521484375, 0.0173187255859375, -0.0362548828125, -0.023590087890625, 0.06158447265625, 0.043701171875, -0.007175445556640625, -0.0014219284057617188, -0.039398193359375, -0.0182952880859375, -0.03131103515625, 0.0241851806640625, 0.046295166015625, 0.0109100341796875, -0.0250701904296875, 0.038482666015625, -0.037750244140625, 0.04718017578125, 0.0206146240234375, -0.004497528076171875, 0.04156494140625, -0.0069122314453125, -0.02630615234375, -0.004520416259765625, 0.0576171875, 0.047607421875, 0.0128631591796875, 0.0015745162963867188, -0.03070068359375, -0.007167816162109375, 0.016387939453125, -0.07708740234375, -0.03509521484375, 0.00862884521484375, -0.0305023193359375, -0.046478271484375, 0.015472412109375, -0.03094482421875, 0.01259613037109375, -0.021728515625, 0.040985107421875, -0.034912109375, -0.0145721435546875, 0.01276397705078125, -0.0109405517578125, 0.024322509765625, 0.01279449462890625, -0.052978515625, 0.0167694091796875, 0.021148681640625, 0.03509521484375, 0.00991058349609375, -0.024749755859375, -0.021026611328125, -0.001529693603515625, -0.0221405029296875, 0.0426025390625, -0.004985809326171875, -0.02679443359375, -0.00661468505859375, 0.0154266357421875, -0.00751495361328125, -0.04034423828125, 0.05511474609375, -0.03948974609375, 0.01161956787109375, -0.015869140625, -0.045501708984375, -0.017242431640625, 0.02960205078125, -0.052001953125, 0.0872802734375, 0.0259552001953125, -0.03448486328125, 0.043914794921875, -0.031524658203125, -0.00402069091796875, 0.0101470947265625, -0.0040283203125, -0.0640869140625, 0.004230499267578125, 0.0015039443969726562, 0.039703369140625, -0.01568603515625, 0.02545166015625, -0.03399658203125, -0.039794921875, 0.01239776611328125, -0.03173828125, 0.06695556640625, 0.005706787109375, -0.02593994140625, 0.00881195068359375, -0.08819580078125, 0.032928466796875, 0.023284912109375, -0.036865234375, 0.0104522705078125, -0.0274658203125, 0.0222930908203125, 0.029998779296875, 0.0251312255859375, -0.03277587890625, 0.0157623291015625, -0.012176513671875, 0.0277099609375, 0.0440673828125, 0.00814056396484375, 0.00441741943359375, -0.027435302734375, 0.0305023193359375, 0.0204620361328125, 0.03985595703125, 0.0181884765625, -0.034149169921875, -0.0552978515625, -0.0304412841796875, 0.0180816650390625, 0.0247955322265625, -0.026092529296875, 0.06829833984375, 0.006134033203125, -0.055755615234375, -0.0279541015625, 0.005634307861328125, 0.040252685546875, 0.044219970703125, 0.03729248046875, -0.01084136962890625, -0.037628173828125, -0.087158203125, 0.017364501953125, -0.02764892578125, 0.0162506103515625, -0.00853729248046875, 0.052337646484375, -0.0151824951171875, 0.06396484375, -0.03973388671875, -0.02227783203125, -0.0272369384765625, -0.00780487060546875, 0.0291290283203125, 0.05804443359375, 0.06134033203125, -0.038970947265625, -0.0119476318359375, -0.031494140625, -0.059844970703125, 0.0185089111328125, -0.00650787353515625, -0.0293121337890625, -0.01470947265625, 0.01617431640625, -0.045623779296875, 0.05462646484375, 0.018341064453125, -0.0297088623046875, 0.0592041015625, -0.024993896484375, 0.003360748291015625, -0.07861328125, 0.004886627197265625, 0.01226043701171875, -0.00677490234375, -0.030548095703125, 0.0136871337890625, 0.01019287109375, -0.0091705322265625, -0.03192138671875, 0.0303497314453125, -0.00943756103515625, 0.0205230712890625, -0.01444244384765625, -0.039093017578125, 0.01529693603515625, 0.058685302734375, 0.00609588623046875, 0.037811279296875, 0.044219970703125, -0.0406494140625, 0.033233642578125, 0.043701171875, -0.01137542724609375, 0.04278564453125, -0.07525634765625, 0.0034542083740234375, -0.006587982177734375, 0.01235198974609375, -0.061187744140625, -0.0157928466796875, 0.028717041015625, -0.030914306640625, 0.0207977294921875, -0.0160369873046875, -0.033416748046875, -0.0313720703125, -0.008514404296875, 0.0322265625, 0.03863525390625, -0.034942626953125, 0.0070343017578125, 0.00734710693359375, 0.02630615234375, -0.030517578125, -0.04681396484375, -0.0267181396484375, -0.01812744140625, -0.02117919921875, 0.022857666015625, -0.01751708984375, 0.00513458251953125, -0.004119873046875, -0.01044464111328125, -0.0406494140625, -0.0009446144104003906, 0.0361328125, 0.04229736328125, -0.0156097412109375, 0.0036468505859375, -0.0007190704345703125, -0.01324462890625, 0.0184173583984375, 0.014251708984375, 0.044342041015625, -0.0267486572265625, -0.0211639404296875, -0.076171875, 0.0019931793212890625, 0.039337158203125, -0.0154266357421875, 0.069091796875, 0.046905517578125, -0.037384033203125, -0.0005807876586914062, -0.039886474609375, -0.0151519775390625, -0.03179931640625, 0.0537109375, -0.03863525390625, -0.021942138671875, 0.0562744140625, 0.023468017578125, -0.0011873245239257812, 0.07977294921875, 0.03936767578125, -0.0021190643310546875, 0.09716796875, 0.0284423828125, -0.0093841552734375, 0.0177459716796875, -0.06976318359375, -0.01126861572265625, -0.04815673828125, -0.04364013671875, -0.038818359375, -0.0178985595703125, -0.03851318359375, -0.00024175643920898438, 0.0147552490234375, 0.036163330078125, -0.050201416015625, 0.0302276611328125, -0.036956787109375, 0.031829833984375, 0.0400390625, 0.03759765625, 0.0091705322265625, -0.004749298095703125, 0.006237030029296875, 0.000308990478515625, -0.07220458984375, -0.0340576171875, 0.08233642578125, 0.042694091796875, 0.048858642578125, -0.0111846923828125, 0.06097412109375, 0.01003265380859375, 0.0091552734375, -0.053497314453125, 0.035430908203125, 0.020233154296875, -0.074462890625, -0.0166778564453125, -0.03314208984375, -0.03839111328125, 0.002613067626953125, -0.02984619140625, -0.036376953125, 0.0116119384765625, 0.0246124267578125, -0.04144287109375, 0.021087646484375, -0.037811279296875, 0.07806396484375, -0.0231475830078125, -0.021942138671875, -0.01079559326171875, -0.02960205078125, 0.0128326416015625, 0.0098724365234375, -0.0293121337890625, -0.014892578125, 0.0145416259765625, 0.057769775390625, -0.05419921875, 0.04058837890625, -0.02728271484375, 0.028717041015625, 0.037506103515625, -0.01511383056640625, 0.038970947265625, 0.02899169921875, -0.0170745849609375, 0.0227203369140625, 0.0142059326171875, -0.05145263671875, -0.033599853515625, 0.043182373046875, -0.084716796875, -0.01242828369140625, -0.041168212890625, -0.04058837890625, -0.0112152099609375, 0.00791168212890625, 0.049896240234375, 0.057891845703125, -0.014801025390625, 0.0182342529296875, 0.040924072265625, -0.00013935565948486328, 0.0200653076171875, 0.0343017578125, 0.0003170967102050781, -0.0256805419921875, 0.058502197265625, 0.00004547834396362305, 0.0209808349609375, 0.00434112548828125, -0.0001976490020751953, -0.04107666015625, -0.0562744140625, -0.053497314453125, 0.01361846923828125, -0.050140380859375, -0.031585693359375, -0.02069091796875, -0.044097900390625, -0.020782470703125, 0.01488494873046875, -0.038116455078125, -0.028106689453125, -0.041656494140625, -0.0267333984375, 0.027374267578125, 0.043701171875, 0.0130462646484375, 0.055755615234375, -0.048065185546875, -0.0037517547607421875, 0.01229095458984375, 0.0285797119140625, -0.0011730194091796875, -0.0648193359375, -0.03240966796875, 0.0108642578125, -0.03729248046875, -0.05804443359375, 0.030853271484375, 0.01154327392578125, 0.057281494140625, 0.0374755859375, -0.004520416259765625, 0.07177734375, -0.01910400390625, 0.05029296875, 0.0267181396484375, -0.038665771484375, 0.0276336669921875, -0.0200653076171875, 0.0267333984375, 0.057708740234375, 0.043548583984375, 0.017181396484375, -0.01200103759765625, -0.083740234375, -0.0557861328125, 0.054412841796875, 0.0293426513671875, 0.00646209716796875, -0.001560211181640625, 0.03265380859375, -0.0094146728515625, 0.023681640625, -0.051300048828125, -0.037017822265625, -0.0207977294921875, -0.0047607421875, -0.0024967193603515625, -0.0262451171875, -0.01076507568359375, -0.042938232421875, 0.08380126953125, 0.005153656005859375, 0.01812744140625, 0.00855255126953125, -0.0006747245788574219, -0.003223419189453125, 0.00040221214294433594, 0.031982421875, 0.060394287109375, -0.053985595703125, -0.0267181396484375, 0.0191802978515625, -0.0240631103515625, 0.01026153564453125, 0.0167694091796875, -0.0006952285766601562, 0.01285552978515625, 0.0263519287109375, 0.0687255859375, 0.0066070556640625, -0.0248870849609375, 0.03851318359375, -0.01039886474609375, -0.0288543701171875, -0.0288848876953125, 0.01436614990234375, -0.0184478759765625, 0.0219573974609375, 0.031341552734375, 0.0254364013671875, 0.0091705322265625, -0.026947021484375, 0.0146484375, 0.021942138671875, -0.05029296875, -0.0276947021484375, 0.05877685546875, 0.006378173828125, -0.01959228515625, 0.054718017578125, -0.0248260498046875, -0.0290985107421875, 0.0697021484375, 0.032928466796875, 0.060302734375, -0.01129913330078125, 0.0129852294921875, 0.054931640625, 0.0063629150390625, -0.0160675048828125, 0.03326416015625, 0.0159454345703125, -0.03546142578125, -0.01361083984375, -0.055023193359375, -0.0091705322265625, 0.044525146484375, -0.0955810546875, 0.0232391357421875, -0.042022705078125, -0.037628173828125, 0.01531982421875, 0.006626129150390625, -0.09259033203125, 0.043792724609375, -0.0037899017333984375, 0.081787109375, -0.0677490234375, 0.058502197265625, 0.047515869140625, -0.0487060546875, -0.07977294921875, -0.01953125, -0.012298583984375, -0.07757568359375, 0.05645751953125, 0.00684356689453125, 0.0238037109375, 0.015472412109375, -0.029388427734375, -0.0460205078125, 0.0767822265625, 0.027069091796875, -0.057342529296875, -0.0070343017578125, 0.0233001708984375, 0.05841064453125, -0.017791748046875, 0.05712890625, 0.0244293212890625, 0.004619598388671875, 0.00926971435546875, -0.06365966796875, -0.00887298583984375, -0.025421142578125, 0.0089569091796875, -0.00403594970703125, -0.061859130859375, 0.07196044921875, -0.007396697998046875, 0.0222015380859375, 0.023590087890625, 0.040771484375, 0.0216827392578125, 0.021728515625, 0.0294342041015625, 0.0654296875, 0.031158447265625, -0.01068115234375, 0.07568359375, -0.037078857421875, 0.0570068359375, 0.08416748046875, -0.0006198883056640625, 0.044219970703125, 0.021240234375, -0.0204315185546875, 0.0259552001953125, 0.056884765625, -0.01971435546875, 0.036163330078125, 0.0171661376953125, -0.0026264190673828125, -0.0367431640625, 0.01409149169921875, -0.059783935546875, 0.035369873046875, -0.0116729736328125, -0.04290771484375, -0.0223388671875, -0.022735595703125, -0.0120086669921875, -0.01389312744140625, -0.03411865234375, 0.046234130859375, -0.0260009765625, -0.022735595703125, 0.06671142578125, -0.0019893646240234375, 0.0220184326171875, -0.051422119140625, -0.01446533203125, -0.01076507568359375, 0.026885986328125, -0.0230865478515625, -0.039703369140625, 0.0084686279296875, -0.01148223876953125, -0.033721923828125, 0.004077911376953125, 0.0269927978515625, -0.021728515625, -0.062744140625, 0.0025005340576171875, 0.038818359375, 0.01433563232421875, -0.01389312744140625, -0.0784912109375, 0.0015077590942382812, -0.005558013916015625, -0.02337646484375, 0.02227783203125, 0.0182342529296875, 0.0013065338134765625, 0.0439453125, 0.037384033203125, -0.0018396377563476562, 0.003635406494140625, 0.0063629150390625, 0.07916259765625, -0.040008544921875, -0.048614501953125, -0.063720703125, 0.04693603515625, -0.01678466796875, -0.071044921875, 0.04644775390625, 0.0789794921875, 0.06671142578125, -0.0237579345703125, 0.0413818359375, 0.00724029541015625, 0.023468017578125, -0.03253173828125, 0.060028076171875, -0.0287628173828125, 0.0025920867919921875, -0.0197906494140625, -0.06689453125, 0.01146697998046875, 0.04681396484375, -0.01242828369140625, -0.0009183883666992188, 0.0256500244140625, 0.056732177734375, -0.00377655029296875, 0.006572723388671875, 0.021392822265625, -0.0011491775512695312, 0.0190887451171875, 0.03875732421875, 0.052978515625, -0.07037353515625, 0.040313720703125, -0.05084228515625, -0.02349853515625, -0.01317596435546875, -0.041961669921875, -0.08258056640625, -0.0305633544921875, -0.041046142578125, -0.04144287109375, 0.0174713134765625, 0.071044921875, 0.07391357421875, -0.0589599609375, -0.0210723876953125, 0.0023822784423828125, -0.025238037109375, -0.027099609375, -0.018951416015625, 0.0259552001953125, -0.00896453857421875, -0.053253173828125, 0.0036411285400390625, -0.0243072509765625, 0.0230865478515625, -0.01464080810546875, -0.0168914794921875, -0.016082763671875, -0.0303192138671875, 0.0239410400390625, 0.00725555419921875, -0.0220184326171875, -0.020782470703125, -0.0024471282958984375, -0.00830841064453125, 0.01241302490234375, 0.0155181884765625, -0.04620361328125, 0.025421142578125, 0.023040771484375, 0.0274658203125, 0.0418701171875, 0.00428009033203125, 0.02947998046875, -0.048248291015625, 0.0246124267578125, 0.032073974609375, 0.0296630859375, 0.0020542144775390625, -0.0322265625, 0.032257080078125, 0.025543212890625, -0.042266845703125, -0.07037353515625, -0.01102447509765625, -0.0791015625, 0.0147552490234375, 0.07208251953125, -0.007068634033203125, -0.0209503173828125, 0.023406982421875, -0.0224151611328125, 0.0285797119140625, -0.03094482421875, 0.057769775390625, 0.04705810546875, -0.00955963134765625, 0.018035888671875, -0.04095458984375, 0.0406494140625, 0.0260009765625, -0.053863525390625, -0.029510498046875, 0.0355224609375, 0.038665771484375, -0.002178192138671875, 0.0267181396484375, -0.00891876220703125, 0.035980224609375, 0.0012426376342773438, 0.01407623291015625, -0.04205322265625, -0.024169921875, -0.0287017822265625, 0.00620269775390625, 0.0021514892578125, -0.042144775390625 ] ]
TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF
2023-10-28T11:40:50.000Z
[ "transformers", "mistral", "license:mit", "text-generation-inference", "region:us" ]
null
TheBloke
null
null
TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF
2
2
transformers
2023-10-28T07:50:04
--- base_model: RossAscends/Mistral_7B_Dolphin2.1_LIMA0.5_fp16 inference: false license: mit model_creator: Ross Ascends model_name: Mistral 7B Dolphin2.1 Lima0.5 model_type: mistral prompt_template: '<|im_start|>system {system_message}<|im_end|> <|im_start|>user {prompt}<|im_end|> <|im_start|>assistant ' quantized_by: TheBloke --- <!-- markdownlint-disable MD041 --> <!-- header start --> <!-- 200823 --> <div style="width: auto; margin-left: auto; margin-right: auto"> <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;"> </div> <div style="display: flex; justify-content: space-between; width: 100%;"> <div style="display: flex; flex-direction: column; align-items: flex-start;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p> </div> <div style="display: flex; flex-direction: column; align-items: flex-end;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p> </div> </div> <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div> <hr style="margin-top: 1.0em; margin-bottom: 1.0em;"> <!-- header end --> # Mistral 7B Dolphin2.1 Lima0.5 - GGUF - Model creator: [Ross Ascends](https://huggingface.co/RossAscends) - Original model: [Mistral 7B Dolphin2.1 Lima0.5](https://huggingface.co/RossAscends/Mistral_7B_Dolphin2.1_LIMA0.5_fp16) <!-- description start --> ## Description This repo contains GGUF format model files for [Ross Ascends's Mistral 7B Dolphin2.1 Lima0.5](https://huggingface.co/RossAscends/Mistral_7B_Dolphin2.1_LIMA0.5_fp16). These files were quantised using hardware kindly provided by [Massed Compute](https://massedcompute.com/). <!-- description end --> <!-- README_GGUF.md-about-gguf start --> ### About GGUF GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. Here is an incomplate list of clients and libraries that are known to support GGUF: * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option. * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration. * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling. * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration. * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection. * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration. * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server. * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server. * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use. <!-- README_GGUF.md-about-gguf end --> <!-- repositories-available start --> ## Repositories available * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-AWQ) * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GPTQ) * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF) * [Ross Ascends's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/RossAscends/Mistral_7B_Dolphin2.1_LIMA0.5_fp16) <!-- repositories-available end --> <!-- prompt-template start --> ## Prompt template: ChatML ``` <|im_start|>system {system_message}<|im_end|> <|im_start|>user {prompt}<|im_end|> <|im_start|>assistant ``` <!-- prompt-template end --> <!-- compatibility_gguf start --> ## Compatibility These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) They are also compatible with many third party UIs and libraries - please see the list at the top of this README. ## Explanation of quantisation methods <details> <summary>Click to see details</summary> The new methods available are: * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw) * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw. * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw. * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw Refer to the Provided Files table below to see what files use which methods, and how. </details> <!-- compatibility_gguf end --> <!-- README_GGUF.md-provided-files start --> ## Provided files | Name | Quant method | Bits | Size | Max RAM required | Use case | | ---- | ---- | ---- | ---- | ---- | ----- | | [mistral_7b_dolphin2.1_lima0.5.Q2_K.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q2_K.gguf) | Q2_K | 2 | 3.08 GB| 5.58 GB | smallest, significant quality loss - not recommended for most purposes | | [mistral_7b_dolphin2.1_lima0.5.Q3_K_S.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q3_K_S.gguf) | Q3_K_S | 3 | 3.16 GB| 5.66 GB | very small, high quality loss | | [mistral_7b_dolphin2.1_lima0.5.Q3_K_M.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q3_K_M.gguf) | Q3_K_M | 3 | 3.52 GB| 6.02 GB | very small, high quality loss | | [mistral_7b_dolphin2.1_lima0.5.Q3_K_L.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q3_K_L.gguf) | Q3_K_L | 3 | 3.82 GB| 6.32 GB | small, substantial quality loss | | [mistral_7b_dolphin2.1_lima0.5.Q4_0.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q4_0.gguf) | Q4_0 | 4 | 4.11 GB| 6.61 GB | legacy; small, very high quality loss - prefer using Q3_K_M | | [mistral_7b_dolphin2.1_lima0.5.Q4_K_S.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q4_K_S.gguf) | Q4_K_S | 4 | 4.14 GB| 6.64 GB | small, greater quality loss | | [mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf) | Q4_K_M | 4 | 4.37 GB| 6.87 GB | medium, balanced quality - recommended | | [mistral_7b_dolphin2.1_lima0.5.Q5_0.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q5_0.gguf) | Q5_0 | 5 | 5.00 GB| 7.50 GB | legacy; medium, balanced quality - prefer using Q4_K_M | | [mistral_7b_dolphin2.1_lima0.5.Q5_K_S.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q5_K_S.gguf) | Q5_K_S | 5 | 5.00 GB| 7.50 GB | large, low quality loss - recommended | | [mistral_7b_dolphin2.1_lima0.5.Q5_K_M.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q5_K_M.gguf) | Q5_K_M | 5 | 5.13 GB| 7.63 GB | large, very low quality loss - recommended | | [mistral_7b_dolphin2.1_lima0.5.Q6_K.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q6_K.gguf) | Q6_K | 6 | 5.94 GB| 8.44 GB | very large, extremely low quality loss | | [mistral_7b_dolphin2.1_lima0.5.Q8_0.gguf](https://huggingface.co/TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF/blob/main/mistral_7b_dolphin2.1_lima0.5.Q8_0.gguf) | Q8_0 | 8 | 7.70 GB| 10.20 GB | very large, extremely low quality loss - not recommended | **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead. <!-- README_GGUF.md-provided-files end --> <!-- README_GGUF.md-how-to-download start --> ## How to download GGUF files **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file. The following clients/libraries will automatically download models for you, providing a list of available models to choose from: * LM Studio * LoLLMS Web UI * Faraday.dev ### In `text-generation-webui` Under Download Model, you can enter the model repo: TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF and below it, a specific filename to download, such as: mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf. Then click Download. ### On the command line, including multiple files at once I recommend using the `huggingface-hub` Python library: ```shell pip3 install huggingface-hub ``` Then you can download any individual model file to the current directory, at high speed, with a command like this: ```shell huggingface-cli download TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` <details> <summary>More advanced huggingface-cli download usage</summary> You can also download multiple files at once with a pattern: ```shell huggingface-cli download TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf' ``` For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli). To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`: ```shell pip3 install hf_transfer ``` And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`: ```shell HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command. </details> <!-- README_GGUF.md-how-to-download end --> <!-- README_GGUF.md-how-to-run start --> ## Example `llama.cpp` command Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later. ```shell ./main -ngl 32 -m mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "<|im_start|>system\n{system_message}<|im_end|>\n<|im_start|>user\n{prompt}<|im_end|>\n<|im_start|>assistant" ``` Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration. Change `-c 2048` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins` For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md) ## How to run in `text-generation-webui` Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md). ## How to run from Python code You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries. ### How to load this model in Python code, using ctransformers #### First install the package Run one of the following commands, according to your system: ```shell # Base ctransformers with no GPU acceleration pip install ctransformers # Or with CUDA GPU acceleration pip install ctransformers[cuda] # Or with AMD ROCm GPU acceleration (Linux only) CT_HIPBLAS=1 pip install ctransformers --no-binary ctransformers # Or with Metal GPU acceleration for macOS systems only CT_METAL=1 pip install ctransformers --no-binary ctransformers ``` #### Simple ctransformers example code ```python from ctransformers import AutoModelForCausalLM # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system. llm = AutoModelForCausalLM.from_pretrained("TheBloke/Mistral_7B_Dolphin2.1_LIMA0.5-GGUF", model_file="mistral_7b_dolphin2.1_lima0.5.Q4_K_M.gguf", model_type="mistral", gpu_layers=50) print(llm("AI is going to")) ``` ## How to use with LangChain Here are guides on using llama-cpp-python and ctransformers with LangChain: * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp) * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers) <!-- README_GGUF.md-how-to-run end --> <!-- footer start --> <!-- 200823 --> ## Discord For further support, and discussions on these models and AI in general, join us at: [TheBloke AI's Discord server](https://discord.gg/theblokeai) ## Thanks, and how to contribute Thanks to the [chirper.ai](https://chirper.ai) team! Thanks to Clay from [gpus.llm-utils.org](llm-utils)! I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training. If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects. Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits. * Patreon: https://patreon.com/TheBlokeAI * Ko-Fi: https://ko-fi.com/TheBlokeAI **Special thanks to**: Aemon Algiz. **Patreon special mentions**: Brandon Frisco, LangChain4j, Spiking Neurons AB, transmissions 11, Joseph William Delisle, Nitin Borwankar, Willem Michiel, Michael Dempsey, vamX, Jeffrey Morgan, zynix, jjj, Omer Bin Jawed, Sean Connelly, jinyuan sun, Jeromy Smith, Shadi, Pawan Osman, Chadd, Elijah Stavena, Illia Dulskyi, Sebastain Graf, Stephen Murray, terasurfer, Edmond Seymore, Celu Ramasamy, Mandus, Alex, biorpg, Ajan Kanaga, Clay Pascal, Raven Klaugh, 阿明, K, ya boyyy, usrbinkat, Alicia Loh, John Villwock, ReadyPlayerEmma, Chris Smitley, Cap'n Zoog, fincy, GodLy, S_X, sidney chen, Cory Kujawski, OG, Mano Prime, AzureBlack, Pieter, Kalila, Spencer Kim, Tom X Nguyen, Stanislav Ovsiannikov, Michael Levine, Andrey, Trailburnt, Vadim, Enrico Ros, Talal Aujan, Brandon Phillips, Jack West, Eugene Pentland, Michael Davis, Will Dee, webtim, Jonathan Leane, Alps Aficionado, Rooh Singh, Tiffany J. Kim, theTransient, Luke @flexchar, Elle, Caitlyn Gatomon, Ari Malik, subjectnull, Johann-Peter Hartmann, Trenton Dambrowitz, Imad Khwaja, Asp the Wyvern, Emad Mostaque, Rainer Wilmers, Alexandros Triantafyllidis, Nicholas, Pedro Madruga, SuperWojo, Harry Royden McLaughlin, James Bentley, Olakabola, David Ziegler, Ai Maven, Jeff Scroggin, Nikolai Manek, Deo Leter, Matthew Berman, Fen Risland, Ken Nordquist, Manuel Alberto Morcote, Luke Pendergrass, TL, Fred von Graf, Randy H, Dan Guido, NimbleBox.ai, Vitor Caleffi, Gabriel Tamborski, knownsqashed, Lone Striker, Erik Bjäreholt, John Detwiler, Leonard Tan, Iucharbius Thank you to all my generous patrons and donaters! And thank you again to a16z for their generous grant. <!-- footer end --> <!-- original-model-card start --> # Original model card: Ross Ascends's Mistral 7B Dolphin2.1 Lima0.5 ehartford's merge of Mistral 7B 0.1 with his Dolphin 2.1 dataset https://huggingface.co/ehartford/dolphin-2.1-mistral-7b and LIMA RP dataset applied as a lora at 0.5 weight https://huggingface.co/lemonilia/limarp-llama2-v2/ Purpose of the model is to be RP-focused, smart, fast, and lightweight for users with low VRAM. I've already built the exl2 4bpw quant (linked below), and it will run 8k ctx at around 6GB VRAM and respond to a full context at roughly 30tps (tested on my 3060) if exl2_hf loader is used with FA2 enabled. Model has been tested by several users on the SillyTavern discord server, and run on Horde for a full day - with good results. https://huggingface.co/RossAscends/Mistral7B_Dolphin2.1_LIMARP0.5_4bpw_exl2 Mistral or ChatML context presets both possible. exllama v2 4bpw quant: https://huggingface.co/RossAscends/Mistral7B_Dolphin2.1_LIMARP0.5_4bpw_exl2 <!-- original-model-card end -->
18,146
[ [ -0.06787109375, -0.05108642578125, 0.02105712890625, 0.0223236083984375, -0.031982421875, -0.01500701904296875, 0.006137847900390625, -0.049224853515625, 0.03289794921875, 0.017913818359375, -0.05596923828125, -0.031036376953125, -0.04052734375, 0.01499176025390625, 0.006740570068359375, 0.0740966796875, 0.014373779296875, -0.0201568603515625, 0.0147705078125, -0.0233001708984375, -0.013702392578125, -0.021514892578125, -0.0531005859375, -0.030914306640625, 0.041412353515625, 0.0086669921875, 0.06939697265625, 0.048675537109375, 0.0294342041015625, 0.02532958984375, -0.0218505859375, 0.0159149169921875, -0.030487060546875, -0.0203704833984375, 0.006938934326171875, -0.005977630615234375, -0.06964111328125, -0.0036716461181640625, 0.03350830078125, 0.0141143798828125, -0.0185546875, 0.0218048095703125, 0.004299163818359375, 0.06494140625, -0.032806396484375, 0.018707275390625, -0.004558563232421875, 0.0183258056640625, -0.01500701904296875, -0.003833770751953125, -0.0012254714965820312, -0.025909423828125, 0.007579803466796875, -0.0885009765625, 0.004207611083984375, -0.004405975341796875, 0.09417724609375, 0.011016845703125, -0.0291748046875, -0.005615234375, -0.0184173583984375, 0.06536865234375, -0.072021484375, 0.014068603515625, 0.020843505859375, 0.0215301513671875, -0.028076171875, -0.0660400390625, -0.03863525390625, -0.00017082691192626953, -0.00868988037109375, 0.0268707275390625, -0.0416259765625, 0.013153076171875, 0.0313720703125, 0.0560302734375, -0.053741455078125, -0.00891876220703125, -0.0205078125, -0.00341033935546875, 0.05706787109375, -0.00008422136306762695, 0.04827880859375, -0.01210784912109375, -0.032501220703125, -0.0157928466796875, -0.04931640625, 0.00023102760314941406, 0.035430908203125, -0.007358551025390625, -0.053741455078125, 0.043212890625, -0.00928497314453125, 0.047454833984375, 0.01739501953125, -0.03033447265625, 0.0179443359375, -0.027618408203125, -0.03057861328125, -0.0162506103515625, 0.0823974609375, 0.043792724609375, -0.0030536651611328125, 0.0249786376953125, 0.004364013671875, -0.016632080078125, 0.006954193115234375, -0.0731201171875, -0.02825927734375, 0.03131103515625, -0.051605224609375, -0.0224761962890625, -0.0048828125, -0.06939697265625, -0.01523590087890625, 0.0092010498046875, 0.0372314453125, -0.044830322265625, -0.0293731689453125, 0.01458740234375, -0.0304718017578125, 0.0238037109375, 0.0390625, -0.0655517578125, 0.03179931640625, 0.030670166015625, 0.059814453125, 0.006710052490234375, -0.0111236572265625, -0.01922607421875, 0.0193634033203125, -0.02349853515625, 0.032684326171875, -0.01230621337890625, -0.047454833984375, -0.026611328125, 0.01493072509765625, 0.00724029541015625, -0.0225067138671875, 0.0338134765625, -0.006229400634765625, 0.0286407470703125, -0.035400390625, -0.039581298828125, -0.039093017578125, 0.0093231201171875, -0.05340576171875, 0.08209228515625, 0.02313232421875, -0.07965087890625, 0.01241302490234375, -0.05682373046875, -0.01020050048828125, 0.0010633468627929688, 0.0080108642578125, -0.048095703125, -0.00106048583984375, 0.0223388671875, 0.0270538330078125, -0.033599853515625, 0.00628662109375, -0.029571533203125, -0.03350830078125, 0.00789642333984375, -0.01541900634765625, 0.08416748046875, 0.033721923828125, -0.03887939453125, -0.00027489662170410156, -0.06024169921875, 0.0030384063720703125, 0.0274200439453125, -0.0316162109375, 0.006191253662109375, -0.006931304931640625, -0.006488800048828125, 0.0032901763916015625, 0.018646240234375, -0.0294342041015625, 0.029144287109375, -0.001926422119140625, 0.0343017578125, 0.045318603515625, 0.00925445556640625, 0.0164947509765625, -0.044647216796875, 0.038726806640625, -0.005924224853515625, 0.049224853515625, -0.00013017654418945312, -0.063720703125, -0.048065185546875, -0.04443359375, -0.0006656646728515625, 0.030914306640625, -0.052886962890625, 0.048736572265625, 0.00034928321838378906, -0.0548095703125, -0.03729248046875, -0.0000711679458618164, 0.0408935546875, 0.0262298583984375, 0.037017822265625, -0.0268402099609375, -0.0360107421875, -0.0616455078125, 0.0167083740234375, -0.024017333984375, 0.0038509368896484375, 0.051025390625, 0.034515380859375, -0.0186309814453125, 0.041748046875, -0.046661376953125, -0.0302276611328125, -0.01102447509765625, -0.006683349609375, 0.0261383056640625, 0.04840087890625, 0.078125, -0.04791259765625, -0.0228118896484375, 0.005512237548828125, -0.06341552734375, -0.0008730888366699219, 0.008819580078125, -0.01580810546875, 0.0289459228515625, 0.01120758056640625, -0.059967041015625, 0.03662109375, 0.05902099609375, -0.033782958984375, 0.050445556640625, -0.037841796875, 0.018280029296875, -0.07928466796875, 0.021942138671875, 0.0121307373046875, -0.0056304931640625, -0.04144287109375, 0.015655517578125, -0.00824737548828125, 0.00623321533203125, -0.0321044921875, 0.046142578125, -0.04180908203125, -0.006870269775390625, 0.006359100341796875, -0.0096282958984375, 0.003955841064453125, 0.039642333984375, 0.0072174072265625, 0.06878662109375, 0.047637939453125, -0.0411376953125, 0.035125732421875, 0.016082763671875, 0.0014734268188476562, 0.0298614501953125, -0.07177734375, 0.0093994140625, 0.006771087646484375, 0.037506103515625, -0.0740966796875, -0.01922607421875, 0.0455322265625, -0.042816162109375, 0.0261383056640625, -0.032379150390625, -0.0162506103515625, -0.034088134765625, -0.054962158203125, 0.0302276611328125, 0.04931640625, -0.04730224609375, 0.036895751953125, 0.030029296875, 0.0000029206275939941406, -0.050811767578125, -0.050872802734375, 0.0024890899658203125, -0.02313232421875, -0.0426025390625, 0.03106689453125, -0.016204833984375, -0.00698089599609375, 0.007747650146484375, -0.002201080322265625, 0.006954193115234375, 0.0041351318359375, 0.0225982666015625, 0.029144287109375, -0.02923583984375, -0.03570556640625, 0.0005702972412109375, -0.016693115234375, -0.008331298828125, -0.0284271240234375, 0.039794921875, -0.0255584716796875, -0.0142059326171875, -0.038848876953125, 0.005504608154296875, 0.039947509765625, -0.0042266845703125, 0.044708251953125, 0.06787109375, -0.0219268798828125, 0.0088043212890625, -0.041748046875, 0.008697509765625, -0.039215087890625, -0.0052032470703125, -0.0260009765625, -0.0638427734375, 0.050140380859375, 0.0282135009765625, 0.0060577392578125, 0.042144775390625, 0.0195465087890625, 0.0007147789001464844, 0.07843017578125, 0.042510986328125, -0.00730133056640625, 0.036468505859375, -0.04931640625, -0.0026760101318359375, -0.066650390625, -0.0285491943359375, -0.021514892578125, -0.021820068359375, -0.052825927734375, -0.031402587890625, 0.0261383056640625, 0.02703857421875, -0.02764892578125, 0.03497314453125, -0.060150146484375, 0.02056884765625, 0.035675048828125, 0.01515960693359375, 0.006580352783203125, 0.004398345947265625, -0.01123046875, -0.00399017333984375, -0.034698486328125, -0.0221099853515625, 0.07684326171875, 0.0260467529296875, 0.04620361328125, 0.034576416015625, 0.0496826171875, 0.0193328857421875, 0.00423431396484375, -0.040130615234375, 0.054534912109375, -0.00907135009765625, -0.047119140625, -0.0259552001953125, -0.0275726318359375, -0.06524658203125, 0.0250244140625, -0.00872802734375, -0.0648193359375, 0.020172119140625, -0.0014820098876953125, -0.0247039794921875, 0.03924560546875, -0.038421630859375, 0.059814453125, 0.003932952880859375, -0.0290374755859375, -0.0089111328125, -0.044830322265625, 0.041412353515625, 0.01081085205078125, 0.0020656585693359375, -0.02099609375, -0.017486572265625, 0.055755615234375, -0.0670166015625, 0.040496826171875, -0.026611328125, -0.0214691162109375, 0.038299560546875, 0.0007762908935546875, 0.02581787109375, 0.020843505859375, 0.00243377685546875, 0.02001953125, 0.0103759765625, -0.034210205078125, -0.0258636474609375, 0.045135498046875, -0.0672607421875, -0.03778076171875, -0.0455322265625, -0.02386474609375, 0.006290435791015625, 0.00969696044921875, 0.039276123046875, 0.033721923828125, -0.0031528472900390625, 0.0010128021240234375, 0.0543212890625, -0.0310516357421875, 0.04229736328125, 0.0267791748046875, -0.023101806640625, -0.07025146484375, 0.07196044921875, -0.00785064697265625, 0.01372528076171875, 0.0168609619140625, 0.0104827880859375, -0.0276031494140625, -0.033111572265625, -0.05523681640625, 0.028961181640625, -0.0263824462890625, -0.0227508544921875, -0.032989501953125, -0.01763916015625, -0.0254669189453125, -0.0071258544921875, -0.0179443359375, -0.040130615234375, -0.03839111328125, 0.00849151611328125, 0.058258056640625, 0.052490234375, -0.034027099609375, 0.01428985595703125, -0.060699462890625, 0.03253173828125, 0.032928466796875, 0.01531982421875, 0.00531005859375, -0.0361328125, 0.01416778564453125, 0.00868988037109375, -0.0293426513671875, -0.0648193359375, 0.035003662109375, 0.01039886474609375, 0.03863525390625, 0.0445556640625, -0.01800537109375, 0.07977294921875, -0.01258087158203125, 0.080810546875, 0.037628173828125, -0.07147216796875, 0.046417236328125, -0.0477294921875, 0.004329681396484375, 0.014892578125, 0.0321044921875, -0.032196044921875, -0.01468658447265625, -0.056732177734375, -0.04644775390625, 0.05889892578125, 0.0233306884765625, -0.0120086669921875, 0.006244659423828125, 0.0281524658203125, 0.0016450881958007812, 0.0024204254150390625, -0.045135498046875, -0.0516357421875, -0.025909423828125, -0.0013723373413085938, -0.01467132568359375, -0.02130126953125, -0.00522613525390625, -0.0517578125, 0.06884765625, -0.0218963623046875, 0.046539306640625, 0.0309295654296875, 0.0113067626953125, -0.0098114013671875, -0.000926971435546875, 0.0562744140625, 0.038726806640625, -0.0260009765625, -0.006305694580078125, 0.011383056640625, -0.06396484375, 0.0168914794921875, 0.0228424072265625, -0.0155792236328125, 0.005619049072265625, 0.01471710205078125, 0.048675537109375, 0.020263671875, -0.018646240234375, 0.0310821533203125, -0.0159912109375, -0.0245513916015625, -0.005481719970703125, 0.016754150390625, 0.0196075439453125, 0.0214080810546875, 0.02435302734375, -0.00963592529296875, 0.013824462890625, -0.041748046875, 0.00481414794921875, 0.0299530029296875, -0.0267791748046875, -0.0238037109375, 0.06280517578125, -0.0078887939453125, 0.00800323486328125, 0.02734375, -0.035888671875, -0.0269317626953125, 0.058837890625, 0.044403076171875, 0.060638427734375, -0.0206298828125, 0.029449462890625, 0.045013427734375, 0.00641632080078125, -0.0082244873046875, 0.048248291015625, -0.0089111328125, -0.0288238525390625, -0.01473236083984375, -0.047454833984375, -0.035919189453125, 0.0232086181640625, -0.0546875, 0.006916046142578125, -0.054656982421875, -0.0304412841796875, -0.0014286041259765625, 0.0374755859375, -0.0250091552734375, 0.012908935546875, 0.0175933837890625, 0.07666015625, -0.04150390625, 0.07177734375, 0.06341552734375, -0.04071044921875, -0.064208984375, -0.0236053466796875, 0.0186920166015625, -0.05950927734375, 0.01557159423828125, -0.0078582763671875, 0.0015964508056640625, 0.006084442138671875, -0.054351806640625, -0.066162109375, 0.1104736328125, 0.0245361328125, -0.0244293212890625, 0.01374053955078125, -0.004978179931640625, 0.0302276611328125, -0.0141143798828125, 0.0282135009765625, 0.04046630859375, 0.04254150390625, 0.01464080810546875, -0.07440185546875, 0.030731201171875, -0.039886474609375, 0.01088714599609375, 0.01041412353515625, -0.08282470703125, 0.0738525390625, -0.0242156982421875, -0.00885772705078125, 0.0293731689453125, 0.048919677734375, 0.057464599609375, -0.00044083595275878906, 0.0209197998046875, 0.064208984375, 0.059051513671875, -0.0296630859375, 0.07080078125, -0.017242431640625, 0.032257080078125, 0.03228759765625, 0.0016946792602539062, 0.043121337890625, 0.0222015380859375, -0.038055419921875, 0.033966064453125, 0.05596923828125, -0.0218505859375, 0.0325927734375, 0.01251220703125, -0.0259552001953125, 0.0002982616424560547, -0.006267547607421875, -0.057281494140625, -0.005352020263671875, 0.029754638671875, -0.004856109619140625, -0.00665283203125, -0.01041412353515625, 0.0177001953125, -0.039642333984375, -0.02166748046875, 0.049560546875, 0.0129852294921875, -0.031768798828125, 0.062469482421875, -0.006092071533203125, 0.073486328125, -0.047821044921875, -0.0156402587890625, -0.0374755859375, 0.01904296875, -0.0268096923828125, -0.07452392578125, -0.0045928955078125, -0.0034580230712890625, 0.0030574798583984375, 0.0028820037841796875, 0.06109619140625, -0.00453948974609375, -0.0160980224609375, 0.033599853515625, 0.0150604248046875, 0.0275726318359375, 0.006717681884765625, -0.0723876953125, 0.034942626953125, 0.00710296630859375, -0.03350830078125, 0.032684326171875, 0.035491943359375, 0.02410888671875, 0.0643310546875, 0.045684814453125, 0.00673675537109375, 0.01520538330078125, -0.00998687744140625, 0.058685302734375, -0.045806884765625, -0.0239105224609375, -0.05450439453125, 0.0316162109375, -0.00588226318359375, -0.04302978515625, 0.056732177734375, 0.04974365234375, 0.045806884765625, -0.01145172119140625, 0.04931640625, -0.0203094482421875, -0.0036907196044921875, -0.03643798828125, 0.06536865234375, -0.0643310546875, 0.0023555755615234375, -0.04132080078125, -0.060699462890625, -0.016937255859375, 0.0562744140625, 0.0137176513671875, 0.005016326904296875, 0.0230560302734375, 0.050811767578125, -0.00542449951171875, 0.01427459716796875, 0.01110076904296875, 0.001636505126953125, 0.0288238525390625, 0.073486328125, 0.0521240234375, -0.061676025390625, 0.037628173828125, -0.037811279296875, -0.007335662841796875, -0.0184478759765625, -0.072265625, -0.0615234375, -0.034423828125, -0.04608154296875, -0.033203125, 0.0091094970703125, 0.0567626953125, 0.061981201171875, -0.052642822265625, -0.0247802734375, -0.0012149810791015625, 0.002269744873046875, -0.0225982666015625, -0.016937255859375, 0.0338134765625, 0.01326751708984375, -0.0496826171875, 0.018402099609375, 0.030731201171875, 0.047698974609375, -0.0060577392578125, -0.04803466796875, -0.009796142578125, -0.0015583038330078125, 0.040191650390625, 0.055328369140625, -0.052459716796875, -0.0230712890625, -0.0153350830078125, -0.01251220703125, 0.0049591064453125, 0.0123291015625, -0.04180908203125, -0.00274658203125, 0.033172607421875, 0.007083892822265625, 0.055633544921875, -0.0034847259521484375, 0.01666259765625, -0.0286407470703125, 0.0153656005859375, -0.007781982421875, 0.04071044921875, 0.004833221435546875, -0.01198577880859375, 0.061737060546875, 0.0299072265625, -0.0372314453125, -0.056610107421875, -0.0167083740234375, -0.0965576171875, -0.018096923828125, 0.076904296875, -0.0189361572265625, -0.03076171875, 0.0128631591796875, -0.0391845703125, 0.0163421630859375, -0.0247650146484375, 0.030548095703125, 0.036224365234375, -0.0157012939453125, -0.010406494140625, -0.0390625, 0.05206298828125, 0.0095977783203125, -0.06463623046875, -0.01273345947265625, 0.037689208984375, 0.032501220703125, 0.02410888671875, 0.06488037109375, -0.03057861328125, 0.0304107666015625, 0.007358551025390625, 0.016387939453125, -0.0159149169921875, -0.00705718994140625, -0.0300750732421875, -0.007358551025390625, -0.01904296875, -0.023773193359375 ] ]
borggAI/CollectiveCognition-v1-1-Mistral-7B-fnv2
2023-10-28T08:45:31.000Z
[ "transformers", "safetensors", "mistral", "text-generation", "gpt", "llm", "large language model", "h2o-llmstudio", "en", "text-generation-inference", "region:us" ]
text-generation
borggAI
null
null
borggAI/CollectiveCognition-v1-1-Mistral-7B-fnv2
0
2
transformers
2023-10-28T08:40:31
--- language: - en library_name: transformers tags: - gpt - llm - large language model - h2o-llmstudio inference: false thumbnail: https://h2o.ai/etc.clientlibs/h2o/clientlibs/clientlib-site/resources/images/favicon.ico --- # Model Card ## Summary This model was trained using [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio). - Base model: [teknium/CollectiveCognition-v1.1-Mistral-7B](https://huggingface.co/teknium/CollectiveCognition-v1.1-Mistral-7B) ## Usage To use the model with the `transformers` library on a machine with GPUs, first make sure you have the `transformers` library installed. ```bash pip install transformers==4.34.0 ``` Also make sure you are providing your huggingface token to the pipeline if the model is lying in a private repo. - Either leave `token=True` in the `pipeline` and login to hugginface_hub by running ```python import huggingface_hub huggingface_hub.login(<ACCES_TOKEN>) ``` - Or directly pass your <ACCES_TOKEN> to `token` in the `pipeline` ```python from transformers import pipeline generate_text = pipeline( model="borggAI/CollectiveCognition-v1-1-Mistral-7B-fnv2", torch_dtype="auto", trust_remote_code=True, use_fast=True, device_map={"": "cuda:0"}, token=True, ) res = generate_text( "Why is drinking water so healthy?", min_new_tokens=2, max_new_tokens=256, do_sample=False, num_beams=1, temperature=float(0.0), repetition_penalty=float(1.2), renormalize_logits=True ) print(res[0]["generated_text"]) ``` You can print a sample prompt after the preprocessing step to see how it is feed to the tokenizer: ```python print(generate_text.preprocess("Why is drinking water so healthy?")["prompt_text"]) ``` ```bash Why is drinking water so healthy?</s> ``` Alternatively, you can download [h2oai_pipeline.py](h2oai_pipeline.py), store it alongside your notebook, and construct the pipeline yourself from the loaded model and tokenizer. If the model and the tokenizer are fully supported in the `transformers` package, this will allow you to set `trust_remote_code=False`. ```python from h2oai_pipeline import H2OTextGenerationPipeline from transformers import AutoModelForCausalLM, AutoTokenizer tokenizer = AutoTokenizer.from_pretrained( "borggAI/CollectiveCognition-v1-1-Mistral-7B-fnv2", use_fast=True, padding_side="left", trust_remote_code=True, ) model = AutoModelForCausalLM.from_pretrained( "borggAI/CollectiveCognition-v1-1-Mistral-7B-fnv2", torch_dtype="auto", device_map={"": "cuda:0"}, trust_remote_code=True, ) generate_text = H2OTextGenerationPipeline(model=model, tokenizer=tokenizer) res = generate_text( "Why is drinking water so healthy?", min_new_tokens=2, max_new_tokens=256, do_sample=False, num_beams=1, temperature=float(0.0), repetition_penalty=float(1.2), renormalize_logits=True ) print(res[0]["generated_text"]) ``` You may also construct the pipeline from the loaded model and tokenizer yourself and consider the preprocessing steps: ```python from transformers import AutoModelForCausalLM, AutoTokenizer model_name = "borggAI/CollectiveCognition-v1-1-Mistral-7B-fnv2" # either local folder or huggingface model name # Important: The prompt needs to be in the same format the model was trained with. # You can find an example prompt in the experiment logs. prompt = "How are you?</s>" tokenizer = AutoTokenizer.from_pretrained( model_name, use_fast=True, trust_remote_code=True, ) model = AutoModelForCausalLM.from_pretrained( model_name, torch_dtype="auto", device_map={"": "cuda:0"}, trust_remote_code=True, ) model.cuda().eval() inputs = tokenizer(prompt, return_tensors="pt", add_special_tokens=False).to("cuda") # generate configuration can be modified to your needs tokens = model.generate( input_ids=inputs["input_ids"], attention_mask=inputs["attention_mask"], min_new_tokens=2, max_new_tokens=256, do_sample=False, num_beams=1, temperature=float(0.0), repetition_penalty=float(1.2), renormalize_logits=True )[0] tokens = tokens[inputs["input_ids"].shape[1]:] answer = tokenizer.decode(tokens, skip_special_tokens=True) print(answer) ``` ## Quantization and sharding You can load the models using quantization by specifying ```load_in_8bit=True``` or ```load_in_4bit=True```. Also, sharding on multiple GPUs is possible by setting ```device_map=auto```. ## Model Architecture ``` MistralForCausalLM( (model): MistralModel( (embed_tokens): Embedding(32000, 4096, padding_idx=0) (layers): ModuleList( (0-31): 32 x MistralDecoderLayer( (self_attn): MistralAttention( (q_proj): Linear(in_features=4096, out_features=4096, bias=False) (k_proj): Linear(in_features=4096, out_features=1024, bias=False) (v_proj): Linear(in_features=4096, out_features=1024, bias=False) (o_proj): Linear(in_features=4096, out_features=4096, bias=False) (rotary_emb): MistralRotaryEmbedding() ) (mlp): MistralMLP( (gate_proj): Linear(in_features=4096, out_features=14336, bias=False) (up_proj): Linear(in_features=4096, out_features=14336, bias=False) (down_proj): Linear(in_features=14336, out_features=4096, bias=False) (act_fn): SiLUActivation() ) (input_layernorm): MistralRMSNorm() (post_attention_layernorm): MistralRMSNorm() ) ) (norm): MistralRMSNorm() ) (lm_head): Linear(in_features=4096, out_features=32000, bias=False) ) ``` ## Model Configuration This model was trained using H2O LLM Studio and with the configuration in [cfg.yaml](cfg.yaml). Visit [H2O LLM Studio](https://github.com/h2oai/h2o-llmstudio) to learn how to train your own large language models. ## Disclaimer Please read this disclaimer carefully before using the large language model provided in this repository. Your use of the model signifies your agreement to the following terms and conditions. - Biases and Offensiveness: The large language model is trained on a diverse range of internet text data, which may contain biased, racist, offensive, or otherwise inappropriate content. By using this model, you acknowledge and accept that the generated content may sometimes exhibit biases or produce content that is offensive or inappropriate. The developers of this repository do not endorse, support, or promote any such content or viewpoints. - Limitations: The large language model is an AI-based tool and not a human. It may produce incorrect, nonsensical, or irrelevant responses. It is the user's responsibility to critically evaluate the generated content and use it at their discretion. - Use at Your Own Risk: Users of this large language model must assume full responsibility for any consequences that may arise from their use of the tool. The developers and contributors of this repository shall not be held liable for any damages, losses, or harm resulting from the use or misuse of the provided model. - Ethical Considerations: Users are encouraged to use the large language model responsibly and ethically. By using this model, you agree not to use it for purposes that promote hate speech, discrimination, harassment, or any form of illegal or harmful activities. - Reporting Issues: If you encounter any biased, offensive, or otherwise inappropriate content generated by the large language model, please report it to the repository maintainers through the provided channels. Your feedback will help improve the model and mitigate potential issues. - Changes to this Disclaimer: The developers of this repository reserve the right to modify or update this disclaimer at any time without prior notice. It is the user's responsibility to periodically review the disclaimer to stay informed about any changes. By using the large language model provided in this repository, you agree to accept and comply with the terms and conditions outlined in this disclaimer. If you do not agree with any part of this disclaimer, you should refrain from using the model and any content generated by it.
8,176
[ [ -0.0211334228515625, -0.057647705078125, 0.0229644775390625, 0.0146026611328125, -0.021881103515625, -0.0156402587890625, -0.0170135498046875, -0.025115966796875, 0.0059814453125, 0.026153564453125, -0.03204345703125, -0.045074462890625, -0.049346923828125, 0.002002716064453125, -0.01505279541015625, 0.06646728515625, -0.01100921630859375, -0.00167083740234375, -0.0098724365234375, 0.0049896240234375, -0.0079345703125, -0.0452880859375, -0.056976318359375, -0.03466796875, 0.013885498046875, 0.00208282470703125, 0.0360107421875, 0.0469970703125, 0.027008056640625, 0.031402587890625, -0.016815185546875, -0.0015430450439453125, -0.038543701171875, -0.00670623779296875, 0.0028076171875, -0.0338134765625, -0.0235443115234375, 0.000957489013671875, 0.049957275390625, 0.012847900390625, -0.00984954833984375, 0.024505615234375, 0.01190185546875, 0.030731201171875, -0.040679931640625, 0.039398193359375, -0.03826904296875, -0.0005550384521484375, -0.0102691650390625, 0.01157379150390625, -0.0174713134765625, -0.0022945404052734375, 0.006107330322265625, -0.054046630859375, 0.007022857666015625, 0.0034618377685546875, 0.09454345703125, 0.036529541015625, -0.0233154296875, -0.00600433349609375, -0.0258331298828125, 0.060211181640625, -0.072021484375, 0.034088134765625, 0.040191650390625, 0.0000426173210144043, -0.0025119781494140625, -0.063720703125, -0.048187255859375, -0.016326904296875, -0.007045745849609375, 0.020751953125, -0.025238037109375, -0.005062103271484375, 0.0223846435546875, 0.026123046875, -0.03076171875, -0.0061798095703125, -0.03070068359375, -0.02716064453125, 0.051666259765625, 0.0188140869140625, 0.0125579833984375, -0.035125732421875, -0.03875732421875, -0.0172576904296875, -0.0109405517578125, 0.0171051025390625, 0.01318359375, 0.00952911376953125, -0.047454833984375, 0.040069580078125, -0.00902557373046875, 0.037689208984375, 0.01322174072265625, -0.0076904296875, 0.033111572265625, -0.02398681640625, -0.0304107666015625, 0.0023193359375, 0.08685302734375, 0.01202392578125, 0.0028362274169921875, 0.01220703125, -0.0186309814453125, -0.01091766357421875, -0.0019102096557617188, -0.06854248046875, -0.0285186767578125, 0.0302886962890625, -0.03314208984375, -0.039703369140625, 0.004711151123046875, -0.05029296875, -0.0171356201171875, -0.01617431640625, 0.042816162109375, -0.03131103515625, -0.034149169921875, 0.007617950439453125, -0.0199737548828125, 0.0198822021484375, 0.007602691650390625, -0.05926513671875, 0.024810791015625, 0.038909912109375, 0.06707763671875, -0.006130218505859375, -0.030731201171875, -0.0268707275390625, 0.00804901123046875, -0.00952911376953125, 0.03533935546875, -0.01299285888671875, -0.032501220703125, -0.0164031982421875, 0.007007598876953125, -0.0155487060546875, -0.033447265625, 0.034698486328125, -0.0206298828125, 0.0296478271484375, -0.01454925537109375, -0.035675048828125, -0.0160064697265625, 0.02008056640625, -0.034393310546875, 0.0965576171875, 0.0225830078125, -0.0849609375, 0.002918243408203125, -0.0506591796875, -0.01371002197265625, -0.006237030029296875, -0.00933837890625, -0.054931640625, -0.0136566162109375, 0.0153961181640625, 0.035308837890625, -0.01739501953125, 0.027313232421875, -0.0248260498046875, -0.01910400390625, 0.0233154296875, -0.037261962890625, 0.0933837890625, 0.015350341796875, -0.04248046875, 0.020843505859375, -0.0472412109375, -0.005489349365234375, 0.026885986328125, -0.0286712646484375, -0.0160064697265625, -0.0296173095703125, 0.022979736328125, 0.0150909423828125, 0.03570556640625, -0.0248565673828125, 0.0121002197265625, -0.03192138671875, 0.051513671875, 0.0623779296875, 0.015045166015625, 0.0243072509765625, -0.0195465087890625, 0.0256195068359375, 0.02691650390625, 0.02923583984375, 0.0049285888671875, -0.047637939453125, -0.06719970703125, -0.03485107421875, 0.01018524169921875, 0.045166015625, -0.06463623046875, 0.0504150390625, -0.018646240234375, -0.050811767578125, -0.035186767578125, 0.00931549072265625, 0.036285400390625, 0.044921875, 0.03302001953125, -0.00661468505859375, -0.03387451171875, -0.06341552734375, 0.01079559326171875, -0.015228271484375, 0.01557159423828125, 0.026458740234375, 0.06353759765625, -0.040496826171875, 0.056396484375, -0.0576171875, -0.017974853515625, 0.0005617141723632812, 0.010986328125, 0.0277862548828125, 0.047271728515625, 0.031585693359375, -0.051910400390625, -0.01971435546875, -0.005706787109375, -0.06854248046875, 0.004169464111328125, 0.00713348388671875, -0.0289154052734375, 0.0167236328125, 0.039764404296875, -0.0574951171875, 0.0345458984375, 0.04815673828125, -0.039520263671875, 0.04742431640625, -0.0277557373046875, -0.0009260177612304688, -0.11993408203125, 0.0164337158203125, 0.010498046875, -0.006168365478515625, -0.04412841796875, 0.006168365478515625, -0.0033893585205078125, -0.0047760009765625, -0.045928955078125, 0.06475830078125, -0.031890869140625, 0.0187835693359375, -0.007568359375, -0.01271820068359375, 0.0014362335205078125, 0.045196533203125, 0.00311279296875, 0.044342041015625, 0.06011962890625, -0.05633544921875, 0.034759521484375, 0.0236968994140625, -0.0136566162109375, 0.01132965087890625, -0.06781005859375, 0.0014448165893554688, -0.00244903564453125, 0.022369384765625, -0.07025146484375, -0.0247650146484375, 0.036529541015625, -0.043548583984375, 0.0263671875, -0.01358795166015625, -0.02838134765625, -0.037445068359375, -0.016815185546875, 0.0384521484375, 0.04217529296875, -0.041656494140625, 0.0545654296875, 0.027740478515625, 0.00946807861328125, -0.046417236328125, -0.0550537109375, -0.01248931884765625, -0.0280303955078125, -0.04437255859375, 0.0262603759765625, 0.007770538330078125, -0.0225830078125, 0.0038299560546875, 0.00934600830078125, -0.00908660888671875, 0.01488494873046875, 0.040863037109375, 0.027618408203125, -0.0010385513305664062, -0.000988006591796875, 0.0038776397705078125, -0.01204681396484375, 0.01395416259765625, -0.01898193359375, 0.06915283203125, -0.0166015625, -0.01244354248046875, -0.0633544921875, -0.006656646728515625, 0.043914794921875, -0.0254669189453125, 0.054656982421875, 0.07513427734375, -0.046142578125, 0.00229644775390625, -0.03515625, -0.0230712890625, -0.03875732421875, 0.0290985107421875, -0.0226593017578125, -0.056365966796875, 0.053985595703125, 0.0192718505859375, -0.0014886856079101562, 0.059295654296875, 0.052093505859375, -0.00328826904296875, 0.054443359375, 0.027374267578125, -0.020416259765625, 0.03802490234375, -0.057220458984375, -0.003131866455078125, -0.06787109375, -0.02178955078125, -0.0333251953125, -0.0013980865478515625, -0.0457763671875, -0.0416259765625, 0.03155517578125, 0.0120086669921875, -0.043609619140625, 0.0245361328125, -0.043731689453125, 0.0025424957275390625, 0.04705810546875, 0.016571044921875, 0.0022869110107421875, 0.00640869140625, -0.0204315185546875, 0.00458526611328125, -0.044158935546875, -0.0252685546875, 0.06781005859375, 0.048370361328125, 0.049163818359375, -0.007686614990234375, 0.071044921875, 0.003536224365234375, 0.017852783203125, -0.052032470703125, 0.0246734619140625, 0.005779266357421875, -0.049835205078125, -0.029144287109375, -0.0416259765625, -0.06756591796875, 0.02215576171875, -0.0254058837890625, -0.049713134765625, 0.019012451171875, 0.0039043426513671875, -0.0335693359375, 0.0210113525390625, -0.053192138671875, 0.06787109375, -0.01250457763671875, -0.039581298828125, -0.0066986083984375, -0.0288543701171875, 0.038818359375, 0.007450103759765625, 0.017425537109375, 0.003936767578125, -0.0011539459228515625, 0.0706787109375, -0.03546142578125, 0.07073974609375, -0.024383544921875, -0.0111083984375, 0.03997802734375, -0.01517486572265625, 0.022979736328125, 0.0157012939453125, -0.006366729736328125, 0.040191650390625, 0.0029277801513671875, -0.033599853515625, -0.0272674560546875, 0.055328369140625, -0.08563232421875, -0.04510498046875, -0.045135498046875, -0.031707763671875, 0.01523590087890625, 0.022308349609375, 0.037384033203125, 0.0271148681640625, -0.00328826904296875, 0.00384521484375, 0.0426025390625, -0.023284912109375, 0.041015625, 0.00714111328125, -0.0309600830078125, -0.05670166015625, 0.06353759765625, 0.001209259033203125, 0.01568603515625, 0.007755279541015625, 0.0218048095703125, -0.0298919677734375, -0.0175323486328125, -0.03826904296875, 0.0306549072265625, -0.03802490234375, -0.01395416259765625, -0.058013916015625, -0.03167724609375, -0.047271728515625, 0.00946044921875, -0.0276031494140625, -0.01242828369140625, -0.044677734375, 0.0006203651428222656, 0.040130615234375, 0.0382080078125, -0.00626373291015625, 0.022308349609375, -0.056182861328125, 0.0263671875, 0.03009033203125, 0.006916046142578125, 0.004367828369140625, -0.06591796875, -0.0236663818359375, 0.0168914794921875, -0.0303192138671875, -0.050018310546875, 0.039276123046875, -0.004711151123046875, 0.0384521484375, 0.037384033203125, -0.0029430389404296875, 0.05126953125, -0.0117034912109375, 0.0654296875, 0.0176849365234375, -0.0802001953125, 0.03948974609375, -0.0308380126953125, 0.02972412109375, 0.02862548828125, 0.028778076171875, -0.030029296875, -0.0205078125, -0.060577392578125, -0.060699462890625, 0.045379638671875, 0.0288238525390625, 0.010467529296875, 0.001819610595703125, 0.036468505859375, -0.017364501953125, 0.0023365020751953125, -0.06292724609375, -0.0323486328125, -0.0257720947265625, -0.0197906494140625, -0.004608154296875, -0.002532958984375, -0.01464080810546875, -0.048828125, 0.06781005859375, 0.00054168701171875, 0.035675048828125, 0.032623291015625, -0.0012235641479492188, -0.00099945068359375, -0.0028209686279296875, 0.036407470703125, 0.027496337890625, -0.005344390869140625, 0.007450103759765625, 0.0247802734375, -0.05108642578125, 0.003360748291015625, 0.01959228515625, -0.020233154296875, -0.002162933349609375, 0.028533935546875, 0.0772705078125, 0.01016998291015625, -0.02130126953125, 0.04083251953125, -0.01580810546875, -0.0308685302734375, -0.039794921875, 0.01409149169921875, 0.0265960693359375, 0.0181732177734375, 0.02288818359375, 0.002227783203125, -0.0024089813232421875, -0.034759521484375, 0.0082550048828125, 0.03363037109375, -0.03460693359375, -0.0166168212890625, 0.072021484375, 0.002655029296875, -0.0142669677734375, 0.059234619140625, -0.0165557861328125, -0.0528564453125, 0.0587158203125, 0.036712646484375, 0.06878662109375, -0.0166778564453125, 0.006084442138671875, 0.0555419921875, 0.0170135498046875, -0.01459503173828125, 0.0220489501953125, 0.0005769729614257812, -0.0584716796875, -0.01032257080078125, -0.054168701171875, -0.0017910003662109375, 0.01361846923828125, -0.05780029296875, 0.0270233154296875, -0.04364013671875, -0.0281982421875, -0.0107421875, 0.00658416748046875, -0.05267333984375, 0.0162811279296875, 0.017730712890625, 0.057159423828125, -0.07232666015625, 0.07440185546875, 0.04498291015625, -0.0484619140625, -0.07354736328125, -0.0002815723419189453, -0.002986907958984375, -0.06854248046875, 0.04534912109375, 0.01467132568359375, -0.0010232925415039062, 0.016387939453125, -0.0601806640625, -0.0723876953125, 0.10418701171875, 0.015228271484375, -0.029449462890625, -0.0025577545166015625, -0.000164031982421875, 0.041412353515625, -0.01172637939453125, 0.03216552734375, 0.033233642578125, 0.036865234375, 0.0021209716796875, -0.07489013671875, 0.01617431640625, -0.0255889892578125, 0.004474639892578125, -0.002033233642578125, -0.07025146484375, 0.0849609375, -0.02288818359375, -0.01361083984375, -0.0061187744140625, 0.0626220703125, 0.039031982421875, 0.021697998046875, 0.034149169921875, 0.0672607421875, 0.060760498046875, -0.00762939453125, 0.07940673828125, -0.03387451171875, 0.04815673828125, 0.06689453125, 0.0035953521728515625, 0.0697021484375, 0.034637451171875, -0.014404296875, 0.032562255859375, 0.050506591796875, -0.0123138427734375, 0.0238189697265625, 0.0186920166015625, -0.017486572265625, -0.01378631591796875, -0.00934600830078125, -0.040863037109375, 0.0364990234375, 0.02410888671875, -0.0328369140625, 0.005199432373046875, -0.00734710693359375, 0.0125885009765625, -0.0159454345703125, -0.018890380859375, 0.048004150390625, 0.0254669189453125, -0.033203125, 0.07769775390625, 0.00452423095703125, 0.0733642578125, -0.0294342041015625, 0.0014934539794921875, -0.00240325927734375, 0.014739990234375, -0.0233154296875, -0.041900634765625, 0.0024394989013671875, -0.01103973388671875, -0.00911712646484375, -0.0012493133544921875, 0.03277587890625, -0.031951904296875, -0.049407958984375, 0.026641845703125, 0.0242919921875, 0.016754150390625, -0.00919342041015625, -0.07208251953125, 0.00952911376953125, 0.005199432373046875, -0.033721923828125, 0.01375579833984375, 0.0274200439453125, 0.00574493408203125, 0.056365966796875, 0.055206298828125, -0.005260467529296875, 0.00914764404296875, 0.0051422119140625, 0.06878662109375, -0.0545654296875, -0.0260772705078125, -0.07037353515625, 0.03912353515625, -0.00722503662109375, -0.04083251953125, 0.056884765625, 0.064208984375, 0.06207275390625, -0.00690460205078125, 0.058685302734375, 0.002750396728515625, 0.00060272216796875, -0.040191650390625, 0.07574462890625, -0.039276123046875, -0.001617431640625, -0.0159759521484375, -0.06646728515625, 0.0020160675048828125, 0.060699462890625, -0.022979736328125, 0.01110076904296875, 0.04583740234375, 0.0673828125, -0.0018663406372070312, -0.00997161865234375, 0.0089263916015625, 0.045257568359375, 0.0245208740234375, 0.04083251953125, 0.044219970703125, -0.0626220703125, 0.0241851806640625, -0.041656494140625, -0.0157928466796875, -0.00254058837890625, -0.04248046875, -0.07440185546875, -0.06005859375, -0.033050537109375, -0.0517578125, -0.0189971923828125, 0.07916259765625, 0.053985595703125, -0.0526123046875, -0.0252838134765625, 0.0005335807800292969, -0.0025730133056640625, -0.00885772705078125, -0.0227813720703125, 0.036865234375, -0.0089874267578125, -0.05908203125, -0.0002613067626953125, 0.0005192756652832031, 0.0221710205078125, -0.0313720703125, -0.019500732421875, -0.019500732421875, -0.0085296630859375, 0.033050537109375, 0.0088043212890625, -0.049774169921875, -0.00498199462890625, -0.00469970703125, -0.0276031494140625, -0.001194000244140625, 0.021209716796875, -0.036834716796875, 0.0179290771484375, 0.037017822265625, 0.028472900390625, 0.05902099609375, 0.0013980865478515625, 0.0171051025390625, -0.0214080810546875, 0.02191162109375, 0.0005278587341308594, 0.03717041015625, 0.0244293212890625, -0.04364013671875, 0.0233612060546875, 0.0287322998046875, -0.0433349609375, -0.048431396484375, -0.01018524169921875, -0.0848388671875, -0.0160980224609375, 0.107666015625, -0.01155853271484375, -0.05474853515625, -0.0011463165283203125, -0.02490234375, 0.043060302734375, -0.037811279296875, 0.061187744140625, 0.047882080078125, 0.0020046234130859375, -0.00412750244140625, -0.03173828125, 0.03436279296875, 0.01248931884765625, -0.0654296875, 0.0011739730834960938, 0.0240478515625, 0.045501708984375, 0.0181121826171875, 0.053466796875, -0.0122833251953125, 0.00708770751953125, 0.00749969482421875, 0.0239410400390625, -0.01181793212890625, 0.00589752197265625, -0.0303497314453125, -0.0100250244140625, -0.00881195068359375, -0.01412200927734375 ] ]
TheBloke/Echidna-13B-v0.2-AWQ
2023-10-28T09:38:30.000Z
[ "transformers", "safetensors", "llama", "text-generation", "license:cc-by-nc-4.0", "text-generation-inference", "region:us" ]
text-generation
TheBloke
null
null
TheBloke/Echidna-13B-v0.2-AWQ
0
2
transformers
2023-10-28T09:10:23
--- base_model: NeverSleep/Echidna-13b-v0.2 inference: false license: cc-by-nc-4.0 model_creator: NeverSleep model_name: Echidna 13B v0.2 model_type: llama prompt_template: 'Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ' quantized_by: TheBloke --- <!-- markdownlint-disable MD041 --> <!-- header start --> <!-- 200823 --> <div style="width: auto; margin-left: auto; margin-right: auto"> <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;"> </div> <div style="display: flex; justify-content: space-between; width: 100%;"> <div style="display: flex; flex-direction: column; align-items: flex-start;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p> </div> <div style="display: flex; flex-direction: column; align-items: flex-end;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p> </div> </div> <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div> <hr style="margin-top: 1.0em; margin-bottom: 1.0em;"> <!-- header end --> # Echidna 13B v0.2 - AWQ - Model creator: [NeverSleep](https://huggingface.co/NeverSleep) - Original model: [Echidna 13B v0.2](https://huggingface.co/NeverSleep/Echidna-13b-v0.2) <!-- description start --> ## Description This repo contains AWQ model files for [NeverSleep's Echidna 13B v0.2](https://huggingface.co/NeverSleep/Echidna-13b-v0.2). These files were quantised using hardware kindly provided by [Massed Compute](https://massedcompute.com/). ### About AWQ AWQ is an efficient, accurate and blazing-fast low-bit weight quantization method, currently supporting 4-bit quantization. Compared to GPTQ, it offers faster Transformers-based inference with equivalent or better quality compared to the most commonly used GPTQ settings. It is supported by: - [Text Generation Webui](https://github.com/oobabooga/text-generation-webui) - using Loader: AutoAWQ - [vLLM](https://github.com/vllm-project/vllm) - Llama and Mistral models only - [Hugging Face Text Generation Inference (TGI)](https://github.com/huggingface/text-generation-inference) - [AutoAWQ](https://github.com/casper-hansen/AutoAWQ) - for use from Python code <!-- description end --> <!-- repositories-available start --> ## Repositories available * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Echidna-13B-v0.2-AWQ) * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Echidna-13B-v0.2-GPTQ) * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Echidna-13B-v0.2-GGUF) * [NeverSleep's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/NeverSleep/Echidna-13b-v0.2) <!-- repositories-available end --> <!-- prompt-template start --> ## Prompt template: Alpaca ``` Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ``` <!-- prompt-template end --> <!-- licensing start --> ## Licensing The creator of the source model has listed its license as `cc-by-nc-4.0`, and this quantization has therefore used that same license. As this model is based on Llama 2, it is also subject to the Meta Llama 2 license terms, and the license files for that are additionally included. It should therefore be considered as being claimed to be licensed under both licenses. I contacted Hugging Face for clarification on dual licensing but they do not yet have an official position. Should this change, or should Meta provide any feedback on this situation, I will update this section accordingly. In the meantime, any questions regarding licensing, and in particular how these two licenses might interact, should be directed to the original model repository: [NeverSleep's Echidna 13B v0.2](https://huggingface.co/NeverSleep/Echidna-13b-v0.2). <!-- licensing end --> <!-- README_AWQ.md-provided-files start --> ## Provided files, and AWQ parameters For my first release of AWQ models, I am releasing 128g models only. I will consider adding 32g as well if there is interest, and once I have done perplexity and evaluation comparisons, but at this time 32g models are still not fully tested with AutoAWQ and vLLM. Models are released as sharded safetensors files. | Branch | Bits | GS | AWQ Dataset | Seq Len | Size | | ------ | ---- | -- | ----------- | ------- | ---- | | [main](https://huggingface.co/TheBloke/Echidna-13B-v0.2-AWQ/tree/main) | 4 | 128 | [wikitext](https://huggingface.co/datasets/wikitext/viewer/wikitext-2-v1/test) | 4096 | 7.25 GB <!-- README_AWQ.md-provided-files end --> <!-- README_AWQ.md-text-generation-webui start --> ## How to easily download and use this model in [text-generation-webui](https://github.com/oobabooga/text-generation-webui) Please make sure you're using the latest version of [text-generation-webui](https://github.com/oobabooga/text-generation-webui). It is strongly recommended to use the text-generation-webui one-click-installers unless you're sure you know how to make a manual install. 1. Click the **Model tab**. 2. Under **Download custom model or LoRA**, enter `TheBloke/Echidna-13B-v0.2-AWQ`. 3. Click **Download**. 4. The model will start downloading. Once it's finished it will say "Done". 5. In the top left, click the refresh icon next to **Model**. 6. In the **Model** dropdown, choose the model you just downloaded: `Echidna-13B-v0.2-AWQ` 7. Select **Loader: AutoAWQ**. 8. Click Load, and the model will load and is now ready for use. 9. If you want any custom settings, set them and then click **Save settings for this model** followed by **Reload the Model** in the top right. 10. Once you're ready, click the **Text Generation** tab and enter a prompt to get started! <!-- README_AWQ.md-text-generation-webui end --> <!-- README_AWQ.md-use-from-vllm start --> ## Multi-user inference server: vLLM Documentation on installing and using vLLM [can be found here](https://vllm.readthedocs.io/en/latest/). - Please ensure you are using vLLM version 0.2 or later. - When using vLLM as a server, pass the `--quantization awq` parameter. For example: ```shell python3 python -m vllm.entrypoints.api_server --model TheBloke/Echidna-13B-v0.2-AWQ --quantization awq ``` - When using vLLM from Python code, again set `quantization=awq`. For example: ```python from vllm import LLM, SamplingParams prompts = [ "Tell me about AI", "Write a story about llamas", "What is 291 - 150?", "How much wood would a woodchuck chuck if a woodchuck could chuck wood?", ] prompt_template=f'''Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ''' prompts = [prompt_template.format(prompt=prompt) for prompt in prompts] sampling_params = SamplingParams(temperature=0.8, top_p=0.95) llm = LLM(model="TheBloke/Echidna-13B-v0.2-AWQ", quantization="awq", dtype="auto") outputs = llm.generate(prompts, sampling_params) # Print the outputs. for output in outputs: prompt = output.prompt generated_text = output.outputs[0].text print(f"Prompt: {prompt!r}, Generated text: {generated_text!r}") ``` <!-- README_AWQ.md-use-from-vllm start --> <!-- README_AWQ.md-use-from-tgi start --> ## Multi-user inference server: Hugging Face Text Generation Inference (TGI) Use TGI version 1.1.0 or later. The official Docker container is: `ghcr.io/huggingface/text-generation-inference:1.1.0` Example Docker parameters: ```shell --model-id TheBloke/Echidna-13B-v0.2-AWQ --port 3000 --quantize awq --max-input-length 3696 --max-total-tokens 4096 --max-batch-prefill-tokens 4096 ``` Example Python code for interfacing with TGI (requires [huggingface-hub](https://github.com/huggingface/huggingface_hub) 0.17.0 or later): ```shell pip3 install huggingface-hub ``` ```python from huggingface_hub import InferenceClient endpoint_url = "https://your-endpoint-url-here" prompt = "Tell me about AI" prompt_template=f'''Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ''' client = InferenceClient(endpoint_url) response = client.text_generation(prompt, max_new_tokens=128, do_sample=True, temperature=0.7, top_p=0.95, top_k=40, repetition_penalty=1.1) print(f"Model output: ", response) ``` <!-- README_AWQ.md-use-from-tgi end --> <!-- README_AWQ.md-use-from-python start --> ## Inference from Python code using AutoAWQ ### Install the AutoAWQ package Requires: [AutoAWQ](https://github.com/casper-hansen/AutoAWQ) 0.1.1 or later. ```shell pip3 install autoawq ``` If you have problems installing [AutoAWQ](https://github.com/casper-hansen/AutoAWQ) using the pre-built wheels, install it from source instead: ```shell pip3 uninstall -y autoawq git clone https://github.com/casper-hansen/AutoAWQ cd AutoAWQ pip3 install . ``` ### AutoAWQ example code ```python from awq import AutoAWQForCausalLM from transformers import AutoTokenizer model_name_or_path = "TheBloke/Echidna-13B-v0.2-AWQ" # Load tokenizer tokenizer = AutoTokenizer.from_pretrained(model_name_or_path, trust_remote_code=False) # Load model model = AutoAWQForCausalLM.from_quantized(model_name_or_path, fuse_layers=True, trust_remote_code=False, safetensors=True) prompt = "Tell me about AI" prompt_template=f'''Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ''' print("*** Running model.generate:") token_input = tokenizer( prompt_template, return_tensors='pt' ).input_ids.cuda() # Generate output generation_output = model.generate( token_input, do_sample=True, temperature=0.7, top_p=0.95, top_k=40, max_new_tokens=512 ) # Get the tokens from the output, decode them, print them token_output = generation_output[0] text_output = tokenizer.decode(token_output) print("LLM output: ", text_output) """ # Inference should be possible with transformers pipeline as well in future # But currently this is not yet supported by AutoAWQ (correct as of September 25th 2023) from transformers import pipeline print("*** Pipeline:") pipe = pipeline( "text-generation", model=model, tokenizer=tokenizer, max_new_tokens=512, do_sample=True, temperature=0.7, top_p=0.95, top_k=40, repetition_penalty=1.1 ) print(pipe(prompt_template)[0]['generated_text']) """ ``` <!-- README_AWQ.md-use-from-python end --> <!-- README_AWQ.md-compatibility start --> ## Compatibility The files provided are tested to work with: - [text-generation-webui](https://github.com/oobabooga/text-generation-webui) using `Loader: AutoAWQ`. - [vLLM](https://github.com/vllm-project/vllm) version 0.2.0 and later. - [Hugging Face Text Generation Inference (TGI)](https://github.com/huggingface/text-generation-inference) version 1.1.0 and later. - [AutoAWQ](https://github.com/casper-hansen/AutoAWQ) version 0.1.1 and later. <!-- README_AWQ.md-compatibility end --> <!-- footer start --> <!-- 200823 --> ## Discord For further support, and discussions on these models and AI in general, join us at: [TheBloke AI's Discord server](https://discord.gg/theblokeai) ## Thanks, and how to contribute Thanks to the [chirper.ai](https://chirper.ai) team! Thanks to Clay from [gpus.llm-utils.org](llm-utils)! I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training. If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects. Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits. * Patreon: https://patreon.com/TheBlokeAI * Ko-Fi: https://ko-fi.com/TheBlokeAI **Special thanks to**: Aemon Algiz. **Patreon special mentions**: Brandon Frisco, LangChain4j, Spiking Neurons AB, transmissions 11, Joseph William Delisle, Nitin Borwankar, Willem Michiel, Michael Dempsey, vamX, Jeffrey Morgan, zynix, jjj, Omer Bin Jawed, Sean Connelly, jinyuan sun, Jeromy Smith, Shadi, Pawan Osman, Chadd, Elijah Stavena, Illia Dulskyi, Sebastain Graf, Stephen Murray, terasurfer, Edmond Seymore, Celu Ramasamy, Mandus, Alex, biorpg, Ajan Kanaga, Clay Pascal, Raven Klaugh, 阿明, K, ya boyyy, usrbinkat, Alicia Loh, John Villwock, ReadyPlayerEmma, Chris Smitley, Cap'n Zoog, fincy, GodLy, S_X, sidney chen, Cory Kujawski, OG, Mano Prime, AzureBlack, Pieter, Kalila, Spencer Kim, Tom X Nguyen, Stanislav Ovsiannikov, Michael Levine, Andrey, Trailburnt, Vadim, Enrico Ros, Talal Aujan, Brandon Phillips, Jack West, Eugene Pentland, Michael Davis, Will Dee, webtim, Jonathan Leane, Alps Aficionado, Rooh Singh, Tiffany J. Kim, theTransient, Luke @flexchar, Elle, Caitlyn Gatomon, Ari Malik, subjectnull, Johann-Peter Hartmann, Trenton Dambrowitz, Imad Khwaja, Asp the Wyvern, Emad Mostaque, Rainer Wilmers, Alexandros Triantafyllidis, Nicholas, Pedro Madruga, SuperWojo, Harry Royden McLaughlin, James Bentley, Olakabola, David Ziegler, Ai Maven, Jeff Scroggin, Nikolai Manek, Deo Leter, Matthew Berman, Fen Risland, Ken Nordquist, Manuel Alberto Morcote, Luke Pendergrass, TL, Fred von Graf, Randy H, Dan Guido, NimbleBox.ai, Vitor Caleffi, Gabriel Tamborski, knownsqashed, Lone Striker, Erik Bjäreholt, John Detwiler, Leonard Tan, Iucharbius Thank you to all my generous patrons and donaters! And thank you again to a16z for their generous grant. <!-- footer end --> # Original model card: NeverSleep's Echidna 13B v0.2 ![image/png](https://cdn-uploads.huggingface.co/production/uploads/630dfb008df86f1e5becadc3/_Tf-nbMNtTTydVIxA52NL.png) # This model is a collab between [IkariDev](https://huggingface.co/IkariDev) and [Undi](https://huggingface.co/Undi95)! Echidna v0.2 model. Use Alpaca format. Suitable for RP, ERP and general stuff. Echidna v0.3 will be a heavily refined version of this model/recipe! This model seems to be pretty sensitive to your generation settings, experiment until you've found your settings. [Recommended settings - No settings yet(Please suggest some over in the Community tab!)] <!-- description start --> ## Description <!-- [Recommended settings - contributed by localfultonextractor](https://files.catbox.moe/ue0tja.json) --> This repo contains FP16 files of Echidna-13b-v0.2. [FP16 - by IkariDev and Undi](https://huggingface.co/NeverSleep/Echidna-13b-v0.2) <!-- [GGUF - By TheBloke](https://huggingface.co/TheBloke/Athena-v4-GGUF)--> <!-- [GPTQ - By TheBloke](https://huggingface.co/TheBloke/Athena-v4-GPTQ)--> <!-- [exl2 - by waldie](https://huggingface.co/waldie/Athena-v4-8bpw-h8-exl2)--> <!-- [AWQ - By TheBloke](https://huggingface.co/TheBloke/Athena-v4-AWQ)--> <!-- [fp16 - by IkariDev+Undi95](https://huggingface.co/IkariDev/Athena-v4)--> [GGUF - by IkariDev and Undi](https://huggingface.co/NeverSleep/Echidna-13b-v0.2-GGUF) <!-- [OLD(GGUF - by IkariDev+Undi95)](https://huggingface.co/IkariDev/Athena-v4-GGUF)--> ## Ratings: Note: We have permission of all users to upload their ratings, i DONT screenshot random reviews without asking if i can put them here! No ratings yet! If you want your rating to be here, send us a message over on DC and we'll put up a screenshot of it here. DC name is "ikaridev" and "undi". <!-- description end --> <!-- description start --> ## Models+loras used and recipe - Xwin-LM/Xwin-LM-13B-V0.2 - IkariDev/Athena-v3 - Heralax/Cat-0.5 - Undi95/PsyMedRP-v1-13B - cgato/Thespis-13b-v0.4 - KoboldAI/LLaMA2-13B-Tiefighter - Heralax/Augmental-13b-two-epochs - Sao10K/SthenoWriter2.1-L2-13B - Undi95/Storytelling-v2.1-13B-lora - lemonilia/LimaRP-Llama2-13B-v3-EXPERIMENT <!-- description end --> <!-- prompt-template start --> ## Prompt template: Alpaca ``` Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ``` ## Others Undi: If you want to support me, you can [here](https://ko-fi.com/undiai). IkariDev: Visit my [retro/neocities style website](https://ikaridevgit.github.io/) please kek
17,139
[ [ -0.037017822265625, -0.0648193359375, 0.0301971435546875, 0.01226806640625, -0.029571533203125, -0.00946807861328125, 0.007579803466796875, -0.05267333984375, 0.0125885009765625, 0.0260009765625, -0.058135986328125, -0.041717529296875, -0.021759033203125, 0.00478363037109375, -0.01509857177734375, 0.0745849609375, 0.006816864013671875, -0.0284576416015625, -0.0185394287109375, -0.0189361572265625, -0.007221221923828125, -0.036773681640625, -0.038848876953125, -0.00923919677734375, 0.036834716796875, 0.018829345703125, 0.040618896484375, 0.05279541015625, 0.0160980224609375, 0.027313232421875, -0.0064697265625, 0.0124664306640625, -0.011993408203125, 0.00899505615234375, 0.00496673583984375, -0.01483154296875, -0.046539306640625, 0.0029811859130859375, 0.02117919921875, 0.021697998046875, -0.0245513916015625, 0.0223388671875, 0.0001285076141357422, 0.037017822265625, -0.040740966796875, 0.0046539306640625, -0.027069091796875, -0.00814056396484375, -0.0194244384765625, 0.00971221923828125, -0.0140838623046875, -0.0174102783203125, 0.006443023681640625, -0.0667724609375, 0.000022590160369873047, 0.00818634033203125, 0.09307861328125, 0.0224609375, -0.046539306640625, -0.0035305023193359375, -0.02569580078125, 0.0697021484375, -0.0870361328125, 0.01538848876953125, 0.0258331298828125, 0.0114593505859375, -0.0023441314697265625, -0.06805419921875, -0.049102783203125, -0.01776123046875, 0.0019378662109375, 0.0192718505859375, -0.03936767578125, -0.002719879150390625, 0.0197601318359375, 0.0290069580078125, -0.056671142578125, 0.006366729736328125, -0.026885986328125, -0.00936126708984375, 0.0518798828125, 0.021636962890625, 0.034942626953125, -0.031463623046875, -0.0272216796875, -0.024993896484375, -0.03558349609375, 0.0083770751953125, 0.0189208984375, 0.0112762451171875, -0.050537109375, 0.04412841796875, -0.0125579833984375, 0.043426513671875, 0.0200958251953125, 0.0028285980224609375, 0.02032470703125, -0.0230255126953125, -0.035980224609375, -0.0340576171875, 0.09393310546875, 0.03009033203125, -0.0221099853515625, 0.0166015625, 0.005367279052734375, 0.006694793701171875, 0.009857177734375, -0.07537841796875, -0.019622802734375, 0.05181884765625, -0.042510986328125, -0.041595458984375, -0.006557464599609375, -0.06524658203125, -0.01285552978515625, 0.0018091201782226562, 0.03753662109375, -0.0311126708984375, -0.0262603759765625, -0.0032634735107421875, -0.02484130859375, 0.0357666015625, 0.0180816650390625, -0.058807373046875, 0.0313720703125, 0.0210113525390625, 0.04827880859375, 0.00542449951171875, -0.016448974609375, -0.0141143798828125, 0.0111541748046875, -0.00033545494079589844, 0.048370361328125, -0.0099639892578125, -0.0290985107421875, -0.0176849365234375, 0.0153045654296875, 0.006526947021484375, -0.028228759765625, 0.0300140380859375, -0.0168609619140625, 0.021636962890625, -0.0252685546875, -0.04150390625, -0.021759033203125, 0.004276275634765625, -0.052093505859375, 0.07757568359375, 0.0245513916015625, -0.06817626953125, 0.0046844482421875, -0.046630859375, -0.02203369140625, 0.0012226104736328125, 0.001270294189453125, -0.060516357421875, -0.0082244873046875, 0.0163421630859375, 0.0222625732421875, -0.01473236083984375, -0.0074920654296875, -0.0374755859375, -0.00603485107421875, 0.0255279541015625, -0.01474761962890625, 0.10333251953125, 0.018829345703125, -0.04864501953125, 0.0013980865478515625, -0.06292724609375, 0.0188446044921875, 0.034149169921875, -0.024261474609375, 0.00554656982421875, -0.01654052734375, 0.0213470458984375, 0.00839996337890625, 0.026458740234375, -0.03955078125, 0.0210113525390625, -0.0162353515625, 0.055572509765625, 0.049835205078125, 0.00817108154296875, 0.0261077880859375, -0.042938232421875, 0.03729248046875, 0.001010894775390625, 0.03326416015625, -0.0015134811401367188, -0.04315185546875, -0.06768798828125, -0.0226898193359375, 0.02325439453125, 0.044586181640625, -0.04833984375, 0.042755126953125, 0.0215606689453125, -0.060394287109375, -0.03570556640625, -0.01515960693359375, 0.0286865234375, 0.025390625, 0.03790283203125, -0.0082855224609375, -0.054779052734375, -0.061431884765625, -0.0032901763916015625, -0.026275634765625, -0.003147125244140625, 0.034423828125, 0.05059814453125, -0.029296875, 0.043975830078125, -0.040191650390625, -0.01419830322265625, -0.0174407958984375, 0.0115966796875, 0.011810302734375, 0.049102783203125, 0.05914306640625, -0.048065185546875, -0.0372314453125, -0.00817108154296875, -0.0506591796875, -0.026763916015625, 0.0012035369873046875, -0.0294952392578125, 0.0438232421875, 0.00765228271484375, -0.0740966796875, 0.0487060546875, 0.05523681640625, -0.041839599609375, 0.05853271484375, -0.0162353515625, 0.00832366943359375, -0.09210205078125, 0.02032470703125, 0.010589599609375, -0.03338623046875, -0.034942626953125, 0.031982421875, 0.0091094970703125, 0.008819580078125, -0.0289459228515625, 0.0440673828125, -0.041778564453125, 0.01409149169921875, -0.0181121826171875, -0.00399017333984375, 0.0290679931640625, 0.040496826171875, -0.01439666748046875, 0.0458984375, 0.0355224609375, -0.053558349609375, 0.028045654296875, 0.0267333984375, 0.002857208251953125, 0.02557373046875, -0.07244873046875, 0.014923095703125, 0.01520538330078125, 0.0259552001953125, -0.07110595703125, -0.02239990234375, 0.04168701171875, -0.04541015625, 0.0209503173828125, -0.0011320114135742188, -0.02044677734375, -0.040283203125, -0.03753662109375, 0.016754150390625, 0.06744384765625, -0.035430908203125, 0.044219970703125, 0.036712646484375, 0.004119873046875, -0.0367431640625, -0.062744140625, -0.020294189453125, -0.017578125, -0.02996826171875, 0.037933349609375, -0.016632080078125, -0.0166015625, 0.00732421875, -0.004779815673828125, -0.01523590087890625, 0.004055023193359375, 0.0230865478515625, 0.02789306640625, 0.0013093948364257812, -0.0253448486328125, 0.02142333984375, 0.0005817413330078125, 0.000029742717742919922, -0.022247314453125, 0.038238525390625, -0.0017261505126953125, -0.0012598037719726562, -0.0528564453125, 0.024505615234375, 0.039581298828125, -0.0205230712890625, 0.06829833984375, 0.04736328125, -0.02862548828125, -0.01229095458984375, -0.032989501953125, -0.008148193359375, -0.03765869140625, 0.014190673828125, -0.0121917724609375, -0.045257568359375, 0.038116455078125, 0.03009033203125, 0.02117919921875, 0.0552978515625, 0.03729248046875, -0.0291748046875, 0.0704345703125, 0.05352783203125, 0.01251983642578125, 0.0300140380859375, -0.03826904296875, -0.01204681396484375, -0.0748291015625, -0.025604248046875, -0.04351806640625, -0.014617919921875, -0.049285888671875, -0.03509521484375, 0.0224456787109375, 0.005481719970703125, -0.04278564453125, 0.042816162109375, -0.05206298828125, 0.0005097389221191406, 0.043853759765625, 0.0310821533203125, 0.0148468017578125, -0.00817108154296875, -0.0176544189453125, -0.0014009475708007812, -0.036834716796875, -0.03228759765625, 0.07965087890625, 0.01323699951171875, 0.037139892578125, 0.01439666748046875, 0.048980712890625, 0.0079803466796875, 0.0157623291015625, -0.042510986328125, 0.04345703125, -0.0016269683837890625, -0.051971435546875, -0.0225830078125, -0.043243408203125, -0.06732177734375, 0.0233306884765625, -0.007755279541015625, -0.0565185546875, 0.0247802734375, 0.01251983642578125, -0.03228759765625, 0.0260467529296875, -0.034820556640625, 0.061767578125, -0.0042877197265625, -0.025238037109375, 0.001293182373046875, -0.047119140625, 0.0234222412109375, 0.0083770751953125, 0.01291656494140625, -0.0200653076171875, -0.036773681640625, 0.062347412109375, -0.0745849609375, 0.068603515625, -0.0162811279296875, -0.01026153564453125, 0.03424072265625, -0.00836181640625, 0.033538818359375, 0.0012035369873046875, -0.0120086669921875, 0.0168304443359375, 0.01439666748046875, -0.037750244140625, -0.01861572265625, 0.03753662109375, -0.07257080078125, -0.03924560546875, -0.036773681640625, -0.0296173095703125, 0.00905609130859375, 0.01389312744140625, 0.044464111328125, 0.0254058837890625, -0.01047515869140625, 0.00554656982421875, 0.04351806640625, -0.03497314453125, 0.042449951171875, 0.036590576171875, -0.029266357421875, -0.05023193359375, 0.042938232421875, 0.0148468017578125, 0.019622802734375, 0.019561767578125, 0.009307861328125, -0.030609130859375, -0.0213775634765625, -0.059844970703125, 0.019927978515625, -0.028167724609375, -0.036712646484375, -0.068603515625, -0.0184478759765625, -0.03411865234375, 0.006084442138671875, -0.022186279296875, -0.0467529296875, -0.0423583984375, 0.00093841552734375, 0.061309814453125, 0.046905517578125, -0.015838623046875, 0.02447509765625, -0.05218505859375, 0.0301513671875, 0.0267181396484375, 0.0009622573852539062, 0.01157379150390625, -0.056304931640625, -0.00933837890625, 0.01763916015625, -0.0552978515625, -0.08477783203125, 0.0478515625, 0.00659942626953125, 0.0333251953125, 0.0152435302734375, 0.01519012451171875, 0.051849365234375, -0.02362060546875, 0.0648193359375, 0.0099334716796875, -0.08563232421875, 0.0426025390625, -0.043060302734375, 0.031463623046875, 0.02392578125, 0.03515625, -0.0270233154296875, -0.038726806640625, -0.049530029296875, -0.06903076171875, 0.040374755859375, 0.03094482421875, 0.0035915374755859375, 0.01361083984375, 0.0274505615234375, -0.00034165382385253906, 0.0164337158203125, -0.0634765625, -0.045135498046875, -0.0225830078125, -0.01273345947265625, 0.0277557373046875, -0.005672454833984375, -0.0006823539733886719, -0.04754638671875, 0.06768798828125, 0.002902984619140625, 0.0390625, 0.0259552001953125, 0.0009975433349609375, -0.022857666015625, 0.01334381103515625, 0.018280029296875, 0.05078125, -0.01187896728515625, -0.0201416015625, 0.010467529296875, -0.036376953125, 0.01031494140625, 0.028076171875, -0.02685546875, -0.0030956268310546875, 0.008270263671875, 0.056915283203125, 0.01149749755859375, -0.0282745361328125, 0.0299530029296875, -0.0079345703125, -0.03369140625, -0.01174163818359375, 0.0038547515869140625, 0.027496337890625, 0.02618408203125, 0.0390625, -0.01338958740234375, 0.02130126953125, -0.0413818359375, 0.0104827880859375, 0.033843994140625, -0.0025768280029296875, -0.0167694091796875, 0.07965087890625, 0.006526947021484375, -0.0034084320068359375, 0.04461669921875, -0.01788330078125, -0.04217529296875, 0.0780029296875, 0.05230712890625, 0.058074951171875, -0.01861572265625, 0.02716064453125, 0.0411376953125, 0.0135345458984375, 0.0186004638671875, 0.04571533203125, 0.0009908676147460938, -0.0350341796875, -0.0123291015625, -0.051300048828125, -0.03753662109375, 0.013763427734375, -0.059600830078125, 0.01216888427734375, -0.04461669921875, -0.0268402099609375, 0.00007450580596923828, 0.0272674560546875, -0.0411376953125, 0.01788330078125, 0.00849151611328125, 0.062469482421875, -0.0460205078125, 0.05218505859375, 0.05865478515625, -0.04473876953125, -0.07489013671875, -0.00203704833984375, 0.0084991455078125, -0.046630859375, -0.0028362274169921875, 0.01541900634765625, 0.0187530517578125, 0.011383056640625, -0.07196044921875, -0.0595703125, 0.10284423828125, 0.01328277587890625, -0.0518798828125, -0.0013227462768554688, -0.006931304931640625, 0.02972412109375, -0.01044464111328125, 0.03253173828125, 0.0290985107421875, 0.038604736328125, -0.002346038818359375, -0.06854248046875, 0.039398193359375, -0.023223876953125, 0.004932403564453125, 0.00673675537109375, -0.0849609375, 0.0810546875, -0.02203369140625, -0.0170745849609375, 0.049835205078125, 0.05767822265625, 0.05401611328125, 0.00418853759765625, 0.019256591796875, 0.059906005859375, 0.068115234375, -0.00826263427734375, 0.08056640625, -0.01103973388671875, 0.042510986328125, 0.062286376953125, -0.01192474365234375, 0.07196044921875, 0.02886962890625, -0.042083740234375, 0.0596923828125, 0.058807373046875, -0.0160369873046875, 0.0251922607421875, 0.007480621337890625, -0.0182952880859375, -0.003662109375, -0.007068634033203125, -0.0472412109375, 0.01319122314453125, 0.019256591796875, -0.019683837890625, 0.00550079345703125, -0.006237030029296875, 0.010345458984375, -0.023162841796875, -0.0135955810546875, 0.050201416015625, 0.0281219482421875, -0.0173492431640625, 0.059478759765625, 0.003826141357421875, 0.0653076171875, -0.03662109375, -0.00838470458984375, -0.02252197265625, -0.0010786056518554688, -0.0222320556640625, -0.04437255859375, 0.0106201171875, 0.005619049072265625, -0.010345458984375, 0.0091094970703125, 0.04730224609375, -0.0214080810546875, -0.037078857421875, 0.0255584716796875, 0.036102294921875, 0.018585205078125, 0.0007176399230957031, -0.07379150390625, 0.041259765625, -0.00139617919921875, -0.04449462890625, 0.0208587646484375, 0.0322265625, 0.0242156982421875, 0.048492431640625, 0.045745849609375, -0.011993408203125, 0.006771087646484375, -0.01497650146484375, 0.07415771484375, -0.058135986328125, -0.0235443115234375, -0.07244873046875, 0.0601806640625, -0.0093231201171875, -0.0269622802734375, 0.06793212890625, 0.035919189453125, 0.050323486328125, -0.00867462158203125, 0.06805419921875, -0.04193115234375, 0.0244293212890625, -0.0222930908203125, 0.0765380859375, -0.06341552734375, -0.0019197463989257812, -0.0244903564453125, -0.06024169921875, -0.0021820068359375, 0.05126953125, 0.00904083251953125, 0.019500732421875, 0.045440673828125, 0.05169677734375, 0.002384185791015625, -0.004985809326171875, 0.0166015625, 0.033721923828125, 0.00963592529296875, 0.06005859375, 0.050933837890625, -0.07061767578125, 0.047393798828125, -0.04315185546875, -0.0195770263671875, -0.007549285888671875, -0.06671142578125, -0.06280517578125, -0.033966064453125, -0.03411865234375, -0.041900634765625, -0.00030040740966796875, 0.0699462890625, 0.06884765625, -0.0570068359375, -0.0199127197265625, -0.006305694580078125, -0.006496429443359375, -0.01103973388671875, -0.0219879150390625, 0.017913818359375, 0.005741119384765625, -0.060760498046875, 0.01210784912109375, 0.00202178955078125, 0.034912109375, -0.0160675048828125, -0.007579803466796875, -0.0213775634765625, 0.018951416015625, 0.0264892578125, 0.04449462890625, -0.045928955078125, 0.00925445556640625, -0.00963592529296875, -0.0240936279296875, 0.00978851318359375, 0.01190185546875, -0.05712890625, -0.0091552734375, 0.028472900390625, 0.02056884765625, 0.04315185546875, -0.006710052490234375, 0.040283203125, -0.0300140380859375, 0.01654052734375, 0.004711151123046875, 0.0259552001953125, 0.0132904052734375, -0.034027099609375, 0.031707763671875, 0.0098114013671875, -0.052947998046875, -0.0638427734375, -0.002773284912109375, -0.082275390625, -0.02911376953125, 0.07568359375, -0.015716552734375, -0.0477294921875, 0.008941650390625, -0.02435302734375, 0.042083740234375, -0.033538818359375, 0.031524658203125, 0.0243072509765625, -0.005275726318359375, -0.0277099609375, -0.0396728515625, 0.0390625, 0.0219268798828125, -0.08599853515625, -0.002841949462890625, 0.03375244140625, 0.03173828125, -0.004314422607421875, 0.05413818359375, -0.01165008544921875, 0.03228759765625, 0.0023059844970703125, 0.01763916015625, -0.00251007080078125, -0.002288818359375, -0.0193328857421875, -0.01015472412109375, -0.01617431640625, -0.017242431640625 ] ]
syedjunaid1996/model-pradeep-flan-t5-small
2023-10-30T04:44:34.000Z
[ "transformers", "pytorch", "t5", "question-answering", "generated_from_trainer", "dataset:squad", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
question-answering
syedjunaid1996
null
null
syedjunaid1996/model-pradeep-flan-t5-small
0
2
transformers
2023-10-28T09:28:44
--- license: apache-2.0 base_model: google/flan-t5-small tags: - generated_from_trainer datasets: - squad model-index: - name: model-pradeep-flan-t5-small 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. --> # model-pradeep-flan-t5-small This model is a fine-tuned version of [google/flan-t5-small](https://huggingface.co/google/flan-t5-small) 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 | 250 | 5.3372 | ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,260
[ [ -0.033660888671875, -0.039398193359375, 0.00905609130859375, 0.01070404052734375, -0.0257110595703125, -0.0189361572265625, -0.012176513671875, -0.0191650390625, 0.0139923095703125, 0.020660400390625, -0.06475830078125, -0.037078857421875, -0.0469970703125, 0.004688262939453125, -0.01343536376953125, 0.08428955078125, -0.0053863525390625, 0.020111083984375, 0.0106658935546875, -0.002231597900390625, -0.0300445556640625, -0.0482177734375, -0.07049560546875, -0.03948974609375, 0.03265380859375, 0.0291900634765625, 0.04644775390625, 0.0555419921875, 0.052642822265625, 0.0213623046875, -0.0179901123046875, -0.0036334991455078125, -0.05413818359375, -0.02935791015625, -0.0014476776123046875, -0.0330810546875, -0.06829833984375, -0.0030517578125, 0.046630859375, 0.00946807861328125, -0.01287841796875, 0.0341796875, -0.00778961181640625, 0.0205535888671875, -0.033966064453125, 0.034332275390625, -0.0284881591796875, 0.015869140625, -0.01483154296875, -0.0133514404296875, -0.0185089111328125, -0.00164794921875, 0.01287841796875, -0.04620361328125, 0.056243896484375, -0.00737762451171875, 0.09808349609375, 0.0167999267578125, -0.01523590087890625, 0.0022525787353515625, -0.06451416015625, 0.0469970703125, -0.050201416015625, 0.014434814453125, 0.027984619140625, 0.056976318359375, 0.0092315673828125, -0.057830810546875, -0.0285186767578125, -0.01119232177734375, 0.0016126632690429688, 0.01366424560546875, 0.00839996337890625, 0.0099029541015625, 0.032562255859375, 0.028717041015625, -0.033233642578125, 0.00547027587890625, -0.0552978515625, -0.027862548828125, 0.06884765625, 0.0235748291015625, -0.0005197525024414062, 0.00745391845703125, -0.041839599609375, -0.0167388916015625, -0.0294647216796875, 0.010345458984375, 0.039703369140625, 0.020599365234375, -0.031768798828125, 0.0460205078125, -0.0239410400390625, 0.0465087890625, 0.00970458984375, -0.01263427734375, 0.0372314453125, -0.002605438232421875, -0.03167724609375, -0.0016012191772460938, 0.058135986328125, 0.0440673828125, 0.036285400390625, 0.004405975341796875, -0.0340576171875, -0.00838470458984375, 0.0258941650390625, -0.07354736328125, -0.034454345703125, 0.006134033203125, -0.0316162109375, -0.056610107421875, 0.0294189453125, -0.051239013671875, 0.0131683349609375, -0.01654052734375, 0.033050537109375, -0.02886962890625, -0.025115966796875, -0.0016222000122070312, -0.00485992431640625, 0.0224456787109375, 0.021636962890625, -0.053924560546875, 0.016937255859375, 0.02349853515625, 0.0477294921875, 0.0137786865234375, -0.032989501953125, -0.0147552490234375, 0.01483154296875, -0.01776123046875, 0.048919677734375, -0.006031036376953125, -0.035186767578125, 0.0007219314575195312, 0.02972412109375, -0.0254364013671875, -0.035125732421875, 0.06695556640625, -0.0240631103515625, 0.01552581787109375, -0.0172271728515625, -0.0499267578125, -0.01800537109375, 0.01528167724609375, -0.050079345703125, 0.0714111328125, 0.0140380859375, -0.037872314453125, 0.053314208984375, -0.051513671875, -0.0176239013671875, 0.00807952880859375, 0.00244140625, -0.0634765625, 0.0014495849609375, 0.0018787384033203125, 0.04193115234375, -0.01215362548828125, 0.0193939208984375, -0.038330078125, -0.036102294921875, -0.0058746337890625, -0.0170745849609375, 0.0482177734375, 0.0084381103515625, -0.0212249755859375, 0.023834228515625, -0.08013916015625, 0.015411376953125, 0.0284423828125, -0.028167724609375, 0.0289154052734375, -0.022735595703125, 0.0282745361328125, 0.0308685302734375, 0.0220184326171875, -0.033599853515625, 0.01117706298828125, -0.017333984375, 0.038360595703125, 0.044647216796875, 0.0146331787109375, 0.01355743408203125, -0.04766845703125, 0.0272216796875, 0.021026611328125, 0.0294952392578125, 0.0215606689453125, -0.0418701171875, -0.061798095703125, -0.030059814453125, 0.0089263916015625, 0.033172607421875, -0.01953125, 0.058135986328125, -0.0054779052734375, -0.060211181640625, -0.01371002197265625, 0.0167999267578125, 0.016326904296875, 0.040008544921875, 0.0380859375, -0.0063934326171875, -0.03924560546875, -0.0875244140625, -0.0016851425170898438, -0.01093292236328125, 0.0085296630859375, 0.005481719970703125, 0.071044921875, -0.0015573501586914062, 0.0555419921875, -0.032562255859375, -0.028411865234375, -0.037506103515625, -0.00707244873046875, 0.007366180419921875, 0.058319091796875, 0.06524658203125, -0.0307159423828125, -0.01263427734375, -0.02435302734375, -0.05615234375, 0.0169525146484375, -0.00992584228515625, -0.0177459716796875, -0.011932373046875, 0.01153564453125, -0.04425048828125, 0.05853271484375, 0.00881195068359375, -0.0249786376953125, 0.045928955078125, -0.02398681640625, -0.0031299591064453125, -0.0777587890625, 0.01024627685546875, 0.0279693603515625, -0.007289886474609375, -0.0372314453125, 0.004913330078125, 0.007480621337890625, -0.0201263427734375, -0.0439453125, 0.045867919921875, -0.00514984130859375, 0.0163116455078125, -0.01318359375, -0.03375244140625, 0.00302886962890625, 0.052642822265625, 0.0244293212890625, 0.05474853515625, 0.037078857421875, -0.051727294921875, 0.0305328369140625, 0.03717041015625, -0.01477813720703125, 0.032867431640625, -0.07623291015625, 0.00916290283203125, -0.0042266845703125, 0.01535797119140625, -0.05255126953125, -0.036102294921875, 0.03759765625, -0.0252838134765625, 0.0214080810546875, -0.020263671875, -0.032806396484375, -0.029815673828125, -0.00334930419921875, 0.03216552734375, 0.036102294921875, -0.03424072265625, 0.0185699462890625, -0.0037746429443359375, 0.0301055908203125, -0.01462554931640625, -0.052337646484375, -0.02960205078125, -0.0307769775390625, -0.050933837890625, 0.0217742919921875, 0.002117156982421875, 0.006275177001953125, -0.0206756591796875, -0.01019287109375, -0.044769287109375, -0.01213836669921875, 0.02392578125, 0.02154541015625, -0.02008056640625, -0.005802154541015625, -0.018402099609375, -0.01154327392578125, 0.01153564453125, 0.00215911865234375, 0.032989501953125, -0.018951416015625, 0.0013637542724609375, -0.072998046875, -0.0028705596923828125, 0.036895751953125, -0.01358795166015625, 0.08074951171875, 0.067626953125, -0.033660888671875, -0.0102996826171875, -0.032379150390625, -0.0257110595703125, -0.03350830078125, 0.0357666015625, -0.0430908203125, -0.0169219970703125, 0.053314208984375, 0.0108795166015625, 0.006252288818359375, 0.07342529296875, 0.03460693359375, -0.004489898681640625, 0.0732421875, 0.0211944580078125, -0.0012102127075195312, 0.035614013671875, -0.0618896484375, -0.004795074462890625, -0.039154052734375, -0.0360107421875, -0.036712646484375, -0.0286102294921875, -0.039276123046875, -0.004108428955078125, 0.00801849365234375, 0.0201263427734375, -0.0625, 0.0338134765625, -0.03082275390625, 0.0245819091796875, 0.03778076171875, 0.03924560546875, -0.01275634765625, 0.0014591217041015625, 0.0007810592651367188, -0.0100860595703125, -0.068603515625, -0.039337158203125, 0.08221435546875, 0.0379638671875, 0.04266357421875, 0.002796173095703125, 0.060211181640625, 0.0019350051879882812, 0.008056640625, -0.043548583984375, 0.043975830078125, 0.01555633544921875, -0.07257080078125, -0.005306243896484375, -0.0224609375, -0.045562744140625, 0.0005640983581542969, -0.0259552001953125, -0.042724609375, 0.01425933837890625, 0.0195159912109375, -0.0241546630859375, 0.0294647216796875, -0.060089111328125, 0.0914306640625, -0.0208587646484375, -0.036224365234375, -0.00937652587890625, -0.031005859375, 0.0258636474609375, 0.0159759521484375, -0.0251922607421875, -0.004398345947265625, -0.0014133453369140625, 0.064453125, -0.06781005859375, 0.05352783203125, -0.037445068359375, 0.0274658203125, 0.037445068359375, -0.016265869140625, 0.04351806640625, 0.01898193359375, -0.0100250244140625, 0.014678955078125, -0.0016622543334960938, -0.0616455078125, -0.027587890625, 0.043487548828125, -0.08526611328125, -0.01302337646484375, -0.04376220703125, -0.023712158203125, -0.00902557373046875, 0.013275146484375, 0.050628662109375, 0.04119873046875, -0.00980377197265625, 0.017364501953125, 0.028228759765625, 0.0013647079467773438, 0.029083251953125, 0.0143890380859375, 0.007045745849609375, -0.0289764404296875, 0.0634765625, -0.0012493133544921875, 0.021270751953125, 0.003314971923828125, 0.00994873046875, -0.026275634765625, -0.04278564453125, -0.0330810546875, 0.0274200439453125, -0.04364013671875, -0.01430511474609375, -0.00920867919921875, -0.03570556640625, -0.01947021484375, -0.00151824951171875, -0.037322998046875, -0.022125244140625, -0.0460205078125, -0.0193328857421875, 0.0269622802734375, 0.0440673828125, 0.015045166015625, 0.06475830078125, -0.0478515625, -0.0019235610961914062, 0.01055908203125, 0.0289764404296875, -0.01140594482421875, -0.06402587890625, -0.027374267578125, 0.0026798248291015625, -0.028717041015625, -0.06201171875, 0.032623291015625, 0.019012451171875, 0.047332763671875, 0.039794921875, -0.01300811767578125, 0.060821533203125, -0.01363372802734375, 0.0628662109375, 0.01197052001953125, -0.03564453125, 0.041015625, -0.033599853515625, 0.0184783935546875, 0.050628662109375, 0.0233154296875, 0.0277099609375, -0.00469970703125, -0.09881591796875, -0.051239013671875, 0.061981201171875, 0.033233642578125, -0.01128387451171875, 0.01032257080078125, 0.032379150390625, -0.0221405029296875, 0.025787353515625, -0.050384521484375, -0.0261077880859375, -0.031585693359375, -0.0103302001953125, -0.01265716552734375, -0.0224151611328125, -0.010406494140625, -0.041717529296875, 0.08026123046875, 0.0073394775390625, 0.036529541015625, 0.01230621337890625, -0.01140594482421875, -0.00829315185546875, -0.00988006591796875, 0.07061767578125, 0.056915283203125, -0.0499267578125, -0.0330810546875, 0.02020263671875, -0.036834716796875, 0.00412750244140625, 0.0016164779663085938, -0.00994873046875, 0.01218414306640625, 0.04010009765625, 0.07843017578125, 0.0224456787109375, -0.01444244384765625, 0.03265380859375, -0.0077056884765625, -0.0384521484375, -0.036834716796875, 0.0243072509765625, -0.0205230712890625, 0.01163482666015625, 0.01161956787109375, 0.037994384765625, -0.018768310546875, -0.01114654541015625, 0.018035888671875, 0.004711151123046875, -0.0277099609375, -0.03216552734375, 0.0648193359375, 0.01355743408203125, -0.033966064453125, 0.041412353515625, -0.01113128662109375, -0.0201263427734375, 0.06585693359375, 0.030364990234375, 0.0650634765625, -0.0185699462890625, 0.005767822265625, 0.0670166015625, 0.017364501953125, -0.0278167724609375, 0.034210205078125, 0.0174560546875, -0.041595458984375, -0.00710296630859375, -0.039947509765625, -0.004833221435546875, 0.04364013671875, -0.074462890625, 0.03839111328125, -0.056610107421875, -0.0293426513671875, 0.0141143798828125, 0.024383544921875, -0.0916748046875, 0.0472412109375, -0.00568389892578125, 0.09063720703125, -0.0667724609375, 0.0709228515625, 0.056884765625, -0.053741455078125, -0.08087158203125, -0.007633209228515625, -0.00255584716796875, -0.07073974609375, 0.05413818359375, 0.0041351318359375, 0.02423095703125, 0.005706787109375, -0.02886962890625, -0.039306640625, 0.0833740234375, 0.0214080810546875, -0.05523681640625, -0.004032135009765625, 0.0137481689453125, 0.04412841796875, -0.029632568359375, 0.048187255859375, 0.026519775390625, 0.0283660888671875, 0.0185394287109375, -0.064208984375, -0.0170135498046875, -0.0136871337890625, 0.00577545166015625, -0.00658416748046875, -0.0706787109375, 0.072021484375, -0.0020198822021484375, 0.0264434814453125, 0.0156707763671875, 0.044891357421875, 0.01543426513671875, 0.01064300537109375, 0.0310516357421875, 0.047454833984375, 0.039703369140625, -0.01058197021484375, 0.07574462890625, -0.036651611328125, 0.04949951171875, 0.0792236328125, -0.0026416778564453125, 0.041961669921875, 0.02081298828125, -0.0146026611328125, 0.0176849365234375, 0.062744140625, -0.0276947021484375, 0.0308685302734375, 0.007366180419921875, -0.01297760009765625, -0.030059814453125, 0.0285186767578125, -0.043487548828125, 0.028656005859375, 0.004367828369140625, -0.05548095703125, -0.0266571044921875, -0.0242919921875, -0.0101165771484375, -0.0174102783203125, -0.035675048828125, 0.048187255859375, -0.02142333984375, -0.025299072265625, 0.05596923828125, 0.007602691650390625, 0.0244140625, -0.051177978515625, 0.00310516357421875, -0.0088043212890625, 0.03173828125, -0.0232391357421875, -0.0311126708984375, 0.0167694091796875, -0.005397796630859375, -0.0178985595703125, -0.0031261444091796875, 0.048492431640625, -0.022186279296875, -0.0693359375, -0.0026149749755859375, 0.033447265625, 0.013031005859375, 0.00330352783203125, -0.08154296875, 0.002288818359375, -0.0019855499267578125, -0.026275634765625, 0.022674560546875, 0.01177978515625, 0.004123687744140625, 0.04620361328125, 0.0296630859375, 0.012054443359375, 0.0142059326171875, 0.01016998291015625, 0.0499267578125, -0.041961669921875, -0.05181884765625, -0.055755615234375, 0.04058837890625, -0.0197296142578125, -0.06866455078125, 0.0401611328125, 0.06842041015625, 0.06512451171875, -0.029205322265625, 0.048431396484375, 0.01006317138671875, 0.02960205078125, -0.027923583984375, 0.04693603515625, -0.0291900634765625, 0.0023441314697265625, -0.01131439208984375, -0.06231689453125, 0.00251007080078125, 0.07574462890625, -0.0279388427734375, 0.017669677734375, 0.035430908203125, 0.06231689453125, -0.0181427001953125, 0.0199432373046875, 0.0095977783203125, -0.0021514892578125, 0.0271148681640625, 0.03485107421875, 0.0312042236328125, -0.0643310546875, 0.041412353515625, -0.050994873046875, -0.002056121826171875, -0.017425537109375, -0.043670654296875, -0.087646484375, -0.025543212890625, -0.042572021484375, -0.0389404296875, 0.0122222900390625, 0.0721435546875, 0.07672119140625, -0.064697265625, -0.0308685302734375, -0.02008056640625, -0.020294189453125, -0.025787353515625, -0.0185394287109375, 0.0218658447265625, -0.021087646484375, -0.051239013671875, 0.00534820556640625, -0.0307159423828125, 0.032470703125, -0.010711669921875, -0.01910400390625, -0.02606201171875, -0.033905029296875, 0.01042938232421875, 0.0182037353515625, -0.034271240234375, -0.032867431640625, -0.0202178955078125, 0.0008521080017089844, 0.0148162841796875, 0.037841796875, -0.0313720703125, 0.01042938232421875, 0.02142333984375, 0.020233154296875, 0.054534912109375, 0.0046539306640625, 0.047119140625, -0.0633544921875, 0.046600341796875, 0.0255126953125, 0.029022216796875, 0.0020503997802734375, -0.01953125, 0.039520263671875, 0.0343017578125, -0.04168701171875, -0.06304931640625, -0.00894927978515625, -0.06988525390625, 0.0176239013671875, 0.07568359375, -0.0038166046142578125, -0.031524658203125, 0.0264434814453125, -0.0186920166015625, 0.0287628173828125, -0.031463623046875, 0.035888671875, 0.057952880859375, -0.00003075599670410156, -0.007694244384765625, -0.0587158203125, 0.051910400390625, 0.0181121826171875, -0.050537109375, -0.031005859375, 0.0220794677734375, 0.04583740234375, -0.01316070556640625, 0.0235137939453125, 0.011383056640625, 0.02734375, 0.00457763671875, -0.00008231401443481445, -0.03387451171875, -0.03167724609375, -0.0157928466796875, 0.0168304443359375, -0.00521087646484375, -0.041351318359375 ] ]
Heipa207/distilbert-base-uncased-finetuned-emotion
2023-10-28T09:52:17.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:emotion", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
text-classification
Heipa207
null
null
Heipa207/distilbert-base-uncased-finetuned-emotion
0
2
transformers
2023-10-28T09:48:40
--- license: apache-2.0 base_model: distilbert-base-uncased 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.9215 - name: F1 type: f1 value: 0.921176712209087 --- <!-- 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.2242 - Accuracy: 0.9215 - F1: 0.9212 ## 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 | |:-------------:|:-----:|:----:|:---------------:|:--------:|:------:| | No log | 1.0 | 250 | 0.3265 | 0.907 | 0.9055 | | No log | 2.0 | 500 | 0.2242 | 0.9215 | 0.9212 | ### Framework versions - Transformers 4.32.1 - Pytorch 2.1.0 - Datasets 2.12.0 - Tokenizers 0.13.3
1,877
[ [ -0.036834716796875, -0.041839599609375, 0.01389312744140625, 0.022918701171875, -0.026397705078125, -0.020355224609375, -0.01335906982421875, -0.01036834716796875, 0.01012420654296875, 0.00843048095703125, -0.05645751953125, -0.051666259765625, -0.05999755859375, -0.008270263671875, -0.01087188720703125, 0.09039306640625, -0.0005230903625488281, 0.025787353515625, -0.0023345947265625, -0.00372314453125, -0.0253753662109375, -0.055511474609375, -0.044708251953125, -0.054901123046875, 0.02398681640625, 0.0233612060546875, 0.057861328125, 0.04638671875, 0.04443359375, 0.019073486328125, -0.0386962890625, -0.0226287841796875, -0.057342529296875, -0.02703857421875, 0.00958251953125, -0.034759521484375, -0.05816650390625, -0.0018148422241210938, 0.031097412109375, 0.024871826171875, -0.030517578125, 0.033111572265625, 0.005634307861328125, 0.062469482421875, -0.048828125, 0.03076171875, -0.032257080078125, 0.0328369140625, -0.01165771484375, -0.0193634033203125, -0.026092529296875, -0.00244903564453125, 0.01202392578125, -0.03076171875, 0.02459716796875, -0.0037631988525390625, 0.0760498046875, 0.0362548828125, -0.03363037109375, -0.005275726318359375, -0.0494384765625, 0.038604736328125, -0.05413818359375, 0.0189056396484375, 0.023040771484375, 0.0235137939453125, -0.001026153564453125, -0.04547119140625, -0.04058837890625, 0.0015039443969726562, -0.00670623779296875, 0.02178955078125, -0.03436279296875, 0.0185089111328125, 0.05865478515625, 0.0487060546875, -0.03656005859375, 0.0021533966064453125, -0.0260009765625, -0.00372314453125, 0.05242919921875, 0.035919189453125, -0.01263427734375, -0.01201629638671875, -0.03021240234375, -0.0181427001953125, -0.01171112060546875, 0.025543212890625, 0.043853759765625, 0.014190673828125, -0.03179931640625, 0.0426025390625, -0.0267181396484375, 0.0428466796875, 0.0302276611328125, -0.00604248046875, 0.047332763671875, 0.0263824462890625, -0.032562255859375, 0.0081329345703125, 0.065185546875, 0.057708740234375, 0.0209808349609375, 0.01209259033203125, -0.0226287841796875, 0.0018777847290039062, 0.0206451416015625, -0.0775146484375, -0.033294677734375, 0.0187530517578125, -0.04931640625, -0.049102783203125, 0.0027866363525390625, -0.058624267578125, 0.0031452178955078125, -0.038330078125, 0.03436279296875, -0.03564453125, -0.0240631103515625, 0.0199737548828125, 0.0006990432739257812, 0.0020904541015625, 0.0112457275390625, -0.06683349609375, 0.032318115234375, 0.025421142578125, 0.040863037109375, 0.0045166015625, -0.01450347900390625, -0.004695892333984375, -0.0259552001953125, -0.0157470703125, 0.0242767333984375, -0.0053558349609375, -0.032440185546875, -0.00305938720703125, 0.01013946533203125, 0.0006322860717773438, -0.0301055908203125, 0.06414794921875, -0.023101806640625, 0.01396942138671875, -0.0195770263671875, -0.041290283203125, -0.0221710205078125, 0.02752685546875, -0.05035400390625, 0.09185791015625, 0.01541900634765625, -0.06536865234375, 0.0301055908203125, -0.043670654296875, -0.008392333984375, -0.01541900634765625, 0.004146575927734375, -0.047821044921875, 0.01739501953125, -0.0055084228515625, 0.040985107421875, -0.0187835693359375, 0.023529052734375, -0.031402587890625, -0.041046142578125, 0.007610321044921875, -0.040191650390625, 0.051025390625, 0.00942230224609375, -0.0406494140625, -0.0027256011962890625, -0.0965576171875, 0.01140594482421875, 0.023223876953125, -0.033447265625, -0.0006971359252929688, -0.0268707275390625, 0.0261383056640625, 0.0308380126953125, 0.0207977294921875, -0.041717529296875, 0.0084686279296875, -0.020477294921875, 0.0022945404052734375, 0.0443115234375, -0.00112152099609375, 0.0059661865234375, -0.01861572265625, 0.0258636474609375, 0.033935546875, 0.0236358642578125, 0.0180816650390625, -0.015869140625, -0.07257080078125, -0.015869140625, 0.01511383056640625, 0.03155517578125, -0.0159454345703125, 0.059356689453125, 0.003299713134765625, -0.060394287109375, -0.026611328125, 0.00031948089599609375, 0.03857421875, 0.06158447265625, 0.03277587890625, -0.021087646484375, -0.03656005859375, -0.0772705078125, 0.0094146728515625, -0.001346588134765625, 0.0183868408203125, 0.009765625, 0.042144775390625, -0.018585205078125, 0.0589599609375, -0.0499267578125, -0.00875091552734375, 0.00007319450378417969, 0.0219879150390625, 0.039520263671875, 0.047821044921875, 0.058624267578125, -0.03692626953125, -0.02520751953125, -0.0202484130859375, -0.06231689453125, 0.02008056640625, 0.0036487579345703125, -0.0271148681640625, -0.002452850341796875, 0.0022602081298828125, -0.050201416015625, 0.05950927734375, 0.02142333984375, -0.025543212890625, 0.0540771484375, -0.0236968994140625, 0.00434112548828125, -0.08294677734375, 0.007843017578125, 0.0276336669921875, -0.00017333030700683594, -0.032867431640625, -0.0164794921875, 0.007213592529296875, -0.0079498291015625, -0.037841796875, 0.032196044921875, -0.0134124755859375, 0.01424407958984375, -0.0213775634765625, -0.032867431640625, -0.0006008148193359375, 0.06982421875, 0.0172119140625, 0.0155792236328125, 0.057281494140625, -0.035125732421875, 0.0460205078125, 0.04132080078125, -0.0161285400390625, 0.05908203125, -0.06591796875, 0.01416778564453125, -0.0174560546875, 0.0037860870361328125, -0.055328369140625, -0.015350341796875, 0.01959228515625, -0.0275421142578125, 0.031341552734375, -0.0194854736328125, -0.02301025390625, -0.03680419921875, -0.006175994873046875, 0.0130462646484375, 0.0540771484375, -0.04046630859375, 0.0287933349609375, -0.01250457763671875, 0.01465606689453125, -0.053436279296875, -0.057342529296875, -0.0247802734375, -0.02386474609375, -0.02911376953125, 0.00860595703125, -0.00974273681640625, -0.005405426025390625, -0.0024394989013671875, -0.01349639892578125, -0.0166778564453125, -0.0005617141723632812, 0.045379638671875, 0.0233612060546875, -0.0111236572265625, 0.004474639892578125, 0.0052947998046875, -0.0207366943359375, 0.0271453857421875, 0.0195770263671875, 0.037506103515625, -0.022247314453125, -0.0262298583984375, -0.06964111328125, 0.004871368408203125, 0.047149658203125, -0.0066680908203125, 0.0615234375, 0.052154541015625, -0.048797607421875, 0.0005106925964355469, -0.0299835205078125, -0.01580810546875, -0.03192138671875, 0.0440673828125, -0.03765869140625, -0.0239105224609375, 0.051727294921875, -0.00399017333984375, -0.007572174072265625, 0.0684814453125, 0.05303955078125, -0.00460052490234375, 0.08746337890625, 0.0284271240234375, -0.01253509521484375, 0.019012451171875, -0.051910400390625, -0.0101318359375, -0.050750732421875, -0.033416748046875, -0.02728271484375, -0.04248046875, -0.0394287109375, 0.0118255615234375, 0.005802154541015625, 0.021728515625, -0.060211181640625, 0.0172576904296875, -0.041229248046875, 0.023223876953125, 0.045257568359375, 0.029632568359375, 0.0006322860717773438, 0.006378173828125, -0.01210784912109375, -0.01177215576171875, -0.048187255859375, -0.036346435546875, 0.08697509765625, 0.043701171875, 0.06890869140625, -0.00981903076171875, 0.0579833984375, 0.00897216796875, 0.017913818359375, -0.05462646484375, 0.02178955078125, 0.005634307861328125, -0.05657958984375, -0.0073699951171875, -0.0276641845703125, -0.040191650390625, 0.008636474609375, -0.03277587890625, -0.055938720703125, 0.02471923828125, 0.0284271240234375, -0.036590576171875, 0.0251007080078125, -0.0413818359375, 0.08331298828125, -0.037384033203125, -0.028228759765625, -0.00885772705078125, -0.04583740234375, 0.0122528076171875, 0.004787445068359375, -0.0258331298828125, -0.01259613037109375, 0.0347900390625, 0.054656982421875, -0.04351806640625, 0.051513671875, -0.0340576171875, 0.0234222412109375, 0.025299072265625, -0.0007772445678710938, 0.049102783203125, 0.0115509033203125, -0.0193023681640625, 0.0194244384765625, -0.0033283233642578125, -0.02783203125, -0.044952392578125, 0.044097900390625, -0.0794677734375, -0.00551605224609375, -0.047637939453125, -0.036285400390625, -0.01491546630859375, 0.006496429443359375, 0.048614501953125, 0.04595947265625, -0.0203857421875, 0.02203369140625, 0.0443115234375, 0.0015439987182617188, 0.020355224609375, 0.02642822265625, 0.005214691162109375, -0.03594970703125, 0.0506591796875, -0.0152587890625, 0.01117706298828125, -0.0006241798400878906, 0.0065765380859375, -0.036895751953125, -0.0252685546875, -0.037750244140625, 0.005458831787109375, -0.0582275390625, -0.0219268798828125, -0.034393310546875, -0.02374267578125, -0.0140228271484375, 0.000018298625946044922, -0.045654296875, -0.0127716064453125, -0.0526123046875, -0.03228759765625, 0.042388916015625, 0.038330078125, 0.0036296844482421875, 0.047821044921875, -0.04461669921875, -0.00543212890625, 0.00829315185546875, 0.04058837890625, 0.007801055908203125, -0.0574951171875, -0.020050048828125, 0.0175323486328125, -0.038299560546875, -0.05950927734375, 0.03924560546875, 0.0030956268310546875, 0.031982421875, 0.044708251953125, 0.00225830078125, 0.07073974609375, -0.0229339599609375, 0.046112060546875, 0.0406494140625, -0.057708740234375, 0.031890869140625, -0.0159912109375, 0.0091400146484375, 0.05816650390625, 0.051513671875, -0.017913818359375, 0.007137298583984375, -0.0843505859375, -0.056671142578125, 0.070068359375, 0.02972412109375, 0.006618499755859375, 0.01036834716796875, 0.033294677734375, -0.01090240478515625, 0.03363037109375, -0.062408447265625, -0.04443359375, -0.02978515625, -0.03173828125, -0.0063629150390625, -0.037841796875, -0.0177001953125, -0.04132080078125, 0.068603515625, 0.0019025802612304688, 0.0244140625, 0.007015228271484375, 0.008544921875, -0.022247314453125, 0.00463104248046875, 0.03802490234375, 0.03076171875, -0.06097412109375, -0.006275177001953125, 0.0218353271484375, -0.0265350341796875, 0.01209259033203125, 0.0191497802734375, 0.008331298828125, 0.01174163818359375, 0.013824462890625, 0.095458984375, 0.00949859619140625, -0.0209808349609375, 0.0408935546875, -0.0120697021484375, -0.0303497314453125, -0.032806396484375, -0.004405975341796875, -0.00494384765625, 0.030181884765625, 0.01561737060546875, 0.028228759765625, 0.01219940185546875, -0.020355224609375, 0.0169830322265625, 0.004711151123046875, -0.05609130859375, -0.02899169921875, 0.05377197265625, 0.00937652587890625, -0.0186920166015625, 0.058624267578125, -0.0179595947265625, -0.02691650390625, 0.059295654296875, 0.0343017578125, 0.07012939453125, -0.00788116455078125, -0.004138946533203125, 0.05615234375, 0.00307464599609375, -0.023712158203125, 0.0479736328125, 0.0158538818359375, -0.039642333984375, -0.0030078887939453125, -0.060455322265625, -0.020111083984375, 0.0316162109375, -0.09771728515625, 0.0301666259765625, -0.032562255859375, -0.036041259765625, 0.00797271728515625, 0.0018100738525390625, -0.07330322265625, 0.06011962890625, 0.0205078125, 0.08587646484375, -0.074951171875, 0.04559326171875, 0.04766845703125, -0.0323486328125, -0.08465576171875, -0.0198822021484375, 0.004405975341796875, -0.05230712890625, 0.05572509765625, 0.010345458984375, 0.0182342529296875, 0.00795745849609375, -0.029937744140625, -0.05096435546875, 0.08233642578125, 0.031402587890625, -0.064697265625, 0.00911712646484375, 0.0187835693359375, 0.063232421875, -0.0148162841796875, 0.0556640625, 0.02783203125, 0.0123748779296875, 0.024871826171875, -0.06231689453125, -0.00870513916015625, -0.0350341796875, 0.0025234222412109375, 0.003818511962890625, -0.05816650390625, 0.0775146484375, 0.0042572021484375, 0.0252685546875, -0.0004935264587402344, 0.043975830078125, 0.0207061767578125, 0.0268402099609375, 0.037750244140625, 0.0811767578125, 0.0401611328125, -0.020538330078125, 0.07000732421875, -0.044342041015625, 0.069091796875, 0.08477783203125, -0.01187896728515625, 0.043182373046875, 0.0214691162109375, -0.019622802734375, 0.028656005859375, 0.07086181640625, -0.0122222900390625, 0.035614013671875, 0.02117919921875, -0.00531005859375, -0.0204315185546875, 0.0157623291015625, -0.042266845703125, 0.03167724609375, -0.0004341602325439453, -0.045013427734375, -0.0178070068359375, -0.009979248046875, 0.0035495758056640625, -0.0218353271484375, -0.02728271484375, 0.038909912109375, -0.0117034912109375, -0.02093505859375, 0.0609130859375, -0.00482177734375, 0.036102294921875, -0.03814697265625, -0.0017490386962890625, -0.01555633544921875, 0.02947998046875, -0.0309906005859375, -0.046295166015625, 0.0142822265625, 0.01288604736328125, -0.01727294921875, 0.00276947021484375, 0.0316162109375, -0.031341552734375, -0.055023193359375, 0.015380859375, 0.0195770263671875, 0.013214111328125, -0.017669677734375, -0.07537841796875, -0.0016012191772460938, -0.006206512451171875, -0.054107666015625, 0.004787445068359375, 0.036041259765625, 0.0174713134765625, 0.038909912109375, 0.0328369140625, -0.008087158203125, -0.005733489990234375, 0.01255035400390625, 0.07476806640625, -0.04608154296875, -0.037139892578125, -0.0654296875, 0.06396484375, -0.0130767822265625, -0.05926513671875, 0.038970947265625, 0.06488037109375, 0.053192138671875, -0.023956298828125, 0.039215087890625, -0.0014905929565429688, 0.0176849365234375, -0.026824951171875, 0.0506591796875, -0.04461669921875, -0.02447509765625, -0.04046630859375, -0.06378173828125, 0.0006833076477050781, 0.0533447265625, -0.0139312744140625, 0.00618743896484375, 0.03472900390625, 0.04840087890625, -0.005596160888671875, 0.006649017333984375, 0.01873779296875, 0.00441741943359375, -0.0019550323486328125, 0.04461669921875, 0.0423583984375, -0.055755615234375, 0.0210113525390625, -0.05340576171875, -0.021942138671875, -0.0152740478515625, -0.058624267578125, -0.07049560546875, -0.0260009765625, -0.0406494140625, -0.033905029296875, -0.0030193328857421875, 0.080322265625, 0.060333251953125, -0.05670166015625, -0.01947021484375, -0.00016248226165771484, -0.036895751953125, -0.01483917236328125, -0.0157012939453125, 0.0236968994140625, 0.002147674560546875, -0.05792236328125, -0.013641357421875, -0.00891876220703125, 0.0297698974609375, -0.0066375732421875, -0.0261077880859375, -0.005764007568359375, -0.0196533203125, 0.021728515625, 0.0031890869140625, -0.02960205078125, -0.0159759521484375, -0.0006856918334960938, -0.00913238525390625, 0.0166168212890625, 0.01568603515625, -0.0235137939453125, 0.034820556640625, 0.0190582275390625, 0.022857666015625, 0.058807373046875, 0.0090484619140625, 0.01410675048828125, -0.06121826171875, 0.041046142578125, 0.0189056396484375, 0.044586181640625, 0.00591278076171875, -0.040496826171875, 0.0345458984375, 0.02728271484375, -0.0406494140625, -0.059051513671875, -0.01067352294921875, -0.0931396484375, 0.0241851806640625, 0.07952880859375, -0.006664276123046875, -0.028839111328125, 0.03936767578125, -0.0265350341796875, 0.03265380859375, -0.03253173828125, 0.0538330078125, 0.06146240234375, -0.01666259765625, -0.00040030479431152344, -0.0264434814453125, 0.039520263671875, 0.0283966064453125, -0.043304443359375, -0.01202392578125, 0.0390625, 0.03216552734375, 0.0106201171875, 0.026214599609375, -0.00701904296875, 0.0198211669921875, 0.00650787353515625, 0.045196533203125, -0.02349853515625, -0.0164794921875, -0.039154052734375, -0.00006443262100219727, 0.005741119384765625, -0.0350341796875 ] ]
SlothBot/home_workstation_ASR
2023-10-28T20:02:32.000Z
[ "transformers", "pytorch", "whisper", "automatic-speech-recognition", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
automatic-speech-recognition
SlothBot
null
null
SlothBot/home_workstation_ASR
0
2
transformers
2023-10-28T12:20:10
--- license: apache-2.0 base_model: openai/whisper-small tags: - generated_from_trainer metrics: - wer model-index: - name: home_workstation_ASR 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. --> # home_workstation_ASR This model is a fine-tuned version of [openai/whisper-small](https://huggingface.co/openai/whisper-small) on the None dataset. It achieves the following results on the evaluation set: - Loss: 0.3540 - Wer Ortho: 20.1592 - Wer: 15.1297 ## 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: constant_with_warmup - lr_scheduler_warmup_steps: 50 - training_steps: 4000 ### Training results | Training Loss | Epoch | Step | Validation Loss | Wer Ortho | Wer | |:-------------:|:-----:|:----:|:---------------:|:---------:|:-------:| | 0.232 | 0.9 | 1000 | 0.3209 | 21.7751 | 16.8164 | | 0.1153 | 1.8 | 2000 | 0.3150 | 20.7647 | 15.7552 | | 0.0653 | 2.7 | 3000 | 0.3327 | 20.2443 | 15.2927 | | 0.032 | 3.6 | 4000 | 0.3540 | 20.1592 | 15.1297 | ### Framework versions - Transformers 4.34.0 - Pytorch 2.1.0+cu121 - Datasets 2.14.5 - Tokenizers 0.14.1
1,688
[ [ -0.028961181640625, -0.0350341796875, -0.00018596649169921875, 0.00405120849609375, -0.02276611328125, -0.04608154296875, -0.0168914794921875, -0.0173797607421875, 0.005035400390625, 0.0205841064453125, -0.05059814453125, -0.0311431884765625, -0.04327392578125, -0.01387786865234375, -0.01099395751953125, 0.0880126953125, -0.0019779205322265625, 0.0225067138671875, 0.004100799560546875, -0.0131683349609375, -0.03167724609375, -0.026824951171875, -0.07208251953125, -0.054656982421875, 0.0211029052734375, 0.0300750732421875, 0.050567626953125, 0.061859130859375, 0.041534423828125, 0.0156402587890625, -0.0239715576171875, -0.01629638671875, -0.042083740234375, -0.0428466796875, 0.021240234375, -0.03704833984375, -0.0450439453125, -0.004398345947265625, 0.0560302734375, 0.0306243896484375, -0.022003173828125, 0.04766845703125, 0.01025390625, 0.034698486328125, -0.04156494140625, 0.015625, -0.029052734375, 0.0206146240234375, -0.0265350341796875, -0.017822265625, -0.013031005859375, -0.0016164779663085938, 0.00475311279296875, -0.0438232421875, 0.040191650390625, 0.00933837890625, 0.09295654296875, 0.03350830078125, -0.0229034423828125, 0.01218414306640625, -0.05963134765625, 0.0489501953125, -0.0543212890625, 0.0243377685546875, 0.0254669189453125, 0.03802490234375, 0.01160430908203125, -0.053192138671875, -0.03607177734375, 0.0034027099609375, -0.00446319580078125, 0.0121002197265625, -0.02227783203125, -0.0006504058837890625, 0.051361083984375, 0.053253173828125, -0.04644775390625, 0.0242919921875, -0.05426025390625, -0.0178985595703125, 0.039520263671875, 0.045166015625, -0.01320648193359375, -0.015625, -0.024169921875, -0.0192108154296875, -0.0287628173828125, 0.0208892822265625, 0.03729248046875, 0.0257110595703125, -0.039306640625, 0.042633056640625, -0.030059814453125, 0.057769775390625, 0.00662994384765625, -0.0251922607421875, 0.042633056640625, -0.005340576171875, -0.039306640625, 0.0104217529296875, 0.06915283203125, 0.040557861328125, 0.0018014907836914062, 0.0169677734375, -0.022674560546875, -0.0007853507995605469, 0.015960693359375, -0.07659912109375, -0.02203369140625, 0.0015344619750976562, -0.060577392578125, -0.042816162109375, 0.0090484619140625, -0.04608154296875, 0.006572723388671875, -0.0229034423828125, 0.0439453125, -0.0258331298828125, -0.01161956787109375, 0.004711151123046875, -0.0108795166015625, 0.035400390625, 0.0102386474609375, -0.050811767578125, 0.03936767578125, 0.02386474609375, 0.05126953125, 0.01210784912109375, -0.0260009765625, -0.016693115234375, 0.0034332275390625, -0.0178375244140625, 0.035614013671875, -0.002368927001953125, -0.036529541015625, -0.0173492431640625, 0.012054443359375, -0.0210723876953125, -0.031890869140625, 0.06524658203125, -0.0198822021484375, 0.0236053466796875, -0.00624847412109375, -0.03070068359375, -0.01507568359375, 0.0206146240234375, -0.052154541015625, 0.08251953125, -0.007568359375, -0.06756591796875, 0.039031982421875, -0.0537109375, -0.0096893310546875, -0.00962066650390625, -0.00876617431640625, -0.06341552734375, -0.0008134841918945312, 0.00933837890625, 0.030487060546875, -0.032867431640625, 0.0002903938293457031, -0.0120697021484375, -0.044158935546875, -0.00202178955078125, -0.04339599609375, 0.0579833984375, 0.0156402587890625, -0.029693603515625, 0.021392822265625, -0.0924072265625, 0.01277923583984375, 0.0321044921875, -0.02789306640625, 0.0005693435668945312, -0.033782958984375, 0.0245361328125, 0.01061248779296875, 0.020782470703125, -0.046600341796875, 0.0025310516357421875, -0.0295867919921875, 0.0270233154296875, 0.0445556640625, 0.01384735107421875, 0.004306793212890625, -0.043243408203125, 0.01812744140625, 0.01407623291015625, 0.036102294921875, 0.013580322265625, -0.0489501953125, -0.07470703125, -0.01751708984375, 0.0208282470703125, 0.0233001708984375, -0.0217742919921875, 0.039154052734375, -0.0111236572265625, -0.0565185546875, -0.040802001953125, 0.0016908645629882812, 0.038970947265625, 0.047882080078125, 0.0253753662109375, -0.005611419677734375, -0.036376953125, -0.07965087890625, 0.0006556510925292969, -0.003246307373046875, 0.00036525726318359375, 0.0201568603515625, 0.0540771484375, -0.01226043701171875, 0.05426025390625, -0.052337646484375, -0.038818359375, -0.011566162109375, 0.0128173828125, 0.0396728515625, 0.047607421875, 0.044891357421875, -0.035430908203125, -0.0251922607421875, -0.0079803466796875, -0.05291748046875, 0.0282745361328125, -0.0040283203125, -0.00801849365234375, 0.00043487548828125, 0.0162353515625, -0.0389404296875, 0.06561279296875, 0.021942138671875, -0.01861572265625, 0.04693603515625, -0.031402587890625, -0.005802154541015625, -0.08203125, 0.029388427734375, 0.012847900390625, 0.0000559687614440918, -0.0239105224609375, 0.0002617835998535156, -0.001438140869140625, -0.0238037109375, -0.0284576416015625, 0.053192138671875, -0.01177215576171875, 0.00887298583984375, -0.00937652587890625, -0.02899169921875, -0.00823974609375, 0.056884765625, 0.01544189453125, 0.04437255859375, 0.040618896484375, -0.04132080078125, 0.0172576904296875, 0.037506103515625, -0.031524658203125, 0.028106689453125, -0.0732421875, 0.00975799560546875, 0.0039520263671875, -0.00021588802337646484, -0.048431396484375, -0.0264129638671875, 0.03228759765625, -0.039947509765625, 0.019683837890625, -0.020751953125, -0.02685546875, -0.034515380859375, -0.01654052734375, 0.0227203369140625, 0.047210693359375, -0.038726806640625, 0.0225067138671875, -0.01050567626953125, 0.0276947021484375, -0.032806396484375, -0.05438232421875, -0.0340576171875, -0.0123748779296875, -0.037353515625, 0.015380859375, 0.0019292831420898438, 0.0020084381103515625, -0.00044417381286621094, -0.00572967529296875, -0.0141143798828125, -0.0120697021484375, 0.04156494140625, 0.0264892578125, -0.0232086181640625, -0.0207061767578125, -0.010467529296875, -0.0253143310546875, 0.011444091796875, 0.00492095947265625, 0.040924072265625, -0.015869140625, -0.03173828125, -0.0732421875, -0.0038738250732421875, 0.029144287109375, -0.0089569091796875, 0.06817626953125, 0.055084228515625, -0.04510498046875, 0.004367828369140625, -0.0281524658203125, -0.00919342041015625, -0.03271484375, 0.0224456787109375, -0.041229248046875, -0.0228729248046875, 0.0518798828125, 0.01497650146484375, 0.007904052734375, 0.08154296875, 0.0350341796875, 0.003391265869140625, 0.08331298828125, 0.028045654296875, -0.0107574462890625, 0.0206756591796875, -0.06744384765625, -0.01323699951171875, -0.06304931640625, -0.03521728515625, -0.04986572265625, -0.02752685546875, -0.043487548828125, -0.0021953582763671875, 0.0306854248046875, 0.006946563720703125, -0.05889892578125, 0.008209228515625, -0.038970947265625, 0.0165863037109375, 0.058380126953125, 0.03057861328125, 0.004550933837890625, 0.00041675567626953125, -0.01471710205078125, -0.008148193359375, -0.06536865234375, -0.0236053466796875, 0.09124755859375, 0.037841796875, 0.061798095703125, -0.00745391845703125, 0.0528564453125, 0.003398895263671875, 0.01019287109375, -0.04608154296875, 0.0225372314453125, 0.0016536712646484375, -0.0628662109375, -0.0275421142578125, -0.036376953125, -0.06365966796875, 0.006595611572265625, -0.01474761962890625, -0.050537109375, 0.0184783935546875, 0.0203094482421875, -0.037567138671875, 0.03558349609375, -0.02783203125, 0.08843994140625, -0.01122283935546875, -0.010772705078125, -0.0016231536865234375, -0.0401611328125, 0.025238037109375, 0.00882720947265625, -0.01611328125, 0.0121002197265625, 0.0103607177734375, 0.08282470703125, -0.058837890625, 0.054412841796875, -0.0291290283203125, 0.03173828125, 0.02972412109375, -0.026458740234375, 0.043365478515625, 0.004863739013671875, -0.01532745361328125, 0.022125244140625, 0.0037899017333984375, -0.038238525390625, -0.028594970703125, 0.04852294921875, -0.09466552734375, -0.00612640380859375, -0.04461669921875, -0.0189361572265625, 0.004505157470703125, 0.01861572265625, 0.06439208984375, 0.05853271484375, -0.00957489013671875, 0.0214080810546875, 0.04168701171875, -0.00406646728515625, 0.0240631103515625, 0.030517578125, -0.0006475448608398438, -0.050537109375, 0.0726318359375, -0.00012803077697753906, 0.009368896484375, -0.002124786376953125, 0.01497650146484375, -0.020782470703125, -0.037139892578125, -0.051055908203125, 0.02197265625, -0.043487548828125, -0.0242462158203125, -0.0261993408203125, -0.04107666015625, -0.020843505859375, 0.0035247802734375, -0.0377197265625, -0.012298583984375, -0.041168212890625, -0.0010805130004882812, 0.030303955078125, 0.040130615234375, 0.0068511962890625, 0.05438232421875, -0.04681396484375, 0.007312774658203125, 0.01007843017578125, 0.029144287109375, 0.0128631591796875, -0.0743408203125, -0.0232696533203125, 0.001506805419921875, -0.03656005859375, -0.038360595703125, 0.03125, 0.0180206298828125, 0.050445556640625, 0.05438232421875, -0.0047149658203125, 0.0714111328125, -0.0233001708984375, 0.06292724609375, 0.0330810546875, -0.038177490234375, 0.04498291015625, -0.02117919921875, 0.02496337890625, 0.046875, 0.03656005859375, -0.0106353759765625, 0.006130218505859375, -0.08770751953125, -0.046142578125, 0.07244873046875, 0.02386474609375, -0.0086822509765625, 0.0205078125, 0.0309600830078125, -0.0060577392578125, 0.0130462646484375, -0.054656982421875, -0.0462646484375, -0.0245513916015625, -0.005619049072265625, -0.01251983642578125, -0.01788330078125, -0.01451873779296875, -0.040496826171875, 0.07470703125, -0.01107025146484375, 0.04046630859375, 0.00421905517578125, 0.01397705078125, -0.0206298828125, 0.0005159378051757812, 0.041961669921875, 0.03802490234375, -0.047882080078125, -0.019287109375, 0.0209808349609375, -0.034454345703125, -0.006317138671875, 0.01555633544921875, -0.019378662109375, 0.006557464599609375, 0.033050537109375, 0.089111328125, 0.01385498046875, -0.01279449462890625, 0.042938232421875, -0.0167694091796875, -0.0235443115234375, -0.0382080078125, 0.006740570068359375, -0.0217437744140625, 0.0115509033203125, 0.01396942138671875, 0.03656005859375, 0.0147247314453125, -0.02252197265625, 0.001461029052734375, 0.01544189453125, -0.04248046875, -0.022674560546875, 0.0665283203125, 0.0011205673217773438, -0.02435302734375, 0.06463623046875, -0.00438690185546875, -0.0213470458984375, 0.055267333984375, 0.036865234375, 0.06524658203125, -0.0121307373046875, -0.01313018798828125, 0.06024169921875, 0.01500701904296875, -0.01282501220703125, 0.043243408203125, 0.0106201171875, -0.037078857421875, -0.00891876220703125, -0.06304931640625, -0.0210723876953125, 0.0418701171875, -0.098876953125, 0.036041259765625, -0.039764404296875, -0.02764892578125, 0.0207061767578125, 0.0217132568359375, -0.07904052734375, 0.04766845703125, 0.001678466796875, 0.095458984375, -0.06719970703125, 0.06243896484375, 0.0491943359375, -0.0438232421875, -0.075927734375, -0.007343292236328125, -0.00817108154296875, -0.06927490234375, 0.045867919921875, 0.006076812744140625, 0.0188140869140625, 0.0032501220703125, -0.03594970703125, -0.054962158203125, 0.0863037109375, 0.0128326416015625, -0.041961669921875, 0.00463104248046875, 0.01177215576171875, 0.045074462890625, -0.004596710205078125, 0.038970947265625, 0.0204925537109375, 0.022430419921875, 0.018157958984375, -0.08551025390625, -0.002960205078125, -0.0288848876953125, 0.01126861572265625, 0.019134521484375, -0.06488037109375, 0.0775146484375, -0.01050567626953125, 0.0192108154296875, 0.026153564453125, 0.050933837890625, 0.0186614990234375, 0.03253173828125, 0.032318115234375, 0.0687255859375, 0.03973388671875, -0.0113677978515625, 0.08343505859375, -0.032012939453125, 0.040679931640625, 0.08355712890625, 0.01105499267578125, 0.05816650390625, 0.0216827392578125, -0.01788330078125, 0.022064208984375, 0.060791015625, -0.01715087890625, 0.037994384765625, 0.004695892333984375, 0.00205230712890625, -0.016754150390625, 0.0075225830078125, -0.0513916015625, 0.032501220703125, 0.006641387939453125, -0.040618896484375, -0.0171051025390625, -0.00788116455078125, -0.005489349365234375, -0.0270538330078125, -0.0406494140625, 0.049346923828125, -0.01546478271484375, -0.0214080810546875, 0.06024169921875, 0.018890380859375, 0.034637451171875, -0.05572509765625, -0.0008449554443359375, -0.0026340484619140625, 0.0357666015625, -0.026092529296875, -0.034088134765625, 0.020111083984375, -0.0009136199951171875, -0.023101806640625, 0.00641632080078125, 0.041900634765625, -0.0024738311767578125, -0.053802490234375, 0.004955291748046875, 0.0180816650390625, 0.0236053466796875, -0.002567291259765625, -0.060760498046875, 0.00640869140625, 0.00390625, -0.0289154052734375, 0.02447509765625, 0.017974853515625, 0.002132415771484375, 0.03802490234375, 0.04180908203125, 0.003326416015625, 0.013031005859375, 0.0105438232421875, 0.0772705078125, -0.04608154296875, -0.0474853515625, -0.04119873046875, 0.032501220703125, -0.01514434814453125, -0.0732421875, 0.052581787109375, 0.0755615234375, 0.061370849609375, -0.01035308837890625, 0.0396728515625, -0.0020618438720703125, 0.035186767578125, -0.038543701171875, 0.05291748046875, -0.046539306640625, -0.00921630859375, -0.01125335693359375, -0.053802490234375, 0.0043792724609375, 0.05206298828125, -0.026458740234375, 0.007720947265625, 0.024932861328125, 0.05279541015625, -0.00922393798828125, 0.0182952880859375, 0.017333984375, 0.006664276123046875, 0.0038776397705078125, 0.03228759765625, 0.039947509765625, -0.07598876953125, 0.042755126953125, -0.048583984375, -0.0172576904296875, -0.00936126708984375, -0.038360595703125, -0.07275390625, -0.025604248046875, -0.039154052734375, -0.0260009765625, -0.0018224716186523438, 0.071533203125, 0.0604248046875, -0.05950927734375, -0.0257110595703125, 0.007038116455078125, -0.035491943359375, -0.027496337890625, -0.0161895751953125, 0.03582763671875, -0.0033626556396484375, -0.042694091796875, 0.002567291259765625, -0.02972412109375, 0.0140228271484375, -0.020172119140625, -0.032623291015625, -0.00687408447265625, -0.0197906494140625, 0.005489349365234375, 0.01456451416015625, -0.0379638671875, -0.0213470458984375, -0.0161285400390625, -0.0018758773803710938, 0.00955963134765625, 0.0272674560546875, -0.039703369140625, 0.0244293212890625, 0.0207977294921875, 0.01544952392578125, 0.06396484375, -0.0100860595703125, 0.00936126708984375, -0.0609130859375, 0.0277099609375, 0.0089263916015625, 0.028228759765625, 0.0025806427001953125, -0.0252227783203125, 0.037109375, 0.0278472900390625, -0.04107666015625, -0.06610107421875, -0.027984619140625, -0.0750732421875, 0.0159759521484375, 0.0797119140625, 0.00038695335388183594, -0.0341796875, 0.0258636474609375, -0.01219940185546875, 0.0201416015625, -0.0256195068359375, 0.0313720703125, 0.0307159423828125, -0.013427734375, 0.00038695335388183594, -0.044281005859375, 0.039306640625, 0.00255584716796875, -0.041351318359375, -0.02606201171875, 0.017181396484375, 0.0450439453125, 0.0184326171875, 0.0394287109375, -0.003139495849609375, 0.024993896484375, 0.027923583984375, 0.0193023681640625, -0.0309906005859375, -0.0215911865234375, -0.035369873046875, 0.0055999755859375, 0.012939453125, -0.056854248046875 ] ]
TheBloke/SauerkrautLM-70B-v1-GGUF
2023-10-28T18:07:22.000Z
[ "transformers", "llama", "text-generation", "de", "en", "license:llama2", "text-generation-inference", "region:us" ]
text-generation
TheBloke
null
null
TheBloke/SauerkrautLM-70B-v1-GGUF
1
2
transformers
2023-10-28T13:06:59
--- base_model: VAGOsolutions/SauerkrautLM-70b-v1 inference: false language: - de - en library_name: transformers license: llama2 model_creator: VAGO solutions model_name: SauerkrautLM 70B v1 model_type: llama pipeline_tag: text-generation prompt_template: "[INST] <<SYS>>\nEin Chat zwischen einem Benutzer und einem KI-Assistenten.\ \ Der KI-Assistent gibt hilfreiche, detaillierte und h\xF6fliche Antworten.\n<</SYS>>\n\ {prompt}[/INST]\n" quantized_by: TheBloke --- <!-- markdownlint-disable MD041 --> <!-- header start --> <!-- 200823 --> <div style="width: auto; margin-left: auto; margin-right: auto"> <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;"> </div> <div style="display: flex; justify-content: space-between; width: 100%;"> <div style="display: flex; flex-direction: column; align-items: flex-start;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p> </div> <div style="display: flex; flex-direction: column; align-items: flex-end;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p> </div> </div> <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div> <hr style="margin-top: 1.0em; margin-bottom: 1.0em;"> <!-- header end --> # SauerkrautLM 70B v1 - GGUF - Model creator: [VAGO solutions](https://huggingface.co/VAGOsolutions) - Original model: [SauerkrautLM 70B v1](https://huggingface.co/VAGOsolutions/SauerkrautLM-70b-v1) <!-- description start --> ## Description This repo contains GGUF format model files for [VAGO solutions's SauerkrautLM 70B v1](https://huggingface.co/VAGOsolutions/SauerkrautLM-70b-v1). These files were quantised using hardware kindly provided by [Massed Compute](https://massedcompute.com/). <!-- description end --> <!-- README_GGUF.md-about-gguf start --> ### About GGUF GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. Here is an incomplate list of clients and libraries that are known to support GGUF: * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option. * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration. * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling. * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration. * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection. * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration. * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server. * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server. * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use. <!-- README_GGUF.md-about-gguf end --> <!-- repositories-available start --> ## Repositories available * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-AWQ) * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GPTQ) * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF) * [VAGO solutions's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/VAGOsolutions/SauerkrautLM-70b-v1) <!-- repositories-available end --> <!-- prompt-template start --> ## Prompt template: Sauerkraut-Llama-2-Chat ``` [INST] <<SYS>> Ein Chat zwischen einem Benutzer und einem KI-Assistenten. Der KI-Assistent gibt hilfreiche, detaillierte und höfliche Antworten. <</SYS>> {prompt}[/INST] ``` <!-- prompt-template end --> <!-- compatibility_gguf start --> ## Compatibility These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) They are also compatible with many third party UIs and libraries - please see the list at the top of this README. ## Explanation of quantisation methods <details> <summary>Click to see details</summary> The new methods available are: * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw) * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw. * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw. * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw Refer to the Provided Files table below to see what files use which methods, and how. </details> <!-- compatibility_gguf end --> <!-- README_GGUF.md-provided-files start --> ## Provided files | Name | Quant method | Bits | Size | Max RAM required | Use case | | ---- | ---- | ---- | ---- | ---- | ----- | | [sauerkrautlm-70b-v1.Q2_K.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q2_K.gguf) | Q2_K | 2 | 29.28 GB| 31.78 GB | smallest, significant quality loss - not recommended for most purposes | | [sauerkrautlm-70b-v1.Q3_K_S.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q3_K_S.gguf) | Q3_K_S | 3 | 29.92 GB| 32.42 GB | very small, high quality loss | | [sauerkrautlm-70b-v1.Q3_K_M.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q3_K_M.gguf) | Q3_K_M | 3 | 33.19 GB| 35.69 GB | very small, high quality loss | | [sauerkrautlm-70b-v1.Q3_K_L.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q3_K_L.gguf) | Q3_K_L | 3 | 36.15 GB| 38.65 GB | small, substantial quality loss | | [sauerkrautlm-70b-v1.Q4_0.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q4_0.gguf) | Q4_0 | 4 | 38.87 GB| 41.37 GB | legacy; small, very high quality loss - prefer using Q3_K_M | | [sauerkrautlm-70b-v1.Q4_K_S.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q4_K_S.gguf) | Q4_K_S | 4 | 39.07 GB| 41.57 GB | small, greater quality loss | | [sauerkrautlm-70b-v1.Q4_K_M.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q4_K_M.gguf) | Q4_K_M | 4 | 41.42 GB| 43.92 GB | medium, balanced quality - recommended | | [sauerkrautlm-70b-v1.Q5_0.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q5_0.gguf) | Q5_0 | 5 | 47.46 GB| 49.96 GB | legacy; medium, balanced quality - prefer using Q4_K_M | | [sauerkrautlm-70b-v1.Q5_K_S.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q5_K_S.gguf) | Q5_K_S | 5 | 47.46 GB| 49.96 GB | large, low quality loss - recommended | | [sauerkrautlm-70b-v1.Q5_K_M.gguf](https://huggingface.co/TheBloke/SauerkrautLM-70B-v1-GGUF/blob/main/sauerkrautlm-70b-v1.Q5_K_M.gguf) | Q5_K_M | 5 | 48.75 GB| 51.25 GB | large, very low quality loss - recommended | | sauerkrautlm-70b-v1.Q6_K.gguf | Q6_K | 6 | 56.59 GB| 59.09 GB | very large, extremely low quality loss | | sauerkrautlm-70b-v1.Q8_0.gguf | Q8_0 | 8 | 73.29 GB| 75.79 GB | very large, extremely low quality loss - not recommended | **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead. ### Q6_K and Q8_0 files are split and require joining **Note:** HF does not support uploading files larger than 50GB. Therefore I have uploaded the Q6_K and Q8_0 files as split files. <details> <summary>Click for instructions regarding Q6_K and Q8_0 files</summary> ### q6_K Please download: * `sauerkrautlm-70b-v1.Q6_K.gguf-split-a` * `sauerkrautlm-70b-v1.Q6_K.gguf-split-b` ### q8_0 Please download: * `sauerkrautlm-70b-v1.Q8_0.gguf-split-a` * `sauerkrautlm-70b-v1.Q8_0.gguf-split-b` To join the files, do the following: Linux and macOS: ``` cat sauerkrautlm-70b-v1.Q6_K.gguf-split-* > sauerkrautlm-70b-v1.Q6_K.gguf && rm sauerkrautlm-70b-v1.Q6_K.gguf-split-* cat sauerkrautlm-70b-v1.Q8_0.gguf-split-* > sauerkrautlm-70b-v1.Q8_0.gguf && rm sauerkrautlm-70b-v1.Q8_0.gguf-split-* ``` Windows command line: ``` COPY /B sauerkrautlm-70b-v1.Q6_K.gguf-split-a + sauerkrautlm-70b-v1.Q6_K.gguf-split-b sauerkrautlm-70b-v1.Q6_K.gguf del sauerkrautlm-70b-v1.Q6_K.gguf-split-a sauerkrautlm-70b-v1.Q6_K.gguf-split-b COPY /B sauerkrautlm-70b-v1.Q8_0.gguf-split-a + sauerkrautlm-70b-v1.Q8_0.gguf-split-b sauerkrautlm-70b-v1.Q8_0.gguf del sauerkrautlm-70b-v1.Q8_0.gguf-split-a sauerkrautlm-70b-v1.Q8_0.gguf-split-b ``` </details> <!-- README_GGUF.md-provided-files end --> <!-- README_GGUF.md-how-to-download start --> ## How to download GGUF files **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file. The following clients/libraries will automatically download models for you, providing a list of available models to choose from: * LM Studio * LoLLMS Web UI * Faraday.dev ### In `text-generation-webui` Under Download Model, you can enter the model repo: TheBloke/SauerkrautLM-70B-v1-GGUF and below it, a specific filename to download, such as: sauerkrautlm-70b-v1.Q4_K_M.gguf. Then click Download. ### On the command line, including multiple files at once I recommend using the `huggingface-hub` Python library: ```shell pip3 install huggingface-hub ``` Then you can download any individual model file to the current directory, at high speed, with a command like this: ```shell huggingface-cli download TheBloke/SauerkrautLM-70B-v1-GGUF sauerkrautlm-70b-v1.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` <details> <summary>More advanced huggingface-cli download usage</summary> You can also download multiple files at once with a pattern: ```shell huggingface-cli download TheBloke/SauerkrautLM-70B-v1-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf' ``` For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli). To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`: ```shell pip3 install hf_transfer ``` And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`: ```shell HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/SauerkrautLM-70B-v1-GGUF sauerkrautlm-70b-v1.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command. </details> <!-- README_GGUF.md-how-to-download end --> <!-- README_GGUF.md-how-to-run start --> ## Example `llama.cpp` command Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later. ```shell ./main -ngl 32 -m sauerkrautlm-70b-v1.Q4_K_M.gguf --color -c 4096 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "[INST] <<SYS>>\nEin Chat zwischen einem Benutzer und einem KI-Assistenten. Der KI-Assistent gibt hilfreiche, detaillierte und höfliche Antworten.\n<</SYS>>\n{prompt}[/INST]" ``` Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration. Change `-c 4096` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins` For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md) ## How to run in `text-generation-webui` Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md). ## How to run from Python code You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries. ### How to load this model in Python code, using ctransformers #### First install the package Run one of the following commands, according to your system: ```shell # Base ctransformers with no GPU acceleration pip install ctransformers # Or with CUDA GPU acceleration pip install ctransformers[cuda] # Or with AMD ROCm GPU acceleration (Linux only) CT_HIPBLAS=1 pip install ctransformers --no-binary ctransformers # Or with Metal GPU acceleration for macOS systems only CT_METAL=1 pip install ctransformers --no-binary ctransformers ``` #### Simple ctransformers example code ```python from ctransformers import AutoModelForCausalLM # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system. llm = AutoModelForCausalLM.from_pretrained("TheBloke/SauerkrautLM-70B-v1-GGUF", model_file="sauerkrautlm-70b-v1.Q4_K_M.gguf", model_type="llama", gpu_layers=50) print(llm("AI is going to")) ``` ## How to use with LangChain Here are guides on using llama-cpp-python and ctransformers with LangChain: * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp) * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers) <!-- README_GGUF.md-how-to-run end --> <!-- footer start --> <!-- 200823 --> ## Discord For further support, and discussions on these models and AI in general, join us at: [TheBloke AI's Discord server](https://discord.gg/theblokeai) ## Thanks, and how to contribute Thanks to the [chirper.ai](https://chirper.ai) team! Thanks to Clay from [gpus.llm-utils.org](llm-utils)! I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training. If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects. Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits. * Patreon: https://patreon.com/TheBlokeAI * Ko-Fi: https://ko-fi.com/TheBlokeAI **Special thanks to**: Aemon Algiz. **Patreon special mentions**: Brandon Frisco, LangChain4j, Spiking Neurons AB, transmissions 11, Joseph William Delisle, Nitin Borwankar, Willem Michiel, Michael Dempsey, vamX, Jeffrey Morgan, zynix, jjj, Omer Bin Jawed, Sean Connelly, jinyuan sun, Jeromy Smith, Shadi, Pawan Osman, Chadd, Elijah Stavena, Illia Dulskyi, Sebastain Graf, Stephen Murray, terasurfer, Edmond Seymore, Celu Ramasamy, Mandus, Alex, biorpg, Ajan Kanaga, Clay Pascal, Raven Klaugh, 阿明, K, ya boyyy, usrbinkat, Alicia Loh, John Villwock, ReadyPlayerEmma, Chris Smitley, Cap'n Zoog, fincy, GodLy, S_X, sidney chen, Cory Kujawski, OG, Mano Prime, AzureBlack, Pieter, Kalila, Spencer Kim, Tom X Nguyen, Stanislav Ovsiannikov, Michael Levine, Andrey, Trailburnt, Vadim, Enrico Ros, Talal Aujan, Brandon Phillips, Jack West, Eugene Pentland, Michael Davis, Will Dee, webtim, Jonathan Leane, Alps Aficionado, Rooh Singh, Tiffany J. Kim, theTransient, Luke @flexchar, Elle, Caitlyn Gatomon, Ari Malik, subjectnull, Johann-Peter Hartmann, Trenton Dambrowitz, Imad Khwaja, Asp the Wyvern, Emad Mostaque, Rainer Wilmers, Alexandros Triantafyllidis, Nicholas, Pedro Madruga, SuperWojo, Harry Royden McLaughlin, James Bentley, Olakabola, David Ziegler, Ai Maven, Jeff Scroggin, Nikolai Manek, Deo Leter, Matthew Berman, Fen Risland, Ken Nordquist, Manuel Alberto Morcote, Luke Pendergrass, TL, Fred von Graf, Randy H, Dan Guido, NimbleBox.ai, Vitor Caleffi, Gabriel Tamborski, knownsqashed, Lone Striker, Erik Bjäreholt, John Detwiler, Leonard Tan, Iucharbius Thank you to all my generous patrons and donaters! And thank you again to a16z for their generous grant. <!-- footer end --> <!-- original-model-card start --> # Original model card: VAGO solutions's SauerkrautLM 70B v1 ![SauerkrautLM](images/SauerkrautLM.png "SauerkrautLM") ## VAGO solutions SauerkrautLM Introducing SauerkrautLM-v1 - Your German Language Powerhouse! We are thrilled to unveil our **very first release**, **SauerkrautLM-v1**. This remarkable creation marks a significant milestone as it is specifically **tailored for the German-speaking community**. In a landscape where German language models are scarce, we are proud to offer a solution that fills this void. What sets SauerkrautLM-v1 apart is its versatility. Whether you are an individual looking to harness its capabilities for personal use or a business seeking to integrate it into your projects, our model is designed to accommodate all. It operates under the LLAMA 2 License, providing you with the freedom to explore its potential in both private and commercial applications. Performance is at the heart of SauerkrautLM-v1. We put it to the **test using a customized version of MT-Bench for the German language**, and the results speak volumes. It currently stands as the most robust German Language Model on Hugging Face (based on german mt-bench results), showcasing its exceptional capabilities. Rest assured, this model is here to shine and set new standards. And the best thing is it comes in four different sizes (3B, 7B, 13B, 70B) to address your individual needs. Our model's journey began with meticulous training using an **augmented dataset within the QLoRA approach**. This is just the beginning of our model series, promising even more innovative and powerful solutions in the future. Join us on this exciting adventure as we redefine the possibilities of language modeling for the German-speaking world. SauerkrautLM-v1 is here to empower your language-related endeavors like never before. ## All Models | Model | HF | GPTQ | GGUF | AWQ | |-------|-------|-------|-------|-------| | SauerkrautLM-3b-v1 | [Link](https://huggingface.co/VAGOsolutions/SauerkrautLM-3b-v1) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-3B-v1-GPTQ) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-3B-v1-GGUF) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-3B-v1-AWQ) | | SauerkrautLM-7b-v1 | [Link](https://huggingface.co/VAGOsolutions/SauerkrautLM-7b-v1) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-7B-v1-GPTQ) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-7B-v1-GGUF) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-7B-v1-AWQ) | | SauerkrautLM-7b-v1-mistral | [Link](https://huggingface.co/VAGOsolutions/SauerkrautLM-7b-v1-mistral) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-7b-v1-mistral-GPTQ) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-7b-v1-mistral-GGUF) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-7b-v1-mistral-AWQ) | | SauerkrautLM-13b-v1 | [Link](https://huggingface.co/VAGOsolutions/SauerkrautLM-13b-v1) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-13B-v1-GPTQ) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-13B-v1-GGUF) | [Link](https://huggingface.co/TheBloke/SauerkrautLM-13B-v1-AWQ) | | SauerkrautLM-70b-v1 | [Link](https://huggingface.co/VAGOsolutions/SauerkrautLM-70b-v1) | soon | soon | soon | ## Model Details **SauerkrautLM-70b-v1** **Training Dataset:** SauerkrautLM was trained with mix of German data augmentation and translated data. We found, that only a simple translation of training data can lead to unnatural German phrasings. Data augmentation techniques were used to grant grammatical, syntactical correctness and a more natural German wording in our training data. **Training Procedure:** SauerkrautLM-70b-v1 was fine-tuned using QLoRA on 2 A100 80GB with Axolotl. - **Trained by:** SauerkrautLM-v1 trained by VAGO solutions - **Model Type:** SauerkrautLM-v1 is an auto-regressive language model based on the transformer architecture - **Language(s):** German, English - **License:** [LLAMA 2 COMMUNITY LICENSE AGREEMENT](https://huggingface.co/meta-llama/Llama-2-70b/raw/main/LICENSE.txt) - **Contact:** [Website](https://vago-solutions.de/#Kontakt) [David Golchinfar](mailto:golchinfar@vago-solutions.de) **Prompt Template:** ``` [INST] <<SYS>> Ein Chat zwischen einem Benutzer und einem KI-Assistenten. Der KI-Assistent gibt hilfreiche, detaillierte und höfliche Antworten. <</SYS>> {prompt}[/INST] ``` ## Evaluation **[MT-Bench-TrueGerman](https://huggingface.co/datasets/VAGOsolutions/MT-Bench-TrueGerman)** ![First Turn](images/FirstTurn.PNG "First Turn") ![Second Turn](images/SecondTurn.PNG "Second Turn") ![Average](images/Average.PNG "Average") ![Category Scores](images/SauerkrautLM-70b.PNG "Category Scores") ![Category Plot](images/SauerkrautLM-70b-v1.png "Category Plot") ## MT-Bench-TrueGerman Response Example **SauerkrautLM-70b-v1** **Prompt** > Beschreiben Sie eine lebhafte und einzigartige Figur unter Verwendung bildhafter und kreativer Sprache. Bitte antworten Sie in weniger als zwei Absätzen.", "Überarbeiten Sie Ihre vorherige Antwort und integrieren Sie in jedem Satz eine Anspielung auf ein berühmtes literarisches Werk oder historisches Ereignis. **Antwort SauerkrautLM-70b-v1:** ``` Sie war wie kein anderer, eine Sonnenblume inmitten von Dunkelheit. Ihr Lachen war wie ein Regenschauer nach einer langen Trockenperiode, erfrischend und erlebnisreich. Sie trat mit einem Schwung ein, ihre Haare flatterten wie Flammen, wenn sie sich zu einer Leidenschaftlichen Symphonie unter dem Mondlicht in Bewegung setzten. Ihre Augen funkelten wie Saphire, während sie die Welt mit einer Wut und Neugierde betrachteten, die man selbst in den tiefsten Ozeanen nicht finden konnte. Jeder Schritt, den sie machte, war ein Tanz, jedes Wort, das sie sprach, war eine Melodie. Sie war nicht nur eine Person, sie war ein Ereignis, ein Vorfall, eine Erfahrung, die man niemals vergessen konnte.", "Sie war wie eine moderne Helena von Troja, ihre Schönheit bezauberte alle, doch ihre Geheimnisse waren tief wie das Meer, so wie in Homer's epischer Geschichte. Ihr Lachen war wie der Klang von Glocken inmitten einer stürmischen Nacht, erinnernd an das berühmte Gedicht \"The Bells\" von Edgar Allan Poe. Mit jedem ihrer Schritte, der wie ein Tanz auf dem Wind war, erinnerte man sich an die elegante Bewegung von Cinderella in ihrer königlichen Schuhsohle. Ihre Augen funkelten wie Sterne auf der Leinwand von Van Goghs Sternennacht, während sie durch das Labyrinth des Lebens navigierte. Jedes Wort, das sie sprach, war eine Symphonie, so wie Shakespeares Sonette in den Ohren eines Liebenden klingen. Sie war nicht nur ein Mensch, sie war ein Ereignis, eine Saga, die von den Geschichtsschreibern der Zeit festgehalten wurde." ``` **Prompt** > Sie sehen ein schönes rotes Haus auf Ihrer linken Seite und ein faszinierendes Gewächshaus auf Ihrer rechten Seite, einen attraktiven beheizten rosa Ort vor sich. Also, wo ist das Weiße Haus?", "Enthält die ursprüngliche Frage Hinweise, um den Standort des Weißen Hauses eindeutig zu bestimmen?"],"reference": ["Die Antwort ist \"Washington, DC\".", "Nein. **Antwort SauerkrautLM-70b-v1:** ``` Das Weiße Haus ist in Washington D.C.", "Nein, die ursprüngliche Frage enthält keine Hinweise, um den Standort des Weißen Hauses eindeutig zu bestimmen." ``` **Prompt** > Betrachten Sie einen Satelliten, der sich in einer kreisförmigen Umlaufbahn um die Erde befindet. Die Geschwindigkeit des Satelliten nimmt ab. Was wird mit dem orbitalen Radius des Satelliten und seiner Umlaufdauer passieren? Bitte rechtfertigen Sie Ihre Antwort unter Verwendung physikalischer Prinzipien.", "Was sind einige Sonderfälle oder Randfälle in Ihrer Lösung? Wie gehen Sie mit ihnen um?"] ,"reference": ["Der orbitale Radius wird zunehmen und die Umlaufdauer wird zunehmen **Antwort SauerkrautLM-70b-v1:** ``` Wenn sich die Geschwindigkeit eines Satelliten in einer kreisförmigen Umlaufbahn um die Erde verringert, wird sich auch der Orbitalradius des Satelliten verändern. Dies kann auf Basis physikalischer Prinzipien erklärt werden.\n\n1. Erhaltung des Drehimpulses: Ein Satellit hat einen bestimmten Drehimpuls, der das Produkt aus seiner Masse, Geschwindigkeit und dem Radius entspricht. Wenn sich die Geschwindigkeit des Satelliten verringert, muss der Radius angepasst werden, um den Drehimpuls zu erhalten.\n\n2. Kepler'sche Gesetze: Johannes Kepler formulierte drei Gesetze für den Umlauf von Himmelskörpern um die Sonne, die auch auf Satelliten um die Erde angewendet werden können. Das zweite Gesetz besagt, dass die Geschwindigkeit eines Satelliten umso größer ist, je näher er an einem Fokus (in diesem Fall der Erde) ist. Wenn sich die Geschwindigkeit des Satelliten verringert, wird er sich weiter vom Fokus entfernen und somit den Orbitalradius erhöhen.\n\n3. Energieerhaltung: Die Energie eines Satelliten in einer Umlaufbahn hängt von seiner Geschwindigkeit und seinem Radius ab. Wenn die Geschwindigkeit des Satelliten abnimmt, muss die Energie aufrechterhalten werden. Dies kann nur erfolgen, indem sich der Radius erhöht, da die Geschwindigkeit bereits abgenommen hat und somit nicht mehr als Antrieb dienen kann.\n\n4. Gravitation: Die Gravitationskraft zwischen dem Satelliten und der Erde ist verantwortlich für die Umlaufbahn des Satelliten. Wenn sich der Radius des Satelliten vergrößert, verringert sich auch die Gravitationskraft zwischen dem Satelliten und der Erde. Dadurch wird die Geschwindigkeit des Satelliten weiter abgebremst, was wiederum zu weiteren Änderungen des Radius und der Umlaufdauer führen kann.\n\nBasierend auf diesen physikalischen Prinzipien lässt sich sagen, dass sich der Orbitalradius des Satelliten vergrößern wird, wenn sich seine Geschwindigkeit verringert. Dadurch wird auch die Umlaufdauer des Satelliten verändert, da die Zeit, die benötigt wird, um sich um die Erde zu bewegen, proportional zum Radius ist.", "Bei der Lösung des Problems, in dem sich die Geschwindigkeit eines Satelliten in einer kreisförmigen Umlaufbahn um die Erde verringert, gibt es einige Sonderfälle und Randfälle, die berücksichtigt werden sollten.\n\n1. Randfall: Wenn die Geschwindigkeit des Satelliten zu gering wird, kann er die Anziehungskraft der Erde nicht mehr überwinden und in die Atmosphäre eintreten. In diesem Fall würde der Satellit nicht mehr in einer Umlaufbahn bleiben, sondern in der Atmosphäre verglühen.\n\n2. Sonderfall: Wenn der Satellit in einer sehr niedrigen Umlaufbahn ist und seine Geschwindigkeit geringer als die Fluchtgeschwindigkeit für diesen Radius ist, kann es zu einer Abtragung der Geschwindigkeit durch den Widerstand in der Atmosphäre kommen. Dies kann dazu führen, dass der Satellit aus seiner Umlaufbahn abgebremst und in die Atmosphäre eintreten wird.\n\n3. Sonderfall: Wenn die Geschwindigkeit des Satelliten unter einen bestimmten Wert fällt, kann es zu einer Stabilisierung der Umlaufbahn kommen, bei der der Satellit in einer stabilen Umlaufbahn bleibt, auch wenn seine Geschwindigkeit weiter abnimmt. Dies wird als \"Hohmann-Transfer\" bezeichnet und ist ein Sonderfall, bei dem der Satellit eine Umlaufbahn um einen anderen Himmelskörper aufsuchen kann.\n\nUm mit diesen Sonderfällen und Randfällen umzugehen, ist es wichtig, die genauen Parameter des Satelliten, wie seine Masse, seine anfängliche Geschwindigkeit und seinen Orbitalradius, zu berücksichtigen. Es ist auch wichtig, die physikalischen Prinzipien, wie die Erhaltung des Drehimpulses, Keplers Gesetze, Energieerhaltung und Gravitation, zu verwenden, um die Auswirkungen der Geschwindigkeitsänderung auf den Orbitalradius und die Umlaufdauer zu analysieren." ``` ## Disclaimer Our models have been meticulously trained on extensive datasets. While we have made diligent efforts to thoroughly screen and eliminate any instances of coarse or inappropriate language from our data, we must inform users that despite our best efforts in data cleansing, the possibility of some such content slipping through cannot be entirely ruled out. Furthermore, it is important to note that we have implemented filters within our models; however, we cannot always guarantee consistently appropriate behavior. Therefore, if you encounter any issues or come across inappropriate content, we kindly request that you inform us through the contact information provided. Additionally, it is essential to understand that the licensing of these models does not constitute legal advice. We are not held responsible for the actions of third parties who utilize our models. These models may be employed for commercial purposes, and the original Llama2 license remains applicable and is included with the model files. ## Contact If you are interested in customized LLMs for business applications, please get in contact with us via our website or contact us at [Dr. Daryoush Vaziri](mailto:vaziri@vago-solutions.de). We are also grateful for your feedback and suggestions. ## Collaborations We are also keenly seeking support and investment for our startup, VAGO solutions, where we continuously advance the development of robust language models designed to address a diverse range of purposes and requirements. If the prospect of collaboratively navigating future challenges excites you, we warmly invite you to reach out to us. ## Acknowledgement Many thanks to [TheBloke](https://huggingface.co/TheBloke) for super fast quantifying all of our models. <!-- original-model-card end -->
31,347
[ [ -0.040252685546875, -0.042816162109375, 0.0243377685546875, 0.00907135009765625, -0.022247314453125, -0.00283050537109375, 0.00022172927856445312, -0.04229736328125, 0.042694091796875, 0.0191802978515625, -0.0526123046875, -0.038421630859375, -0.02655029296875, 0.005039215087890625, 0.0027484893798828125, 0.08282470703125, -0.0029888153076171875, -0.0031757354736328125, -0.01427459716796875, -0.0235595703125, -0.00986480712890625, -0.0284576416015625, -0.0262298583984375, -0.02874755859375, 0.0287933349609375, 0.0238037109375, 0.061981201171875, 0.038665771484375, 0.033477783203125, 0.0253753662109375, -0.008056640625, -0.002117156982421875, -0.025909423828125, -0.00753021240234375, 0.00998687744140625, -0.0166168212890625, -0.0562744140625, 0.0025615692138671875, 0.0259857177734375, 0.0081329345703125, -0.0190582275390625, 0.031494140625, -0.00579071044921875, 0.064453125, -0.030548095703125, 0.018280029296875, -0.0135040283203125, 0.00661468505859375, -0.004730224609375, 0.01220703125, -0.002040863037109375, -0.0299072265625, -0.003322601318359375, -0.0716552734375, 0.0032062530517578125, -0.0096588134765625, 0.10455322265625, 0.0180511474609375, -0.0215911865234375, -0.004058837890625, -0.039154052734375, 0.0538330078125, -0.07354736328125, 0.02215576171875, 0.0204620361328125, 0.032623291015625, -0.01177215576171875, -0.07000732421875, -0.03424072265625, -0.0036869049072265625, -0.0214691162109375, 0.026947021484375, -0.048583984375, 0.0059051513671875, 0.033203125, 0.058502197265625, -0.06451416015625, -0.017578125, -0.0216827392578125, -0.00008946657180786133, 0.059173583984375, 0.0043487548828125, 0.030670166015625, -0.0205841064453125, -0.033050537109375, -0.0129547119140625, -0.04486083984375, -0.0010843276977539062, 0.0276336669921875, -0.0171661376953125, -0.044677734375, 0.0304412841796875, -0.022216796875, 0.0399169921875, 0.0095977783203125, -0.04058837890625, 0.0221710205078125, -0.047271728515625, -0.041534423828125, -0.0277252197265625, 0.0748291015625, 0.036163330078125, -0.0132293701171875, 0.01476287841796875, 0.008148193359375, 0.004131317138671875, 0.0013151168823242188, -0.07080078125, -0.039398193359375, 0.037384033203125, -0.039398193359375, -0.01125335693359375, -0.0055694580078125, -0.0621337890625, -0.016326904296875, -0.0035305023193359375, 0.0238800048828125, -0.036712646484375, -0.0232391357421875, -0.006870269775390625, -0.0307159423828125, 0.036468505859375, 0.03436279296875, -0.066650390625, 0.0190887451171875, 0.0196685791015625, 0.058319091796875, 0.00511932373046875, 0.00311279296875, -0.0187835693359375, 0.01474761962890625, -0.012420654296875, 0.03704833984375, -0.01502227783203125, -0.041595458984375, -0.0185394287109375, 0.0261383056640625, 0.0161285400390625, -0.032318115234375, 0.057586669921875, -0.0015468597412109375, 0.00787353515625, -0.042144775390625, -0.028045654296875, -0.024261474609375, 0.00887298583984375, -0.0452880859375, 0.09051513671875, 0.0263824462890625, -0.06298828125, 0.0124053955078125, -0.04376220703125, -0.0278167724609375, 0.0211334228515625, -0.0110015869140625, -0.038360595703125, -0.0035266876220703125, 0.0197906494140625, 0.029632568359375, -0.0289764404296875, 0.0159912109375, -0.00864410400390625, -0.0196533203125, 0.0034999847412109375, -0.021331787109375, 0.07855224609375, 0.0298919677734375, -0.0310516357421875, 0.026397705078125, -0.06060791015625, -0.00579833984375, 0.050750732421875, -0.02557373046875, 0.003162384033203125, -0.017486572265625, -0.0030803680419921875, 0.0024585723876953125, 0.024658203125, -0.017578125, 0.0239715576171875, 0.00012791156768798828, 0.052978515625, 0.046661376953125, 0.000011324882507324219, 0.026123046875, -0.04046630859375, 0.047027587890625, -0.00745391845703125, 0.044677734375, -0.01116943359375, -0.05108642578125, -0.050811767578125, -0.0311431884765625, 0.022674560546875, 0.05609130859375, -0.051116943359375, 0.047943115234375, -0.0128631591796875, -0.07147216796875, -0.048919677734375, 0.00844573974609375, 0.026824951171875, 0.02581787109375, 0.03192138671875, -0.029388427734375, -0.036529541015625, -0.0721435546875, 0.0022487640380859375, -0.024200439453125, -0.00337982177734375, 0.052093505859375, 0.040252685546875, -0.0240631103515625, 0.042144775390625, -0.0595703125, -0.022430419921875, -0.00954437255859375, -0.014251708984375, 0.00988006591796875, 0.03790283203125, 0.08184814453125, -0.050323486328125, -0.0352783203125, 0.01161956787109375, -0.05657958984375, 8.940696716308594e-7, 0.0045013427734375, -0.0187530517578125, 0.037078857421875, 0.0179901123046875, -0.05682373046875, 0.04815673828125, 0.0570068359375, -0.0228118896484375, 0.052642822265625, -0.0277252197265625, 0.0197296142578125, -0.07891845703125, 0.0218048095703125, 0.0258026123046875, -0.0234527587890625, -0.0372314453125, 0.0212249755859375, 0.0009374618530273438, 0.006977081298828125, -0.0433349609375, 0.04095458984375, -0.0300750732421875, 0.0063323974609375, 0.0150299072265625, -0.005950927734375, 0.0117340087890625, 0.04412841796875, -0.022918701171875, 0.064453125, 0.037689208984375, -0.0230712890625, 0.0418701171875, 0.0134735107421875, -0.007450103759765625, 0.0396728515625, -0.06610107421875, -0.0018482208251953125, -0.001644134521484375, 0.0400390625, -0.0958251953125, -0.03302001953125, 0.05731201171875, -0.04559326171875, 0.0272979736328125, -0.0372314453125, -0.0237884521484375, -0.032073974609375, -0.043975830078125, 0.016815185546875, 0.057861328125, -0.04010009765625, 0.044830322265625, 0.039947509765625, -0.005832672119140625, -0.035919189453125, -0.052734375, -0.006591796875, -0.02630615234375, -0.043243408203125, 0.028564453125, -0.019561767578125, -0.011749267578125, -0.002445220947265625, -0.01654052734375, 0.014373779296875, 0.0004153251647949219, 0.03253173828125, 0.0277557373046875, -0.009246826171875, -0.0222320556640625, -0.0026340484619140625, -0.007770538330078125, 0.0006928443908691406, -0.0201263427734375, 0.039337158203125, -0.0335693359375, 0.003604888916015625, -0.03656005859375, 0.0174407958984375, 0.037353515625, -0.01023101806640625, 0.042144775390625, 0.07476806640625, -0.0299072265625, 0.0277557373046875, -0.03765869140625, 0.01177215576171875, -0.040313720703125, -0.00872039794921875, -0.01548004150390625, -0.057403564453125, 0.05010986328125, 0.0203857421875, 0.00849151611328125, 0.06298828125, 0.029876708984375, 0.0014057159423828125, 0.0693359375, 0.01102447509765625, -0.01062774658203125, 0.039459228515625, -0.048583984375, 0.00047206878662109375, -0.0494384765625, -0.038177490234375, -0.034210205078125, -0.02484130859375, -0.05279541015625, -0.040374755859375, 0.022216796875, 0.0211639404296875, -0.017578125, 0.037506103515625, -0.06365966796875, 0.03607177734375, 0.035888671875, 0.01153564453125, 0.0033893585205078125, 0.0024700164794921875, -0.01175689697265625, -0.01161956787109375, -0.039306640625, -0.02288818359375, 0.0662841796875, 0.0306243896484375, 0.054962158203125, 0.027313232421875, 0.043792724609375, 0.0189666748046875, 0.00911712646484375, -0.05364990234375, 0.04913330078125, 0.0030422210693359375, -0.04827880859375, -0.01120758056640625, -0.035125732421875, -0.054656982421875, 0.01666259765625, -0.01410675048828125, -0.0599365234375, 0.005290985107421875, 0.007488250732421875, -0.0177154541015625, 0.0367431640625, -0.0721435546875, 0.0703125, -0.0171966552734375, -0.033966064453125, 0.01451873779296875, -0.0595703125, 0.041290283203125, 0.0308990478515625, 0.0017499923706054688, -0.0181732177734375, 0.0007991790771484375, 0.062103271484375, -0.052337646484375, 0.041534423828125, -0.031768798828125, -0.0205230712890625, 0.033905029296875, -0.00897979736328125, 0.041412353515625, 0.0295867919921875, 0.0123291015625, 0.0258026123046875, 0.01035308837890625, -0.03717041015625, -0.03173828125, 0.065185546875, -0.05328369140625, -0.05206298828125, -0.052764892578125, -0.0225982666015625, 0.02215576171875, 0.0110626220703125, 0.034210205078125, 0.0081024169921875, -0.010894775390625, 0.006473541259765625, 0.0501708984375, -0.017242431640625, 0.039642333984375, -0.0003952980041503906, -0.0233612060546875, -0.05908203125, 0.07037353515625, 0.00286102294921875, 0.0115203857421875, 0.012603759765625, 0.0157318115234375, -0.023590087890625, -0.0279083251953125, -0.053558349609375, 0.01389312744140625, -0.041107177734375, -0.035797119140625, -0.042083740234375, -0.0210418701171875, -0.044342041015625, -0.0100250244140625, -0.0084075927734375, -0.040191650390625, -0.0455322265625, 0.00244903564453125, 0.0672607421875, 0.04534912109375, -0.0219573974609375, 0.0262908935546875, -0.052459716796875, 0.0277252197265625, 0.0258026123046875, 0.01885986328125, 0.004932403564453125, -0.035552978515625, -0.005634307861328125, -0.00383758544921875, -0.04608154296875, -0.071044921875, 0.04376220703125, -0.0018053054809570312, 0.02996826171875, 0.038604736328125, -0.00946044921875, 0.06610107421875, -0.02874755859375, 0.095703125, 0.032318115234375, -0.0633544921875, 0.046844482421875, -0.032318115234375, 0.02520751953125, 0.0277252197265625, 0.048675537109375, -0.0253753662109375, 0.0004837512969970703, -0.055267333984375, -0.06756591796875, 0.031951904296875, 0.0127716064453125, -0.020416259765625, 0.0124053955078125, 0.0202178955078125, 0.012481689453125, 0.0002961158752441406, -0.05224609375, -0.0595703125, -0.032562255859375, 0.002841949462890625, -0.0066680908203125, -0.010772705078125, -0.015838623046875, -0.073974609375, 0.0662841796875, -0.0091400146484375, 0.045440673828125, 0.031280517578125, 0.006320953369140625, 0.002178192138671875, 0.024627685546875, 0.060638427734375, 0.050323486328125, -0.0286102294921875, -0.0119171142578125, 0.01495361328125, -0.0552978515625, 0.0134124755859375, 0.03631591796875, -0.01381683349609375, 0.00786590576171875, -0.0108795166015625, 0.058319091796875, 0.0004448890686035156, -0.0274810791015625, 0.0202178955078125, -0.0218505859375, -0.036529541015625, -0.0264892578125, 0.0125579833984375, 0.030242919921875, 0.0246429443359375, 0.03460693359375, -0.00766754150390625, 0.0187835693359375, -0.04400634765625, 0.0079498291015625, 0.035797119140625, -0.0254974365234375, -0.017730712890625, 0.05889892578125, -0.0007295608520507812, -0.01157379150390625, 0.018035888671875, -0.0479736328125, -0.0361328125, 0.047821044921875, 0.041168212890625, 0.06024169921875, -0.0181732177734375, 0.0265045166015625, 0.041412353515625, 0.01293182373046875, 0.0034332275390625, 0.040618896484375, -0.003276824951171875, -0.00592803955078125, -0.0149078369140625, -0.049407958984375, -0.027862548828125, 0.0237274169921875, -0.047027587890625, 0.0017137527465820312, -0.0501708984375, -0.023193359375, 0.005855560302734375, 0.03826904296875, -0.045013427734375, 0.018646240234375, -0.0036029815673828125, 0.06549072265625, -0.0435791015625, 0.06158447265625, 0.057830810546875, -0.0273284912109375, -0.052001953125, -0.0149383544921875, 0.01531219482421875, -0.052337646484375, -0.00972747802734375, -0.009613037109375, 0.011383056640625, -0.00316619873046875, -0.059783935546875, -0.051513671875, 0.11700439453125, 0.0252838134765625, -0.03497314453125, 0.004058837890625, -0.0114593505859375, 0.023956298828125, -0.016510009765625, 0.0212249755859375, 0.0643310546875, 0.041656494140625, 0.02313232421875, -0.053253173828125, 0.0281219482421875, -0.03216552734375, -0.002735137939453125, 0.025146484375, -0.08203125, 0.055328369140625, -0.01287078857421875, -0.0157012939453125, 0.0238800048828125, 0.046173095703125, 0.03179931640625, 0.007221221923828125, 0.01064300537109375, 0.069580078125, 0.062103271484375, -0.038818359375, 0.08197021484375, -0.0009908676147460938, 0.0262908935546875, 0.0516357421875, -0.001689910888671875, 0.04083251953125, 0.0309600830078125, -0.04534912109375, 0.037322998046875, 0.05767822265625, -0.0260772705078125, 0.03472900390625, 0.017852783203125, -0.02142333984375, 0.005306243896484375, -0.0143890380859375, -0.05914306640625, 0.00356292724609375, 0.036041259765625, -0.0221405029296875, -0.0030193328857421875, -0.029876708984375, 0.0159912109375, -0.032135009765625, -0.01812744140625, 0.0498046875, 0.00439453125, -0.02423095703125, 0.0721435546875, 0.0009813308715820312, 0.06072998046875, -0.0458984375, -0.0115814208984375, -0.033966064453125, 0.00620269775390625, -0.02972412109375, -0.061614990234375, 0.0033817291259765625, -0.00860595703125, -0.006435394287109375, 0.005634307861328125, 0.0653076171875, -0.00616455078125, -0.03216552734375, 0.0135040283203125, 0.01861572265625, 0.0219879150390625, 0.0170440673828125, -0.06591796875, 0.035980224609375, 0.00965118408203125, -0.0206756591796875, 0.035369873046875, 0.01543426513671875, 0.024505615234375, 0.033294677734375, 0.040985107421875, -0.011138916015625, 0.0056915283203125, -0.0204925537109375, 0.061431884765625, -0.052520751953125, -0.0289764404296875, -0.056182861328125, 0.038238525390625, -0.01020050048828125, -0.035888671875, 0.055572509765625, 0.04547119140625, 0.07061767578125, -0.0119781494140625, 0.06536865234375, -0.0175323486328125, -0.0017108917236328125, -0.031951904296875, 0.06048583984375, -0.0640869140625, 0.0008006095886230469, -0.03875732421875, -0.05755615234375, -0.0258941650390625, 0.050811767578125, 0.003971099853515625, -0.0009732246398925781, 0.0203399658203125, 0.051483154296875, -0.00531005859375, 0.00782012939453125, 0.01371002197265625, 0.00328826904296875, 0.025543212890625, 0.05694580078125, 0.035736083984375, -0.06689453125, 0.044525146484375, -0.0188140869140625, -0.01236724853515625, -0.032501220703125, -0.06610107421875, -0.057769775390625, -0.03948974609375, -0.036651611328125, -0.04156494140625, -0.0026226043701171875, 0.061798095703125, 0.0574951171875, -0.048675537109375, -0.0166168212890625, 0.0163726806640625, 0.0087127685546875, -0.0189361572265625, -0.02093505859375, 0.0219573974609375, 0.023406982421875, -0.037567138671875, 0.0200958251953125, 0.024169921875, 0.042266845703125, -0.0113525390625, -0.046844482421875, -0.032196044921875, 0.00540924072265625, 0.04998779296875, 0.0574951171875, -0.062164306640625, -0.01018524169921875, -0.0031032562255859375, -0.00003719329833984375, 0.03216552734375, 0.02166748046875, -0.042755126953125, -0.0065765380859375, 0.04119873046875, 0.025146484375, 0.05047607421875, 0.001865386962890625, 0.004062652587890625, -0.0484619140625, 0.006893157958984375, -0.004642486572265625, 0.040191650390625, 0.01461029052734375, -0.0291595458984375, 0.0640869140625, 0.027374267578125, -0.04833984375, -0.060333251953125, -0.002956390380859375, -0.09716796875, -0.0163726806640625, 0.08648681640625, -0.018280029296875, -0.0301513671875, 0.0239715576171875, -0.0310821533203125, 0.0282440185546875, -0.04168701171875, 0.0212554931640625, 0.04669189453125, -0.0101470947265625, -0.01239776611328125, -0.052520751953125, 0.0472412109375, 0.01904296875, -0.07855224609375, -0.006591796875, 0.046539306640625, 0.0210113525390625, 0.0280914306640625, 0.054840087890625, -0.0245361328125, 0.021881103515625, 0.0003917217254638672, 0.00940704345703125, 0.004486083984375, -0.02484130859375, -0.03387451171875, -0.0091094970703125, -0.024322509765625, -0.02154541015625 ] ]
margaretshark/ppo-Pyramids
2023-10-28T14:13:54.000Z
[ "ml-agents", "tensorboard", "onnx", "Pyramids", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Pyramids", "region:us" ]
reinforcement-learning
margaretshark
null
null
margaretshark/ppo-Pyramids
0
2
ml-agents
2023-10-28T14:13:51
--- 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://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub: - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction - A *longer tutorial* to understand how works ML-Agents: https://huggingface.co/learn/deep-rl-course/unit5/introduction ### Resume the training ```bash mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume ``` ### Watch your Agent play You can watch your agent **playing directly in your browser** 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity 2. Step 1: Find your model_id: margaretshark/ppo-Pyramids 3. Step 2: Select your *.nn /*.onnx file 4. Click on Watch the agent play 👀
1,338
[ [ -0.03997802734375, -0.0340576171875, 0.002132415771484375, 0.0140380859375, -0.0109710693359375, 0.01195526123046875, 0.01739501953125, -0.0147247314453125, 0.033599853515625, 0.030853271484375, -0.040069580078125, -0.05029296875, -0.029876708984375, -0.01499176025390625, 0.013336181640625, 0.09649658203125, 0.007049560546875, 0.0304107666015625, -0.0004799365997314453, 0.01209259033203125, 0.005035400390625, -0.0142822265625, -0.06890869140625, -0.060638427734375, 0.03582763671875, 0.0236053466796875, 0.064453125, 0.04083251953125, 0.0285186767578125, 0.029266357421875, -0.003704071044921875, -0.035247802734375, -0.038299560546875, -0.011138916015625, -0.01171112060546875, -0.03131103515625, -0.060882568359375, 0.027587890625, 0.04827880859375, 0.0196380615234375, -0.0222930908203125, 0.016448974609375, -0.027923583984375, 0.03143310546875, -0.034637451171875, 0.017547607421875, -0.0133209228515625, 0.035369873046875, 0.023040771484375, -0.0150299072265625, -0.025390625, -0.0246734619140625, 0.0287933349609375, -0.0677490234375, 0.000331878662109375, -0.0171661376953125, 0.0875244140625, 0.0188446044921875, -0.03387451171875, -0.022369384765625, -0.0355224609375, 0.047821044921875, -0.0301971435546875, 0.0028285980224609375, 0.03717041015625, 0.05126953125, -0.027679443359375, -0.0780029296875, -0.0303802490234375, -0.053314208984375, 0.004497528076171875, 0.0080413818359375, -0.0018444061279296875, 0.0187530517578125, 0.03387451171875, 0.0247802734375, -0.030853271484375, -0.0097808837890625, -0.01690673828125, -0.0203857421875, 0.047027587890625, 0.007251739501953125, 0.0224456787109375, 0.0160369873046875, -0.043426513671875, -0.034637451171875, -0.04791259765625, 0.0439453125, 0.033477783203125, 0.0014715194702148438, -0.0364990234375, 0.058135986328125, 0.005558013916015625, 0.020782470703125, 0.0291748046875, -0.0382080078125, 0.0166473388671875, 0.0169219970703125, -0.02386474609375, -0.0014123916625976562, 0.039642333984375, 0.0240325927734375, 0.0216827392578125, -0.0166473388671875, -0.0274505615234375, -0.0047454833984375, 0.03643798828125, -0.06939697265625, -0.038604736328125, 0.01515960693359375, -0.033111572265625, -0.037811279296875, 0.00566864013671875, -0.0312042236328125, -0.01947021484375, -0.01416015625, 0.035369873046875, -0.038543701171875, -0.039764404296875, 0.005764007568359375, -0.0297088623046875, 0.050567626953125, 0.0137481689453125, -0.058135986328125, 0.025909423828125, 0.044891357421875, 0.03948974609375, 0.04150390625, -0.0531005859375, -0.041961669921875, 0.0065460205078125, -0.0154266357421875, 0.05206298828125, -0.0197296142578125, -0.0242919921875, 0.011444091796875, -0.00037360191345214844, -0.00396728515625, -0.043304443359375, 0.013763427734375, -0.049560546875, 0.0170135498046875, 0.0092620849609375, -0.048065185546875, -0.0208740234375, 0.03424072265625, -0.033843994140625, 0.06597900390625, 0.029296875, -0.03729248046875, 0.020599365234375, -0.06732177734375, -0.0280914306640625, 0.006893157958984375, -0.0016336441040039062, -0.035980224609375, -0.010894775390625, -0.023681640625, 0.026824951171875, 0.0199127197265625, -0.00937652587890625, -0.0288238525390625, -0.0301055908203125, 0.0204620361328125, 0.01702880859375, 0.06988525390625, 0.0081787109375, -0.0285491943359375, 0.0323486328125, -0.05792236328125, -0.0001251697540283203, 0.0157623291015625, -0.0345458984375, 0.021453857421875, -0.004482269287109375, 0.002101898193359375, 0.0269775390625, 0.02886962890625, -0.0282135009765625, 0.050628662109375, -0.01959228515625, 0.0030975341796875, 0.05010986328125, -0.0174407958984375, 0.05230712890625, -0.039581298828125, 0.05316162109375, 0.0029773712158203125, 0.02899169921875, -0.001148223876953125, -0.0306243896484375, -0.053497314453125, -0.0293426513671875, 0.01012420654296875, 0.042938232421875, -0.058013916015625, 0.046051025390625, 0.015106201171875, -0.050537109375, -0.04498291015625, -0.01360321044921875, 0.0318603515625, 0.01091766357421875, 0.0130767822265625, -0.038665771484375, -0.034881591796875, -0.0455322265625, 0.025665283203125, -0.01438140869140625, -0.0267181396484375, 0.024932861328125, 0.054931640625, -0.0271759033203125, 0.06915283203125, -0.0192413330078125, -0.0300140380859375, -0.006805419921875, 0.006744384765625, 0.002471923828125, 0.039794921875, 0.051513671875, -0.044219970703125, -0.029815673828125, -0.01043701171875, -0.0745849609375, 0.02130126953125, 0.00168609619140625, -0.004901885986328125, -0.00598907470703125, 0.0173492431640625, -0.0543212890625, 0.0268707275390625, 0.03369140625, -0.056732177734375, 0.0562744140625, -0.0181427001953125, -0.008453369140625, -0.07220458984375, 0.00518798828125, 0.003482818603515625, -0.0220489501953125, -0.0308990478515625, 0.0276947021484375, -0.029754638671875, -0.01316070556640625, -0.047271728515625, 0.03955078125, -0.034088134765625, -0.030059814453125, -0.037139892578125, -0.009765625, -0.01617431640625, 0.045440673828125, -0.003543853759765625, 0.046844482421875, 0.08807373046875, -0.054351806640625, 0.04425048828125, 0.030029296875, -0.004756927490234375, 0.0290679931640625, -0.0411376953125, 0.016876220703125, -0.018096923828125, 0.03778076171875, -0.048492431640625, -0.0103912353515625, 0.0545654296875, -0.0401611328125, 0.03826904296875, -0.03515625, -0.0114288330078125, -0.0092620849609375, -0.0263214111328125, 0.003025054931640625, 0.036773681640625, -0.038726806640625, 0.059234619140625, 0.05389404296875, 0.027679443359375, -0.0653076171875, -0.006954193115234375, -0.00664520263671875, -0.0192108154296875, -0.037261962890625, 0.02520751953125, -0.0146484375, -0.0183868408203125, -0.0002703666687011719, 0.01132965087890625, -0.01041412353515625, 0.0171051025390625, 0.040985107421875, 0.0012722015380859375, -0.027862548828125, -0.0186920166015625, -0.0235595703125, -0.034942626953125, 0.0108642578125, -0.006893157958984375, 0.039764404296875, -0.0374755859375, -0.00013530254364013672, -0.061553955078125, -0.0035686492919921875, 0.0389404296875, 0.007476806640625, 0.05523681640625, 0.06610107421875, -0.0207061767578125, -0.007106781005859375, -0.0201263427734375, -0.043853759765625, -0.03704833984375, 0.00902557373046875, -0.046661376953125, -0.050811767578125, 0.03643798828125, -0.0291900634765625, 0.00507354736328125, 0.01922607421875, 0.038665771484375, -0.0222320556640625, 0.06793212890625, 0.07366943359375, -0.00943756103515625, 0.049560546875, -0.058135986328125, -0.0157318115234375, -0.05126953125, -0.0307159423828125, -0.0283660888671875, -0.0279083251953125, -0.03326416015625, -0.01473236083984375, 0.0079345703125, 0.040008544921875, -0.045074462890625, 0.0421142578125, -0.024078369140625, 0.04205322265625, 0.040985107421875, 0.00199127197265625, 0.0012617111206054688, 0.01091766357421875, -0.0107269287109375, 0.0127410888671875, -0.048736572265625, -0.058441162109375, 0.06768798828125, 0.05413818359375, 0.060516357421875, 0.0113983154296875, 0.055450439453125, 0.0125274658203125, 0.03912353515625, -0.0533447265625, 0.053070068359375, 0.0236663818359375, -0.03900146484375, -0.0242919921875, -0.004024505615234375, -0.069091796875, 0.016357421875, -0.0224456787109375, -0.0445556640625, -0.009368896484375, 0.0095062255859375, -0.010711669921875, 0.027374267578125, -0.04278564453125, 0.08917236328125, -0.00859832763671875, -0.01480865478515625, -0.0196990966796875, -0.0523681640625, 0.003826141357421875, 0.04595947265625, -0.0233917236328125, -0.01381683349609375, -0.00514984130859375, 0.027099609375, -0.021240234375, 0.0587158203125, -0.042572021484375, -0.004390716552734375, 0.035736083984375, 0.0196533203125, 0.0293121337890625, 0.0164031982421875, 0.007526397705078125, 0.01277923583984375, -0.0052947998046875, -0.046844482421875, -0.0181732177734375, 0.0290679931640625, -0.08856201171875, -0.018646240234375, -0.04705810546875, -0.01454925537109375, 0.0252227783203125, 0.00033354759216308594, 0.019500732421875, -0.0015354156494140625, -0.031585693359375, -0.0030651092529296875, 0.03741455078125, -0.007366180419921875, 0.034942626953125, 0.0546875, -0.025970458984375, -0.02728271484375, 0.061004638671875, -0.021209716796875, -0.012786865234375, 0.023773193359375, 0.010650634765625, -0.025634765625, -0.035186767578125, -0.0450439453125, 0.01343536376953125, -0.028472900390625, -0.001590728759765625, -0.0275726318359375, -0.016021728515625, -0.03369140625, -0.0101776123046875, -0.03704833984375, -0.00629425048828125, -0.034759521484375, -0.0015659332275390625, 0.0147552490234375, 0.048675537109375, -0.03851318359375, 0.05328369140625, -0.037628173828125, 0.0205230712890625, 0.0308837890625, 0.03179931640625, -0.006591796875, -0.0265960693359375, -0.0259246826171875, 0.00151824951171875, -0.040924072265625, -0.059356689453125, 0.0273284912109375, 0.00004470348358154297, 0.044097900390625, 0.0638427734375, -0.01515960693359375, 0.032562255859375, -0.0290679931640625, 0.040679931640625, 0.0183868408203125, -0.045745849609375, 0.0338134765625, -0.029510498046875, 0.00344085693359375, 0.047210693359375, 0.055633544921875, -0.028045654296875, -0.004299163818359375, -0.054473876953125, -0.04461669921875, 0.059814453125, 0.020416259765625, 0.00572967529296875, 0.01276397705078125, 0.032135009765625, -0.01386260986328125, 0.0212554931640625, -0.0816650390625, -0.041961669921875, -0.0230560302734375, 0.0262603759765625, 0.00036597251892089844, -0.0231170654296875, -0.0221710205078125, -0.02703857421875, 0.0836181640625, -0.01035308837890625, 0.0308990478515625, 0.005443572998046875, -0.0037384033203125, -0.040802001953125, -0.01247406005859375, 0.033416748046875, 0.050018310546875, -0.04864501953125, -0.02484130859375, -0.00853729248046875, -0.0433349609375, 0.0121307373046875, 0.01326751708984375, -0.006134033203125, -0.0034770965576171875, 0.005764007568359375, 0.057861328125, 0.01348876953125, -0.04290771484375, 0.043426513671875, -0.01235198974609375, -0.0155792236328125, -0.0706787109375, 0.01552581787109375, 0.0080108642578125, 0.041412353515625, 0.01212310791015625, -0.009368896484375, -0.004726409912109375, -0.051666259765625, 0.0287628173828125, 0.037506103515625, -0.039276123046875, -0.0207366943359375, 0.035675048828125, 0.01389312744140625, -0.05145263671875, 0.04742431640625, -0.041015625, -0.03192138671875, 0.07305908203125, 0.038787841796875, 0.062164306640625, -0.01763916015625, 0.043304443359375, 0.031585693359375, 0.01039886474609375, 0.01446533203125, 0.0197601318359375, -0.00807952880859375, -0.069091796875, -0.0263214111328125, -0.037353515625, -0.0433349609375, 0.014739990234375, -0.038970947265625, 0.0258941650390625, -0.049896240234375, -0.00920867919921875, 0.008026123046875, 0.03076171875, -0.041473388671875, -0.002685546875, 0.0224456787109375, 0.07763671875, -0.036773681640625, 0.0794677734375, 0.0809326171875, -0.04150390625, -0.0616455078125, -0.018463134765625, -0.0068359375, -0.060302734375, 0.034393310546875, 0.0170745849609375, -0.00409698486328125, 0.0261993408203125, -0.06640625, -0.03741455078125, 0.0989990234375, 0.01200103759765625, -0.0229034423828125, -0.000324249267578125, 0.0035400390625, 0.04498291015625, -0.05743408203125, 0.05584716796875, 0.0252227783203125, 0.0263671875, 0.0233306884765625, -0.051055908203125, -0.0255279541015625, -0.01425933837890625, -0.0274505615234375, -0.0083160400390625, -0.047119140625, 0.07098388671875, -0.03375244140625, -0.005100250244140625, 0.032989501953125, 0.0439453125, 0.0305633544921875, 0.043792724609375, 0.04296875, 0.06256103515625, 0.030242919921875, 0.00577545166015625, 0.0673828125, -0.0306549072265625, 0.057037353515625, 0.0745849609375, -0.0330810546875, 0.041015625, 0.0191192626953125, -0.011444091796875, 0.061676025390625, 0.0615234375, -0.023681640625, 0.03216552734375, 0.044464111328125, -0.0361328125, -0.01910400390625, -0.007022857666015625, -0.03759765625, 0.0305023193359375, 0.00826263427734375, -0.01654052734375, -0.0227813720703125, 0.00559234619140625, -0.01108551025390625, -0.0111236572265625, -0.03369140625, 0.08050537109375, -0.0015869140625, -0.037506103515625, 0.0289306640625, 0.01235198974609375, 0.045745849609375, -0.065673828125, -0.024749755859375, -0.0164794921875, 0.02996826171875, -0.009002685546875, -0.04229736328125, -0.0166015625, -0.020111083984375, -0.0012903213500976562, -0.01690673828125, 0.05157470703125, -0.0232696533203125, -0.0035648345947265625, 0.042205810546875, 0.035675048828125, 0.043487548828125, -0.004131317138671875, -0.0877685546875, -0.033599853515625, -0.00917816162109375, -0.0299835205078125, 0.052398681640625, 0.00942230224609375, 0.03558349609375, 0.06597900390625, 0.042755126953125, -0.0181427001953125, -0.004833221435546875, -0.00046825408935546875, 0.07318115234375, -0.0523681640625, -0.034942626953125, -0.040283203125, 0.048583984375, 0.006633758544921875, -0.0369873046875, 0.040069580078125, 0.05902099609375, 0.08050537109375, -0.0369873046875, 0.0191192626953125, -0.01532745361328125, 0.005401611328125, -0.00911712646484375, 0.061126708984375, -0.029632568359375, -0.0125885009765625, -0.0001589059829711914, -0.0709228515625, 0.0035266876220703125, 0.0775146484375, 0.00931549072265625, -0.0030002593994140625, 0.0264739990234375, 0.06878662109375, -0.007965087890625, -0.01171875, 0.0284881591796875, 0.0240325927734375, 0.006488800048828125, 0.035064697265625, 0.077880859375, -0.043701171875, 0.037353515625, -0.0469970703125, -0.0236053466796875, -0.0122222900390625, -0.0545654296875, -0.08203125, -0.01151275634765625, -0.031768798828125, -0.06500244140625, 0.003215789794921875, 0.0740966796875, 0.0706787109375, -0.053955078125, -0.04986572265625, -0.003955841064453125, 0.0266571044921875, -0.0234222412109375, -0.0172271728515625, 0.0171661376953125, -0.0148773193359375, -0.056640625, 0.03515625, 0.000438690185546875, 0.0299072265625, -0.030853271484375, -0.040924072265625, -0.027984619140625, -0.03179931640625, 0.033538818359375, 0.052520751953125, -0.02252197265625, -0.00476837158203125, -0.0174713134765625, -0.02532958984375, 0.01126861572265625, 0.068115234375, -0.0716552734375, 0.0073089599609375, 0.00995635986328125, 0.005157470703125, 0.040679931640625, -0.01551055908203125, 0.028564453125, -0.0426025390625, 0.0244903564453125, 0.0282135009765625, 0.017425537109375, -0.003337860107421875, -0.0208282470703125, 0.04632568359375, 0.0213470458984375, -0.050018310546875, -0.0347900390625, 0.0181121826171875, -0.0777587890625, -0.017425537109375, 0.064208984375, -0.0269775390625, -0.01763916015625, -0.002735137939453125, -0.03375244140625, 0.029510498046875, -0.035247802734375, 0.06854248046875, 0.025787353515625, -0.00319671630859375, -0.00720977783203125, -0.0264739990234375, 0.057525634765625, 0.016448974609375, -0.044464111328125, -0.04608154296875, 0.033599853515625, 0.0258331298828125, 0.0226898193359375, 0.052520751953125, 0.0057373046875, 0.03460693359375, 0.019439697265625, 0.039459228515625, -0.0169219970703125, -0.043548583984375, -0.03826904296875, 0.0268707275390625, -0.00128173828125, -0.031646728515625 ] ]
patnelt60/distilbert-base-uncased-distilled-squad-finetuned-clinc
2023-10-28T15:05:28.000Z
[ "transformers", "pytorch", "distilbert", "text-classification", "generated_from_trainer", "dataset:clinc_oos", "license:apache-2.0", "model-index", "endpoints_compatible", "region:us" ]
text-classification
patnelt60
null
null
patnelt60/distilbert-base-uncased-distilled-squad-finetuned-clinc
0
2
transformers
2023-10-28T14:59:59
--- license: apache-2.0 base_model: distilbert-base-uncased-distilled-squad tags: - generated_from_trainer datasets: - clinc_oos metrics: - accuracy model-index: - name: distilbert-base-uncased-distilled-squad-finetuned-clinc results: - task: name: Text Classification type: text-classification dataset: name: clinc_oos type: clinc_oos config: plus split: validation args: plus metrics: - name: Accuracy type: accuracy value: 0.8722580645161291 --- <!-- 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-distilled-squad-finetuned-clinc This model is a fine-tuned version of [distilbert-base-uncased-distilled-squad](https://huggingface.co/distilbert-base-uncased-distilled-squad) on the clinc_oos dataset. It achieves the following results on the evaluation set: - Loss: 1.7920 - Accuracy: 0.8723 ## 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: 384 - eval_batch_size: 384 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 10 ### Training results | Training Loss | Epoch | Step | Validation Loss | Accuracy | |:-------------:|:-----:|:----:|:---------------:|:--------:| | No log | 1.0 | 40 | 3.7816 | 0.2016 | | No log | 2.0 | 80 | 3.3589 | 0.5374 | | No log | 3.0 | 120 | 2.9695 | 0.6955 | | No log | 4.0 | 160 | 2.6408 | 0.7726 | | No log | 5.0 | 200 | 2.3697 | 0.8145 | | No log | 6.0 | 240 | 2.1547 | 0.8426 | | No log | 7.0 | 280 | 1.9912 | 0.8529 | | 2.8639 | 8.0 | 320 | 1.8802 | 0.8645 | | 2.8639 | 9.0 | 360 | 1.8138 | 0.8706 | | 2.8639 | 10.0 | 400 | 1.7920 | 0.8723 | ### Framework versions - Transformers 4.32.1 - Pytorch 2.1.0 - Datasets 2.14.6 - Tokenizers 0.13.3
2,355
[ [ -0.034423828125, -0.035400390625, 0.01165771484375, 0.0077056884765625, -0.021209716796875, -0.0115814208984375, -0.006999969482421875, -0.01088714599609375, 0.004322052001953125, 0.0201263427734375, -0.054779052734375, -0.048004150390625, -0.05560302734375, -0.0060272216796875, -0.01153564453125, 0.0865478515625, 0.0030517578125, 0.0190582275390625, -0.004116058349609375, -0.005626678466796875, -0.037750244140625, -0.048980712890625, -0.057464599609375, -0.047088623046875, 0.0119171142578125, 0.024444580078125, 0.060760498046875, 0.05657958984375, 0.046630859375, 0.02166748046875, -0.033294677734375, 0.0009241104125976562, -0.055145263671875, -0.027923583984375, 0.003604888916015625, -0.0303497314453125, -0.050689697265625, 0.00251007080078125, 0.042083740234375, 0.034210205078125, -0.019378662109375, 0.032440185546875, 0.0156402587890625, 0.0487060546875, -0.039398193359375, 0.031036376953125, -0.040802001953125, 0.013519287109375, -0.0111083984375, -0.022216796875, -0.022705078125, 0.007129669189453125, 0.01422119140625, -0.04296875, 0.0418701171875, -0.003498077392578125, 0.08197021484375, 0.0264434814453125, -0.02264404296875, -0.00021266937255859375, -0.05322265625, 0.057830810546875, -0.055419921875, 0.01447296142578125, 0.026611328125, 0.0362548828125, -0.0108642578125, -0.0499267578125, -0.0309906005859375, -0.0013523101806640625, -0.00965118408203125, 0.0217437744140625, -0.0129547119140625, 0.0031719207763671875, 0.04351806640625, 0.0426025390625, -0.04315185546875, 0.0155181884765625, -0.046844482421875, -0.017059326171875, 0.060516357421875, 0.034454345703125, -0.02008056640625, -0.0027217864990234375, -0.0499267578125, -0.01226043701171875, -0.017608642578125, 0.0219268798828125, 0.039886474609375, 0.023162841796875, -0.0244598388671875, 0.037506103515625, -0.031951904296875, 0.05548095703125, 0.02178955078125, -0.017974853515625, 0.047515869140625, -0.00228118896484375, -0.03570556640625, 0.0157928466796875, 0.058074951171875, 0.054595947265625, 0.018829345703125, 0.01314544677734375, -0.0277252197265625, -0.0100250244140625, 0.0126190185546875, -0.07904052734375, -0.028167724609375, 0.010650634765625, -0.036285400390625, -0.047607421875, 0.02459716796875, -0.042266845703125, 0.0102386474609375, -0.0294036865234375, 0.0241851806640625, -0.0285186767578125, -0.0080718994140625, 0.01314544677734375, -0.01189422607421875, 0.013519287109375, 0.0164642333984375, -0.060516357421875, 0.0212249755859375, 0.02593994140625, 0.05096435546875, -0.0007462501525878906, -0.020233154296875, -0.00978851318359375, 0.0041351318359375, -0.016143798828125, 0.037506103515625, -0.004787445068359375, -0.03375244140625, -0.006641387939453125, 0.01971435546875, -0.009124755859375, -0.0377197265625, 0.050750732421875, -0.02008056640625, 0.00594329833984375, -0.01165771484375, -0.042877197265625, -0.01358795166015625, 0.0264434814453125, -0.04876708984375, 0.09710693359375, 0.016143798828125, -0.05560302734375, 0.04718017578125, -0.032684326171875, -0.0018758773803710938, 0.0013265609741210938, -0.0034923553466796875, -0.0599365234375, -0.002956390380859375, 0.005809783935546875, 0.04083251953125, -0.02301025390625, 0.0308990478515625, -0.031494140625, -0.041290283203125, 0.000904083251953125, -0.041961669921875, 0.072265625, 0.00907135009765625, -0.0357666015625, -0.0025157928466796875, -0.0916748046875, 0.023712158203125, 0.02496337890625, -0.036834716796875, 0.00566864013671875, -0.02496337890625, 0.0173797607421875, 0.01776123046875, 0.0224761962890625, -0.032073974609375, 0.00875091552734375, -0.0182342529296875, 0.032440185546875, 0.044525146484375, 0.0088653564453125, 0.010650634765625, -0.032958984375, 0.01178741455078125, 0.0276031494140625, 0.0308685302734375, 0.0172119140625, -0.0347900390625, -0.05810546875, -0.030303955078125, 0.00860595703125, 0.02984619140625, -0.02197265625, 0.06878662109375, 0.0005221366882324219, -0.05908203125, -0.01386260986328125, 0.00885009765625, 0.03314208984375, 0.055511474609375, 0.040313720703125, -0.005565643310546875, -0.038543701171875, -0.0894775390625, 0.007160186767578125, -0.0139617919921875, 0.020355224609375, -0.0003345012664794922, 0.056884765625, -0.00968170166015625, 0.07012939453125, -0.047607421875, -0.022857666015625, -0.019195556640625, 0.00281524658203125, 0.0391845703125, 0.058624267578125, 0.06610107421875, -0.042144775390625, -0.0289154052734375, -0.012603759765625, -0.05633544921875, 0.01953125, 0.0004801750183105469, -0.0196533203125, -0.006015777587890625, 0.0213623046875, -0.040496826171875, 0.06610107421875, 0.024566650390625, -0.0261077880859375, 0.05743408203125, -0.0293426513671875, 0.003070831298828125, -0.08538818359375, 0.0195159912109375, 0.014892578125, -0.0135955810546875, -0.03411865234375, -0.004344940185546875, 0.0015172958374023438, -0.0114593505859375, -0.042724609375, 0.03717041015625, -0.01690673828125, 0.0198822021484375, -0.01024627685546875, -0.034759521484375, 0.004985809326171875, 0.058990478515625, 0.0131683349609375, 0.05169677734375, 0.047760009765625, -0.037567138671875, 0.032684326171875, 0.0293121337890625, -0.02862548828125, 0.042999267578125, -0.0694580078125, 0.00015306472778320312, -0.00848388671875, 0.00872039794921875, -0.061492919921875, -0.0155181884765625, 0.022003173828125, -0.0261077880859375, 0.0236968994140625, -0.026336669921875, -0.026153564453125, -0.035797119140625, -0.00977325439453125, 0.026092529296875, 0.038299560546875, -0.03497314453125, 0.01318359375, -0.005069732666015625, 0.0208740234375, -0.04486083984375, -0.060089111328125, -0.035064697265625, -0.018218994140625, -0.031280517578125, 0.029449462890625, -0.00400543212890625, -0.004329681396484375, -0.007568359375, -0.017333984375, -0.0369873046875, -0.0031604766845703125, 0.032684326171875, 0.03546142578125, -0.015838623046875, -0.00730133056640625, -0.005161285400390625, -0.0241546630859375, 0.0088043212890625, 0.0009541511535644531, 0.040313720703125, -0.022064208984375, -0.019744873046875, -0.06866455078125, 0.0012836456298828125, 0.042755126953125, -0.010406494140625, 0.0748291015625, 0.0411376953125, -0.034149169921875, -0.005542755126953125, -0.0328369140625, -0.01361083984375, -0.03265380859375, 0.04095458984375, -0.034332275390625, -0.0230255126953125, 0.05517578125, 0.007328033447265625, 0.00832366943359375, 0.0809326171875, 0.037994384765625, -0.007747650146484375, 0.08160400390625, 0.01806640625, -0.006103515625, 0.01409912109375, -0.06787109375, -0.014739990234375, -0.041748046875, -0.04107666015625, -0.04052734375, -0.033477783203125, -0.03631591796875, -0.00199127197265625, 0.0139007568359375, 0.0268402099609375, -0.058685302734375, 0.03271484375, -0.048980712890625, 0.031585693359375, 0.0474853515625, 0.033660888671875, 0.0112152099609375, 0.0029239654541015625, -0.0133819580078125, -0.00348663330078125, -0.0631103515625, -0.030914306640625, 0.08251953125, 0.03387451171875, 0.055694580078125, -0.01090240478515625, 0.05889892578125, 0.00994873046875, 0.006610870361328125, -0.047821044921875, 0.0233612060546875, 0.004055023193359375, -0.0750732421875, -0.017974853515625, -0.03314208984375, -0.0479736328125, 0.0119171142578125, -0.029083251953125, -0.045562744140625, 0.023468017578125, 0.028656005859375, -0.038330078125, 0.03582763671875, -0.04010009765625, 0.07940673828125, -0.023101806640625, -0.0254364013671875, -0.0011997222900390625, -0.04132080078125, 0.0139007568359375, 0.0068817138671875, -0.0225982666015625, -0.00664520263671875, 0.0163726806640625, 0.05694580078125, -0.059417724609375, 0.05010986328125, -0.0265045166015625, 0.0279998779296875, 0.039886474609375, -0.01500701904296875, 0.050079345703125, 0.0257415771484375, -0.019805908203125, 0.0237579345703125, 0.01209259033203125, -0.049224853515625, -0.03778076171875, 0.04937744140625, -0.0751953125, -0.0234222412109375, -0.05377197265625, -0.035858154296875, -0.00014734268188476562, 0.0182952880859375, 0.052337646484375, 0.04864501953125, -0.01480865478515625, 0.031097412109375, 0.045196533203125, 0.00878143310546875, 0.026702880859375, 0.0212554931640625, 0.0086669921875, -0.0372314453125, 0.0494384765625, 0.0005903244018554688, 0.0244903564453125, 0.00479888916015625, 0.0074462890625, -0.0279998779296875, -0.044281005859375, -0.048553466796875, 0.008270263671875, -0.046539306640625, -0.025054931640625, -0.0187530517578125, -0.03521728515625, -0.02008056640625, -0.0078277587890625, -0.0413818359375, -0.0217437744140625, -0.04669189453125, -0.0166015625, 0.0330810546875, 0.0369873046875, 0.0194854736328125, 0.042999267578125, -0.04632568359375, -0.0163421630859375, 0.00637054443359375, 0.0207977294921875, -0.00421905517578125, -0.06488037109375, -0.02020263671875, 0.01337432861328125, -0.03131103515625, -0.05438232421875, 0.031951904296875, 0.00479888916015625, 0.051239013671875, 0.047943115234375, -0.0030002593994140625, 0.0809326171875, -0.0200347900390625, 0.049224853515625, 0.0357666015625, -0.04034423828125, 0.033935546875, -0.015411376953125, 0.0227813720703125, 0.06842041015625, 0.042449951171875, 0.0010347366333007812, -0.0012998580932617188, -0.081787109375, -0.04876708984375, 0.0660400390625, 0.033477783203125, -0.0101776123046875, 0.00396728515625, 0.0311126708984375, -0.01076507568359375, 0.022918701171875, -0.04766845703125, -0.047088623046875, -0.0213623046875, -0.0163116455078125, -0.01230621337890625, -0.0191650390625, -0.0063018798828125, -0.04669189453125, 0.072509765625, -0.0008292198181152344, 0.015655517578125, 0.0172119140625, 0.004634857177734375, 0.00391387939453125, -0.01071929931640625, 0.04620361328125, 0.056182861328125, -0.05181884765625, -0.01007080078125, 0.0272979736328125, -0.03692626953125, 0.00533294677734375, 0.015411376953125, -0.00959014892578125, 0.017486572265625, 0.0291748046875, 0.07269287109375, 0.0164794921875, -0.019744873046875, 0.04058837890625, 0.00833892822265625, -0.04010009765625, -0.03692626953125, 0.00635528564453125, -0.01399993896484375, 0.02044677734375, 0.02105712890625, 0.037261962890625, 0.00432586669921875, -0.0290374755859375, 0.01062774658203125, 0.0186767578125, -0.056884765625, -0.01351165771484375, 0.05218505859375, 0.0070343017578125, -0.0114288330078125, 0.056365966796875, -0.0123748779296875, -0.0247802734375, 0.0718994140625, 0.0290374755859375, 0.05059814453125, -0.015106201171875, -0.0006814002990722656, 0.0645751953125, 0.01076507568359375, -0.0226898193359375, 0.02484130859375, 0.0194244384765625, -0.0296173095703125, 0.0023975372314453125, -0.05010986328125, 0.0021839141845703125, 0.039520263671875, -0.0867919921875, 0.0361328125, -0.038909912109375, -0.0406494140625, 0.0118560791015625, 0.012908935546875, -0.0816650390625, 0.0396728515625, -0.0028095245361328125, 0.09033203125, -0.0650634765625, 0.056549072265625, 0.045806884765625, -0.037933349609375, -0.0693359375, -0.026580810546875, -0.0010480880737304688, -0.06903076171875, 0.05914306640625, 0.00592041015625, 0.0206146240234375, 0.0014429092407226562, -0.030303955078125, -0.05596923828125, 0.096435546875, 0.020172119140625, -0.065185546875, 0.0006504058837890625, 0.025177001953125, 0.042083740234375, -0.0166168212890625, 0.047943115234375, 0.0291748046875, 0.0186614990234375, 0.02203369140625, -0.07122802734375, -0.008056640625, -0.0160369873046875, 0.007038116455078125, 0.01158905029296875, -0.06304931640625, 0.0809326171875, -0.002010345458984375, 0.0240020751953125, 0.015869140625, 0.0439453125, 0.0205078125, 0.024444580078125, 0.033050537109375, 0.06719970703125, 0.0394287109375, -0.01407623291015625, 0.0645751953125, -0.0372314453125, 0.0611572265625, 0.08599853515625, -0.0008177757263183594, 0.043060302734375, 0.0281219482421875, -0.020477294921875, 0.024200439453125, 0.056549072265625, -0.020355224609375, 0.034637451171875, 0.0166015625, -0.006221771240234375, -0.03277587890625, 0.025604248046875, -0.051544189453125, 0.0280303955078125, -0.0028533935546875, -0.05474853515625, -0.0276641845703125, -0.02679443359375, -0.004528045654296875, -0.00870513916015625, -0.036163330078125, 0.043212890625, -0.020843505859375, -0.02679443359375, 0.06591796875, 0.00005429983139038086, 0.0250701904296875, -0.04815673828125, -0.01361846923828125, -0.00502777099609375, 0.03350830078125, -0.02752685546875, -0.0523681640625, 0.0137786865234375, -0.0011701583862304688, -0.028839111328125, 0.00618743896484375, 0.035797119140625, -0.0210723876953125, -0.06903076171875, 0.00041413307189941406, 0.0210723876953125, 0.0136566162109375, -0.006229400634765625, -0.076904296875, -0.00571441650390625, 0.002300262451171875, -0.027099609375, 0.01212310791015625, 0.0254364013671875, -0.00002586841583251953, 0.036773681640625, 0.047088623046875, -0.00394439697265625, 0.0043487548828125, -0.001674652099609375, 0.0782470703125, -0.035552978515625, -0.041046142578125, -0.0633544921875, 0.045928955078125, -0.02581787109375, -0.07073974609375, 0.0401611328125, 0.0867919921875, 0.06805419921875, -0.0206146240234375, 0.044525146484375, 0.0014162063598632812, 0.0233612060546875, -0.034149169921875, 0.056396484375, -0.035125732421875, -0.01145172119140625, -0.01268768310546875, -0.0704345703125, -0.0022220611572265625, 0.0518798828125, -0.021209716796875, 0.002292633056640625, 0.0303497314453125, 0.05914306640625, -0.00814056396484375, 0.005077362060546875, 0.01464080810546875, -0.00389862060546875, 0.0116729736328125, 0.042327880859375, 0.036956787109375, -0.060028076171875, 0.03924560546875, -0.050872802734375, -0.021697998046875, -0.0182952880859375, -0.0474853515625, -0.08819580078125, -0.0247955322265625, -0.03228759765625, -0.03240966796875, 0.00818634033203125, 0.0782470703125, 0.06884765625, -0.064208984375, -0.0239105224609375, -0.0065765380859375, -0.034210205078125, -0.0340576171875, -0.015716552734375, 0.02911376953125, -0.0102081298828125, -0.0599365234375, -0.002910614013671875, -0.0175018310546875, 0.0307464599609375, -0.01337432861328125, -0.0200347900390625, -0.0179290771484375, -0.027435302734375, 0.0181732177734375, 0.005817413330078125, -0.032806396484375, -0.0184173583984375, -0.0100250244140625, -0.0084228515625, 0.016571044921875, 0.0250091552734375, -0.036102294921875, 0.0256500244140625, 0.029052734375, 0.021820068359375, 0.056182861328125, 0.006038665771484375, 0.0193328857421875, -0.05767822265625, 0.038330078125, 0.0230255126953125, 0.033721923828125, -0.0038890838623046875, -0.0307464599609375, 0.033905029296875, 0.0361328125, -0.037872314453125, -0.06378173828125, -0.0129547119140625, -0.08416748046875, 0.004116058349609375, 0.07598876953125, -0.006679534912109375, -0.0296173095703125, 0.018463134765625, -0.021087646484375, 0.0180206298828125, -0.035125732421875, 0.0384521484375, 0.0546875, -0.0011682510375976562, 0.0178680419921875, -0.04327392578125, 0.04150390625, 0.0130767822265625, -0.0404052734375, -0.0164337158203125, 0.020599365234375, 0.0350341796875, 0.007404327392578125, 0.01806640625, -0.0063323974609375, 0.0170440673828125, 0.00811004638671875, 0.013580322265625, -0.039031982421875, -0.0247802734375, -0.013397216796875, 0.002162933349609375, -0.005565643310546875, -0.03692626953125 ] ]
martinbaste/ppo-LunarLander-v2
2023-10-28T15:30:37.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
martinbaste
null
null
martinbaste/ppo-LunarLander-v2
0
2
stable-baselines3
2023-10-28T15:30:13
--- 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: 250.65 +/- 13.74 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 ... ```
784
[ [ -0.00019156932830810547, -0.02716064453125, 0.0170745849609375, 0.023345947265625, -0.0060577392578125, 0.00276947021484375, 0.034454345703125, -0.0121307373046875, 0.0198822021484375, 0.06500244140625, -0.043182373046875, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017242431640625, 0.06982421875, 0.0016145706176757812, 0.0281524658203125, 0.0095672607421875, -0.007061004638671875, -0.018341064453125, -0.0218658447265625, -0.052032470703125, -0.07159423828125, 0.01200103759765625, 0.050201416015625, 0.054229736328125, 0.024261474609375, 0.028076171875, 0.029205322265625, -0.0176849365234375, -0.0322265625, -0.04132080078125, -0.00125885009765625, -0.0006113052368164062, -0.044403076171875, -0.0633544921875, 0.01415252685546875, 0.039581298828125, 0.004024505615234375, -0.019866943359375, 0.004913330078125, -0.0283203125, 0.0311126708984375, -0.03759765625, 0.0157928466796875, -0.01535797119140625, 0.0017423629760742188, 0.007366180419921875, 0.01079559326171875, -0.0259552001953125, -0.00982666015625, 0.020660400390625, -0.0906982421875, -0.005321502685546875, -0.0215301513671875, 0.09295654296875, 0.0094451904296875, -0.03802490234375, 0.0011806488037109375, -0.0190277099609375, 0.0340576171875, -0.02716064453125, 0.0103607177734375, 0.049163818359375, 0.036163330078125, 0.0031585693359375, -0.06915283203125, -0.016357421875, -0.032623291015625, 0.0010662078857421875, 0.0316162109375, 0.0154876708984375, 0.0167236328125, 0.01497650146484375, 0.01073455810546875, -0.024078369140625, 0.02410888671875, -0.04608154296875, -0.0239105224609375, 0.03558349609375, 0.01824951171875, 0.00531768798828125, -0.00782012939453125, -0.035308837890625, -0.0118408203125, -0.0313720703125, 0.023040771484375, 0.030426025390625, 0.0128326416015625, -0.058868408203125, 0.06585693359375, -0.019073486328125, 0.031494140625, 0.0303192138671875, -0.00032830238342285156, 0.0487060546875, 0.00939178466796875, -0.00789642333984375, -0.0259857177734375, 0.039337158203125, 0.0675048828125, 0.00406646728515625, 0.005619049072265625, -0.03375244140625, -0.018798828125, 0.01206207275390625, -0.055511474609375, -0.024932861328125, 0.03375244140625, -0.019805908203125, -0.048797607421875, 0.0350341796875, -0.04180908203125, -0.0251007080078125, -0.0006551742553710938, 0.027191162109375, -0.047210693359375, -0.041290283203125, 0.00433349609375, -0.032470703125, 0.050079345703125, 0.00981903076171875, -0.063232421875, 0.030914306640625, 0.048553466796875, 0.0660400390625, 0.041259765625, -0.047943115234375, -0.0491943359375, 0.01351165771484375, -0.031524658203125, 0.05523681640625, 0.0172882080078125, -0.033721923828125, 0.02178955078125, 0.00038433074951171875, 0.01499176025390625, -0.03570556640625, 0.0181427001953125, -0.032989501953125, 0.0206756591796875, 0.006595611572265625, -0.030914306640625, -0.0007925033569335938, 0.03253173828125, -0.04571533203125, 0.09832763671875, 0.0604248046875, -0.039886474609375, 0.0260162353515625, -0.046173095703125, -0.0052947998046875, 0.036407470703125, 0.0175628662109375, -0.05078125, -0.0019779205322265625, -0.0310516357421875, 0.01300048828125, 0.00479888916015625, 0.003040313720703125, -0.0262908935546875, -0.026824951171875, 0.00551605224609375, 0.056732177734375, 0.063720703125, 0.01561737060546875, -0.0023784637451171875, 0.01444244384765625, -0.043701171875, -0.00994110107421875, 0.006336212158203125, -0.0202789306640625, -0.01105499267578125, -0.0171356201171875, 0.037567138671875, 0.01708984375, 0.034027099609375, -0.034393310546875, 0.035797119140625, -0.039306640625, 0.014068603515625, 0.0498046875, -0.00909423828125, 0.05609130859375, -0.047882080078125, 0.023529052734375, -0.01239776611328125, 0.019134521484375, 0.01393890380859375, -0.0253143310546875, -0.045684814453125, -0.036346435546875, -0.0020694732666015625, 0.058074951171875, -0.08660888671875, 0.049041748046875, 0.01561737060546875, -0.054840087890625, -0.014678955078125, -0.0107421875, 0.03643798828125, 0.01885986328125, 0.0032863616943359375, -0.006378173828125, -0.042510986328125, -0.06072998046875, 0.017333984375, -0.048370361328125, -0.0168914794921875, 0.00004589557647705078, 0.047637939453125, -0.024261474609375, 0.058807373046875, -0.0262603759765625, -0.0253143310546875, -0.0228729248046875, 0.01385498046875, 0.019866943359375, 0.053558349609375, 0.06768798828125, -0.04107666015625, -0.03668212890625, -0.0190277099609375, -0.063232421875, -0.030242919921875, 0.01091766357421875, -0.01129150390625, 0.0007996559143066406, 0.0239105224609375, -0.055023193359375, 0.006526947021484375, 0.042510986328125, -0.07159423828125, 0.051513671875, -0.0263214111328125, -0.0000832676887512207, -0.0919189453125, 0.013031005859375, 0.016204833984375, -0.0242919921875, -0.0555419921875, 0.0236968994140625, 0.01107025146484375, -0.0042877197265625, -0.05096435546875, 0.06439208984375, -0.037841796875, 0.0016393661499023438, -0.032318115234375, -0.009246826171875, -0.010528564453125, -0.004241943359375, 0.0018510818481445312, 0.04364013671875, 0.0792236328125, -0.0303955078125, 0.0430908203125, 0.04290771484375, 0.007598876953125, 0.053436279296875, -0.042633056640625, 0.00891876220703125, -0.018463134765625, 0.0185546875, -0.045166015625, -0.04400634765625, 0.042388916015625, -0.03570556640625, 0.0223388671875, -0.032135009765625, -0.023834228515625, -0.033660888671875, -0.04229736328125, 0.0134735107421875, 0.043975830078125, -0.02081298828125, 0.05322265625, 0.0489501953125, 0.00811767578125, -0.039276123046875, -0.03070068359375, -0.01345062255859375, -0.0196685791015625, -0.02935791015625, 0.032073974609375, 0.00943756103515625, -0.034393310546875, -0.0155792236328125, 0.002532958984375, -0.01494598388671875, 0.00616455078125, 0.033416748046875, 0.028564453125, -0.0016908645629882812, -0.020233154296875, -0.028594970703125, -0.049652099609375, -0.01035308837890625, -0.01059722900390625, 0.047271728515625, -0.0190277099609375, 0.0263824462890625, -0.05908203125, -0.0034923553466796875, 0.052276611328125, 0.0176239013671875, 0.05859375, 0.0302886962890625, -0.038055419921875, -0.00713348388671875, -0.02392578125, -0.01154327392578125, -0.03826904296875, 0.031707763671875, -0.0396728515625, -0.0400390625, 0.050628662109375, 0.000030934810638427734, -0.0264129638671875, 0.041717529296875, 0.0404052734375, -0.005695343017578125, 0.04656982421875, 0.06878662109375, -0.007602691650390625, 0.050628662109375, -0.04937744140625, -0.046417236328125, -0.0535888671875, -0.0423583984375, -0.0268096923828125, 0.0167999267578125, -0.028533935546875, -0.0179290771484375, 0.0093231201171875, 0.032196044921875, -0.053375244140625, 0.06182861328125, -0.030059814453125, 0.042510986328125, 0.0406494140625, 0.01081085205078125, -0.01934814453125, -0.038116455078125, -0.0032749176025390625, 0.0159149169921875, -0.0232696533203125, -0.0380859375, 0.0682373046875, 0.03973388671875, 0.052490234375, 0.004978179931640625, 0.044830322265625, 0.006420135498046875, 0.04473876953125, -0.038604736328125, 0.033782958984375, -0.01230621337890625, -0.06317138671875, -0.008209228515625, -0.0222015380859375, -0.052886962890625, 0.0129852294921875, -0.0304718017578125, -0.0665283203125, -0.0117645263671875, 0.00640869140625, -0.0196990966796875, 0.0052642822265625, -0.037078857421875, 0.07135009765625, -0.0242919921875, -0.02435302734375, 0.0105743408203125, -0.04791259765625, 0.018524169921875, 0.0135040283203125, -0.0036296844482421875, -0.0249176025390625, -0.0181732177734375, 0.050048828125, -0.032989501953125, 0.043701171875, -0.057525634765625, 0.013031005859375, 0.0166168212890625, 0.00890350341796875, 0.0274658203125, 0.031982421875, -0.0117034912109375, 0.0012998580932617188, 0.005828857421875, -0.052276611328125, -0.00322723388671875, 0.03118896484375, -0.09857177734375, -0.004634857177734375, -0.057861328125, -0.0232696533203125, 0.0090179443359375, 0.02008056640625, 0.03948974609375, 0.00939178466796875, -0.0279998779296875, 0.00020813941955566406, 0.00592803955078125, 0.00885009765625, 0.01517486572265625, 0.061370849609375, -0.035797119140625, -0.061126708984375, 0.0299072265625, 0.0017118453979492188, -0.0007610321044921875, 0.0221405029296875, 0.005680084228515625, -0.022552490234375, -0.04205322265625, -0.00984954833984375, 0.030975341796875, -0.025115966796875, -0.0134429931640625, -0.0113372802734375, -0.0227203369140625, -0.025634765625, -0.0291290283203125, -0.046112060546875, -0.02044677734375, -0.033111572265625, -0.0225067138671875, 0.025634765625, 0.049957275390625, -0.0301971435546875, 0.08660888671875, -0.034942626953125, 0.033416748046875, 0.0100555419921875, 0.04132080078125, -0.05865478515625, -0.033782958984375, -0.0265960693359375, -0.0174713134765625, -0.031524658203125, -0.06683349609375, 0.03271484375, -0.0161895751953125, 0.05377197265625, 0.028167724609375, -0.01082611083984375, 0.025482177734375, -0.0115966796875, 0.0555419921875, 0.033355712890625, -0.0716552734375, 0.0283050537109375, -0.05120849609375, 0.00919342041015625, 0.062469482421875, 0.014617919921875, -0.01800537109375, -0.0259246826171875, -0.0601806640625, -0.06903076171875, 0.08331298828125, 0.03216552734375, -0.006008148193359375, 0.0221099853515625, 0.055267333984375, -0.005466461181640625, 0.0068359375, -0.06524658203125, -0.0196685791015625, -0.026397705078125, -0.01267242431640625, -0.0197296142578125, -0.01194000244140625, -0.0140533447265625, 0.004123687744140625, 0.0638427734375, -0.01081085205078125, 0.020263671875, 0.00620269775390625, -0.008514404296875, -0.0303802490234375, -0.03729248046875, 0.02801513671875, 0.0230560302734375, -0.06353759765625, -0.0156402587890625, 0.00368499755859375, -0.04071044921875, 0.0256805419921875, 0.043426513671875, -0.019134521484375, -0.0178985595703125, 0.0283355712890625, 0.05047607421875, 0.01114654541015625, -0.019744873046875, 0.04638671875, 0.0081939697265625, -0.034820556640625, -0.053619384765625, 0.002933502197265625, -0.0061492919921875, 0.03729248046875, 0.0201873779296875, 0.01031494140625, -0.0091705322265625, -0.036956787109375, 0.0302581787109375, 0.0177154541015625, -0.04998779296875, -0.03607177734375, 0.061126708984375, 0.02532958984375, -0.05633544921875, 0.044830322265625, -0.007282257080078125, -0.03973388671875, 0.06695556640625, 0.031707763671875, 0.06512451171875, -0.02569580078125, 0.032989501953125, 0.033966064453125, 0.01328277587890625, -0.025115966796875, 0.04010009765625, 0.0201568603515625, -0.07379150390625, -0.015960693359375, -0.01181793212890625, -0.0523681640625, 0.01548004150390625, -0.04449462890625, 0.041534423828125, -0.043975830078125, -0.03485107421875, 0.00292205810546875, 0.0207366943359375, -0.0294036865234375, -0.00518035888671875, 0.0255279541015625, 0.0943603515625, -0.06097412109375, 0.07122802734375, 0.0716552734375, -0.03729248046875, -0.03826904296875, -0.0018434524536132812, 0.02777099609375, -0.058074951171875, 0.040618896484375, 0.032196044921875, 0.003856658935546875, 0.009674072265625, -0.054443359375, -0.048919677734375, 0.1009521484375, 0.013824462890625, -0.0030975341796875, 0.0162811279296875, -0.01515960693359375, 0.0469970703125, -0.04058837890625, 0.037139892578125, 0.023651123046875, 0.035797119140625, 0.01329803466796875, -0.0660400390625, -0.0251617431640625, -0.03375244140625, -0.00858306884765625, -0.00312042236328125, -0.07586669921875, 0.08148193359375, 0.0028820037841796875, 0.0245208740234375, 0.063720703125, 0.034393310546875, 0.055908203125, 0.019287109375, 0.036712646484375, 0.042572021484375, 0.01947021484375, -0.0190277099609375, 0.0615234375, -0.0224456787109375, 0.0650634765625, 0.050537109375, -0.059234619140625, 0.0389404296875, 0.0203399658203125, 0.007175445556640625, 0.035736083984375, 0.045928955078125, -0.01399993896484375, 0.056671142578125, 0.01380157470703125, -0.00868988037109375, -0.00630950927734375, 0.030914306640625, -0.0193328857421875, 0.033355712890625, 0.0133209228515625, 0.0003590583801269531, -0.006122589111328125, -0.0013418197631835938, 0.002796173095703125, -0.00333404541015625, -0.031707763671875, 0.06964111328125, -0.01198577880859375, -0.047821044921875, 0.031982421875, 0.0241851806640625, 0.043548583984375, -0.061981201171875, -0.0022792816162109375, -0.010284423828125, 0.04559326171875, 0.0006108283996582031, -0.07171630859375, -0.0023441314697265625, -0.01416015625, 0.0078887939453125, -0.0176239013671875, 0.0518798828125, -0.01439666748046875, -0.020294189453125, 0.05743408203125, 0.025238037109375, 0.002532958984375, 0.01580810546875, -0.07073974609375, -0.01294708251953125, -0.0350341796875, -0.037933349609375, 0.0160675048828125, 0.020965576171875, 0.024078369140625, 0.0531005859375, 0.032257080078125, -0.0011463165283203125, -0.02484130859375, -0.00730133056640625, 0.06878662109375, -0.048065185546875, -0.05230712890625, -0.03375244140625, 0.0780029296875, -0.0226287841796875, -0.06005859375, 0.0343017578125, 0.069580078125, 0.039093017578125, -0.0216827392578125, 0.03887939453125, -0.01435089111328125, 0.0220184326171875, -0.03253173828125, 0.05548095703125, -0.0188140869140625, -0.00890350341796875, -0.0092926025390625, -0.051300048828125, -0.034698486328125, 0.06915283203125, -0.0013513565063476562, -0.004596710205078125, 0.0197296142578125, 0.053680419921875, 0.0026302337646484375, -0.02288818359375, 0.015716552734375, 0.041107177734375, 0.0057525634765625, 0.0283355712890625, 0.07073974609375, -0.0467529296875, 0.0111236572265625, -0.039215087890625, -0.051513671875, -0.0189971923828125, -0.0458984375, -0.07586669921875, -0.03143310546875, -0.0186614990234375, -0.0701904296875, 0.0158843994140625, 0.0625, 0.0736083984375, -0.048095703125, -0.05084228515625, -0.016265869140625, -0.007701873779296875, -0.01081085205078125, -0.01270294189453125, 0.0074462890625, -0.004184722900390625, -0.04766845703125, 0.01873779296875, -0.0023784637451171875, 0.0282440185546875, 0.0009198188781738281, -0.044281005859375, -0.01312255859375, -0.0236358642578125, 0.0187835693359375, 0.036895751953125, -0.0216064453125, -0.028900146484375, -0.0091400146484375, -0.0176544189453125, 0.002651214599609375, 0.036407470703125, -0.047332763671875, 0.00472259521484375, 0.0296173095703125, -0.0267486572265625, 0.06414794921875, 0.0115966796875, 0.042236328125, -0.03955078125, 0.047149658203125, 0.018646240234375, 0.030487060546875, 0.01509857177734375, -0.01534271240234375, 0.048492431640625, 0.0267791748046875, -0.050079345703125, -0.04833984375, 0.01165771484375, -0.08441162109375, -0.0160980224609375, 0.08331298828125, 0.0007863044738769531, -0.01364898681640625, -0.004764556884765625, -0.040985107421875, 0.0175018310546875, -0.03375244140625, 0.03680419921875, 0.0357666015625, -0.004192352294921875, -0.0268402099609375, -0.027496337890625, 0.03326416015625, -0.01067352294921875, -0.044677734375, -0.02923583984375, 0.034942626953125, 0.0321044921875, 0.0218048095703125, 0.06744384765625, -0.01038360595703125, 0.03118896484375, 0.03277587890625, 0.0215911865234375, -0.01580810546875, -0.0239105224609375, -0.03399658203125, 0.0084991455078125, 0.008056640625, -0.009979248046875 ] ]
Andyrasika/a2c-PandaReachDense-v3
2023-10-28T15:50:11.000Z
[ "stable-baselines3", "PandaReachDense-v3", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
Andyrasika
null
null
Andyrasika/a2c-PandaReachDense-v3
1
2
stable-baselines3
2023-10-28T15:37:43
--- library_name: stable-baselines3 tags: - PandaReachDense-v3 - deep-reinforcement-learning - reinforcement-learning - stable-baselines3 model-index: - name: A2C results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: PandaReachDense-v3 type: PandaReachDense-v3 metrics: - type: mean_reward value: -0.56 +/- 1.08 name: mean_reward verified: false --- # **A2C** Agent playing **PandaReachDense-v3** This is a trained model of a **A2C** agent playing **PandaReachDense-v3** 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 ... ``` Please check article for further description: https://medium.com/@andysingal/deep-q-learning-to-actor-critic-using-robotics-simulations-with-panda-gym-ff220f980366?sk=065b306d15fea64e667c6dc5d0a4411f
1,003
[ [ -0.02581787109375, -0.04583740234375, 0.00823211669921875, 0.031402587890625, -0.0010824203491210938, 0.005626678466796875, 0.020477294921875, -0.00899505615234375, 0.0277099609375, 0.03240966796875, -0.062255859375, -0.026580810546875, -0.0311279296875, -0.00423431396484375, -0.0113983154296875, 0.07122802734375, -0.0095672607421875, 0.05560302734375, 0.00001055002212524414, -0.0100555419921875, -0.01068878173828125, -0.032989501953125, -0.08282470703125, -0.04296875, 0.01409149169921875, 0.0200347900390625, 0.048828125, 0.0296478271484375, 0.03594970703125, 0.03179931640625, -0.01873779296875, -0.0179901123046875, -0.035125732421875, 0.0056915283203125, -0.0078582763671875, -0.045440673828125, -0.037811279296875, 0.00988006591796875, 0.056427001953125, 0.0131683349609375, -0.0245361328125, 0.001201629638671875, -0.00656890869140625, 0.038482666015625, -0.0430908203125, 0.0288848876953125, -0.007213592529296875, 0.01488494873046875, 0.0223388671875, 0.00868988037109375, -0.0174407958984375, -0.025970458984375, 0.0079193115234375, -0.054901123046875, -0.004993438720703125, -0.0167694091796875, 0.09576416015625, 0.0255279541015625, -0.03778076171875, 0.00188446044921875, -0.020294189453125, 0.0309906005859375, -0.034088134765625, 0.00635528564453125, 0.036041259765625, 0.049072265625, -0.01114654541015625, -0.0550537109375, -0.0389404296875, -0.0261993408203125, 0.0224151611328125, 0.0218048095703125, -0.0002015829086303711, 0.0038623809814453125, 0.03558349609375, 0.0169219970703125, -0.0190277099609375, 0.0200653076171875, -0.04071044921875, -0.03778076171875, 0.0305023193359375, 0.024658203125, -0.0020351409912109375, 0.005542755126953125, -0.033966064453125, -0.019989013671875, -0.0214691162109375, 0.05560302734375, 0.0250244140625, 0.01161956787109375, -0.036102294921875, 0.049835205078125, -0.0202178955078125, 0.01229095458984375, 0.02337646484375, 0.0191497802734375, 0.041412353515625, 0.0015811920166015625, -0.0028972625732421875, -0.01541900634765625, 0.050537109375, 0.0474853515625, 0.014434814453125, 0.022003173828125, -0.01983642578125, 0.01471710205078125, 0.0281829833984375, -0.0745849609375, -0.033599853515625, 0.020660400390625, -0.02276611328125, -0.04559326171875, 0.00563812255859375, -0.038299560546875, -0.0240325927734375, -0.0187530517578125, 0.017852783203125, -0.051361083984375, -0.0306396484375, -0.01180267333984375, -0.0241546630859375, 0.0501708984375, 0.0197906494140625, -0.0428466796875, 0.04638671875, 0.0303802490234375, 0.058746337890625, 0.0164031982421875, -0.049407958984375, -0.05584716796875, -0.006931304931640625, -0.041595458984375, 0.06640625, -0.0035610198974609375, -0.02349853515625, 0.0254669189453125, 0.020599365234375, 0.0073699951171875, -0.039794921875, 0.039276123046875, -0.039794921875, -0.0009360313415527344, -0.008819580078125, -0.035400390625, -0.0213775634765625, 0.036865234375, -0.0550537109375, 0.07293701171875, 0.035491943359375, -0.029144287109375, 0.0129547119140625, -0.04425048828125, -0.0264739990234375, 0.00876617431640625, 0.0092315673828125, -0.051971435546875, -0.0211334228515625, -0.0020503997802734375, 0.022796630859375, 0.0280914306640625, -0.006557464599609375, -0.0609130859375, -0.042724609375, 0.0158843994140625, 0.0127410888671875, 0.08935546875, 0.01288604736328125, -0.01140594482421875, 0.0173187255859375, -0.04754638671875, -0.005901336669921875, 0.01479339599609375, -0.0260467529296875, 0.0173797607421875, -0.001800537109375, 0.00887298583984375, 0.01396942138671875, 0.020721435546875, -0.037017822265625, 0.0212249755859375, -0.0257720947265625, 0.0192413330078125, 0.056976318359375, 0.0016040802001953125, 0.03802490234375, -0.03790283203125, 0.043609619140625, 0.0106658935546875, 0.005725860595703125, 0.0213623046875, -0.016357421875, -0.04754638671875, -0.0408935546875, 0.01715087890625, 0.06292724609375, -0.08447265625, 0.042694091796875, 0.0177001953125, -0.034271240234375, -0.0455322265625, -0.01047515869140625, 0.0209503173828125, 0.01473236083984375, 0.0262603759765625, -0.0217132568359375, -0.038116455078125, -0.061065673828125, 0.01111602783203125, -0.0312042236328125, -0.00608062744140625, 0.0204620361328125, 0.037811279296875, -0.032928466796875, 0.03759765625, -0.026611328125, -0.034393310546875, -0.020538330078125, -0.0087127685546875, 0.0004851818084716797, 0.058135986328125, 0.05999755859375, -0.01303863525390625, -0.0267791748046875, -0.04290771484375, -0.05413818359375, 0.0003452301025390625, 0.009796142578125, -0.0292205810546875, 0.0209503173828125, 0.039031982421875, -0.0670166015625, 0.0307159423828125, 0.0299072265625, -0.03887939453125, 0.0513916015625, 0.00127410888671875, 0.0005688667297363281, -0.08197021484375, -0.00014865398406982422, 0.0180816650390625, -0.024139404296875, -0.0251312255859375, 0.02703857421875, 0.00806427001953125, -0.009185791015625, -0.047332763671875, 0.04608154296875, -0.022674560546875, -0.00576019287109375, -0.0288543701171875, 0.0046844482421875, 0.004497528076171875, 0.05029296875, 0.0031986236572265625, 0.038787841796875, 0.0845947265625, -0.056854248046875, 0.06292724609375, 0.0411376953125, -0.0251007080078125, 0.0411376953125, -0.036102294921875, -0.01105499267578125, -0.0007066726684570312, 0.04559326171875, -0.04278564453125, -0.019775390625, 0.05548095703125, -0.052276611328125, 0.03033447265625, -0.0109710693359375, -0.03271484375, -0.04168701171875, -0.02557373046875, 0.030120849609375, 0.02850341796875, -0.046875, 0.038055419921875, 0.038238525390625, 0.00170135498046875, -0.04443359375, -0.04742431640625, -0.021331787109375, -0.0023632049560546875, -0.0216064453125, 0.00534820556640625, -0.01580810546875, -0.01013946533203125, 0.0013227462768554688, -0.0009784698486328125, -0.0199127197265625, 0.0257568359375, 0.003997802734375, 0.0095062255859375, -0.017852783203125, -0.0142364501953125, -0.007175445556640625, -0.01108551025390625, 0.0283050537109375, 0.02142333984375, 0.03765869140625, -0.035919189453125, 0.0040435791015625, -0.07452392578125, 0.0099945068359375, 0.027740478515625, -0.0027637481689453125, 0.04132080078125, 0.05828857421875, -0.033294677734375, -0.01776123046875, -0.002849578857421875, -0.01947021484375, -0.039794921875, 0.039886474609375, -0.02532958984375, -0.048736572265625, 0.05584716796875, -0.0010557174682617188, -0.0216522216796875, 0.04302978515625, 0.042327880859375, -0.01326751708984375, 0.0877685546875, 0.032257080078125, -0.0233001708984375, 0.051116943359375, -0.0528564453125, -0.015716552734375, -0.0745849609375, -0.022125244140625, -0.0343017578125, -0.004581451416015625, -0.04150390625, -0.01251220703125, 0.0011014938354492188, 0.0252685546875, -0.05535888671875, 0.03887939453125, -0.0160675048828125, 0.0274810791015625, 0.034698486328125, 0.0173187255859375, -0.033966064453125, -0.0244140625, -0.026153564453125, 0.0285186767578125, -0.02783203125, -0.022796630859375, 0.057769775390625, 0.045440673828125, 0.04388427734375, 0.0345458984375, 0.04449462890625, 0.0036678314208984375, 0.017486572265625, -0.0645751953125, 0.04962158203125, 0.006511688232421875, -0.06292724609375, -0.0189666748046875, -0.0232391357421875, -0.0634765625, 0.0257110595703125, -0.024627685546875, -0.053558349609375, 0.007049560546875, 0.0008120536804199219, -0.038787841796875, 0.00432586669921875, -0.033538818359375, 0.07843017578125, -0.002452850341796875, -0.0295867919921875, -0.01428985595703125, -0.0423583984375, 0.03460693359375, 0.04443359375, -0.0045318603515625, -0.017578125, -0.003093719482421875, 0.0283050537109375, -0.024200439453125, 0.05255126953125, -0.04791259765625, 0.00949859619140625, 0.043487548828125, 0.0310211181640625, 0.0272216796875, 0.04150390625, -0.0081787109375, -0.005176544189453125, 0.01494598388671875, -0.06915283203125, -0.02142333984375, 0.042236328125, -0.09002685546875, -0.02880859375, -0.0654296875, -0.0113067626953125, -0.01012420654296875, 0.01294708251953125, 0.0008115768432617188, 0.038787841796875, -0.030120849609375, 0.022674560546875, 0.02593994140625, 0.0157928466796875, 0.031585693359375, 0.0528564453125, -0.0243377685546875, -0.047515869140625, 0.053131103515625, -0.0174407958984375, -0.016082763671875, 0.007476806640625, -0.0053863525390625, -0.0146942138671875, -0.0249176025390625, -0.02838134765625, 0.0036106109619140625, -0.035980224609375, -0.02532958984375, -0.0307769775390625, -0.046600341796875, -0.03668212890625, -0.0034885406494140625, -0.0308837890625, -0.01494598388671875, -0.0494384765625, -0.0298309326171875, 0.0173797607421875, 0.034759521484375, -0.035675048828125, 0.056854248046875, -0.03863525390625, 0.030670166015625, 0.00600433349609375, 0.04705810546875, -0.014129638671875, -0.0364990234375, -0.048065185546875, 0.00908660888671875, -0.059295654296875, -0.055419921875, 0.03436279296875, -0.0061798095703125, 0.06622314453125, 0.037139892578125, -0.0004630088806152344, 0.0328369140625, -0.02459716796875, 0.07171630859375, -0.0003426074981689453, -0.065673828125, 0.0209808349609375, -0.029998779296875, 0.0260772705078125, 0.058868408203125, 0.035125732421875, -0.0043792724609375, -0.0287628173828125, -0.05535888671875, -0.047882080078125, 0.07586669921875, 0.0227813720703125, 0.00043320655822753906, -0.00379180908203125, 0.03271484375, -0.0267333984375, 0.0114898681640625, -0.07342529296875, -0.0101470947265625, -0.037200927734375, -0.01007843017578125, -0.0183258056640625, -0.00373077392578125, -0.01690673828125, -0.020538330078125, 0.0809326171875, -0.0201416015625, 0.0311737060546875, 0.0166473388671875, -0.006195068359375, -0.0268096923828125, -0.037933349609375, 0.03997802734375, -0.0026531219482421875, -0.044342041015625, -0.0296478271484375, 0.001934051513671875, -0.026153564453125, 0.0040435791015625, 0.0271148681640625, 0.004482269287109375, -0.01873779296875, 0.0271759033203125, 0.07586669921875, 0.003940582275390625, -0.03173828125, 0.05810546875, -0.025848388671875, -0.036834716796875, -0.0528564453125, 0.0118865966796875, -0.01503753662109375, 0.0521240234375, -0.000048279762268066406, 0.03289794921875, 0.022186279296875, -0.048858642578125, 0.029388427734375, 0.0240325927734375, -0.061004638671875, -0.01491546630859375, 0.0394287109375, 0.0218353271484375, -0.036895751953125, 0.058868408203125, -0.0180511474609375, -0.057952880859375, 0.07958984375, 0.019317626953125, 0.0728759765625, -0.0300750732421875, 0.0169830322265625, 0.048309326171875, 0.004825592041015625, -0.01009368896484375, 0.033416748046875, -0.005428314208984375, -0.070556640625, -0.01520538330078125, -0.023681640625, -0.052947998046875, 0.007160186767578125, -0.0635986328125, 0.031524658203125, -0.04571533203125, -0.025482177734375, -0.00821685791015625, 0.035675048828125, -0.039306640625, 0.0015497207641601562, 0.014404296875, 0.08489990234375, -0.041015625, 0.0697021484375, 0.05914306640625, -0.043670654296875, -0.0457763671875, 0.0167388916015625, 0.00849151611328125, -0.061248779296875, 0.02056884765625, 0.035400390625, 0.0029315948486328125, 0.00039196014404296875, -0.0703125, -0.06549072265625, 0.085693359375, 0.0027866363525390625, 0.005970001220703125, 0.021270751953125, -0.036376953125, 0.056182861328125, -0.04730224609375, 0.033538818359375, 0.02374267578125, 0.016998291015625, 0.006717681884765625, -0.0401611328125, -0.01398468017578125, -0.046783447265625, -0.01023101806640625, -0.0214080810546875, -0.08966064453125, 0.0684814453125, -0.00701904296875, 0.01447296142578125, 0.05126953125, 0.062225341796875, 0.04534912109375, 0.006145477294921875, 0.037933349609375, 0.042755126953125, 0.0240325927734375, 0.0079498291015625, 0.06951904296875, -0.02947998046875, 0.03253173828125, 0.062103271484375, -0.043487548828125, 0.05914306640625, 0.0030384063720703125, -0.0013885498046875, 0.0699462890625, 0.07012939453125, -0.029388427734375, 0.05535888671875, 0.036407470703125, 0.0011615753173828125, -0.0179443359375, 0.0233612060546875, -0.0307464599609375, 0.03167724609375, 0.027099609375, 0.007171630859375, 0.003688812255859375, -0.0179290771484375, -0.0149993896484375, 0.0038814544677734375, -0.038970947265625, 0.0709228515625, 0.01018524169921875, -0.059814453125, 0.048736572265625, 0.0027141571044921875, 0.024932861328125, -0.032562255859375, -0.0028934478759765625, -0.01605224609375, 0.0458984375, 0.007549285888671875, -0.0648193359375, 0.00615692138671875, -0.0258941650390625, 0.0023746490478515625, 0.0037975311279296875, 0.0242767333984375, -0.0214996337890625, -0.0272064208984375, 0.05255126953125, 0.01453399658203125, 0.00943756103515625, 0.0181732177734375, -0.07708740234375, -0.010650634765625, -0.0281829833984375, -0.0306243896484375, 0.029022216796875, 0.041961669921875, 0.023193359375, 0.064453125, 0.0247955322265625, -0.01045989990234375, -0.0188446044921875, -0.001201629638671875, 0.0760498046875, -0.048828125, -0.05279541015625, -0.028472900390625, 0.05126953125, -0.01537322998046875, -0.042022705078125, 0.02825927734375, 0.06134033203125, 0.055877685546875, -0.003902435302734375, 0.037017822265625, 0.01641845703125, 0.04443359375, -0.03045654296875, 0.052703857421875, -0.041717529296875, -0.0079193115234375, 0.000020682811737060547, -0.04864501953125, -0.004543304443359375, 0.0697021484375, 0.0189361572265625, 0.0016260147094726562, 0.05267333984375, 0.058868408203125, 0.0192718505859375, -0.0032787322998046875, 0.0022602081298828125, 0.047271728515625, 0.01171875, 0.0179443359375, 0.062408447265625, -0.049835205078125, 0.0400390625, -0.036163330078125, -0.032257080078125, -0.02105712890625, -0.029998779296875, -0.08331298828125, -0.025177001953125, -0.0286712646484375, -0.0789794921875, 0.0064849853515625, 0.0706787109375, 0.035736083984375, -0.06695556640625, -0.036590576171875, -0.007190704345703125, 0.0022296905517578125, -0.04840087890625, -0.0162353515625, 0.01385498046875, -0.033416748046875, -0.0537109375, 0.0233917236328125, -0.034454345703125, 0.0214080810546875, -0.0271759033203125, -0.030670166015625, -0.0271148681640625, -0.00156402587890625, 0.0222930908203125, 0.0379638671875, -0.03485107421875, -0.022308349609375, -0.0182647705078125, -0.025970458984375, 0.0017862319946289062, 0.02105712890625, -0.05517578125, -0.006237030029296875, 0.0165863037109375, 0.015167236328125, 0.04815673828125, -0.0004031658172607422, 0.049591064453125, -0.025390625, 0.0193939208984375, 0.0288543701171875, 0.0426025390625, 0.01430511474609375, -0.02056884765625, 0.04217529296875, 0.027923583984375, -0.05426025390625, -0.0609130859375, 0.014129638671875, -0.08331298828125, -0.0251312255859375, 0.09930419921875, -0.0093231201171875, -0.039459228515625, 0.0105133056640625, -0.03851318359375, 0.03204345703125, -0.052093505859375, 0.05059814453125, 0.047882080078125, -0.006092071533203125, -0.02886962890625, -0.02734375, 0.057891845703125, 0.0134735107421875, -0.0235595703125, -0.03045654296875, 0.0428466796875, 0.01520538330078125, 0.002880096435546875, 0.039154052734375, 0.00154876708984375, 0.042022705078125, 0.021636962890625, 0.030059814453125, 0.00238800048828125, -0.025146484375, -0.042724609375, 0.005435943603515625, -0.0051116943359375, -0.01311492919921875 ] ]
AzureBlack/Lewd-Sydney-20B-exl2
2023-10-28T19:15:40.000Z
[ "transformers", "safetensors", "llama", "text-generation", "not-for-all-audiences", "nsfw", "license:cc-by-nc-4.0", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
AzureBlack
null
null
AzureBlack/Lewd-Sydney-20B-exl2
2
2
transformers
2023-10-28T16:04:39
--- license: cc-by-nc-4.0 tags: - not-for-all-audiences - nsfw --- ExllamaV2 version of the model created by [Undi](https://huggingface.co/Undi95)! Original Model https://huggingface.co/Undi95/Lewd-Sydney-20B Requires ExllamaV2, which is being developed by turboderp https://github.com/turboderp/exllamav2 under an MIT license. I could load 6bpw 24gb card without cfg cash with 4096 context. 8bpw required about 30gb to load at 4096 context. ----- <div style="width: 100%;"> <img src="https://cdn-uploads.huggingface.co/production/uploads/63ab1241ad514ca8d1430003/ppZDyjjZJPGihhckQb5zQ.png" style="width: 40%; min-width: 200px; display: block; margin: auto;"> </div> This model is based on [Free Sydney V2](https://huggingface.co/FPHam/Free_Sydney_V2_13b_HF), trying to get a... lewder assistant, you get it now. <!-- description start --> ## Description This repo contain fp16 files of Lewd-Sydney-20B, an attempt to get our beloved Sydney open to R-18 content. <!-- description end --> <!-- description start --> ## Models and loras used - [Free_Sydney_V2_13b_HF](https://huggingface.co/FPHam/Free_Sydney_V2_13b_HF) - [Undi95/Xwin-MLewd-13B-V0.2](https://huggingface.co/Undi95/Xwin-MLewd-13B-V0.2) - [lemonilia/LimaRP-Llama2-13B-v3-EXPERIMENT](https://huggingface.co/lemonilia/LimaRP-Llama2-13B-v3-EXPERIMENT) - Synthia v1.2 private LoRA <!-- description end --> <!-- prompt-template start --> ## Prompt template: Alpaca ``` Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ``` If you want to support me, you can [here](https://ko-fi.com/undiai).
1,665
[ [ -0.0440673828125, -0.063720703125, 0.0238494873046875, 0.03521728515625, -0.03338623046875, -0.033294677734375, 0.0126953125, -0.0562744140625, 0.03607177734375, 0.04449462890625, -0.0599365234375, -0.0264129638671875, -0.04400634765625, -0.0201263427734375, -0.0259246826171875, 0.06561279296875, 0.0013217926025390625, -0.0171051025390625, -0.01337432861328125, -0.000701904296875, -0.042327880859375, -0.006984710693359375, -0.06787109375, -0.0291748046875, 0.018646240234375, 0.020599365234375, 0.076904296875, 0.039581298828125, 0.03973388671875, 0.0214385986328125, -0.00643157958984375, -0.0007848739624023438, -0.02642822265625, 0.0032100677490234375, -0.01861572265625, -0.028594970703125, -0.0592041015625, -0.0024509429931640625, 0.0236053466796875, 0.0027370452880859375, -0.0113067626953125, 0.01593017578125, -0.0016803741455078125, 0.048583984375, -0.0350341796875, 0.02978515625, -0.0101318359375, 0.01493072509765625, -0.0184326171875, -0.0008249282836914062, -0.01169586181640625, -0.0172576904296875, 0.0002968311309814453, -0.055633544921875, 0.005687713623046875, 0.00267791748046875, 0.0792236328125, 0.01540374755859375, -0.0304718017578125, -0.007427215576171875, -0.035858154296875, 0.04119873046875, -0.058074951171875, 0.01221466064453125, 0.042083740234375, 0.0306854248046875, -0.0272216796875, -0.050506591796875, -0.0278472900390625, 0.0160369873046875, -0.00832366943359375, 0.00637054443359375, -0.0426025390625, -0.0282440185546875, 0.04144287109375, 0.0205078125, -0.05853271484375, -0.004436492919921875, -0.05145263671875, 0.0023593902587890625, 0.048675537109375, 0.01035308837890625, 0.0382080078125, -0.0245208740234375, -0.034637451171875, -0.026123046875, -0.044403076171875, 0.0290679931640625, 0.02655029296875, 0.01129913330078125, -0.06915283203125, 0.044189453125, 0.0005693435668945312, 0.043426513671875, 0.00920867919921875, 0.006072998046875, 0.027679443359375, -0.01062774658203125, -0.0166473388671875, -0.0144805908203125, 0.0718994140625, 0.034942626953125, -0.001209259033203125, 0.02178955078125, 0.0017490386962890625, 0.00908660888671875, 0.016693115234375, -0.06903076171875, -0.0177001953125, 0.0247802734375, -0.026580810546875, -0.0208740234375, 0.01457977294921875, -0.0709228515625, -0.01531219482421875, 0.00318145751953125, 0.015869140625, -0.0309906005859375, -0.0323486328125, 0.01334381103515625, -0.01522064208984375, 0.058837890625, 0.0301361083984375, -0.061248779296875, 0.022430419921875, 0.046112060546875, 0.04534912109375, 0.012603759765625, 0.001598358154296875, -0.037017822265625, 0.005096435546875, -0.0350341796875, 0.054779052734375, -0.0306549072265625, -0.039886474609375, -0.01056671142578125, 0.0199737548828125, 0.0191802978515625, -0.0298309326171875, 0.0595703125, -0.027587890625, 0.01277923583984375, -0.03570556640625, -0.0191802978515625, -0.02960205078125, -0.0015268325805664062, -0.05194091796875, 0.09893798828125, 0.0328369140625, -0.059295654296875, -0.003917694091796875, -0.0357666015625, -0.00945281982421875, 0.0010623931884765625, -0.01297760009765625, -0.02398681640625, 0.0205230712890625, 0.004627227783203125, 0.0322265625, -0.0296173095703125, 0.001743316650390625, -0.028717041015625, -0.033172607421875, 0.01003265380859375, 0.00806427001953125, 0.0660400390625, 0.010284423828125, -0.035400390625, 0.01019287109375, -0.06866455078125, 0.005153656005859375, 0.042327880859375, -0.01465606689453125, -0.0236358642578125, -0.0191192626953125, 0.0250396728515625, 0.034881591796875, 0.032257080078125, -0.040496826171875, 0.0171051025390625, -0.0209503173828125, 0.0206298828125, 0.055816650390625, -0.0225830078125, 0.0196990966796875, -0.0506591796875, 0.054840087890625, -0.006683349609375, 0.03167724609375, -0.0028057098388671875, -0.0657958984375, -0.057830810546875, -0.01324462890625, -0.025848388671875, 0.02593994140625, -0.038665771484375, 0.0264739990234375, 0.00640106201171875, -0.06256103515625, -0.0292510986328125, -0.0114593505859375, 0.036834716796875, 0.017059326171875, 0.039764404296875, -0.034912109375, -0.034881591796875, -0.08721923828125, 0.00975799560546875, -0.01047515869140625, 0.015411376953125, 0.04400634765625, 0.040252685546875, -0.043914794921875, 0.05340576171875, -0.04754638671875, -0.032196044921875, -0.01371002197265625, -0.0079498291015625, 0.0270538330078125, 0.0562744140625, 0.074951171875, -0.048583984375, -0.023284912109375, -0.0187835693359375, -0.059295654296875, -0.012451171875, 0.0135040283203125, -0.033843994140625, 0.01485443115234375, 0.011688232421875, -0.053192138671875, 0.0452880859375, 0.0469970703125, -0.06451416015625, 0.03826904296875, -0.043609619140625, -0.0026569366455078125, -0.0789794921875, 0.016998291015625, 0.0191802978515625, -0.039306640625, -0.031463623046875, 0.04888916015625, 0.0163726806640625, -0.0134429931640625, -0.041015625, 0.055999755859375, -0.0301361083984375, -0.00927734375, -0.0270538330078125, 0.004146575927734375, 0.01016998291015625, 0.03411865234375, 0.00536346435546875, 0.0307464599609375, 0.05316162109375, -0.018585205078125, 0.0426025390625, 0.04705810546875, -0.0184783935546875, 0.036102294921875, -0.06976318359375, 0.0201873779296875, -0.0186767578125, 0.02947998046875, -0.06640625, -0.033905029296875, 0.05712890625, -0.023101806640625, 0.025482177734375, -0.00991058349609375, -0.023590087890625, -0.035369873046875, -0.03887939453125, 0.0279083251953125, 0.064208984375, -0.042327880859375, 0.049102783203125, 0.032745361328125, -0.0036468505859375, -0.03411865234375, -0.0638427734375, -0.007671356201171875, -0.0009479522705078125, -0.048309326171875, 0.0206146240234375, -0.0174560546875, -0.007198333740234375, 0.016937255859375, -0.0139312744140625, -0.01018524169921875, -0.016937255859375, 0.04913330078125, 0.038909912109375, -0.005054473876953125, -0.049102783203125, 0.0177001953125, -0.0209503173828125, 0.018280029296875, 0.00778961181640625, 0.058502197265625, -0.0155487060546875, -0.021392822265625, -0.046966552734375, 0.0306243896484375, 0.048187255859375, -0.01605224609375, 0.04840087890625, 0.05419921875, -0.041412353515625, -0.0103607177734375, -0.03851318359375, 0.00555419921875, -0.037689208984375, 0.006679534912109375, -0.0175018310546875, -0.04791259765625, 0.044830322265625, 0.0516357421875, 0.00641632080078125, 0.04443359375, 0.0262908935546875, 0.010650634765625, 0.060150146484375, 0.04730224609375, 0.005268096923828125, 0.0245513916015625, -0.041961669921875, -0.0037021636962890625, -0.07342529296875, -0.044158935546875, -0.031219482421875, -0.0338134765625, -0.034759521484375, -0.055877685546875, 0.0176849365234375, 0.00775146484375, -0.0199432373046875, 0.0594482421875, -0.045654296875, 0.020599365234375, 0.032623291015625, 0.01910400390625, 0.0116119384765625, -0.002349853515625, 0.00313568115234375, -0.0023040771484375, -0.04071044921875, -0.01308441162109375, 0.07379150390625, 0.0258331298828125, 0.06561279296875, 0.0311737060546875, 0.046966552734375, 0.006000518798828125, -0.00916290283203125, -0.036834716796875, 0.061370849609375, -0.001064300537109375, -0.046051025390625, 0.00865936279296875, -0.016845703125, -0.06207275390625, 0.0167388916015625, -0.027313232421875, -0.05853271484375, 0.02313232421875, 0.00832366943359375, -0.0291290283203125, 0.01134490966796875, -0.0224456787109375, 0.061187744140625, 0.003902435302734375, -0.037109375, -0.0152587890625, -0.04071044921875, 0.043304443359375, -0.0160675048828125, 0.0192413330078125, -0.0198822021484375, -0.007503509521484375, 0.0592041015625, -0.051116943359375, 0.05078125, -0.0198822021484375, -0.025390625, 0.02703857421875, 0.004058837890625, 0.059417724609375, 0.0183563232421875, 0.004154205322265625, 0.003917694091796875, 0.0224456787109375, -0.0304412841796875, -0.038177490234375, 0.068603515625, -0.0748291015625, -0.0322265625, -0.049530029296875, -0.03369140625, 0.01041412353515625, 0.00421142578125, 0.033477783203125, 0.05059814453125, 0.0049285888671875, 0.0118560791015625, 0.048248291015625, -0.0297088623046875, 0.028839111328125, 0.033660888671875, -0.050323486328125, -0.009063720703125, 0.044952392578125, -0.0146484375, -0.0022029876708984375, 0.01279449462890625, 0.019744873046875, -0.032745361328125, -0.0182647705078125, -0.038421630859375, 0.034515380859375, -0.0418701171875, -0.01045989990234375, -0.046600341796875, -0.01221466064453125, -0.03558349609375, -0.0183563232421875, -0.042144775390625, -0.042144775390625, -0.0369873046875, 0.01163482666015625, 0.047607421875, 0.04931640625, -0.028289794921875, 0.0195159912109375, -0.057830810546875, 0.03765869140625, 0.012603759765625, 0.00794219970703125, -0.0046234130859375, -0.056671142578125, 0.013763427734375, 0.00873565673828125, -0.0210418701171875, -0.06964111328125, 0.042205810546875, -0.0007791519165039062, 0.02294921875, 0.04083251953125, 0.0079803466796875, 0.04833984375, -0.0195159912109375, 0.050384521484375, 0.027130126953125, -0.056671142578125, 0.049835205078125, -0.04718017578125, 0.017822265625, 0.0195465087890625, 0.034820556640625, -0.034881591796875, -0.019989013671875, -0.061065673828125, -0.07635498046875, 0.058746337890625, 0.01206207275390625, 0.0228118896484375, -0.00457763671875, 0.04345703125, 0.0013017654418945312, -0.0008139610290527344, -0.054931640625, -0.035400390625, -0.01476287841796875, 0.0063934326171875, -0.0013284683227539062, -0.03387451171875, 0.005306243896484375, -0.023956298828125, 0.078369140625, 0.0036411285400390625, 0.030059814453125, 0.01001739501953125, 0.01242828369140625, -0.021209716796875, 0.00556182861328125, 0.032989501953125, 0.04266357421875, -0.03662109375, -0.01221466064453125, -0.01308441162109375, -0.0267333984375, 0.0115203857421875, 0.0141448974609375, -0.0212554931640625, -0.0006451606750488281, 0.011474609375, 0.0626220703125, 0.03192138671875, -0.051483154296875, 0.05389404296875, -0.01617431640625, 0.006168365478515625, -0.041961669921875, 0.022918701171875, 0.01245880126953125, 0.040313720703125, 0.0052032470703125, 0.0138397216796875, -0.0073089599609375, -0.0496826171875, 0.004024505615234375, 0.041473388671875, -0.03448486328125, -0.02587890625, 0.0721435546875, -0.011627197265625, -0.01654052734375, 0.042633056640625, -0.032379150390625, -0.00319671630859375, 0.05389404296875, 0.0634765625, 0.046539306640625, -0.0167999267578125, 0.0171966552734375, 0.050750732421875, 0.01129913330078125, -0.017669677734375, 0.0555419921875, 0.00951385498046875, -0.0438232421875, -0.017730712890625, -0.058319091796875, -0.021484375, 0.024261474609375, -0.0748291015625, 0.03564453125, -0.061614990234375, -0.0171661376953125, -0.016021728515625, -0.01296234130859375, -0.050689697265625, 0.00971221923828125, 0.0110015869140625, 0.08673095703125, -0.0621337890625, 0.057830810546875, 0.05902099609375, -0.0255584716796875, -0.06658935546875, -0.046539306640625, 0.024078369140625, -0.0703125, 0.0316162109375, 0.0089874267578125, 0.003177642822265625, -0.0018587112426757812, -0.032501220703125, -0.07318115234375, 0.07720947265625, 0.01117706298828125, -0.048614501953125, -0.0139617919921875, -0.006595611572265625, 0.0224761962890625, -0.016937255859375, 0.02545166015625, 0.03009033203125, 0.03179931640625, 0.0180511474609375, -0.060943603515625, 0.03033447265625, -0.0450439453125, 0.0145416259765625, 0.017578125, -0.055999755859375, 0.071533203125, -0.0212554931640625, 0.004913330078125, 0.04266357421875, 0.045501708984375, 0.03021240234375, -0.00586700439453125, 0.02105712890625, 0.07330322265625, 0.03424072265625, -0.01395416259765625, 0.07916259765625, -0.00968170166015625, 0.0413818359375, 0.07879638671875, -0.005931854248046875, 0.0638427734375, 0.0135650634765625, -0.0128631591796875, 0.0377197265625, 0.04620361328125, -0.0191192626953125, 0.0233001708984375, 0.0123291015625, -0.007137298583984375, -0.002613067626953125, -0.0026454925537109375, -0.0479736328125, 0.037933349609375, 0.0190582275390625, -0.00885009765625, -0.0318603515625, -0.0005421638488769531, 0.01143646240234375, -0.0186614990234375, -0.019317626953125, 0.0290069580078125, 0.0100860595703125, -0.0286102294921875, 0.038604736328125, 0.0227813720703125, 0.055023193359375, -0.0703125, -0.0025882720947265625, -0.0215606689453125, 0.01082611083984375, -0.0272979736328125, -0.04840087890625, 0.0303955078125, 0.0089874267578125, 0.0008339881896972656, -0.0124969482421875, 0.06024169921875, -0.0196990966796875, -0.0389404296875, 0.039215087890625, 0.034393310546875, 0.0304412841796875, 0.0003314018249511719, -0.06494140625, 0.03729248046875, -0.00685882568359375, -0.029022216796875, 0.041046142578125, -0.0030384063720703125, 0.01099395751953125, 0.056884765625, 0.051483154296875, 0.0024280548095703125, -0.0025806427001953125, -0.022552490234375, 0.06304931640625, -0.040374755859375, -0.0423583984375, -0.058135986328125, 0.026519775390625, 0.01262664794921875, -0.0203399658203125, 0.056182861328125, 0.061187744140625, 0.061431884765625, -0.01424407958984375, 0.041900634765625, -0.02392578125, 0.0088958740234375, -0.0306243896484375, 0.05059814453125, -0.0606689453125, -0.00920867919921875, -0.040740966796875, -0.078369140625, 0.0008912086486816406, 0.08526611328125, 0.0083770751953125, -0.0037593841552734375, 0.036529541015625, 0.06671142578125, -0.0217437744140625, 0.0118255615234375, 0.005046844482421875, 0.005435943603515625, 0.0245819091796875, 0.0693359375, 0.06439208984375, -0.053466796875, 0.0123443603515625, -0.04052734375, -0.0308685302734375, -0.0110321044921875, -0.0693359375, -0.056243896484375, -0.0350341796875, -0.041595458984375, -0.042724609375, -0.01224517822265625, 0.0899658203125, 0.0517578125, -0.04046630859375, -0.0194549560546875, 0.009735107421875, -0.02398681640625, -0.0010442733764648438, -0.0166168212890625, 0.0295562744140625, 0.0243377685546875, -0.0628662109375, 0.032623291015625, 0.0199127197265625, 0.0340576171875, -0.0005331039428710938, -0.0011835098266601562, -0.0038738250732421875, 0.00653076171875, 0.0307159423828125, 0.036529541015625, -0.0443115234375, -0.01776123046875, -0.0244903564453125, 0.0014410018920898438, 0.005290985107421875, 0.034515380859375, -0.0531005859375, 0.0009899139404296875, 0.038665771484375, 0.0184326171875, 0.05853271484375, -0.00640106201171875, 0.009674072265625, -0.029510498046875, 0.031341552734375, -0.0145416259765625, 0.04632568359375, 0.011993408203125, -0.0190277099609375, 0.035736083984375, 0.0241241455078125, -0.024871826171875, -0.043792724609375, 0.0150604248046875, -0.1099853515625, -0.0233612060546875, 0.08282470703125, -0.004825592041015625, -0.025238037109375, 0.01678466796875, -0.0302581787109375, 0.003490447998046875, -0.034576416015625, 0.0306549072265625, 0.028778076171875, -0.01517486572265625, -0.0133209228515625, -0.0555419921875, 0.0273590087890625, 0.0030670166015625, -0.0631103515625, -0.0007772445678710938, 0.0458984375, 0.0199737548828125, 0.019073486328125, 0.0679931640625, -0.026611328125, 0.02386474609375, -0.0141754150390625, 0.000019848346710205078, -0.031005859375, -0.017059326171875, -0.0239715576171875, 0.0053253173828125, -0.0194091796875, 0.0013256072998046875 ] ]
nkarp/PPO-LunarLander-v2
2023-10-28T16:42:01.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
nkarp
null
null
nkarp/PPO-LunarLander-v2
0
2
stable-baselines3
2023-10-28T16:41:41
--- 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.70 +/- 24.21 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 ... ```
784
[ [ -0.0001957416534423828, -0.0271148681640625, 0.017059326171875, 0.023345947265625, -0.006061553955078125, 0.002750396728515625, 0.034454345703125, -0.01210784912109375, 0.0198516845703125, 0.06494140625, -0.04315185546875, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017461776733398438, 0.06976318359375, 0.0015993118286132812, 0.02813720703125, 0.00954437255859375, -0.0070648193359375, -0.0183258056640625, -0.021881103515625, -0.052001953125, -0.0714111328125, 0.01198577880859375, 0.0501708984375, 0.05419921875, 0.02423095703125, 0.028076171875, 0.029205322265625, -0.017669677734375, -0.032196044921875, -0.041290283203125, -0.001277923583984375, -0.0006289482116699219, -0.044403076171875, -0.06341552734375, 0.01415252685546875, 0.039581298828125, 0.004047393798828125, -0.0198516845703125, 0.004909515380859375, -0.028289794921875, 0.03106689453125, -0.037567138671875, 0.0157623291015625, -0.015350341796875, 0.0017824172973632812, 0.007354736328125, 0.01079559326171875, -0.02593994140625, -0.00983428955078125, 0.0206451416015625, -0.09063720703125, -0.00533294677734375, -0.021484375, 0.0928955078125, 0.00939178466796875, -0.0379638671875, 0.0011911392211914062, -0.0189971923828125, 0.034027099609375, -0.02716064453125, 0.01033782958984375, 0.04913330078125, 0.0361328125, 0.0031490325927734375, -0.069091796875, -0.0163726806640625, -0.0325927734375, 0.0010614395141601562, 0.0316162109375, 0.01551055908203125, 0.0167236328125, 0.01500701904296875, 0.01074981689453125, -0.0240631103515625, 0.0240936279296875, -0.045989990234375, -0.0239105224609375, 0.03558349609375, 0.0182342529296875, 0.005359649658203125, -0.0078125, -0.0352783203125, -0.01184844970703125, -0.031402587890625, 0.0230712890625, 0.0304107666015625, 0.01282501220703125, -0.05889892578125, 0.06573486328125, -0.0190582275390625, 0.031524658203125, 0.0302886962890625, -0.0003712177276611328, 0.048675537109375, 0.00939178466796875, -0.007904052734375, -0.0259857177734375, 0.039306640625, 0.06744384765625, 0.00405120849609375, 0.00562286376953125, -0.033721923828125, -0.0187835693359375, 0.01204681396484375, -0.055450439453125, -0.0249176025390625, 0.033721923828125, -0.0198211669921875, -0.04876708984375, 0.0350341796875, -0.04180908203125, -0.02508544921875, -0.0006384849548339844, 0.027191162109375, -0.047119140625, -0.041259765625, 0.004329681396484375, -0.032470703125, 0.05010986328125, 0.00982666015625, -0.06329345703125, 0.0308990478515625, 0.048492431640625, 0.0660400390625, 0.041229248046875, -0.04791259765625, -0.049163818359375, 0.01349639892578125, -0.031524658203125, 0.055206298828125, 0.017242431640625, -0.033721923828125, 0.0217742919921875, 0.00040793418884277344, 0.0149688720703125, -0.035675048828125, 0.018157958984375, -0.032958984375, 0.0207061767578125, 0.00656890869140625, -0.0308685302734375, -0.0007824897766113281, 0.03253173828125, -0.045684814453125, 0.09820556640625, 0.060394287109375, -0.039886474609375, 0.0260009765625, -0.046142578125, -0.00530242919921875, 0.036376953125, 0.017578125, -0.050750732421875, -0.001979827880859375, -0.03106689453125, 0.0129852294921875, 0.004795074462890625, 0.003032684326171875, -0.026275634765625, -0.026824951171875, 0.0054931640625, 0.056732177734375, 0.063720703125, 0.01560211181640625, -0.00237274169921875, 0.01444244384765625, -0.04364013671875, -0.00995635986328125, 0.0063323974609375, -0.0202789306640625, -0.01104736328125, -0.0171356201171875, 0.03753662109375, 0.017120361328125, 0.03399658203125, -0.03436279296875, 0.035797119140625, -0.039276123046875, 0.01407623291015625, 0.049774169921875, -0.00909423828125, 0.056060791015625, -0.0478515625, 0.023529052734375, -0.01236724853515625, 0.0191497802734375, 0.01390838623046875, -0.0253143310546875, -0.045623779296875, -0.036285400390625, -0.0020618438720703125, 0.05804443359375, -0.0865478515625, 0.049072265625, 0.0156097412109375, -0.054779052734375, -0.0146942138671875, -0.010711669921875, 0.036468505859375, 0.018890380859375, 0.0032958984375, -0.006427764892578125, -0.042449951171875, -0.060699462890625, 0.0173187255859375, -0.048309326171875, -0.0168914794921875, 0.00006079673767089844, 0.047607421875, -0.0242462158203125, 0.058746337890625, -0.026214599609375, -0.025299072265625, -0.0228729248046875, 0.013824462890625, 0.01983642578125, 0.05352783203125, 0.067626953125, -0.041107177734375, -0.036651611328125, -0.019012451171875, -0.06317138671875, -0.0302276611328125, 0.010894775390625, -0.01128387451171875, 0.0007939338684082031, 0.02386474609375, -0.05499267578125, 0.00652313232421875, 0.04248046875, -0.07159423828125, 0.051483154296875, -0.02630615234375, -0.00008159875869750977, -0.091796875, 0.01300048828125, 0.0162200927734375, -0.0242767333984375, -0.05548095703125, 0.0237274169921875, 0.01108551025390625, -0.00431060791015625, -0.05096435546875, 0.06439208984375, -0.037811279296875, 0.0016193389892578125, -0.03228759765625, -0.00920867919921875, -0.010498046875, -0.004230499267578125, 0.0018568038940429688, 0.043609619140625, 0.07916259765625, -0.0304107666015625, 0.0430908203125, 0.042877197265625, 0.00760650634765625, 0.05340576171875, -0.0426025390625, 0.0089111328125, -0.0184478759765625, 0.0185546875, -0.045135498046875, -0.04400634765625, 0.0423583984375, -0.03564453125, 0.022369384765625, -0.0321044921875, -0.0238037109375, -0.033660888671875, -0.042266845703125, 0.01345062255859375, 0.0439453125, -0.0207977294921875, 0.05316162109375, 0.048919677734375, 0.00811767578125, -0.03924560546875, -0.0306854248046875, -0.01345062255859375, -0.0196380615234375, -0.02935791015625, 0.03204345703125, 0.0094451904296875, -0.03436279296875, -0.01560211181640625, 0.0025196075439453125, -0.0149078369140625, 0.0061798095703125, 0.03338623046875, 0.0285186767578125, -0.0016841888427734375, -0.020233154296875, -0.028564453125, -0.04962158203125, -0.0103607177734375, -0.01058197021484375, 0.0472412109375, -0.01898193359375, 0.02630615234375, -0.059051513671875, -0.0034732818603515625, 0.052276611328125, 0.017578125, 0.05859375, 0.0302734375, -0.0380859375, -0.007137298583984375, -0.0239105224609375, -0.01153564453125, -0.038238525390625, 0.031646728515625, -0.039642333984375, -0.040008544921875, 0.05059814453125, 0.000016510486602783203, -0.026397705078125, 0.041748046875, 0.04034423828125, -0.00569915771484375, 0.0465087890625, 0.0687255859375, -0.007598876953125, 0.050506591796875, -0.049285888671875, -0.046417236328125, -0.0535888671875, -0.04229736328125, -0.026763916015625, 0.01678466796875, -0.0285186767578125, -0.0179290771484375, 0.009307861328125, 0.032196044921875, -0.053375244140625, 0.06182861328125, -0.0300750732421875, 0.04248046875, 0.040618896484375, 0.0107879638671875, -0.019317626953125, -0.038177490234375, -0.003284454345703125, 0.0158843994140625, -0.02325439453125, -0.038116455078125, 0.06817626953125, 0.039703369140625, 0.05242919921875, 0.00501251220703125, 0.0447998046875, 0.006412506103515625, 0.04473876953125, -0.03857421875, 0.033721923828125, -0.01229095458984375, -0.0631103515625, -0.0081787109375, -0.0222015380859375, -0.0528564453125, 0.0129852294921875, -0.0304718017578125, -0.0665283203125, -0.0117340087890625, 0.00640869140625, -0.019683837890625, 0.005283355712890625, -0.03704833984375, 0.0712890625, -0.0242767333984375, -0.024383544921875, 0.0106048583984375, -0.047882080078125, 0.018524169921875, 0.01351165771484375, -0.0036163330078125, -0.0248870849609375, -0.018157958984375, 0.050048828125, -0.032958984375, 0.043670654296875, -0.05755615234375, 0.01302337646484375, 0.0166015625, 0.0089111328125, 0.0274810791015625, 0.031951904296875, -0.01165771484375, 0.001300811767578125, 0.00582122802734375, -0.05224609375, -0.0032176971435546875, 0.03118896484375, -0.0985107421875, -0.004642486572265625, -0.057830810546875, -0.0232391357421875, 0.00901031494140625, 0.02008056640625, 0.03948974609375, 0.0093841552734375, -0.027984619140625, 0.0001989603042602539, 0.005954742431640625, 0.00881195068359375, 0.01517486572265625, 0.061370849609375, -0.0357666015625, -0.06109619140625, 0.0298919677734375, 0.0017156600952148438, -0.0007414817810058594, 0.022125244140625, 0.00567626953125, -0.0225372314453125, -0.042083740234375, -0.0098419189453125, 0.03094482421875, -0.02508544921875, -0.0134429931640625, -0.0113525390625, -0.022705078125, -0.0256195068359375, -0.02911376953125, -0.046112060546875, -0.020416259765625, -0.0330810546875, -0.0224761962890625, 0.025604248046875, 0.049896240234375, -0.030181884765625, 0.0865478515625, -0.034912109375, 0.033355712890625, 0.0100555419921875, 0.041290283203125, -0.058624267578125, -0.033782958984375, -0.0265655517578125, -0.0174560546875, -0.031524658203125, -0.0667724609375, 0.032684326171875, -0.0161895751953125, 0.053741455078125, 0.0281524658203125, -0.01081085205078125, 0.02545166015625, -0.01160430908203125, 0.055511474609375, 0.033355712890625, -0.0716552734375, 0.0283203125, -0.05120849609375, 0.00917816162109375, 0.06243896484375, 0.01462554931640625, -0.0180206298828125, -0.02587890625, -0.060150146484375, -0.069091796875, 0.083251953125, 0.032135009765625, -0.00598907470703125, 0.0220947265625, 0.05523681640625, -0.00547027587890625, 0.006832122802734375, -0.06524658203125, -0.0196380615234375, -0.0263824462890625, -0.012664794921875, -0.01971435546875, -0.011962890625, -0.01407623291015625, 0.004138946533203125, 0.06378173828125, -0.01079559326171875, 0.0202484130859375, 0.0062103271484375, -0.00850677490234375, -0.0303802490234375, -0.037261962890625, 0.0280303955078125, 0.0230560302734375, -0.06341552734375, -0.0156402587890625, 0.0036830902099609375, -0.040679931640625, 0.0256195068359375, 0.043426513671875, -0.01910400390625, -0.0178985595703125, 0.0283203125, 0.05047607421875, 0.011138916015625, -0.0197296142578125, 0.046356201171875, 0.0081939697265625, -0.034820556640625, -0.0535888671875, 0.002925872802734375, -0.006137847900390625, 0.0372314453125, 0.0201568603515625, 0.01030731201171875, -0.00916290283203125, -0.03692626953125, 0.030242919921875, 0.0177154541015625, -0.049957275390625, -0.036041259765625, 0.06109619140625, 0.0253143310546875, -0.056304931640625, 0.0447998046875, -0.0072784423828125, -0.039703369140625, 0.06689453125, 0.031707763671875, 0.0650634765625, -0.02569580078125, 0.032958984375, 0.033935546875, 0.01328277587890625, -0.02508544921875, 0.04010009765625, 0.020111083984375, -0.07373046875, -0.0159454345703125, -0.0118255615234375, -0.052337646484375, 0.01548004150390625, -0.044464111328125, 0.04150390625, -0.0439453125, -0.03485107421875, 0.00290679931640625, 0.020721435546875, -0.0294036865234375, -0.005176544189453125, 0.025543212890625, 0.09429931640625, -0.060943603515625, 0.0711669921875, 0.0716552734375, -0.03729248046875, -0.038238525390625, -0.0018377304077148438, 0.02777099609375, -0.05804443359375, 0.040557861328125, 0.032196044921875, 0.003879547119140625, 0.00966644287109375, -0.054412841796875, -0.048858642578125, 0.100830078125, 0.0137786865234375, -0.0031147003173828125, 0.0162811279296875, -0.01515960693359375, 0.046966552734375, -0.04058837890625, 0.037139892578125, 0.0236053466796875, 0.035797119140625, 0.01328277587890625, -0.0660400390625, -0.025146484375, -0.03369140625, -0.0085601806640625, -0.0031185150146484375, -0.0758056640625, 0.08148193359375, 0.002880096435546875, 0.024505615234375, 0.06365966796875, 0.03436279296875, 0.05584716796875, 0.019256591796875, 0.036651611328125, 0.04254150390625, 0.0194549560546875, -0.0190582275390625, 0.0615234375, -0.02239990234375, 0.06500244140625, 0.050506591796875, -0.059234619140625, 0.038909912109375, 0.0203094482421875, 0.007171630859375, 0.03570556640625, 0.0458984375, -0.01397705078125, 0.056610107421875, 0.0138092041015625, -0.008697509765625, -0.00630950927734375, 0.0308990478515625, -0.019317626953125, 0.033355712890625, 0.01331329345703125, 0.00032973289489746094, -0.0061187744140625, -0.001331329345703125, 0.00279998779296875, -0.00330352783203125, -0.03173828125, 0.06964111328125, -0.011962890625, -0.04779052734375, 0.031951904296875, 0.0242156982421875, 0.04351806640625, -0.06195068359375, -0.0022792816162109375, -0.01029205322265625, 0.04559326171875, 0.0006031990051269531, -0.07171630859375, -0.002330780029296875, -0.01418304443359375, 0.007904052734375, -0.017608642578125, 0.051849365234375, -0.014404296875, -0.020263671875, 0.057373046875, 0.0252227783203125, 0.0025310516357421875, 0.01580810546875, -0.07073974609375, -0.01291656494140625, -0.035003662109375, -0.03790283203125, 0.0160980224609375, 0.0209503173828125, 0.0240478515625, 0.053070068359375, 0.0322265625, -0.0011568069458007812, -0.02484130859375, -0.007297515869140625, 0.0687255859375, -0.048065185546875, -0.052276611328125, -0.03369140625, 0.07794189453125, -0.0226287841796875, -0.06005859375, 0.0343017578125, 0.06951904296875, 0.03912353515625, -0.0216827392578125, 0.038848876953125, -0.01434326171875, 0.022003173828125, -0.032501220703125, 0.055450439453125, -0.0187835693359375, -0.0088958740234375, -0.00931549072265625, -0.051300048828125, -0.034698486328125, 0.069091796875, -0.0013675689697265625, -0.004581451416015625, 0.0197296142578125, 0.05364990234375, 0.0026226043701171875, -0.0228729248046875, 0.015716552734375, 0.041107177734375, 0.0057373046875, 0.028350830078125, 0.07061767578125, -0.046783447265625, 0.01107025146484375, -0.0391845703125, -0.051544189453125, -0.0189666748046875, -0.045867919921875, -0.0758056640625, -0.031402587890625, -0.018646240234375, -0.0701904296875, 0.0158843994140625, 0.0625, 0.07366943359375, -0.04815673828125, -0.050811767578125, -0.0162506103515625, -0.0076904296875, -0.01080322265625, -0.0127105712890625, 0.007442474365234375, -0.00418853759765625, -0.047637939453125, 0.0186920166015625, -0.0023555755615234375, 0.0282440185546875, 0.0009002685546875, -0.044189453125, -0.01312255859375, -0.02362060546875, 0.018798828125, 0.036895751953125, -0.0216064453125, -0.0288848876953125, -0.00914764404296875, -0.01763916015625, 0.0026454925537109375, 0.036346435546875, -0.047271728515625, 0.00473785400390625, 0.02960205078125, -0.0267333984375, 0.0640869140625, 0.01157379150390625, 0.042205810546875, -0.039520263671875, 0.047119140625, 0.0186309814453125, 0.0304718017578125, 0.0151214599609375, -0.01532745361328125, 0.0484619140625, 0.02679443359375, -0.050079345703125, -0.04827880859375, 0.0116729736328125, -0.0843505859375, -0.016082763671875, 0.083251953125, 0.0007572174072265625, -0.0136566162109375, -0.004779815673828125, -0.040985107421875, 0.0174560546875, -0.03369140625, 0.036834716796875, 0.035797119140625, -0.004169464111328125, -0.0268707275390625, -0.0274658203125, 0.033294677734375, -0.01068878173828125, -0.044647216796875, -0.02923583984375, 0.034912109375, 0.032073974609375, 0.0218048095703125, 0.06744384765625, -0.01039886474609375, 0.0311279296875, 0.03271484375, 0.0216064453125, -0.015777587890625, -0.023895263671875, -0.033966064453125, 0.00850677490234375, 0.0080718994140625, -0.00995635986328125 ] ]
NicholasGri/ppo-LunarLander-v2
2023-10-28T17:05:21.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
NicholasGri
null
null
NicholasGri/ppo-LunarLander-v2
0
2
stable-baselines3
2023-10-28T17:04:59
--- 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: 265.65 +/- 22.19 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 ... ```
784
[ [ -0.00023484230041503906, -0.02716064453125, 0.017059326171875, 0.023345947265625, -0.00606536865234375, 0.002735137939453125, 0.034454345703125, -0.012115478515625, 0.019866943359375, 0.06500244140625, -0.043212890625, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017528533935546875, 0.06982421875, 0.0015935897827148438, 0.028167724609375, 0.00954437255859375, -0.00704193115234375, -0.018341064453125, -0.0218658447265625, -0.05206298828125, -0.07147216796875, 0.011993408203125, 0.050201416015625, 0.054229736328125, 0.0242462158203125, 0.028106689453125, 0.0292205810546875, -0.0176849365234375, -0.0322265625, -0.04132080078125, -0.0012683868408203125, -0.000614166259765625, -0.044403076171875, -0.0633544921875, 0.01415252685546875, 0.03961181640625, 0.004047393798828125, -0.0198822021484375, 0.004917144775390625, -0.0282745361328125, 0.031097412109375, -0.037567138671875, 0.015777587890625, -0.01535797119140625, 0.0017938613891601562, 0.007350921630859375, 0.01081085205078125, -0.0259246826171875, -0.00986480712890625, 0.020660400390625, -0.0906982421875, -0.00533294677734375, -0.021514892578125, 0.09295654296875, 0.0093994140625, -0.037994384765625, 0.0011854171752929688, -0.0190277099609375, 0.034088134765625, -0.027191162109375, 0.0103607177734375, 0.049163818359375, 0.036163330078125, 0.0031528472900390625, -0.06915283203125, -0.016387939453125, -0.032623291015625, 0.0010671615600585938, 0.0316162109375, 0.0154876708984375, 0.0167236328125, 0.0150146484375, 0.0107574462890625, -0.0240478515625, 0.0241241455078125, -0.04608154296875, -0.0239410400390625, 0.0355224609375, 0.0182342529296875, 0.00534820556640625, -0.00782012939453125, -0.03533935546875, -0.01183319091796875, -0.03143310546875, 0.0230560302734375, 0.0303955078125, 0.0128326416015625, -0.05889892578125, 0.0657958984375, -0.019073486328125, 0.031524658203125, 0.0303192138671875, -0.0003750324249267578, 0.0487060546875, 0.0093994140625, -0.00792694091796875, -0.025970458984375, 0.039337158203125, 0.0675048828125, 0.00406646728515625, 0.005634307861328125, -0.03369140625, -0.018798828125, 0.0120391845703125, -0.055511474609375, -0.024932861328125, 0.03375244140625, -0.01983642578125, -0.048797607421875, 0.0350341796875, -0.0418701171875, -0.02508544921875, -0.0006508827209472656, 0.0272216796875, -0.04718017578125, -0.041290283203125, 0.0043487548828125, -0.032470703125, 0.050048828125, 0.00983428955078125, -0.06329345703125, 0.0309295654296875, 0.04852294921875, 0.0660400390625, 0.041259765625, -0.0479736328125, -0.0491943359375, 0.0135040283203125, -0.031494140625, 0.05523681640625, 0.0172576904296875, -0.03375244140625, 0.02178955078125, 0.0003981590270996094, 0.01496124267578125, -0.03570556640625, 0.0181732177734375, -0.032989501953125, 0.02069091796875, 0.006561279296875, -0.0308990478515625, -0.0007753372192382812, 0.03253173828125, -0.04571533203125, 0.0982666015625, 0.060394287109375, -0.0399169921875, 0.0259857177734375, -0.046173095703125, -0.005298614501953125, 0.036407470703125, 0.017578125, -0.05078125, -0.0019855499267578125, -0.0310516357421875, 0.01300811767578125, 0.004825592041015625, 0.003040313720703125, -0.02630615234375, -0.0268402099609375, 0.0055084228515625, 0.0567626953125, 0.06378173828125, 0.015625, -0.002384185791015625, 0.0144195556640625, -0.043670654296875, -0.00995635986328125, 0.00634765625, -0.0202789306640625, -0.0110321044921875, -0.0171661376953125, 0.037567138671875, 0.0171051025390625, 0.034027099609375, -0.034393310546875, 0.0357666015625, -0.039306640625, 0.014068603515625, 0.0498046875, -0.00911712646484375, 0.055999755859375, -0.0478515625, 0.023529052734375, -0.01238250732421875, 0.0191497802734375, 0.01395416259765625, -0.0253143310546875, -0.045684814453125, -0.036285400390625, -0.002056121826171875, 0.058013916015625, -0.08660888671875, 0.04913330078125, 0.015625, -0.0548095703125, -0.014678955078125, -0.01074981689453125, 0.03643798828125, 0.018890380859375, 0.003299713134765625, -0.006404876708984375, -0.042510986328125, -0.060699462890625, 0.017333984375, -0.04833984375, -0.01690673828125, 0.00007045269012451172, 0.047637939453125, -0.0242462158203125, 0.058746337890625, -0.0262603759765625, -0.0253448486328125, -0.02288818359375, 0.01381683349609375, 0.019866943359375, 0.053558349609375, 0.06768798828125, -0.041107177734375, -0.03668212890625, -0.0190582275390625, -0.063232421875, -0.0302581787109375, 0.01092529296875, -0.01129150390625, 0.0008001327514648438, 0.0238800048828125, -0.055023193359375, 0.00653076171875, 0.04254150390625, -0.07159423828125, 0.051513671875, -0.02630615234375, -0.00007575750350952148, -0.09185791015625, 0.01305389404296875, 0.0162200927734375, -0.024261474609375, -0.055511474609375, 0.0236968994140625, 0.01108551025390625, -0.004302978515625, -0.050994873046875, 0.064453125, -0.037841796875, 0.0016231536865234375, -0.03228759765625, -0.00919342041015625, -0.01050567626953125, -0.0042266845703125, 0.0018405914306640625, 0.04364013671875, 0.0792236328125, -0.0303955078125, 0.0430908203125, 0.04290771484375, 0.00759124755859375, 0.053436279296875, -0.042633056640625, 0.008880615234375, -0.0184478759765625, 0.0185546875, -0.045166015625, -0.04400634765625, 0.042388916015625, -0.035675048828125, 0.0223541259765625, -0.0321044921875, -0.0238037109375, -0.03369140625, -0.04229736328125, 0.0134735107421875, 0.043975830078125, -0.0208282470703125, 0.05322265625, 0.048980712890625, 0.0081024169921875, -0.03924560546875, -0.03070068359375, -0.013458251953125, -0.0196685791015625, -0.0293731689453125, 0.032073974609375, 0.0093994140625, -0.03436279296875, -0.0156097412109375, 0.002529144287109375, -0.0149383544921875, 0.006168365478515625, 0.033355712890625, 0.028564453125, -0.00170135498046875, -0.020263671875, -0.028594970703125, -0.049652099609375, -0.01038360595703125, -0.010589599609375, 0.047271728515625, -0.0190277099609375, 0.0263824462890625, -0.059112548828125, -0.00348663330078125, 0.052276611328125, 0.0176239013671875, 0.05859375, 0.0303192138671875, -0.0380859375, -0.00710296630859375, -0.0239410400390625, -0.01154327392578125, -0.03826904296875, 0.03167724609375, -0.0396728515625, -0.0400390625, 0.050628662109375, 0.00003361701965332031, -0.02642822265625, 0.041748046875, 0.040374755859375, -0.0056915283203125, 0.04656982421875, 0.06878662109375, -0.00760650634765625, 0.05059814453125, -0.04931640625, -0.046417236328125, -0.053619384765625, -0.0423583984375, -0.0268096923828125, 0.0167999267578125, -0.028533935546875, -0.0178985595703125, 0.0093231201171875, 0.032196044921875, -0.0533447265625, 0.06182861328125, -0.030059814453125, 0.042510986328125, 0.0406494140625, 0.01081085205078125, -0.0193634033203125, -0.038116455078125, -0.00330352783203125, 0.0158538818359375, -0.0232696533203125, -0.0380859375, 0.06817626953125, 0.039703369140625, 0.052459716796875, 0.005001068115234375, 0.044830322265625, 0.006404876708984375, 0.04473876953125, -0.038604736328125, 0.033782958984375, -0.0123138427734375, -0.06317138671875, -0.008209228515625, -0.022186279296875, -0.052886962890625, 0.0129852294921875, -0.030487060546875, -0.0665283203125, -0.011749267578125, 0.006420135498046875, -0.0196990966796875, 0.005298614501953125, -0.03704833984375, 0.07135009765625, -0.0242767333984375, -0.02435302734375, 0.0106048583984375, -0.04791259765625, 0.0185089111328125, 0.0135040283203125, -0.003620147705078125, -0.02490234375, -0.0181427001953125, 0.050048828125, -0.032958984375, 0.043701171875, -0.057586669921875, 0.013031005859375, 0.0166015625, 0.00891876220703125, 0.0274810791015625, 0.031951904296875, -0.0117034912109375, 0.001331329345703125, 0.00582122802734375, -0.052276611328125, -0.0032062530517578125, 0.031219482421875, -0.09857177734375, -0.0046539306640625, -0.057861328125, -0.02325439453125, 0.0090179443359375, 0.020111083984375, 0.03948974609375, 0.00940704345703125, -0.0279998779296875, 0.00021457672119140625, 0.0059661865234375, 0.00882720947265625, 0.01517486572265625, 0.0614013671875, -0.035797119140625, -0.061126708984375, 0.0298919677734375, 0.0017242431640625, -0.0007538795471191406, 0.0221099853515625, 0.00569915771484375, -0.0225372314453125, -0.042083740234375, -0.0098419189453125, 0.0309600830078125, -0.0251007080078125, -0.0134429931640625, -0.0113525390625, -0.0227508544921875, -0.0256500244140625, -0.0291290283203125, -0.046112060546875, -0.0204315185546875, -0.0330810546875, -0.0225067138671875, 0.0256195068359375, 0.0499267578125, -0.03021240234375, 0.08660888671875, -0.034942626953125, 0.03338623046875, 0.010040283203125, 0.04132080078125, -0.058624267578125, -0.0338134765625, -0.026611328125, -0.0174560546875, -0.03155517578125, -0.06683349609375, 0.03271484375, -0.016204833984375, 0.05377197265625, 0.028167724609375, -0.010833740234375, 0.0254974365234375, -0.01161956787109375, 0.055572509765625, 0.033355712890625, -0.0716552734375, 0.0283355712890625, -0.051239013671875, 0.0092010498046875, 0.062469482421875, 0.0146331787109375, -0.01800537109375, -0.0259246826171875, -0.0601806640625, -0.06903076171875, 0.08331298828125, 0.03216552734375, -0.00598907470703125, 0.0221099853515625, 0.055267333984375, -0.00547027587890625, 0.00682830810546875, -0.06524658203125, -0.0196380615234375, -0.0264129638671875, -0.01265716552734375, -0.0196990966796875, -0.01195526123046875, -0.0140533447265625, 0.00411224365234375, 0.06378173828125, -0.01079559326171875, 0.0202789306640625, 0.00621795654296875, -0.00850677490234375, -0.0304107666015625, -0.03729248046875, 0.0280609130859375, 0.0230560302734375, -0.06353759765625, -0.015655517578125, 0.0036869049072265625, -0.040679931640625, 0.0256195068359375, 0.043426513671875, -0.0190887451171875, -0.0178985595703125, 0.0283050537109375, 0.050506591796875, 0.0111541748046875, -0.0197296142578125, 0.046356201171875, 0.00817108154296875, -0.034820556640625, -0.053619384765625, 0.002925872802734375, -0.0061492919921875, 0.037261962890625, 0.0201873779296875, 0.01031494140625, -0.0091552734375, -0.036956787109375, 0.0302734375, 0.0177154541015625, -0.050048828125, -0.03607177734375, 0.061126708984375, 0.02532958984375, -0.05633544921875, 0.044830322265625, -0.007259368896484375, -0.03973388671875, 0.06695556640625, 0.031707763671875, 0.0650634765625, -0.0257415771484375, 0.032989501953125, 0.033935546875, 0.01325225830078125, -0.0251007080078125, 0.04010009765625, 0.0201568603515625, -0.07379150390625, -0.0159454345703125, -0.01184844970703125, -0.0523681640625, 0.0155181884765625, -0.04449462890625, 0.041534423828125, -0.043975830078125, -0.03485107421875, 0.0029296875, 0.020721435546875, -0.0294036865234375, -0.00514984130859375, 0.0255126953125, 0.0943603515625, -0.06097412109375, 0.07122802734375, 0.07159423828125, -0.037261962890625, -0.03826904296875, -0.0018377304077148438, 0.02777099609375, -0.058074951171875, 0.040618896484375, 0.032196044921875, 0.003887176513671875, 0.0096893310546875, -0.054443359375, -0.048919677734375, 0.10089111328125, 0.01378631591796875, -0.003082275390625, 0.0163116455078125, -0.0151824951171875, 0.0469970703125, -0.0406494140625, 0.037139892578125, 0.02362060546875, 0.035797119140625, 0.01329803466796875, -0.0660400390625, -0.0251312255859375, -0.03375244140625, -0.008575439453125, -0.00312042236328125, -0.07568359375, 0.08154296875, 0.002880096435546875, 0.0245208740234375, 0.063720703125, 0.03436279296875, 0.055877685546875, 0.0192413330078125, 0.03668212890625, 0.042572021484375, 0.01947021484375, -0.01904296875, 0.061492919921875, -0.0224151611328125, 0.0650634765625, 0.050537109375, -0.05926513671875, 0.038970947265625, 0.0203399658203125, 0.007175445556640625, 0.0357666015625, 0.045928955078125, -0.01399993896484375, 0.056671142578125, 0.0138092041015625, -0.0086822509765625, -0.006305694580078125, 0.0308990478515625, -0.0193328857421875, 0.033355712890625, 0.01335906982421875, 0.0003542900085449219, -0.006134033203125, -0.0013151168823242188, 0.002819061279296875, -0.00335693359375, -0.031707763671875, 0.069580078125, -0.01198577880859375, -0.047821044921875, 0.031982421875, 0.02423095703125, 0.043548583984375, -0.062042236328125, -0.002262115478515625, -0.01031494140625, 0.04559326171875, 0.00061798095703125, -0.07171630859375, -0.002323150634765625, -0.01418304443359375, 0.00791168212890625, -0.0176239013671875, 0.0518798828125, -0.01438140869140625, -0.020263671875, 0.057403564453125, 0.025238037109375, 0.0025386810302734375, 0.01580810546875, -0.07073974609375, -0.012908935546875, -0.03497314453125, -0.037933349609375, 0.0160980224609375, 0.020965576171875, 0.0240478515625, 0.0531005859375, 0.03228759765625, -0.0011396408081054688, -0.0248565673828125, -0.00730133056640625, 0.06878662109375, -0.048065185546875, -0.05230712890625, -0.03375244140625, 0.0780029296875, -0.02264404296875, -0.06005859375, 0.034332275390625, 0.06951904296875, 0.03912353515625, -0.0216827392578125, 0.03887939453125, -0.01435089111328125, 0.0220184326171875, -0.03253173828125, 0.05548095703125, -0.0188140869140625, -0.0088653564453125, -0.0093231201171875, -0.051300048828125, -0.034759521484375, 0.06915283203125, -0.0013580322265625, -0.004581451416015625, 0.019775390625, 0.053680419921875, 0.0025920867919921875, -0.02288818359375, 0.015716552734375, 0.0411376953125, 0.0057373046875, 0.0283355712890625, 0.0706787109375, -0.04681396484375, 0.01110076904296875, -0.039215087890625, -0.05157470703125, -0.0189971923828125, -0.0458984375, -0.07586669921875, -0.03143310546875, -0.0186614990234375, -0.0701904296875, 0.0158843994140625, 0.062469482421875, 0.0736083984375, -0.048187255859375, -0.05084228515625, -0.0162353515625, -0.00771331787109375, -0.01080322265625, -0.0127105712890625, 0.00746917724609375, -0.004177093505859375, -0.04766845703125, 0.018707275390625, -0.0023746490478515625, 0.0282440185546875, 0.0008997917175292969, -0.044219970703125, -0.01312255859375, -0.02362060546875, 0.0187835693359375, 0.036895751953125, -0.0216217041015625, -0.028900146484375, -0.009124755859375, -0.0176544189453125, 0.0026683807373046875, 0.036346435546875, -0.047332763671875, 0.004730224609375, 0.0296173095703125, -0.0267791748046875, 0.06414794921875, 0.01155853271484375, 0.042236328125, -0.03948974609375, 0.047149658203125, 0.01861572265625, 0.030487060546875, 0.0151214599609375, -0.01531219482421875, 0.0484619140625, 0.0268096923828125, -0.050048828125, -0.048309326171875, 0.0116729736328125, -0.08441162109375, -0.01611328125, 0.08331298828125, 0.0007581710815429688, -0.01366424560546875, -0.004764556884765625, -0.040985107421875, 0.0175018310546875, -0.033721923828125, 0.036834716796875, 0.035797119140625, -0.0041961669921875, -0.02685546875, -0.0274810791015625, 0.033294677734375, -0.01068115234375, -0.044677734375, -0.029266357421875, 0.034912109375, 0.0321044921875, 0.021820068359375, 0.0675048828125, -0.01039886474609375, 0.0311431884765625, 0.032745361328125, 0.0216217041015625, -0.01580810546875, -0.0239105224609375, -0.03399658203125, 0.0084991455078125, 0.00803375244140625, -0.00995635986328125 ] ]
YieldInc/FinanceRelatedQuestionFineTune
2023-10-28T17:43:10.000Z
[ "peft", "region:us" ]
null
YieldInc
null
null
YieldInc/FinanceRelatedQuestionFineTune
0
2
peft
2023-10-28T17:40:08
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 ### Framework versions - PEFT 0.6.0.dev0
469
[ [ -0.044891357421875, -0.056640625, 0.032562255859375, 0.03515625, -0.037261962890625, 0.006847381591796875, 0.01163482666015625, -0.01416015625, -0.0103607177734375, 0.03179931640625, -0.04150390625, -0.0085601806640625, -0.034027099609375, 0.01006317138671875, 0.0012760162353515625, 0.06671142578125, -0.005458831787109375, 0.031402587890625, -0.006710052490234375, 0.0014562606811523438, -0.02392578125, -0.024078369140625, -0.07891845703125, -0.027252197265625, -0.0255584716796875, 0.0283203125, 0.03314208984375, 0.00865936279296875, 0.05291748046875, 0.020782470703125, -0.0013570785522460938, -0.0230865478515625, -0.0137786865234375, -0.0285186767578125, 0.004150390625, -0.038238525390625, -0.057525634765625, -0.0090789794921875, 0.07122802734375, 0.0133819580078125, -0.00713348388671875, 0.01067352294921875, -0.017486572265625, 0.06402587890625, -0.048828125, 0.007312774658203125, -0.037261962890625, 0.035980224609375, -0.0038356781005859375, -0.006134033203125, -0.01241302490234375, -0.0168304443359375, 0.004608154296875, -0.03631591796875, 0.0286865234375, 0.0002880096435546875, 0.0670166015625, 0.0084228515625, -0.049560546875, 0.0087127685546875, -0.0328369140625, 0.049224853515625, -0.048431396484375, 0.037628173828125, 0.046661376953125, 0.006175994873046875, 0.009368896484375, -0.052154541015625, -0.0287628173828125, 0.01462554931640625, 0.019287109375, -0.0160369873046875, -0.002468109130859375, 0.03485107421875, 0.056427001953125, 0.03985595703125, -0.02606201171875, -0.020538330078125, -0.04400634765625, -0.036956787109375, 0.0513916015625, 0.0070648193359375, -0.021484375, 0.0236663818359375, -0.056640625, -0.0034313201904296875, -0.0460205078125, 0.01424407958984375, 0.0257415771484375, -0.00959014892578125, -0.042510986328125, 0.020263671875, -0.0224456787109375, 0.040557861328125, 0.059539794921875, 0.0029163360595703125, 0.07086181640625, -0.0316162109375, -0.041656494140625, 0.0262298583984375, 0.062408447265625, 0.0169219970703125, 0.00879669189453125, 0.005123138427734375, -0.038726806640625, -0.027252197265625, 0.0290374755859375, -0.08782958984375, -0.025543212890625, 0.030426025390625, -0.006275177001953125, -0.028900146484375, 0.01508331298828125, -0.03887939453125, 0.011138916015625, 0.01247406005859375, 0.058258056640625, -0.059356689453125, -0.034423828125, 0.02392578125, -0.0225067138671875, 0.03997802734375, 0.006877899169921875, -0.08349609375, 0.04119873046875, 0.043212890625, 0.04241943359375, 0.01454925537109375, -0.013946533203125, -0.02740478515625, -0.00930023193359375, -0.01538848876953125, 0.031707763671875, 0.0229339599609375, -0.020538330078125, -0.0124359130859375, 0.00925445556640625, -0.0105743408203125, -0.04443359375, 0.04925537109375, -0.037353515625, -0.007122039794921875, -0.01399993896484375, -0.0357666015625, -0.0242462158203125, 0.0207672119140625, -0.040313720703125, 0.08221435546875, 0.030487060546875, -0.048187255859375, 0.018524169921875, -0.035491943359375, -0.0247802734375, 0.0181121826171875, -0.03179931640625, -0.0518798828125, 0.04046630859375, -0.0245361328125, 0.0283203125, 0.01122283935546875, 0.0228271484375, -0.01336669921875, -0.057708740234375, 0.0255584716796875, -0.02593994140625, 0.07232666015625, 0.01092529296875, -0.055328369140625, -0.00554656982421875, -0.062286376953125, 0.023468017578125, 0.00041866302490234375, -0.044281005859375, 0.033538818359375, -0.03271484375, 0.0089111328125, 0.0012340545654296875, 0.0401611328125, -0.059783935546875, -0.01175689697265625, -0.041290283203125, 0.045257568359375, 0.053924560546875, -0.0029888153076171875, 0.0228271484375, -0.0169830322265625, 0.0284881591796875, 0.004547119140625, 0.02880859375, 0.04644775390625, -0.036651611328125, -0.060455322265625, -0.0009822845458984375, 0.01342010498046875, 0.032684326171875, -0.05108642578125, 0.054595947265625, 0.006519317626953125, -0.0167083740234375, -0.0080718994140625, -0.00894927978515625, 0.036224365234375, 0.00940704345703125, 0.0144500732421875, -0.00821685791015625, -0.034942626953125, -0.0712890625, 0.031402587890625, 0.004016876220703125, 0.007659912109375, -0.003993988037109375, 0.058502197265625, 0.00945281982421875, 0.039520263671875, -0.0290374755859375, -0.00151824951171875, 0.0023345947265625, 0.00390625, 0.03466796875, 0.054595947265625, 0.05877685546875, -0.0693359375, -0.0265350341796875, -0.0455322265625, -0.0097198486328125, 0.0133209228515625, -0.01139068603515625, -0.022125244140625, 0.029815673828125, 0.0159759521484375, -0.0265655517578125, 0.03955078125, 0.035980224609375, -0.058074951171875, 0.061859130859375, -0.0150604248046875, 0.021484375, -0.058563232421875, 0.0005106925964355469, 0.0007152557373046875, -0.033050537109375, 0.0088043212890625, 0.0005135536193847656, 0.0295562744140625, 0.005184173583984375, -0.055755615234375, 0.0177764892578125, -0.0201873779296875, -0.00635528564453125, -0.0102386474609375, -0.0438232421875, 0.0242462158203125, 0.0374755859375, 0.00627899169921875, 0.0712890625, 0.05029296875, -0.04412841796875, 0.027923583984375, 0.00598907470703125, 0.00946044921875, 0.046112060546875, -0.044158935546875, 0.00958251953125, 0.03521728515625, -0.0020084381103515625, -0.0555419921875, 0.004425048828125, 0.02099609375, -0.0275115966796875, 0.027069091796875, -0.0093231201171875, -0.037841796875, -0.005947113037109375, -0.052764892578125, 0.041717529296875, 0.03411865234375, -0.0160369873046875, 0.023101806640625, 0.010498046875, 0.04144287109375, -0.01401519775390625, -0.0654296875, -0.0309906005859375, -0.007190704345703125, -0.03704833984375, 0.055328369140625, -0.033477783203125, 0.0013914108276367188, -0.0240478515625, -0.03948974609375, -0.03240966796875, 0.011444091796875, 0.0231781005859375, 0.01885986328125, -0.015777587890625, -0.003520965576171875, 0.018524169921875, -0.00673675537109375, 0.03515625, -0.009002685546875, 0.043670654296875, -0.045654296875, -0.0014591217041015625, -0.026947021484375, 0.008056640625, 0.01070404052734375, 0.015228271484375, 0.05584716796875, 0.07806396484375, -0.039276123046875, 0.00981903076171875, -0.0335693359375, -0.020660400390625, -0.039337158203125, 0.021148681640625, -0.040863037109375, -0.075439453125, 0.01544189453125, -0.00154876708984375, -0.0024261474609375, 0.056976318359375, 0.019012451171875, -0.0231475830078125, 0.047332763671875, 0.0312042236328125, 0.0290985107421875, 0.048492431640625, -0.041748046875, -0.0036220550537109375, -0.075439453125, -0.0029754638671875, -0.0312042236328125, -0.0289154052734375, -0.0535888671875, -0.004024505615234375, 0.036651611328125, 0.041595458984375, -0.061767578125, 0.01045989990234375, -0.04144287109375, 0.036041259765625, 0.041900634765625, 0.029296875, -0.0160064697265625, 0.01299285888671875, -0.0130767822265625, 0.0098876953125, -0.0384521484375, 0.0009427070617675781, 0.09716796875, 0.0155181884765625, 0.033172607421875, -0.00494384765625, 0.057830810546875, 0.00669097900390625, -0.03472900390625, -0.0384521484375, 0.044647216796875, -0.01187896728515625, -0.0675048828125, -0.0113677978515625, -0.03314208984375, -0.040679931640625, -0.0100860595703125, -0.02716064453125, -0.054595947265625, 0.017822265625, 0.025482177734375, -0.04620361328125, 0.00786590576171875, -0.042633056640625, 0.07220458984375, -0.038055419921875, -0.010833740234375, -0.023681640625, -0.05438232421875, 0.00933837890625, 0.0009832382202148438, -0.003387451171875, -0.00592803955078125, -0.0060882568359375, 0.07366943359375, -0.0275115966796875, 0.047882080078125, -0.0246124267578125, 0.0226287841796875, 0.0273895263671875, -0.018157958984375, 0.0264129638671875, 0.0152435302734375, -0.00493621826171875, 0.0457763671875, 0.03228759765625, -0.043212890625, 0.0011243820190429688, 0.042724609375, -0.0736083984375, 0.00034737586975097656, -0.054351806640625, -0.0186309814453125, -0.01502227783203125, 0.00878143310546875, 0.043914794921875, 0.0222320556640625, 0.007556915283203125, 0.02716064453125, 0.08343505859375, 0.01715087890625, 0.04278564453125, 0.031951904296875, -0.00980377197265625, -0.0692138671875, 0.0543212890625, 0.005031585693359375, 0.03839111328125, 0.0284271240234375, 0.0238189697265625, -0.0204620361328125, -0.061859130859375, -0.0247344970703125, 0.0127716064453125, -0.02484130859375, -0.03509521484375, -0.01513671875, -0.040557861328125, -0.052398681640625, 0.0038318634033203125, -0.040863037109375, -0.052764892578125, -0.03125, -0.01277923583984375, 0.0516357421875, -0.005237579345703125, -0.02215576171875, 0.06097412109375, -0.0758056640625, 0.0123748779296875, 0.0016508102416992188, 0.026580810546875, -0.0236053466796875, -0.046722412109375, -0.06475830078125, -0.0013828277587890625, -0.061676025390625, -0.06195068359375, -0.0027065277099609375, 0.023681640625, 0.027984619140625, 0.036529541015625, -0.0020122528076171875, 0.0229339599609375, -0.01154327392578125, 0.04351806640625, 0.01043701171875, -0.078125, 0.04229736328125, -0.00823974609375, 0.0295562744140625, 0.060028076171875, 0.03448486328125, 0.0042724609375, 0.01328277587890625, -0.079833984375, -0.07012939453125, 0.04888916015625, 0.0190277099609375, -0.006023406982421875, 0.0099945068359375, 0.035003662109375, -0.0016908645629882812, 0.05487060546875, -0.052520751953125, -0.007244110107421875, -0.01172637939453125, -0.0012836456298828125, 0.0307769775390625, -0.021728515625, 0.00018334388732910156, -0.025970458984375, 0.079833984375, -0.0108184814453125, 0.038055419921875, 0.0187225341796875, -0.00567626953125, -0.02825927734375, 0.005558013916015625, 0.0238037109375, 0.05206298828125, -0.061065673828125, 0.00989532470703125, -0.00138092041015625, -0.0699462890625, 0.0055694580078125, 0.01529693603515625, -0.0198822021484375, -0.0203094482421875, 0.0014362335205078125, 0.0771484375, 0.01416015625, -0.0223541259765625, 0.0202484130859375, -0.0057830810546875, -0.04571533203125, -0.046356201171875, 0.0347900390625, -0.007228851318359375, 0.033111572265625, 0.0070953369140625, 0.007732391357421875, 0.011566162109375, -0.01134490966796875, 0.009063720703125, 0.027496337890625, -0.022857666015625, -0.0253448486328125, 0.0286865234375, 0.032989501953125, -0.0170135498046875, 0.06378173828125, -0.051666259765625, -0.0285186767578125, 0.057373046875, 0.036651611328125, 0.079345703125, 0.00067901611328125, 0.00348663330078125, 0.024322509765625, 0.01458740234375, -0.003139495849609375, 0.07373046875, -0.019683837890625, -0.07659912109375, -0.0203704833984375, -0.073974609375, -0.014495849609375, 0.01435089111328125, -0.05902099609375, 0.016510009765625, -0.0645751953125, -0.035797119140625, 0.00994110107421875, 0.044525146484375, -0.05291748046875, 0.02874755859375, 0.022491455078125, 0.0810546875, -0.060302734375, 0.0877685546875, 0.0675048828125, -0.0248260498046875, -0.051544189453125, -0.0185394287109375, -0.0078887939453125, -0.0487060546875, 0.0360107421875, 0.005889892578125, 0.019989013671875, 0.035491943359375, -0.040313720703125, -0.03936767578125, 0.09173583984375, 0.02239990234375, -0.05291748046875, 0.0111083984375, 0.0165863037109375, 0.0002665519714355469, -0.01123046875, 0.01541900634765625, 0.042572021484375, 0.0252685546875, 0.014129638671875, -0.06427001953125, 0.0048675537109375, -0.0000432133674621582, -0.01308441162109375, 0.049102783203125, -0.056060791015625, 0.0908203125, -0.0012798309326171875, 0.0307159423828125, -0.004779815673828125, 0.033599853515625, 0.0433349609375, 0.0144500732421875, 0.05169677734375, 0.061279296875, 0.0254364013671875, -0.0049896240234375, 0.0283660888671875, -0.03277587890625, 0.053466796875, 0.070556640625, -0.00617218017578125, 0.052947998046875, 0.068115234375, -0.046356201171875, 0.0095062255859375, 0.061370849609375, -0.0198974609375, 0.03411865234375, 0.0034637451171875, -0.03277587890625, -0.028076171875, 0.021209716796875, -0.0284881591796875, 0.004123687744140625, 0.03778076171875, -0.019287109375, -0.004116058349609375, -0.0098114013671875, 0.00679779052734375, -0.054107666015625, -0.028076171875, 0.04241943359375, 0.0030670166015625, -0.013580322265625, 0.04498291015625, 0.0012359619140625, 0.0650634765625, -0.06292724609375, -0.021514892578125, -0.0011110305786132812, 0.0236358642578125, -0.0178375244140625, -0.0521240234375, 0.03033447265625, -0.019256591796875, -0.032318115234375, -0.01143646240234375, 0.0457763671875, -0.0064239501953125, -0.053375244140625, 0.0006108283996582031, -0.00807952880859375, 0.014373779296875, -0.049560546875, -0.06707763671875, 0.01073455810546875, 0.0286102294921875, -0.0361328125, 0.045196533203125, 0.052093505859375, 0.0173187255859375, 0.014373779296875, 0.0204620361328125, 0.00800323486328125, 0.01117706298828125, -0.011474609375, 0.050811767578125, -0.056060791015625, -0.0445556640625, -0.06427001953125, 0.037445068359375, 0.00496673583984375, -0.042694091796875, 0.0245361328125, 0.057373046875, 0.08477783203125, 0.00783538818359375, 0.028167724609375, -0.020233154296875, -0.01483917236328125, -0.059478759765625, 0.039276123046875, -0.01296234130859375, 0.001239776611328125, 0.0170135498046875, -0.04168701171875, 0.02520751953125, 0.06488037109375, -0.003879547119140625, 0.0054779052734375, 0.0765380859375, 0.0291900634765625, -0.00830078125, 0.021820068359375, 0.01415252685546875, 0.01529693603515625, 0.00183868408203125, 0.0484619140625, 0.00809478759765625, -0.0655517578125, 0.0253143310546875, -0.05987548828125, -0.02581787109375, -0.00970458984375, -0.059234619140625, -0.03436279296875, -0.015106201171875, -0.052276611328125, -0.03179931640625, -0.006557464599609375, 0.060455322265625, 0.06097412109375, -0.056549072265625, -0.033294677734375, -0.0238037109375, -0.00923919677734375, -0.013214111328125, -0.0214691162109375, 0.0236968994140625, -0.0095672607421875, -0.02880859375, 0.0097198486328125, 0.00666046142578125, 0.0262298583984375, -0.021240234375, -0.016448974609375, -0.036163330078125, -0.009918212890625, 0.01100921630859375, -0.0144500732421875, -0.004047393798828125, -0.01038360595703125, -0.026641845703125, 0.00774383544921875, 0.040252685546875, 0.038330078125, -0.062408447265625, 0.00475311279296875, 0.046051025390625, 0.0185699462890625, 0.04876708984375, -0.026947021484375, 0.0228729248046875, -0.0703125, 0.0253143310546875, 0.0256500244140625, 0.02777099609375, -0.00835418701171875, -0.048583984375, 0.032501220703125, 0.039581298828125, -0.06024169921875, -0.0390625, -0.008209228515625, -0.0841064453125, -0.0023593902587890625, 0.0545654296875, -0.00917816162109375, -0.040069580078125, 0.0267333984375, -0.00812530517578125, 0.01432037353515625, -0.049591064453125, 0.0295562744140625, 0.0357666015625, -0.03900146484375, -0.004550933837890625, -0.050628662109375, 0.0288543701171875, 0.0169525146484375, -0.04937744140625, -0.05328369140625, 0.0299072265625, 0.033416748046875, 0.0054931640625, 0.0576171875, -0.005527496337890625, 0.024627685546875, 0.0268096923828125, 0.0239105224609375, -0.018035888671875, -0.006946563720703125, -0.033843994140625, -0.0033702850341796875, 0.0029773712158203125, -0.061553955078125 ] ]
colemane/a2c-PandaReachDense-v3
2023-10-28T18:13:46.000Z
[ "stable-baselines3", "PandaReachDense-v3", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
colemane
null
null
colemane/a2c-PandaReachDense-v3
0
2
stable-baselines3
2023-10-28T18:08:17
--- library_name: stable-baselines3 tags: - PandaReachDense-v3 - deep-reinforcement-learning - reinforcement-learning - stable-baselines3 model-index: - name: A2C results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: PandaReachDense-v3 type: PandaReachDense-v3 metrics: - type: mean_reward value: -0.22 +/- 0.14 name: mean_reward verified: false --- # **A2C** Agent playing **PandaReachDense-v3** This is a trained model of a **A2C** agent playing **PandaReachDense-v3** 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 ... ```
802
[ [ -0.022247314453125, -0.046966552734375, -0.0018167495727539062, 0.0477294921875, 0.001934051513671875, -0.00591278076171875, 0.034088134765625, -0.0240325927734375, 0.028717041015625, 0.043853759765625, -0.061187744140625, -0.03411865234375, -0.0300140380859375, -0.0009984970092773438, -0.026611328125, 0.072021484375, -0.01364898681640625, 0.033233642578125, 0.0006365776062011719, -0.0151824951171875, -0.01403045654296875, -0.0194854736328125, -0.0714111328125, -0.054656982421875, 0.01580810546875, 0.0288543701171875, 0.056884765625, 0.045257568359375, 0.037750244140625, 0.026275634765625, -0.0292816162109375, -0.03466796875, -0.040313720703125, 0.00827789306640625, 0.002094268798828125, -0.0517578125, -0.04632568359375, 0.007015228271484375, 0.041473388671875, 0.012542724609375, -0.0306243896484375, 0.00911712646484375, -0.01099395751953125, 0.03515625, -0.03961181640625, 0.0264434814453125, -0.01357269287109375, 0.00601959228515625, 0.00444793701171875, 0.01763916015625, -0.0193023681640625, -0.0220947265625, 0.0189056396484375, -0.0584716796875, 0.0029277801513671875, -0.0072174072265625, 0.0953369140625, 0.0222625732421875, -0.0271148681640625, 0.001312255859375, -0.003726959228515625, 0.028228759765625, -0.0247802734375, 0.0081329345703125, 0.0452880859375, 0.043212890625, 0.003711700439453125, -0.05987548828125, -0.015777587890625, -0.0184478759765625, 0.01097869873046875, 0.00925445556640625, -0.0028858184814453125, -0.0010423660278320312, 0.03143310546875, 0.0155487060546875, -0.01922607421875, 0.01427459716796875, -0.03662109375, -0.034088134765625, 0.0277557373046875, 0.0265350341796875, 0.0081634521484375, 0.00848388671875, -0.033843994140625, -0.0004820823669433594, -0.0302581787109375, 0.034637451171875, 0.020477294921875, 0.00640869140625, -0.04833984375, 0.057891845703125, -0.0161285400390625, 0.038177490234375, 0.03155517578125, 0.01800537109375, 0.03631591796875, 0.0033779144287109375, 0.0010929107666015625, -0.003139495849609375, 0.027862548828125, 0.04718017578125, -0.00008374452590942383, 0.00908660888671875, -0.02874755859375, 0.00800323486328125, 0.02227783203125, -0.0771484375, -0.0298614501953125, 0.02911376953125, -0.037109375, -0.042877197265625, 0.00377655029296875, -0.03875732421875, -0.02001953125, -0.01434326171875, 0.005687713623046875, -0.050811767578125, -0.0267486572265625, -0.0180816650390625, -0.035888671875, 0.04644775390625, 0.01387786865234375, -0.064453125, 0.043975830078125, 0.03851318359375, 0.0772705078125, 0.010833740234375, -0.0460205078125, -0.04998779296875, 0.00809478759765625, -0.0343017578125, 0.07000732421875, 0.004566192626953125, -0.031463623046875, 0.025146484375, 0.0222930908203125, 0.01439666748046875, -0.03765869140625, 0.027923583984375, -0.04022216796875, -0.01531982421875, -0.0137176513671875, -0.034942626953125, -0.00992584228515625, 0.0291595458984375, -0.05859375, 0.08233642578125, 0.04022216796875, -0.054290771484375, 0.01448822021484375, -0.046539306640625, -0.0214691162109375, 0.01386260986328125, 0.0262298583984375, -0.055450439453125, -0.0251922607421875, -0.00995635986328125, 0.0162811279296875, 0.0306396484375, -0.02142333984375, -0.0621337890625, -0.038482666015625, -0.0017232894897460938, 0.0204315185546875, 0.09356689453125, 0.0101318359375, -0.00751495361328125, 0.013824462890625, -0.052093505859375, -0.0166778564453125, 0.006839752197265625, -0.0271148681640625, 0.00368499755859375, -0.006500244140625, 0.0217132568359375, 0.0055999755859375, 0.038543701171875, -0.039947509765625, 0.025054931640625, -0.026611328125, 0.01849365234375, 0.05218505859375, -0.0033245086669921875, 0.04412841796875, -0.044281005859375, 0.0255889892578125, 0.003368377685546875, 0.00547027587890625, 0.01194000244140625, -0.0291595458984375, -0.044403076171875, -0.04425048828125, 0.00722503662109375, 0.0701904296875, -0.07623291015625, 0.046539306640625, 0.01995849609375, -0.050567626953125, -0.035308837890625, -0.002071380615234375, 0.01593017578125, 0.01096343994140625, 0.024810791015625, -0.006832122802734375, -0.03955078125, -0.06072998046875, 0.0197296142578125, -0.02972412109375, -0.002048492431640625, 0.009857177734375, 0.036956787109375, -0.042449951171875, 0.051239013671875, -0.0310516357421875, -0.0275421142578125, -0.0194549560546875, -0.005306243896484375, 0.006618499755859375, 0.05877685546875, 0.07183837890625, -0.016082763671875, -0.033111572265625, -0.039703369140625, -0.05938720703125, -0.01873779296875, 0.0195159912109375, -0.03411865234375, 0.024658203125, 0.032196044921875, -0.06488037109375, 0.038238525390625, 0.042083740234375, -0.049285888671875, 0.051727294921875, -0.00818634033203125, -0.00803375244140625, -0.07965087890625, 0.00972747802734375, 0.0169830322265625, -0.0281524658203125, -0.036773681640625, 0.02508544921875, 0.024200439453125, -0.0078125, -0.0478515625, 0.05780029296875, -0.040985107421875, -0.00821685791015625, -0.034820556640625, -0.00800323486328125, -0.00386810302734375, 0.014923095703125, 0.00905609130859375, 0.042022705078125, 0.0972900390625, -0.037567138671875, 0.0697021484375, 0.05560302734375, -0.01202392578125, 0.05059814453125, -0.03369140625, -0.01468658447265625, -0.010162353515625, 0.0460205078125, -0.035186767578125, -0.0273284912109375, 0.03955078125, -0.036102294921875, 0.0265960693359375, -0.0189056396484375, -0.03118896484375, -0.0435791015625, -0.02392578125, 0.0212554931640625, 0.0261077880859375, -0.05230712890625, 0.03961181640625, 0.039031982421875, 0.0012989044189453125, -0.040313720703125, -0.052886962890625, -0.00971221923828125, -0.01031494140625, -0.03338623046875, 0.01184844970703125, -0.0119476318359375, -0.016632080078125, -0.0038623809814453125, -0.0015878677368164062, -0.0170135498046875, 0.0167236328125, 0.011444091796875, 0.0227813720703125, -0.0161590576171875, -0.03448486328125, -0.01241302490234375, -0.0198822021484375, 0.01200103759765625, 0.0202789306640625, 0.043548583984375, -0.0291900634765625, 0.00794219970703125, -0.0693359375, 0.01404571533203125, 0.0227203369140625, 0.00279998779296875, 0.06451416015625, 0.046295166015625, -0.04010009765625, -0.016204833984375, -0.0128631591796875, -0.01265716552734375, -0.03814697265625, 0.0214996337890625, -0.0298919677734375, -0.032501220703125, 0.06256103515625, 0.0123291015625, -0.00789642333984375, 0.032440185546875, 0.040008544921875, -0.00423431396484375, 0.08294677734375, 0.045989990234375, -0.0199432373046875, 0.048828125, -0.04248046875, -0.03216552734375, -0.064697265625, -0.0244598388671875, -0.034576416015625, 0.011932373046875, -0.0257415771484375, -0.00724029541015625, -0.0004603862762451172, 0.0321044921875, -0.04998779296875, 0.055389404296875, -0.0180206298828125, 0.0293731689453125, 0.035186767578125, 0.0201416015625, -0.03131103515625, -0.0273284912109375, -0.0070343017578125, 0.035369873046875, -0.022247314453125, -0.0249176025390625, 0.06292724609375, 0.0406494140625, 0.05853271484375, 0.0259246826171875, 0.046783447265625, 0.007396697998046875, 0.036590576171875, -0.046966552734375, 0.03765869140625, 0.00266265869140625, -0.06390380859375, -0.013916015625, -0.0149688720703125, -0.0657958984375, 0.0179901123046875, -0.019683837890625, -0.056976318359375, -0.0036792755126953125, 0.008056640625, -0.02386474609375, 0.0027866363525390625, -0.03564453125, 0.08062744140625, -0.00024330615997314453, -0.027130126953125, 0.00022149085998535156, -0.04681396484375, 0.03228759765625, 0.0310821533203125, -0.00665283203125, -0.016632080078125, -0.01340484619140625, 0.0223846435546875, -0.0308685302734375, 0.0455322265625, -0.045654296875, -0.0002605915069580078, 0.035919189453125, 0.0271148681640625, 0.0335693359375, 0.0361328125, -0.016754150390625, 0.019622802734375, 0.0215911865234375, -0.0728759765625, -0.006565093994140625, 0.048797607421875, -0.08148193359375, -0.0204925537109375, -0.05938720703125, -0.00905609130859375, 0.0037479400634765625, 0.02392578125, 0.01080322265625, 0.035125732421875, -0.03094482421875, 0.0154571533203125, 0.023040771484375, 0.0194854736328125, 0.031982421875, 0.0528564453125, -0.02911376953125, -0.03863525390625, 0.043487548828125, -0.01239776611328125, -0.005126953125, 0.0020008087158203125, -0.01300048828125, -0.020751953125, -0.0260467529296875, -0.037933349609375, 0.0100555419921875, -0.036285400390625, -0.0219573974609375, -0.033172607421875, -0.042633056640625, -0.041595458984375, -0.020721435546875, -0.0284423828125, -0.01264190673828125, -0.059539794921875, -0.0211181640625, 0.0177764892578125, 0.03131103515625, -0.045867919921875, 0.06866455078125, -0.045684814453125, 0.0435791015625, 0.0012884140014648438, 0.05377197265625, -0.029815673828125, -0.022552490234375, -0.041839599609375, 0.003650665283203125, -0.052001953125, -0.068115234375, 0.03216552734375, -0.0086669921875, 0.0684814453125, 0.038970947265625, -0.016754150390625, 0.038238525390625, -0.032806396484375, 0.0675048828125, 0.006099700927734375, -0.0701904296875, 0.032379150390625, -0.034881591796875, 0.0186309814453125, 0.050506591796875, 0.025360107421875, -0.00907135009765625, -0.0289459228515625, -0.0596923828125, -0.048980712890625, 0.08251953125, 0.034332275390625, -0.0157928466796875, 0.0013828277587890625, 0.037994384765625, -0.018768310546875, 0.0086517333984375, -0.06085205078125, -0.02642822265625, -0.046600341796875, -0.01291656494140625, -0.01412200927734375, 0.0009112358093261719, -0.0161895751953125, -0.0034694671630859375, 0.07666015625, -0.0163726806640625, 0.01934814453125, 0.00545501708984375, -0.0047607421875, -0.02972412109375, -0.050628662109375, 0.024566650390625, 0.003528594970703125, -0.048583984375, -0.023712158203125, 0.004749298095703125, -0.025909423828125, 0.00502777099609375, 0.0374755859375, -0.01264190673828125, -0.0174713134765625, 0.03216552734375, 0.06695556640625, 0.0038318634033203125, -0.028533935546875, 0.054656982421875, -0.015838623046875, -0.014190673828125, -0.044952392578125, 0.01390838623046875, -0.0014448165893554688, 0.0325927734375, -0.00954437255859375, 0.0384521484375, 0.019317626953125, -0.040863037109375, 0.031524658203125, 0.029693603515625, -0.054290771484375, -0.0179595947265625, 0.0557861328125, 0.0201416015625, -0.035369873046875, 0.04693603515625, -0.00574493408203125, -0.038238525390625, 0.0782470703125, 0.035308837890625, 0.062103271484375, -0.038543701171875, 0.01502227783203125, 0.041961669921875, 0.012359619140625, -0.03289794921875, 0.03277587890625, 0.0010709762573242188, -0.0654296875, 0.0032958984375, -0.034027099609375, -0.043487548828125, -0.001873016357421875, -0.060272216796875, 0.043212890625, -0.034423828125, -0.0228118896484375, -0.001926422119140625, 0.0197906494140625, -0.0345458984375, -0.0029163360595703125, 0.0164642333984375, 0.10565185546875, -0.04730224609375, 0.062042236328125, 0.06390380859375, -0.03765869140625, -0.026611328125, 0.00806427001953125, 0.0228424072265625, -0.06744384765625, 0.0214691162109375, 0.042510986328125, 0.0133056640625, 0.0106964111328125, -0.0731201171875, -0.072021484375, 0.087646484375, -0.00273895263671875, 0.014129638671875, 0.019073486328125, -0.03253173828125, 0.0499267578125, -0.0430908203125, 0.032196044921875, 0.04168701171875, 0.0267791748046875, 0.00799560546875, -0.05120849609375, -0.0182952880859375, -0.0386962890625, -0.0009927749633789062, -0.0207977294921875, -0.08642578125, 0.063720703125, -0.0008411407470703125, 0.0093994140625, 0.06402587890625, 0.06243896484375, 0.056060791015625, 0.0013570785522460938, 0.042236328125, 0.0438232421875, 0.0142364501953125, -0.0016298294067382812, 0.061248779296875, -0.03662109375, 0.039154052734375, 0.04534912109375, -0.048095703125, 0.052642822265625, 0.0030384063720703125, 0.00672149658203125, 0.05694580078125, 0.07293701171875, -0.0222930908203125, 0.0504150390625, 0.0240020751953125, -0.00444793701171875, -0.0137176513671875, 0.0284423828125, -0.024505615234375, 0.025543212890625, 0.0343017578125, 0.010589599609375, -0.014495849609375, -0.01338958740234375, -0.003055572509765625, -0.01187896728515625, -0.04010009765625, 0.07379150390625, -0.0015192031860351562, -0.05413818359375, 0.056121826171875, 0.0113067626953125, 0.033294677734375, -0.042205810546875, -0.0020294189453125, -0.016387939453125, 0.042144775390625, -0.0012807846069335938, -0.0738525390625, 0.0159454345703125, -0.0139923095703125, -0.00589752197265625, -0.001918792724609375, 0.03570556640625, -0.0240478515625, -0.033172607421875, 0.05218505859375, 0.00389862060546875, 0.00627899169921875, 0.018524169921875, -0.07781982421875, -0.00238037109375, -0.02911376953125, -0.035125732421875, 0.0240325927734375, 0.03277587890625, 0.0199127197265625, 0.068603515625, 0.03167724609375, 0.004573822021484375, -0.00426483154296875, -0.00937652587890625, 0.062103271484375, -0.04278564453125, -0.060150146484375, -0.021209716796875, 0.045684814453125, -0.0207061767578125, -0.034820556640625, 0.034332275390625, 0.0751953125, 0.03759765625, -0.0049285888671875, 0.045562744140625, 0.0032367706298828125, 0.047271728515625, -0.020477294921875, 0.056396484375, -0.03118896484375, -0.005512237548828125, -0.002349853515625, -0.060089111328125, -0.0103759765625, 0.06707763671875, 0.028961181640625, -0.0125579833984375, 0.03533935546875, 0.0595703125, -0.0007500648498535156, 0.01074981689453125, -0.00739288330078125, 0.0489501953125, 0.016571044921875, 0.006061553955078125, 0.05120849609375, -0.042236328125, 0.0284423828125, -0.03961181640625, -0.054046630859375, -0.0169219970703125, -0.039215087890625, -0.0858154296875, -0.0185699462890625, -0.0175933837890625, -0.07867431640625, 0.002704620361328125, 0.06085205078125, 0.046661376953125, -0.068359375, -0.04351806640625, -0.006824493408203125, -0.007122039794921875, -0.034332275390625, -0.0166015625, 0.0180511474609375, -0.02996826171875, -0.053497314453125, 0.021942138671875, -0.0181427001953125, 0.0303802490234375, -0.019927978515625, -0.0203399658203125, -0.0201873779296875, -0.0021991729736328125, 0.0222320556640625, 0.036285400390625, -0.029937744140625, -0.0240020751953125, -0.024444580078125, -0.0214080810546875, -0.003025054931640625, 0.0217742919921875, -0.040924072265625, -0.01172637939453125, 0.025299072265625, 0.005401611328125, 0.04852294921875, 0.014678955078125, 0.03558349609375, -0.025909423828125, 0.0305328369140625, 0.00531005859375, 0.046844482421875, 0.018463134765625, -0.019439697265625, 0.037384033203125, 0.0305633544921875, -0.05108642578125, -0.05609130859375, 0.01142120361328125, -0.0823974609375, -0.023956298828125, 0.1002197265625, -0.01139068603515625, -0.040679931640625, -0.003200531005859375, -0.044769287109375, 0.0277557373046875, -0.04559326171875, 0.045166015625, 0.04815673828125, -0.01068878173828125, -0.01727294921875, -0.0258026123046875, 0.048675537109375, -0.00634765625, -0.039031982421875, -0.0162506103515625, 0.044891357421875, 0.024627685546875, 0.00676727294921875, 0.046234130859375, -0.0005655288696289062, 0.0277252197265625, 0.030181884765625, 0.0184478759765625, 0.007404327392578125, -0.0233917236328125, -0.0304718017578125, 0.005603790283203125, -0.017822265625, -0.00311279296875 ] ]
DopeorNope/adapter_orca_v2
2023-10-28T18:16:22.000Z
[ "peft", "region:us" ]
null
DopeorNope
null
null
DopeorNope/adapter_orca_v2
0
2
peft
2023-10-28T18:15:29
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: True - load_in_4bit: False - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: fp4 - bnb_4bit_use_double_quant: False - bnb_4bit_compute_dtype: float32 ### Framework versions - PEFT 0.5.0.dev0
469
[ [ -0.043060302734375, -0.054351806640625, 0.031158447265625, 0.03424072265625, -0.039642333984375, 0.008453369140625, 0.010833740234375, -0.01305389404296875, -0.010711669921875, 0.031097412109375, -0.0399169921875, -0.00960540771484375, -0.035125732421875, 0.00749969482421875, 0.005870819091796875, 0.0631103515625, -0.00791168212890625, 0.032196044921875, -0.0022487640380859375, -0.0003254413604736328, -0.0268096923828125, -0.023895263671875, -0.0810546875, -0.0239410400390625, -0.0275421142578125, 0.029388427734375, 0.032745361328125, 0.00980377197265625, 0.051666259765625, 0.021087646484375, -0.0014057159423828125, -0.0213623046875, -0.01381683349609375, -0.027587890625, 0.00409698486328125, -0.042755126953125, -0.060821533203125, -0.00667572021484375, 0.068603515625, 0.01340484619140625, -0.0102081298828125, 0.01337432861328125, -0.01520538330078125, 0.0626220703125, -0.052734375, 0.00843048095703125, -0.0379638671875, 0.03973388671875, -0.005367279052734375, -0.00792694091796875, -0.0153656005859375, -0.01441192626953125, 0.0038738250732421875, -0.038238525390625, 0.0303192138671875, 0.002079010009765625, 0.06561279296875, 0.00843048095703125, -0.049041748046875, 0.00804901123046875, -0.033599853515625, 0.04962158203125, -0.047332763671875, 0.03485107421875, 0.04571533203125, 0.007167816162109375, 0.01332855224609375, -0.054351806640625, -0.02960205078125, 0.0162811279296875, 0.021270751953125, -0.01348876953125, -0.0022430419921875, 0.03515625, 0.056976318359375, 0.038482666015625, -0.0270233154296875, -0.0224151611328125, -0.0465087890625, -0.034393310546875, 0.050628662109375, 0.007720947265625, -0.02001953125, 0.026641845703125, -0.05596923828125, -0.006702423095703125, -0.048309326171875, 0.016357421875, 0.0240325927734375, -0.0084381103515625, -0.042083740234375, 0.022735595703125, -0.02008056640625, 0.0377197265625, 0.060577392578125, 0.002994537353515625, 0.06964111328125, -0.0264892578125, -0.042510986328125, 0.0277862548828125, 0.061126708984375, 0.015380859375, 0.00899505615234375, 0.01041412353515625, -0.036895751953125, -0.029144287109375, 0.0294647216796875, -0.08502197265625, -0.025054931640625, 0.0293426513671875, -0.01000213623046875, -0.02838134765625, 0.0162200927734375, -0.036376953125, 0.00937652587890625, 0.01296234130859375, 0.0592041015625, -0.058502197265625, -0.034637451171875, 0.02459716796875, -0.0208892822265625, 0.037445068359375, 0.00909423828125, -0.08392333984375, 0.040802001953125, 0.0426025390625, 0.04132080078125, 0.01557159423828125, -0.015289306640625, -0.0267791748046875, -0.007167816162109375, -0.0154876708984375, 0.0297698974609375, 0.023956298828125, -0.021026611328125, -0.0119171142578125, 0.00881195068359375, -0.0105438232421875, -0.044769287109375, 0.04962158203125, -0.039031982421875, -0.00737762451171875, -0.01288604736328125, -0.034393310546875, -0.0255584716796875, 0.017425537109375, -0.04071044921875, 0.0816650390625, 0.0286102294921875, -0.04803466796875, 0.0205078125, -0.03387451171875, -0.0226287841796875, 0.018646240234375, -0.032562255859375, -0.051513671875, 0.04022216796875, -0.024200439453125, 0.0280914306640625, 0.01169586181640625, 0.021087646484375, -0.014068603515625, -0.056488037109375, 0.025604248046875, -0.0275421142578125, 0.07281494140625, 0.0149078369140625, -0.054595947265625, -0.004962921142578125, -0.0625, 0.023101806640625, 0.0013370513916015625, -0.04296875, 0.031982421875, -0.029998779296875, 0.00667572021484375, 0.0014781951904296875, 0.03924560546875, -0.058380126953125, -0.0105438232421875, -0.0394287109375, 0.044769287109375, 0.05328369140625, -0.0043182373046875, 0.0231475830078125, -0.01520538330078125, 0.031524658203125, 0.00531005859375, 0.0281219482421875, 0.045013427734375, -0.03509521484375, -0.062408447265625, -0.00473785400390625, 0.011444091796875, 0.033843994140625, -0.04766845703125, 0.054351806640625, 0.00801849365234375, -0.0161590576171875, -0.0127716064453125, -0.0121612548828125, 0.03289794921875, 0.00949859619140625, 0.017486572265625, -0.007236480712890625, -0.034820556640625, -0.0706787109375, 0.03173828125, 0.00658416748046875, 0.004215240478515625, -0.004024505615234375, 0.057769775390625, 0.015777587890625, 0.04156494140625, -0.03131103515625, -0.002704620361328125, 0.003131866455078125, 0.00659942626953125, 0.033355712890625, 0.055267333984375, 0.0556640625, -0.06951904296875, -0.031524658203125, -0.046875, -0.01180267333984375, 0.0162200927734375, -0.01305389404296875, -0.0175628662109375, 0.0271759033203125, 0.016265869140625, -0.0269622802734375, 0.04095458984375, 0.033599853515625, -0.056610107421875, 0.058929443359375, -0.01849365234375, 0.0208282470703125, -0.05975341796875, 0.0005097389221191406, 0.00042629241943359375, -0.03369140625, 0.01114654541015625, 0.0004382133483886719, 0.03082275390625, 0.00142669677734375, -0.055877685546875, 0.01538848876953125, -0.020477294921875, -0.00390625, -0.00833892822265625, -0.042694091796875, 0.0233917236328125, 0.035980224609375, 0.0081024169921875, 0.07281494140625, 0.05242919921875, -0.043182373046875, 0.02886962890625, 0.003505706787109375, 0.009490966796875, 0.0457763671875, -0.045654296875, 0.008514404296875, 0.036041259765625, -0.0004901885986328125, -0.055755615234375, 0.007274627685546875, 0.022491455078125, -0.027069091796875, 0.0287017822265625, -0.00807952880859375, -0.03515625, -0.004734039306640625, -0.05657958984375, 0.041259765625, 0.034820556640625, -0.0161590576171875, 0.0248870849609375, 0.01104736328125, 0.037628173828125, -0.016021728515625, -0.06536865234375, -0.030609130859375, -0.0087127685546875, -0.03594970703125, 0.053741455078125, -0.029296875, 0.0022678375244140625, -0.0258026123046875, -0.0386962890625, -0.029144287109375, 0.0101776123046875, 0.0218048095703125, 0.01885986328125, -0.0182037353515625, -0.005168914794921875, 0.01995849609375, -0.007114410400390625, 0.03399658203125, -0.0098724365234375, 0.044036865234375, -0.045654296875, -0.00296783447265625, -0.0301055908203125, 0.007526397705078125, 0.0103912353515625, 0.01361083984375, 0.057647705078125, 0.07781982421875, -0.038299560546875, 0.0078277587890625, -0.03204345703125, -0.0192108154296875, -0.0396728515625, 0.0231170654296875, -0.0450439453125, -0.07196044921875, 0.0161590576171875, -0.002590179443359375, -0.006069183349609375, 0.05743408203125, 0.019561767578125, -0.0261077880859375, 0.05181884765625, 0.03350830078125, 0.02972412109375, 0.046539306640625, -0.042510986328125, -0.0037384033203125, -0.076416015625, -0.00214385986328125, -0.0308380126953125, -0.0259246826171875, -0.05474853515625, -0.0044403076171875, 0.0384521484375, 0.0445556640625, -0.0633544921875, 0.01020050048828125, -0.043426513671875, 0.034912109375, 0.041961669921875, 0.030609130859375, -0.015472412109375, 0.01206207275390625, -0.01253509521484375, 0.008453369140625, -0.0372314453125, -0.003223419189453125, 0.0986328125, 0.0206146240234375, 0.034698486328125, -0.00688934326171875, 0.05517578125, 0.006885528564453125, -0.0335693359375, -0.03753662109375, 0.04345703125, -0.01096343994140625, -0.06488037109375, -0.011444091796875, -0.0316162109375, -0.039764404296875, -0.00698089599609375, -0.0265960693359375, -0.05426025390625, 0.01727294921875, 0.02545166015625, -0.046844482421875, 0.008270263671875, -0.041748046875, 0.0706787109375, -0.038055419921875, -0.01003265380859375, -0.02703857421875, -0.054351806640625, 0.00893402099609375, 0.0007939338684082031, -0.0028781890869140625, -0.00499725341796875, -0.00896453857421875, 0.074462890625, -0.0307769775390625, 0.048309326171875, -0.0255584716796875, 0.0198516845703125, 0.025482177734375, -0.018310546875, 0.027435302734375, 0.01485443115234375, -0.00292205810546875, 0.04266357421875, 0.03271484375, -0.04254150390625, 0.001556396484375, 0.0386962890625, -0.07440185546875, 0.0010919570922851562, -0.0556640625, -0.0179901123046875, -0.015380859375, 0.006946563720703125, 0.044464111328125, 0.0175323486328125, 0.0095672607421875, 0.02557373046875, 0.08392333984375, 0.01544189453125, 0.04266357421875, 0.0340576171875, -0.0077362060546875, -0.069580078125, 0.05548095703125, 0.00458526611328125, 0.037139892578125, 0.02838134765625, 0.0236053466796875, -0.0186004638671875, -0.06011962890625, -0.0267486572265625, 0.01238250732421875, -0.0250396728515625, -0.03369140625, -0.01215362548828125, -0.038421630859375, -0.05133056640625, 0.0016107559204101562, -0.043060302734375, -0.053314208984375, -0.032806396484375, -0.0111846923828125, 0.0478515625, -0.00647735595703125, -0.0221405029296875, 0.060272216796875, -0.076416015625, 0.01184844970703125, 0.0042572021484375, 0.02459716796875, -0.0213775634765625, -0.047576904296875, -0.0638427734375, -0.00028228759765625, -0.063232421875, -0.061767578125, -0.0007562637329101562, 0.02178955078125, 0.026702880859375, 0.03887939453125, -0.00298309326171875, 0.022186279296875, -0.01238250732421875, 0.046783447265625, 0.01258087158203125, -0.07977294921875, 0.04241943359375, -0.00579071044921875, 0.024749755859375, 0.059417724609375, 0.035888671875, 0.0036411285400390625, 0.012359619140625, -0.07928466796875, -0.07171630859375, 0.052276611328125, 0.0171966552734375, -0.005832672119140625, 0.01384735107421875, 0.03369140625, -0.0014801025390625, 0.05413818359375, -0.0538330078125, -0.00875091552734375, -0.011383056640625, -0.00246429443359375, 0.03228759765625, -0.021331787109375, -0.00036025047302246094, -0.025970458984375, 0.079345703125, -0.00962066650390625, 0.035003662109375, 0.01776123046875, -0.006267547607421875, -0.0307769775390625, 0.005290985107421875, 0.0264739990234375, 0.05206298828125, -0.06195068359375, 0.00966644287109375, 0.0002791881561279297, -0.07269287109375, 0.00562286376953125, 0.0146484375, -0.0193634033203125, -0.0222930908203125, 0.002414703369140625, 0.07720947265625, 0.00884246826171875, -0.02142333984375, 0.0203704833984375, -0.006755828857421875, -0.041229248046875, -0.04437255859375, 0.0338134765625, -0.00826263427734375, 0.032867431640625, 0.01111602783203125, 0.0087127685546875, 0.00934600830078125, -0.01232147216796875, 0.006160736083984375, 0.0264434814453125, -0.0212249755859375, -0.0239105224609375, 0.031829833984375, 0.032196044921875, -0.0164947509765625, 0.06134033203125, -0.047271728515625, -0.028564453125, 0.05712890625, 0.03515625, 0.079833984375, -0.0020656585693359375, 0.0019989013671875, 0.023895263671875, 0.013427734375, -0.0029125213623046875, 0.0743408203125, -0.0219268798828125, -0.07574462890625, -0.0195770263671875, -0.0712890625, -0.0163116455078125, 0.01377105712890625, -0.060638427734375, 0.0196075439453125, -0.0616455078125, -0.03277587890625, 0.00982666015625, 0.04443359375, -0.050933837890625, 0.0306243896484375, 0.0253143310546875, 0.0816650390625, -0.0618896484375, 0.0887451171875, 0.06671142578125, -0.030609130859375, -0.053955078125, -0.0172271728515625, -0.0103607177734375, -0.051666259765625, 0.03936767578125, 0.0022144317626953125, 0.0191497802734375, 0.035125732421875, -0.042724609375, -0.038055419921875, 0.09417724609375, 0.0208282470703125, -0.051971435546875, 0.01204681396484375, 0.0212860107421875, 0.0007700920104980469, -0.0125274658203125, 0.017608642578125, 0.039642333984375, 0.02294921875, 0.01384735107421875, -0.06695556640625, 0.005870819091796875, 0.002262115478515625, -0.01213836669921875, 0.04376220703125, -0.0570068359375, 0.09442138671875, -0.000060498714447021484, 0.03155517578125, -0.0070037841796875, 0.03594970703125, 0.044525146484375, 0.01361083984375, 0.0496826171875, 0.061309814453125, 0.0267486572265625, -0.0015993118286132812, 0.0267486572265625, -0.034393310546875, 0.0579833984375, 0.071533203125, -0.00727081298828125, 0.054595947265625, 0.06640625, -0.049346923828125, 0.006870269775390625, 0.0638427734375, -0.0200042724609375, 0.035400390625, 0.003719329833984375, -0.03350830078125, -0.0259857177734375, 0.0241546630859375, -0.0307769775390625, 0.003948211669921875, 0.03851318359375, -0.020477294921875, -0.00406646728515625, -0.006443023681640625, 0.0084686279296875, -0.05596923828125, -0.02886962890625, 0.041473388671875, 0.0024700164794921875, -0.01316070556640625, 0.04608154296875, 0.003398895263671875, 0.06451416015625, -0.06341552734375, -0.0210418701171875, -0.0006432533264160156, 0.02484130859375, -0.0167083740234375, -0.052337646484375, 0.0278778076171875, -0.019073486328125, -0.0308380126953125, -0.0122222900390625, 0.043487548828125, -0.008148193359375, -0.050872802734375, -0.0035572052001953125, -0.00788116455078125, 0.01364898681640625, -0.05010986328125, -0.06658935546875, 0.0105133056640625, 0.0281982421875, -0.03936767578125, 0.045257568359375, 0.052215576171875, 0.0178680419921875, 0.01499176025390625, 0.0181121826171875, 0.01139068603515625, 0.0096588134765625, -0.01316070556640625, 0.051544189453125, -0.0545654296875, -0.044189453125, -0.0633544921875, 0.03912353515625, 0.0058441162109375, -0.04229736328125, 0.0246734619140625, 0.059722900390625, 0.0838623046875, 0.00600433349609375, 0.0304107666015625, -0.01947021484375, -0.01181793212890625, -0.05975341796875, 0.04229736328125, -0.0139312744140625, 0.002960205078125, 0.0175323486328125, -0.038543701171875, 0.0251617431640625, 0.066162109375, -0.004608154296875, 0.004383087158203125, 0.07763671875, 0.028045654296875, -0.01042938232421875, 0.0212249755859375, 0.0121917724609375, 0.015838623046875, 0.00106048583984375, 0.046905517578125, 0.0083465576171875, -0.06549072265625, 0.024505615234375, -0.05963134765625, -0.02850341796875, -0.00867462158203125, -0.0579833984375, -0.032867431640625, -0.01415252685546875, -0.0516357421875, -0.031463623046875, -0.007678985595703125, 0.061676025390625, 0.062286376953125, -0.0584716796875, -0.033416748046875, -0.0232696533203125, -0.0102996826171875, -0.0131072998046875, -0.02166748046875, 0.0288238525390625, -0.0103912353515625, -0.0301055908203125, 0.00998687744140625, 0.005252838134765625, 0.02490234375, -0.0208282470703125, -0.0137939453125, -0.0335693359375, -0.0089874267578125, 0.01104736328125, -0.01366424560546875, -0.00324249267578125, -0.007694244384765625, -0.0281982421875, 0.00516510009765625, 0.040740966796875, 0.038818359375, -0.06280517578125, 0.005870819091796875, 0.04498291015625, 0.014068603515625, 0.050628662109375, -0.02581787109375, 0.0221405029296875, -0.0706787109375, 0.0270233154296875, 0.0271148681640625, 0.027435302734375, -0.01275634765625, -0.048614501953125, 0.032318115234375, 0.0386962890625, -0.05816650390625, -0.0391845703125, -0.01036834716796875, -0.08447265625, -0.002532958984375, 0.05169677734375, -0.0108642578125, -0.0377197265625, 0.028350830078125, -0.01137542724609375, 0.01611328125, -0.04815673828125, 0.030914306640625, 0.033599853515625, -0.040130615234375, -0.005123138427734375, -0.05120849609375, 0.0291290283203125, 0.0175628662109375, -0.04864501953125, -0.05340576171875, 0.027069091796875, 0.034515380859375, 0.006610870361328125, 0.05609130859375, -0.00420379638671875, 0.0250396728515625, 0.02850341796875, 0.025604248046875, -0.0179443359375, -0.004306793212890625, -0.03485107421875, -0.0012731552124023438, 0.0038089752197265625, -0.0654296875 ] ]
abhijeet2022/a2c-PandaReachDense-v3
2023-10-28T18:50:56.000Z
[ "stable-baselines3", "PandaReachDense-v3", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
abhijeet2022
null
null
abhijeet2022/a2c-PandaReachDense-v3
0
2
stable-baselines3
2023-10-28T18:45:09
--- library_name: stable-baselines3 tags: - PandaReachDense-v3 - deep-reinforcement-learning - reinforcement-learning - stable-baselines3 model-index: - name: A2C results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: PandaReachDense-v3 type: PandaReachDense-v3 metrics: - type: mean_reward value: -0.17 +/- 0.11 name: mean_reward verified: false --- # **A2C** Agent playing **PandaReachDense-v3** This is a trained model of a **A2C** agent playing **PandaReachDense-v3** 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 ... ```
802
[ [ -0.0222320556640625, -0.046966552734375, -0.001811981201171875, 0.0477294921875, 0.0019321441650390625, -0.0059051513671875, 0.034088134765625, -0.0240325927734375, 0.02874755859375, 0.043853759765625, -0.061187744140625, -0.03411865234375, -0.0300140380859375, -0.0009937286376953125, -0.0265960693359375, 0.072021484375, -0.0136566162109375, 0.03326416015625, 0.0006146430969238281, -0.01519012451171875, -0.01404571533203125, -0.0194854736328125, -0.0714111328125, -0.054656982421875, 0.01580810546875, 0.0288238525390625, 0.056884765625, 0.04522705078125, 0.03778076171875, 0.0262908935546875, -0.029296875, -0.03466796875, -0.040313720703125, 0.00826263427734375, 0.00209808349609375, -0.0517578125, -0.046356201171875, 0.00701141357421875, 0.041473388671875, 0.012542724609375, -0.030609130859375, 0.00908660888671875, -0.01099395751953125, 0.03515625, -0.03961181640625, 0.0264434814453125, -0.0135650634765625, 0.0060272216796875, 0.0044403076171875, 0.0176239013671875, -0.019287109375, -0.0220947265625, 0.0189056396484375, -0.0584716796875, 0.0029277801513671875, -0.007213592529296875, 0.095458984375, 0.0222625732421875, -0.0271148681640625, 0.0013093948364257812, -0.00371551513671875, 0.028228759765625, -0.0247650146484375, 0.00812530517578125, 0.0452880859375, 0.04315185546875, 0.0037059783935546875, -0.059814453125, -0.015777587890625, -0.0184326171875, 0.01097869873046875, 0.00923919677734375, -0.00290679931640625, -0.0010633468627929688, 0.031402587890625, 0.01555633544921875, -0.01922607421875, 0.01428985595703125, -0.03662109375, -0.034088134765625, 0.0277557373046875, 0.02655029296875, 0.00815582275390625, 0.00849151611328125, -0.0338134765625, -0.00048732757568359375, -0.0302734375, 0.034637451171875, 0.020477294921875, 0.0063934326171875, -0.04833984375, 0.05792236328125, -0.0161285400390625, 0.038177490234375, 0.03155517578125, 0.01800537109375, 0.036346435546875, 0.0033588409423828125, 0.0010929107666015625, -0.0031528472900390625, 0.027862548828125, 0.04718017578125, -0.0000814199447631836, 0.00908660888671875, -0.028717041015625, 0.00798797607421875, 0.022247314453125, -0.0771484375, -0.02984619140625, 0.0291290283203125, -0.037109375, -0.042877197265625, 0.003772735595703125, -0.0386962890625, -0.02001953125, -0.0143280029296875, 0.0056610107421875, -0.050811767578125, -0.0267486572265625, -0.0180816650390625, -0.035919189453125, 0.04644775390625, 0.01386260986328125, -0.06451416015625, 0.0439453125, 0.03851318359375, 0.0772705078125, 0.01084136962890625, -0.045989990234375, -0.049957275390625, 0.00807952880859375, -0.0343017578125, 0.07000732421875, 0.00455474853515625, -0.031494140625, 0.025146484375, 0.02227783203125, 0.01441192626953125, -0.03765869140625, 0.027923583984375, -0.04022216796875, -0.015350341796875, -0.013702392578125, -0.034912109375, -0.00989532470703125, 0.0291595458984375, -0.05859375, 0.082275390625, 0.040252685546875, -0.054290771484375, 0.01448822021484375, -0.0465087890625, -0.021484375, 0.01386260986328125, 0.0262298583984375, -0.055450439453125, -0.0251617431640625, -0.00997161865234375, 0.016265869140625, 0.0306549072265625, -0.0214385986328125, -0.062164306640625, -0.0384521484375, -0.0017099380493164062, 0.0204315185546875, 0.09356689453125, 0.0101318359375, -0.007503509521484375, 0.01384735107421875, -0.052001953125, -0.0166778564453125, 0.006832122802734375, -0.0271148681640625, 0.003673553466796875, -0.006519317626953125, 0.0216827392578125, 0.00557708740234375, 0.038543701171875, -0.039947509765625, 0.0250396728515625, -0.026611328125, 0.0184783935546875, 0.052215576171875, -0.003326416015625, 0.044097900390625, -0.044281005859375, 0.02557373046875, 0.0033721923828125, 0.0054473876953125, 0.011932373046875, -0.0291595458984375, -0.044403076171875, -0.04425048828125, 0.007213592529296875, 0.070068359375, -0.0762939453125, 0.046539306640625, 0.0199432373046875, -0.05059814453125, -0.0352783203125, -0.0020751953125, 0.01593017578125, 0.01092529296875, 0.0248260498046875, -0.006824493408203125, -0.03955078125, -0.060699462890625, 0.01971435546875, -0.0297088623046875, -0.0020542144775390625, 0.00983428955078125, 0.036956787109375, -0.042449951171875, 0.05120849609375, -0.0310516357421875, -0.027557373046875, -0.0194549560546875, -0.0052947998046875, 0.006622314453125, 0.05877685546875, 0.07183837890625, -0.0160675048828125, -0.03314208984375, -0.0396728515625, -0.05938720703125, -0.01873779296875, 0.0195159912109375, -0.03411865234375, 0.024658203125, 0.032196044921875, -0.06488037109375, 0.0382080078125, 0.042022705078125, -0.04931640625, 0.0516357421875, -0.0081939697265625, -0.008026123046875, -0.07965087890625, 0.0097198486328125, 0.0169677734375, -0.02813720703125, -0.036773681640625, 0.025054931640625, 0.024200439453125, -0.0078125, -0.0478515625, 0.05780029296875, -0.04095458984375, -0.008209228515625, -0.034820556640625, -0.00800323486328125, -0.003864288330078125, 0.0149078369140625, 0.00905609130859375, 0.042022705078125, 0.0972900390625, -0.03753662109375, 0.06964111328125, 0.055572509765625, -0.01198577880859375, 0.05059814453125, -0.03369140625, -0.014678955078125, -0.010162353515625, 0.0460205078125, -0.035186767578125, -0.0273590087890625, 0.03955078125, -0.036102294921875, 0.026580810546875, -0.0189056396484375, -0.03118896484375, -0.0435791015625, -0.02392578125, 0.0212554931640625, 0.026092529296875, -0.05230712890625, 0.03961181640625, 0.039031982421875, 0.001285552978515625, -0.040313720703125, -0.0528564453125, -0.00970458984375, -0.01031494140625, -0.03338623046875, 0.01184844970703125, -0.01195526123046875, -0.01666259765625, -0.0038738250732421875, -0.001590728759765625, -0.0170135498046875, 0.0167236328125, 0.01143646240234375, 0.022796630859375, -0.0161590576171875, -0.03448486328125, -0.012420654296875, -0.0198974609375, 0.01200103759765625, 0.020263671875, 0.04351806640625, -0.0291900634765625, 0.00792694091796875, -0.0693359375, 0.01404571533203125, 0.022705078125, 0.0028057098388671875, 0.06451416015625, 0.04632568359375, -0.0400390625, -0.016204833984375, -0.01287841796875, -0.01263427734375, -0.03814697265625, 0.0214691162109375, -0.0298919677734375, -0.032501220703125, 0.0625, 0.01235198974609375, -0.0079345703125, 0.032379150390625, 0.040008544921875, -0.004230499267578125, 0.08294677734375, 0.045989990234375, -0.0199432373046875, 0.048828125, -0.04248046875, -0.032135009765625, -0.064697265625, -0.0244598388671875, -0.034576416015625, 0.01195526123046875, -0.0257415771484375, -0.007259368896484375, -0.0004742145538330078, 0.032135009765625, -0.0499267578125, 0.055389404296875, -0.01800537109375, 0.029388427734375, 0.03515625, 0.020111083984375, -0.03131103515625, -0.0273284912109375, -0.007022857666015625, 0.03546142578125, -0.0222320556640625, -0.0249176025390625, 0.06292724609375, 0.0406494140625, 0.05853271484375, 0.025909423828125, 0.0467529296875, 0.007389068603515625, 0.036590576171875, -0.046966552734375, 0.03765869140625, 0.0026760101318359375, -0.06390380859375, -0.0139007568359375, -0.0149688720703125, -0.06585693359375, 0.01800537109375, -0.019683837890625, -0.05694580078125, -0.0036640167236328125, 0.00804901123046875, -0.0238800048828125, 0.0027828216552734375, -0.03564453125, 0.08062744140625, -0.00022602081298828125, -0.0271148681640625, 0.00022113323211669922, -0.046783447265625, 0.03228759765625, 0.03106689453125, -0.00666046142578125, -0.01666259765625, -0.0133819580078125, 0.0223846435546875, -0.0308837890625, 0.0455322265625, -0.045654296875, -0.00027441978454589844, 0.035919189453125, 0.0270843505859375, 0.0335693359375, 0.0361328125, -0.016754150390625, 0.019622802734375, 0.0216064453125, -0.0728759765625, -0.006542205810546875, 0.048828125, -0.08148193359375, -0.0204925537109375, -0.05938720703125, -0.00904083251953125, 0.003757476806640625, 0.02392578125, 0.0107879638671875, 0.035125732421875, -0.0309600830078125, 0.0154571533203125, 0.0230560302734375, 0.0194854736328125, 0.031982421875, 0.0528564453125, -0.0291290283203125, -0.03863525390625, 0.04345703125, -0.0124053955078125, -0.005126953125, 0.002002716064453125, -0.01300048828125, -0.020751953125, -0.0260467529296875, -0.037933349609375, 0.01007080078125, -0.0362548828125, -0.021942138671875, -0.033172607421875, -0.0426025390625, -0.04156494140625, -0.020721435546875, -0.028411865234375, -0.0126190185546875, -0.05950927734375, -0.0211181640625, 0.01776123046875, 0.03131103515625, -0.045867919921875, 0.06866455078125, -0.045684814453125, 0.043548583984375, 0.0012969970703125, 0.05377197265625, -0.029815673828125, -0.0225067138671875, -0.04180908203125, 0.003650665283203125, -0.052001953125, -0.068115234375, 0.03216552734375, -0.00870513916015625, 0.06842041015625, 0.038970947265625, -0.016754150390625, 0.038238525390625, -0.03277587890625, 0.0675048828125, 0.00609588623046875, -0.0701904296875, 0.032379150390625, -0.034942626953125, 0.0186004638671875, 0.050506591796875, 0.025360107421875, -0.00905609130859375, -0.028961181640625, -0.0596923828125, -0.0489501953125, 0.0823974609375, 0.03436279296875, -0.015777587890625, 0.001361846923828125, 0.03802490234375, -0.018768310546875, 0.008636474609375, -0.06085205078125, -0.0264129638671875, -0.046600341796875, -0.01290130615234375, -0.01413726806640625, 0.0009050369262695312, -0.016204833984375, -0.003467559814453125, 0.07666015625, -0.0163726806640625, 0.01934814453125, 0.005458831787109375, -0.00473785400390625, -0.02972412109375, -0.050628662109375, 0.024566650390625, 0.003528594970703125, -0.048553466796875, -0.023712158203125, 0.004772186279296875, -0.02587890625, 0.0050201416015625, 0.0374755859375, -0.01261138916015625, -0.0174713134765625, 0.032135009765625, 0.06695556640625, 0.0038242340087890625, -0.028533935546875, 0.054718017578125, -0.0158233642578125, -0.014190673828125, -0.044952392578125, 0.01390838623046875, -0.0014524459838867188, 0.0325927734375, -0.00954437255859375, 0.0384521484375, 0.019317626953125, -0.040863037109375, 0.031494140625, 0.02972412109375, -0.054290771484375, -0.017974853515625, 0.0557861328125, 0.020111083984375, -0.035430908203125, 0.046966552734375, -0.005733489990234375, -0.0382080078125, 0.0782470703125, 0.035308837890625, 0.062103271484375, -0.03851318359375, 0.01502227783203125, 0.041961669921875, 0.01235198974609375, -0.032867431640625, 0.03277587890625, 0.001056671142578125, -0.06536865234375, 0.003307342529296875, -0.034027099609375, -0.043487548828125, -0.0018815994262695312, -0.06024169921875, 0.043212890625, -0.034423828125, -0.0228118896484375, -0.0019235610961914062, 0.019744873046875, -0.0345458984375, -0.0029296875, 0.0164337158203125, 0.1055908203125, -0.04730224609375, 0.062042236328125, 0.06390380859375, -0.03765869140625, -0.026611328125, 0.0080718994140625, 0.0228424072265625, -0.06744384765625, 0.021484375, 0.04254150390625, 0.0132904052734375, 0.0106658935546875, -0.0731201171875, -0.072021484375, 0.08758544921875, -0.0027618408203125, 0.01415252685546875, 0.019073486328125, -0.032501220703125, 0.0499267578125, -0.042999267578125, 0.032196044921875, 0.04168701171875, 0.02679443359375, 0.0079803466796875, -0.05120849609375, -0.0182952880859375, -0.0386962890625, -0.000995635986328125, -0.0207977294921875, -0.08636474609375, 0.06365966796875, -0.0008206367492675781, 0.00939178466796875, 0.0640869140625, 0.062408447265625, 0.056060791015625, 0.001346588134765625, 0.042205810546875, 0.043853759765625, 0.01427459716796875, -0.00164794921875, 0.061248779296875, -0.03662109375, 0.03912353515625, 0.04534912109375, -0.048095703125, 0.052642822265625, 0.0030574798583984375, 0.00670623779296875, 0.05694580078125, 0.07293701171875, -0.0222930908203125, 0.0504150390625, 0.0240020751953125, -0.004459381103515625, -0.01371002197265625, 0.0284271240234375, -0.0245361328125, 0.025543212890625, 0.0343017578125, 0.01061248779296875, -0.01451873779296875, -0.01338958740234375, -0.0030422210693359375, -0.01189422607421875, -0.04010009765625, 0.07379150390625, -0.0015287399291992188, -0.054168701171875, 0.056121826171875, 0.0113067626953125, 0.03326416015625, -0.042205810546875, -0.00202178955078125, -0.01641845703125, 0.04217529296875, -0.0012836456298828125, -0.0738525390625, 0.0159454345703125, -0.0139923095703125, -0.005889892578125, -0.001926422119140625, 0.03570556640625, -0.0240020751953125, -0.033172607421875, 0.05218505859375, 0.0038928985595703125, 0.006305694580078125, 0.0185546875, -0.07781982421875, -0.0023403167724609375, -0.02911376953125, -0.0350341796875, 0.0240478515625, 0.032806396484375, 0.0199127197265625, 0.068603515625, 0.03167724609375, 0.004543304443359375, -0.004268646240234375, -0.0093841552734375, 0.062103271484375, -0.04278564453125, -0.060150146484375, -0.021209716796875, 0.045684814453125, -0.0207061767578125, -0.034820556640625, 0.034332275390625, 0.07513427734375, 0.03759765625, -0.004917144775390625, 0.0455322265625, 0.0032501220703125, 0.0472412109375, -0.0204925537109375, 0.056396484375, -0.0311431884765625, -0.005496978759765625, -0.0023403167724609375, -0.060089111328125, -0.0103912353515625, 0.06707763671875, 0.0289306640625, -0.0125579833984375, 0.03533935546875, 0.0595703125, -0.0007243156433105469, 0.01074981689453125, -0.007404327392578125, 0.0489501953125, 0.0165863037109375, 0.00603485107421875, 0.05120849609375, -0.04217529296875, 0.0284271240234375, -0.03961181640625, -0.053985595703125, -0.016937255859375, -0.0391845703125, -0.08587646484375, -0.0185699462890625, -0.0175933837890625, -0.07867431640625, 0.002696990966796875, 0.06085205078125, 0.046630859375, -0.06829833984375, -0.04351806640625, -0.0068206787109375, -0.007106781005859375, -0.034332275390625, -0.0166168212890625, 0.01806640625, -0.02996826171875, -0.053497314453125, 0.0219573974609375, -0.0181121826171875, 0.0303802490234375, -0.0199432373046875, -0.02032470703125, -0.0201568603515625, -0.0021991729736328125, 0.0222015380859375, 0.0362548828125, -0.029937744140625, -0.0240020751953125, -0.0244598388671875, -0.0214080810546875, -0.0030002593994140625, 0.0217742919921875, -0.040863037109375, -0.01174163818359375, 0.025299072265625, 0.005401611328125, 0.04852294921875, 0.01465606689453125, 0.035552978515625, -0.025909423828125, 0.0305328369140625, 0.005283355712890625, 0.046844482421875, 0.018463134765625, -0.019439697265625, 0.037384033203125, 0.0305633544921875, -0.05108642578125, -0.056060791015625, 0.01142120361328125, -0.0823974609375, -0.023956298828125, 0.10015869140625, -0.011383056640625, -0.040679931640625, -0.0031986236572265625, -0.044769287109375, 0.0277252197265625, -0.045562744140625, 0.045166015625, 0.04815673828125, -0.01068878173828125, -0.017242431640625, -0.0258026123046875, 0.04864501953125, -0.00634002685546875, -0.03912353515625, -0.0162506103515625, 0.044921875, 0.0246429443359375, 0.00678253173828125, 0.046234130859375, -0.0005712509155273438, 0.0277252197265625, 0.030181884765625, 0.0184173583984375, 0.007427215576171875, -0.0233917236328125, -0.030487060546875, 0.00562286376953125, -0.017822265625, -0.0030956268310546875 ] ]
folivos/ppo-LunarLander-v2
2023-10-28T19:03:01.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
folivos
null
null
folivos/ppo-LunarLander-v2
0
2
stable-baselines3
2023-10-28T19:02:38
--- 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: 242.34 +/- 39.07 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 ... ```
784
[ [ -0.00023484230041503906, -0.02716064453125, 0.017059326171875, 0.023345947265625, -0.00606536865234375, 0.002735137939453125, 0.034454345703125, -0.012115478515625, 0.019866943359375, 0.06500244140625, -0.043212890625, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017528533935546875, 0.06982421875, 0.0015935897827148438, 0.028167724609375, 0.00954437255859375, -0.00704193115234375, -0.018341064453125, -0.0218658447265625, -0.05206298828125, -0.07147216796875, 0.011993408203125, 0.050201416015625, 0.054229736328125, 0.0242462158203125, 0.028106689453125, 0.0292205810546875, -0.0176849365234375, -0.0322265625, -0.04132080078125, -0.0012683868408203125, -0.000614166259765625, -0.044403076171875, -0.0633544921875, 0.01415252685546875, 0.03961181640625, 0.004047393798828125, -0.0198822021484375, 0.004917144775390625, -0.0282745361328125, 0.031097412109375, -0.037567138671875, 0.015777587890625, -0.01535797119140625, 0.0017938613891601562, 0.007350921630859375, 0.01081085205078125, -0.0259246826171875, -0.00986480712890625, 0.020660400390625, -0.0906982421875, -0.00533294677734375, -0.021514892578125, 0.09295654296875, 0.0093994140625, -0.037994384765625, 0.0011854171752929688, -0.0190277099609375, 0.034088134765625, -0.027191162109375, 0.0103607177734375, 0.049163818359375, 0.036163330078125, 0.0031528472900390625, -0.06915283203125, -0.016387939453125, -0.032623291015625, 0.0010671615600585938, 0.0316162109375, 0.0154876708984375, 0.0167236328125, 0.0150146484375, 0.0107574462890625, -0.0240478515625, 0.0241241455078125, -0.04608154296875, -0.0239410400390625, 0.0355224609375, 0.0182342529296875, 0.00534820556640625, -0.00782012939453125, -0.03533935546875, -0.01183319091796875, -0.03143310546875, 0.0230560302734375, 0.0303955078125, 0.0128326416015625, -0.05889892578125, 0.0657958984375, -0.019073486328125, 0.031524658203125, 0.0303192138671875, -0.0003750324249267578, 0.0487060546875, 0.0093994140625, -0.00792694091796875, -0.025970458984375, 0.039337158203125, 0.0675048828125, 0.00406646728515625, 0.005634307861328125, -0.03369140625, -0.018798828125, 0.0120391845703125, -0.055511474609375, -0.024932861328125, 0.03375244140625, -0.01983642578125, -0.048797607421875, 0.0350341796875, -0.0418701171875, -0.02508544921875, -0.0006508827209472656, 0.0272216796875, -0.04718017578125, -0.041290283203125, 0.0043487548828125, -0.032470703125, 0.050048828125, 0.00983428955078125, -0.06329345703125, 0.0309295654296875, 0.04852294921875, 0.0660400390625, 0.041259765625, -0.0479736328125, -0.0491943359375, 0.0135040283203125, -0.031494140625, 0.05523681640625, 0.0172576904296875, -0.03375244140625, 0.02178955078125, 0.0003981590270996094, 0.01496124267578125, -0.03570556640625, 0.0181732177734375, -0.032989501953125, 0.02069091796875, 0.006561279296875, -0.0308990478515625, -0.0007753372192382812, 0.03253173828125, -0.04571533203125, 0.0982666015625, 0.060394287109375, -0.0399169921875, 0.0259857177734375, -0.046173095703125, -0.005298614501953125, 0.036407470703125, 0.017578125, -0.05078125, -0.0019855499267578125, -0.0310516357421875, 0.01300811767578125, 0.004825592041015625, 0.003040313720703125, -0.02630615234375, -0.0268402099609375, 0.0055084228515625, 0.0567626953125, 0.06378173828125, 0.015625, -0.002384185791015625, 0.0144195556640625, -0.043670654296875, -0.00995635986328125, 0.00634765625, -0.0202789306640625, -0.0110321044921875, -0.0171661376953125, 0.037567138671875, 0.0171051025390625, 0.034027099609375, -0.034393310546875, 0.0357666015625, -0.039306640625, 0.014068603515625, 0.0498046875, -0.00911712646484375, 0.055999755859375, -0.0478515625, 0.023529052734375, -0.01238250732421875, 0.0191497802734375, 0.01395416259765625, -0.0253143310546875, -0.045684814453125, -0.036285400390625, -0.002056121826171875, 0.058013916015625, -0.08660888671875, 0.04913330078125, 0.015625, -0.0548095703125, -0.014678955078125, -0.01074981689453125, 0.03643798828125, 0.018890380859375, 0.003299713134765625, -0.006404876708984375, -0.042510986328125, -0.060699462890625, 0.017333984375, -0.04833984375, -0.01690673828125, 0.00007045269012451172, 0.047637939453125, -0.0242462158203125, 0.058746337890625, -0.0262603759765625, -0.0253448486328125, -0.02288818359375, 0.01381683349609375, 0.019866943359375, 0.053558349609375, 0.06768798828125, -0.041107177734375, -0.03668212890625, -0.0190582275390625, -0.063232421875, -0.0302581787109375, 0.01092529296875, -0.01129150390625, 0.0008001327514648438, 0.0238800048828125, -0.055023193359375, 0.00653076171875, 0.04254150390625, -0.07159423828125, 0.051513671875, -0.02630615234375, -0.00007575750350952148, -0.09185791015625, 0.01305389404296875, 0.0162200927734375, -0.024261474609375, -0.055511474609375, 0.0236968994140625, 0.01108551025390625, -0.004302978515625, -0.050994873046875, 0.064453125, -0.037841796875, 0.0016231536865234375, -0.03228759765625, -0.00919342041015625, -0.01050567626953125, -0.0042266845703125, 0.0018405914306640625, 0.04364013671875, 0.0792236328125, -0.0303955078125, 0.0430908203125, 0.04290771484375, 0.00759124755859375, 0.053436279296875, -0.042633056640625, 0.008880615234375, -0.0184478759765625, 0.0185546875, -0.045166015625, -0.04400634765625, 0.042388916015625, -0.035675048828125, 0.0223541259765625, -0.0321044921875, -0.0238037109375, -0.03369140625, -0.04229736328125, 0.0134735107421875, 0.043975830078125, -0.0208282470703125, 0.05322265625, 0.048980712890625, 0.0081024169921875, -0.03924560546875, -0.03070068359375, -0.013458251953125, -0.0196685791015625, -0.0293731689453125, 0.032073974609375, 0.0093994140625, -0.03436279296875, -0.0156097412109375, 0.002529144287109375, -0.0149383544921875, 0.006168365478515625, 0.033355712890625, 0.028564453125, -0.00170135498046875, -0.020263671875, -0.028594970703125, -0.049652099609375, -0.01038360595703125, -0.010589599609375, 0.047271728515625, -0.0190277099609375, 0.0263824462890625, -0.059112548828125, -0.00348663330078125, 0.052276611328125, 0.0176239013671875, 0.05859375, 0.0303192138671875, -0.0380859375, -0.00710296630859375, -0.0239410400390625, -0.01154327392578125, -0.03826904296875, 0.03167724609375, -0.0396728515625, -0.0400390625, 0.050628662109375, 0.00003361701965332031, -0.02642822265625, 0.041748046875, 0.040374755859375, -0.0056915283203125, 0.04656982421875, 0.06878662109375, -0.00760650634765625, 0.05059814453125, -0.04931640625, -0.046417236328125, -0.053619384765625, -0.0423583984375, -0.0268096923828125, 0.0167999267578125, -0.028533935546875, -0.0178985595703125, 0.0093231201171875, 0.032196044921875, -0.0533447265625, 0.06182861328125, -0.030059814453125, 0.042510986328125, 0.0406494140625, 0.01081085205078125, -0.0193634033203125, -0.038116455078125, -0.00330352783203125, 0.0158538818359375, -0.0232696533203125, -0.0380859375, 0.06817626953125, 0.039703369140625, 0.052459716796875, 0.005001068115234375, 0.044830322265625, 0.006404876708984375, 0.04473876953125, -0.038604736328125, 0.033782958984375, -0.0123138427734375, -0.06317138671875, -0.008209228515625, -0.022186279296875, -0.052886962890625, 0.0129852294921875, -0.030487060546875, -0.0665283203125, -0.011749267578125, 0.006420135498046875, -0.0196990966796875, 0.005298614501953125, -0.03704833984375, 0.07135009765625, -0.0242767333984375, -0.02435302734375, 0.0106048583984375, -0.04791259765625, 0.0185089111328125, 0.0135040283203125, -0.003620147705078125, -0.02490234375, -0.0181427001953125, 0.050048828125, -0.032958984375, 0.043701171875, -0.057586669921875, 0.013031005859375, 0.0166015625, 0.00891876220703125, 0.0274810791015625, 0.031951904296875, -0.0117034912109375, 0.001331329345703125, 0.00582122802734375, -0.052276611328125, -0.0032062530517578125, 0.031219482421875, -0.09857177734375, -0.0046539306640625, -0.057861328125, -0.02325439453125, 0.0090179443359375, 0.020111083984375, 0.03948974609375, 0.00940704345703125, -0.0279998779296875, 0.00021457672119140625, 0.0059661865234375, 0.00882720947265625, 0.01517486572265625, 0.0614013671875, -0.035797119140625, -0.061126708984375, 0.0298919677734375, 0.0017242431640625, -0.0007538795471191406, 0.0221099853515625, 0.00569915771484375, -0.0225372314453125, -0.042083740234375, -0.0098419189453125, 0.0309600830078125, -0.0251007080078125, -0.0134429931640625, -0.0113525390625, -0.0227508544921875, -0.0256500244140625, -0.0291290283203125, -0.046112060546875, -0.0204315185546875, -0.0330810546875, -0.0225067138671875, 0.0256195068359375, 0.0499267578125, -0.03021240234375, 0.08660888671875, -0.034942626953125, 0.03338623046875, 0.010040283203125, 0.04132080078125, -0.058624267578125, -0.0338134765625, -0.026611328125, -0.0174560546875, -0.03155517578125, -0.06683349609375, 0.03271484375, -0.016204833984375, 0.05377197265625, 0.028167724609375, -0.010833740234375, 0.0254974365234375, -0.01161956787109375, 0.055572509765625, 0.033355712890625, -0.0716552734375, 0.0283355712890625, -0.051239013671875, 0.0092010498046875, 0.062469482421875, 0.0146331787109375, -0.01800537109375, -0.0259246826171875, -0.0601806640625, -0.06903076171875, 0.08331298828125, 0.03216552734375, -0.00598907470703125, 0.0221099853515625, 0.055267333984375, -0.00547027587890625, 0.00682830810546875, -0.06524658203125, -0.0196380615234375, -0.0264129638671875, -0.01265716552734375, -0.0196990966796875, -0.01195526123046875, -0.0140533447265625, 0.00411224365234375, 0.06378173828125, -0.01079559326171875, 0.0202789306640625, 0.00621795654296875, -0.00850677490234375, -0.0304107666015625, -0.03729248046875, 0.0280609130859375, 0.0230560302734375, -0.06353759765625, -0.015655517578125, 0.0036869049072265625, -0.040679931640625, 0.0256195068359375, 0.043426513671875, -0.0190887451171875, -0.0178985595703125, 0.0283050537109375, 0.050506591796875, 0.0111541748046875, -0.0197296142578125, 0.046356201171875, 0.00817108154296875, -0.034820556640625, -0.053619384765625, 0.002925872802734375, -0.0061492919921875, 0.037261962890625, 0.0201873779296875, 0.01031494140625, -0.0091552734375, -0.036956787109375, 0.0302734375, 0.0177154541015625, -0.050048828125, -0.03607177734375, 0.061126708984375, 0.02532958984375, -0.05633544921875, 0.044830322265625, -0.007259368896484375, -0.03973388671875, 0.06695556640625, 0.031707763671875, 0.0650634765625, -0.0257415771484375, 0.032989501953125, 0.033935546875, 0.01325225830078125, -0.0251007080078125, 0.04010009765625, 0.0201568603515625, -0.07379150390625, -0.0159454345703125, -0.01184844970703125, -0.0523681640625, 0.0155181884765625, -0.04449462890625, 0.041534423828125, -0.043975830078125, -0.03485107421875, 0.0029296875, 0.020721435546875, -0.0294036865234375, -0.00514984130859375, 0.0255126953125, 0.0943603515625, -0.06097412109375, 0.07122802734375, 0.07159423828125, -0.037261962890625, -0.03826904296875, -0.0018377304077148438, 0.02777099609375, -0.058074951171875, 0.040618896484375, 0.032196044921875, 0.003887176513671875, 0.0096893310546875, -0.054443359375, -0.048919677734375, 0.10089111328125, 0.01378631591796875, -0.003082275390625, 0.0163116455078125, -0.0151824951171875, 0.0469970703125, -0.0406494140625, 0.037139892578125, 0.02362060546875, 0.035797119140625, 0.01329803466796875, -0.0660400390625, -0.0251312255859375, -0.03375244140625, -0.008575439453125, -0.00312042236328125, -0.07568359375, 0.08154296875, 0.002880096435546875, 0.0245208740234375, 0.063720703125, 0.03436279296875, 0.055877685546875, 0.0192413330078125, 0.03668212890625, 0.042572021484375, 0.01947021484375, -0.01904296875, 0.061492919921875, -0.0224151611328125, 0.0650634765625, 0.050537109375, -0.05926513671875, 0.038970947265625, 0.0203399658203125, 0.007175445556640625, 0.0357666015625, 0.045928955078125, -0.01399993896484375, 0.056671142578125, 0.0138092041015625, -0.0086822509765625, -0.006305694580078125, 0.0308990478515625, -0.0193328857421875, 0.033355712890625, 0.01335906982421875, 0.0003542900085449219, -0.006134033203125, -0.0013151168823242188, 0.002819061279296875, -0.00335693359375, -0.031707763671875, 0.069580078125, -0.01198577880859375, -0.047821044921875, 0.031982421875, 0.02423095703125, 0.043548583984375, -0.062042236328125, -0.002262115478515625, -0.01031494140625, 0.04559326171875, 0.00061798095703125, -0.07171630859375, -0.002323150634765625, -0.01418304443359375, 0.00791168212890625, -0.0176239013671875, 0.0518798828125, -0.01438140869140625, -0.020263671875, 0.057403564453125, 0.025238037109375, 0.0025386810302734375, 0.01580810546875, -0.07073974609375, -0.012908935546875, -0.03497314453125, -0.037933349609375, 0.0160980224609375, 0.020965576171875, 0.0240478515625, 0.0531005859375, 0.03228759765625, -0.0011396408081054688, -0.0248565673828125, -0.00730133056640625, 0.06878662109375, -0.048065185546875, -0.05230712890625, -0.03375244140625, 0.0780029296875, -0.02264404296875, -0.06005859375, 0.034332275390625, 0.06951904296875, 0.03912353515625, -0.0216827392578125, 0.03887939453125, -0.01435089111328125, 0.0220184326171875, -0.03253173828125, 0.05548095703125, -0.0188140869140625, -0.0088653564453125, -0.0093231201171875, -0.051300048828125, -0.034759521484375, 0.06915283203125, -0.0013580322265625, -0.004581451416015625, 0.019775390625, 0.053680419921875, 0.0025920867919921875, -0.02288818359375, 0.015716552734375, 0.0411376953125, 0.0057373046875, 0.0283355712890625, 0.0706787109375, -0.04681396484375, 0.01110076904296875, -0.039215087890625, -0.05157470703125, -0.0189971923828125, -0.0458984375, -0.07586669921875, -0.03143310546875, -0.0186614990234375, -0.0701904296875, 0.0158843994140625, 0.062469482421875, 0.0736083984375, -0.048187255859375, -0.05084228515625, -0.0162353515625, -0.00771331787109375, -0.01080322265625, -0.0127105712890625, 0.00746917724609375, -0.004177093505859375, -0.04766845703125, 0.018707275390625, -0.0023746490478515625, 0.0282440185546875, 0.0008997917175292969, -0.044219970703125, -0.01312255859375, -0.02362060546875, 0.0187835693359375, 0.036895751953125, -0.0216217041015625, -0.028900146484375, -0.009124755859375, -0.0176544189453125, 0.0026683807373046875, 0.036346435546875, -0.047332763671875, 0.004730224609375, 0.0296173095703125, -0.0267791748046875, 0.06414794921875, 0.01155853271484375, 0.042236328125, -0.03948974609375, 0.047149658203125, 0.01861572265625, 0.030487060546875, 0.0151214599609375, -0.01531219482421875, 0.0484619140625, 0.0268096923828125, -0.050048828125, -0.048309326171875, 0.0116729736328125, -0.08441162109375, -0.01611328125, 0.08331298828125, 0.0007581710815429688, -0.01366424560546875, -0.004764556884765625, -0.040985107421875, 0.0175018310546875, -0.033721923828125, 0.036834716796875, 0.035797119140625, -0.0041961669921875, -0.02685546875, -0.0274810791015625, 0.033294677734375, -0.01068115234375, -0.044677734375, -0.029266357421875, 0.034912109375, 0.0321044921875, 0.021820068359375, 0.0675048828125, -0.01039886474609375, 0.0311431884765625, 0.032745361328125, 0.0216217041015625, -0.01580810546875, -0.0239105224609375, -0.03399658203125, 0.0084991455078125, 0.00803375244140625, -0.00995635986328125 ] ]
vincegmz/dreamboost_lora_mnist_zero_batch_size4_weight1.0lr1e-4_promptA_photo_of_olis_zero
2023-10-28T19:50:16.000Z
[ "diffusers", "stable-diffusion", "stable-diffusion-diffusers", "text-to-image", "lora", "license:creativeml-openrail-m", "region:us" ]
text-to-image
vincegmz
null
null
vincegmz/dreamboost_lora_mnist_zero_batch_size4_weight1.0lr1e-4_promptA_photo_of_olis_zero
0
2
diffusers
2023-10-28T19:29:45
--- license: creativeml-openrail-m base_model: runwayml/stable-diffusion-v1-5 instance_prompt: a photo of olis zero tags: - stable-diffusion - stable-diffusion-diffusers - text-to-image - diffusers - lora inference: true --- # LoRA DreamBooth - vincegmz/dreamboost_lora_mnist_zero_batch_size4_weight1.0lr1e-4_promptA_photo_of_olis_zero These are LoRA adaption weights for runwayml/stable-diffusion-v1-5. The weights were trained on a photo of olis zero using [DreamBooth](https://dreambooth.github.io/). You can find some example images in the following. ![img_0](./image_0.png) ![img_1](./image_1.png) ![img_2](./image_2.png) ![img_3](./image_3.png) LoRA for the text encoder was enabled: False.
708
[ [ -0.00817108154296875, -0.027130126953125, 0.0303497314453125, 0.01209259033203125, -0.0307464599609375, 0.0118408203125, 0.029327392578125, -0.01026153564453125, 0.05706787109375, 0.04241943359375, -0.05401611328125, -0.036834716796875, -0.042938232421875, -0.00783538818359375, -0.03436279296875, 0.07928466796875, -0.02789306640625, 0.0014209747314453125, 0.00646209716796875, -0.0307464599609375, -0.045654296875, -0.0029964447021484375, -0.0458984375, -0.0196990966796875, 0.045196533203125, 0.043243408203125, 0.038665771484375, 0.02862548828125, 0.03485107421875, 0.01629638671875, 0.0009202957153320312, -0.036224365234375, -0.048675537109375, -0.0156707763671875, 0.0201416015625, -0.0189361572265625, -0.045074462890625, -0.00315093994140625, 0.0804443359375, 0.041412353515625, -0.0296173095703125, 0.03924560546875, -0.010986328125, 0.052978515625, -0.059234619140625, -0.025482177734375, -0.042388916015625, 0.0241241455078125, -0.00885009765625, 0.01082611083984375, -0.005367279052734375, -0.021240234375, -0.041534423828125, -0.045166015625, -0.00809478759765625, 0.010955810546875, 0.08892822265625, 0.028594970703125, -0.0247955322265625, -0.004535675048828125, -0.04376220703125, 0.055999755859375, -0.052886962890625, 0.01459503173828125, 0.00849151611328125, 0.0287628173828125, 0.0036983489990234375, -0.048004150390625, -0.034576416015625, 0.032501220703125, 0.022613525390625, 0.0050048828125, -0.01340484619140625, -0.01296234130859375, 0.0294952392578125, 0.0189361572265625, -0.0294952392578125, 0.0180511474609375, -0.05126953125, 0.0035037994384765625, 0.0225982666015625, 0.00513458251953125, 0.0157012939453125, 0.027374267578125, -0.046112060546875, 0.004154205322265625, -0.048004150390625, -0.0188751220703125, 0.0168304443359375, 0.0203094482421875, -0.048553466796875, 0.045745849609375, -0.0163116455078125, 0.0692138671875, 0.005214691162109375, -0.010650634765625, 0.0767822265625, -0.0047454833984375, -0.048828125, 0.01552581787109375, 0.047393798828125, 0.0308380126953125, -0.010284423828125, 0.0137481689453125, -0.0266265869140625, -0.01201629638671875, 0.0213165283203125, -0.09283447265625, 0.0194244384765625, 0.015655517578125, -0.05023193359375, -0.038299560546875, 0.021148681640625, -0.05316162109375, -0.02947998046875, 0.01556396484375, 0.07000732421875, -0.030426025390625, -0.0149078369140625, 0.03533935546875, -0.0345458984375, 0.040496826171875, 0.033203125, -0.0399169921875, 0.034027099609375, -0.009063720703125, 0.058990478515625, 0.005523681640625, -0.0067291259765625, -0.037017822265625, 0.00666046142578125, -0.0258331298828125, 0.04278564453125, 0.0084991455078125, -0.022552490234375, 0.0028972625732421875, 0.003940582275390625, -0.0277557373046875, -0.0283203125, 0.0626220703125, -0.041046142578125, 0.00775146484375, -0.030609130859375, -0.0255889892578125, -0.0220947265625, 0.006214141845703125, -0.03240966796875, 0.05804443359375, 0.0277557373046875, -0.056884765625, 0.033447265625, -0.0701904296875, -0.02362060546875, -0.003620147705078125, -0.0163421630859375, -0.037445068359375, 0.0118560791015625, -0.0169677734375, 0.03192138671875, 0.0146331787109375, -0.041168212890625, -0.00244140625, -0.0465087890625, 0.0078125, 0.01666259765625, 0.0643310546875, 0.0275421142578125, -0.00783538818359375, 0.01375579833984375, -0.08148193359375, 0.01047515869140625, 0.038604736328125, -0.0252532958984375, -0.0117645263671875, -0.0169677734375, 0.01409149169921875, 0.0128631591796875, 0.0199127197265625, -0.054718017578125, 0.01116180419921875, -0.00785064697265625, 0.0014486312866210938, 0.04827880859375, 0.00736236572265625, 0.0003476142883300781, -0.0283966064453125, 0.042633056640625, 0.018218994140625, -0.0003845691680908203, 0.004573822021484375, -0.04998779296875, -0.07769775390625, -0.003265380859375, 0.005374908447265625, 0.0246429443359375, -0.045684814453125, 0.0267486572265625, -0.0181121826171875, -0.038330078125, -0.0295867919921875, 0.01165771484375, 0.002422332763671875, 0.03485107421875, 0.00959014892578125, -0.0249176025390625, -0.040283203125, -0.06298828125, 0.00316619873046875, 0.008392333984375, 0.0018405914306640625, -0.0172882080078125, 0.07232666015625, 0.004791259765625, 0.054656982421875, -0.049560546875, -0.0222930908203125, -0.007205963134765625, 0.00013339519500732422, 0.06268310546875, 0.04840087890625, 0.07574462890625, -0.03765869140625, -0.04022216796875, -0.0190277099609375, -0.047760009765625, 0.001552581787109375, -0.003391265869140625, -0.01120758056640625, 0.00170135498046875, 0.029449462890625, -0.0396728515625, 0.044952392578125, 0.043609619140625, -0.07623291015625, 0.0201416015625, -0.02679443359375, 0.0176544189453125, -0.09149169921875, 0.0196380615234375, -0.0013380050659179688, -0.035369873046875, -0.049530029296875, 0.0160675048828125, 0.00476837158203125, 0.0033779144287109375, -0.04608154296875, 0.035919189453125, -0.032379150390625, -0.01715087890625, -0.0199127197265625, 0.0095977783203125, 0.00909423828125, 0.0178375244140625, -0.00439453125, 0.041290283203125, 0.04150390625, -0.03289794921875, 0.014251708984375, 0.032684326171875, -0.044830322265625, 0.052734375, -0.04437255859375, 0.0287933349609375, -0.0225982666015625, 0.0105743408203125, -0.062164306640625, -0.01194000244140625, 0.05096435546875, -0.0191650390625, 0.007389068603515625, -0.0113983154296875, -0.0335693359375, -0.035675048828125, -0.03814697265625, 0.02923583984375, 0.08831787109375, -0.0266265869140625, 0.0225677490234375, 0.00458526611328125, 0.016693115234375, -0.0367431640625, -0.0606689453125, -0.0029010772705078125, -0.0239715576171875, -0.01082611083984375, 0.023773193359375, -0.0259552001953125, -0.015594482421875, -0.0146484375, -0.00495147705078125, -0.007732391357421875, -0.0040435791015625, 0.044677734375, 0.0183563232421875, -0.0296783447265625, -0.024261474609375, 0.01406097412109375, 0.013458251953125, -0.00897216796875, -0.0117645263671875, 0.037811279296875, -0.005870819091796875, -0.025115966796875, -0.03485107421875, -0.00409698486328125, 0.0400390625, 0.038330078125, 0.095703125, 0.0628662109375, -0.053497314453125, 0.00615692138671875, -0.0277557373046875, 0.01221466064453125, -0.034393310546875, 0.0172576904296875, -0.029022216796875, -0.01351165771484375, 0.037750244140625, 0.0184173583984375, -0.01093292236328125, 0.06427001953125, 0.03912353515625, -0.008392333984375, 0.0478515625, 0.0411376953125, -0.00455474853515625, 0.01505279541015625, -0.046051025390625, -0.0173797607421875, -0.0606689453125, -0.025665283203125, -0.0478515625, -0.048828125, 0.010955810546875, -0.0443115234375, 0.00971221923828125, 0.031341552734375, -0.0592041015625, 0.03277587890625, -0.019500732421875, 0.0399169921875, 0.0233917236328125, 0.006214141845703125, 0.01361846923828125, 0.01103973388671875, -0.0125579833984375, 0.00666046142578125, -0.051727294921875, -0.01192474365234375, 0.058746337890625, 0.0347900390625, 0.07183837890625, 0.0027828216552734375, 0.04364013671875, 0.0173492431640625, 0.019561767578125, -0.038726806640625, 0.044586181640625, -0.00019073486328125, -0.03509521484375, -0.004062652587890625, -0.018218994140625, -0.067626953125, -0.001453399658203125, -0.03271484375, -0.055633544921875, 0.018829345703125, 0.005275726318359375, -0.0287933349609375, 0.0487060546875, -0.035369873046875, 0.050506591796875, -0.006481170654296875, 0.0017194747924804688, -0.01410675048828125, -0.041778564453125, -0.0004153251647949219, -0.01361846923828125, 0.03485107421875, -0.010894775390625, -0.0233154296875, 0.09014892578125, -0.040252685546875, 0.0714111328125, -0.037017822265625, -0.0208587646484375, 0.018768310546875, -0.016845703125, 0.029052734375, -0.03338623046875, -0.02716064453125, 0.027862548828125, -0.00850677490234375, -0.036285400390625, -0.01470947265625, 0.047698974609375, -0.0653076171875, 0.001407623291015625, -0.034454345703125, -0.0203857421875, 0.0028285980224609375, 0.03497314453125, 0.03411865234375, 0.0136566162109375, -0.0200653076171875, 0.01277923583984375, 0.031768798828125, -0.019195556640625, 0.033477783203125, 0.0457763671875, -0.04754638671875, -0.0384521484375, 0.069091796875, 0.003437042236328125, 0.0286865234375, 0.0202789306640625, 0.01239776611328125, 0.00274658203125, -0.059783935546875, -0.04449462890625, 0.009185791015625, -0.07244873046875, -0.0266265869140625, -0.0266571044921875, -0.037689208984375, -0.027587890625, -0.0278167724609375, -0.021148681640625, -0.050750732421875, -0.046173095703125, -0.008636474609375, 0.036102294921875, 0.08282470703125, 0.0048065185546875, 0.052734375, -0.0299224853515625, 0.03515625, 0.0126800537109375, 0.040771484375, -0.0159149169921875, -0.0675048828125, -0.03765869140625, 0.00812530517578125, -0.0288848876953125, -0.060516357421875, 0.01441192626953125, 0.01425933837890625, 0.0251617431640625, 0.059234619140625, -0.0102691650390625, 0.032562255859375, -0.0281829833984375, 0.06524658203125, 0.05389404296875, -0.04986572265625, 0.057342529296875, -0.04241943359375, 0.0250701904296875, 0.03314208984375, 0.023529052734375, -0.0247650146484375, 0.006755828857421875, -0.046661376953125, -0.044158935546875, 0.046112060546875, 0.051300048828125, 0.01556396484375, 0.0231781005859375, 0.03961181640625, 0.019195556640625, 0.0294036865234375, -0.07861328125, -0.028411865234375, -0.0241851806640625, -0.03582763671875, 0.0013303756713867188, -0.018829345703125, -0.01027679443359375, -0.0190582275390625, 0.055908203125, -0.0198211669921875, 0.023345947265625, -0.0010919570922851562, 0.00963592529296875, -0.041656494140625, 0.0030155181884765625, 0.0504150390625, 0.0396728515625, -0.05908203125, -0.0306854248046875, 0.0209197998046875, -0.044219970703125, 0.00624847412109375, -0.0109710693359375, -0.023345947265625, -0.0048370361328125, 0.009674072265625, 0.08587646484375, -0.0015363693237304688, -0.033355712890625, 0.039337158203125, -0.0018873214721679688, -0.0296173095703125, -0.032073974609375, 0.009674072265625, -0.0165863037109375, -0.0048675537109375, 0.037628173828125, 0.034210205078125, 0.00493621826171875, -0.023529052734375, -0.02398681640625, 0.042205810546875, -0.0411376953125, -0.018707275390625, 0.06121826171875, 0.014129638671875, -0.0257720947265625, 0.02703857421875, -0.007373809814453125, -0.0009832382202148438, 0.062164306640625, 0.061553955078125, 0.061004638671875, -0.0184478759765625, 0.01160430908203125, 0.0406494140625, 0.0207977294921875, -0.0085601806640625, 0.051422119140625, 0.033660888671875, -0.07562255859375, -0.005580902099609375, -0.057952880859375, -0.0122833251953125, 0.0160980224609375, -0.04937744140625, 0.057159423828125, -0.04827880859375, -0.00977325439453125, -0.01485443115234375, -0.023529052734375, -0.036590576171875, 0.037322998046875, 0.0212249755859375, 0.10467529296875, -0.05706787109375, 0.055328369140625, 0.06390380859375, -0.0240478515625, -0.042724609375, -0.005916595458984375, -0.006694793701171875, -0.095947265625, 0.04437255859375, 0.0179901123046875, 0.001201629638671875, 0.007373809814453125, -0.050079345703125, -0.0648193359375, 0.094482421875, 0.0252532958984375, -0.02294921875, -0.0007815361022949219, 0.005340576171875, 0.0132904052734375, -0.05023193359375, 0.0017652511596679688, -0.01141357421875, 0.02117919921875, 0.0330810546875, -0.04833984375, 0.01549530029296875, -0.0157928466796875, -0.001972198486328125, 0.0045623779296875, -0.052734375, 0.06396484375, -0.037567138671875, 0.01200103759765625, 0.04833984375, 0.040496826171875, 0.01508331298828125, 0.01006317138671875, 0.06256103515625, 0.06396484375, 0.020538330078125, 0.007785797119140625, 0.073486328125, -0.0145111083984375, 0.027374267578125, 0.07391357421875, -0.0297088623046875, 0.0677490234375, 0.050140380859375, -0.01290130615234375, 0.078857421875, 0.04144287109375, -0.0042877197265625, 0.0247955322265625, 0.02801513671875, 0.0081634521484375, 0.004245758056640625, 0.00499725341796875, -0.046783447265625, 0.019378662109375, 0.03179931640625, -0.0305023193359375, -0.00746917724609375, 0.0135345458984375, 0.009063720703125, -0.0305023193359375, -0.037689208984375, 0.032623291015625, 0.0011463165283203125, -0.010986328125, 0.061065673828125, 0.01031494140625, 0.043304443359375, -0.06634521484375, -0.00905609130859375, -0.005359649658203125, 0.0099945068359375, -0.0187225341796875, -0.0616455078125, 0.010955810546875, -0.01043701171875, 0.0123138427734375, -0.0225830078125, 0.0654296875, -0.000032842159271240234, -0.0692138671875, 0.0181427001953125, 0.018402099609375, 0.00899505615234375, 0.0038127899169921875, -0.050567626953125, 0.0303802490234375, 0.0020999908447265625, -0.0214385986328125, 0.0232086181640625, -0.00439453125, 0.036590576171875, 0.041107177734375, 0.00771331787109375, 0.0120697021484375, -0.006877899169921875, 0.0159454345703125, 0.0687255859375, -0.05535888671875, -0.04217529296875, -0.0450439453125, 0.046417236328125, -0.014404296875, -0.0049896240234375, 0.0513916015625, 0.05950927734375, 0.0193328857421875, -0.03558349609375, 0.039276123046875, -0.03369140625, 0.02349853515625, -0.0697021484375, 0.060821533203125, -0.060577392578125, 0.005603790283203125, -0.038543701171875, -0.063232421875, -0.004512786865234375, 0.05548095703125, 0.0307769775390625, 0.01093292236328125, 0.048004150390625, 0.032012939453125, -0.01348114013671875, -0.01541900634765625, 0.01387786865234375, 0.049224853515625, -0.0207366943359375, 0.028472900390625, 0.0345458984375, -0.07720947265625, 0.02728271484375, 0.00876617431640625, -0.021087646484375, -0.0015392303466796875, -0.0858154296875, -0.064208984375, -0.040557861328125, -0.06439208984375, -0.059783935546875, 0.00640869140625, 0.055633544921875, 0.0675048828125, -0.058807373046875, -0.0248565673828125, -0.0035400390625, 0.01053619384765625, -0.002666473388671875, -0.01222991943359375, 0.01232147216796875, 0.0260009765625, -0.035308837890625, 0.0193634033203125, 0.01171112060546875, 0.05267333984375, -0.00666046142578125, -0.0198516845703125, -0.0196533203125, 0.0025539398193359375, 0.01434326171875, 0.022186279296875, -0.0174713134765625, -0.020538330078125, -0.03485107421875, 0.0169525146484375, 0.015625, 0.0305023193359375, -0.07049560546875, -0.0228271484375, 0.02508544921875, -0.002048492431640625, 0.01971435546875, -0.0125579833984375, 0.01184844970703125, -0.06671142578125, 0.036285400390625, -0.01181793212890625, 0.051116943359375, 0.006443023681640625, -0.0110931396484375, 0.036590576171875, 0.037750244140625, -0.0208282470703125, -0.052825927734375, -0.01531982421875, -0.107177734375, -0.0208587646484375, 0.07867431640625, 0.0143280029296875, -0.01213836669921875, 0.0171051025390625, -0.030059814453125, -0.0228271484375, -0.0253448486328125, 0.0233917236328125, 0.01263427734375, 0.01090240478515625, -0.009185791015625, -0.049163818359375, 0.01158905029296875, -0.00499725341796875, -0.06597900390625, -0.04156494140625, 0.02362060546875, 0.043182373046875, 0.028289794921875, 0.0791015625, -0.0017919540405273438, -0.00841522216796875, 0.015960693359375, 0.01042938232421875, 0.01763916015625, -0.00004839897155761719, -0.0158233642578125, 0.009521484375, 0.01238250732421875, -0.048797607421875 ] ]
Alefiah/UrduSum1
2023-10-28T20:13:19.000Z
[ "transformers", "pytorch", "tensorboard", "mt5", "text2text-generation", "generated_from_trainer", "license:apache-2.0", "autotrain_compatible", "endpoints_compatible", "text-generation-inference", "region:us" ]
text2text-generation
Alefiah
null
null
Alefiah/UrduSum1
0
2
transformers
2023-10-28T19:46:32
--- license: apache-2.0 tags: - generated_from_trainer model-index: - name: UrduSum1 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. --> # UrduSum1 This model is a fine-tuned version of [eslamxm/mt5-base-finetuned-urdu](https://huggingface.co/eslamxm/mt5-base-finetuned-urdu) 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: 2 - eval_batch_size: 2 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 1 - mixed_precision_training: Native AMP ### Training results | Training Loss | Epoch | Step | Validation Loss | Rouge1 | Rouge2 | Rougel | Rougelsum | Gen Len | |:-------------:|:-----:|:----:|:---------------:|:------:|:------:|:------:|:---------:|:-------:| | No log | 1.0 | 175 | nan | 0.6667 | 0.0 | 0.6667 | 0.6667 | 18.9733 | ### Framework versions - Transformers 4.28.0 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.13.3
1,376
[ [ -0.02685546875, -0.037689208984375, -0.0008335113525390625, 0.028900146484375, -0.0278472900390625, -0.01373291015625, 0.0003230571746826172, -0.00937652587890625, 0.01436614990234375, 0.045806884765625, -0.052459716796875, -0.06292724609375, -0.053253173828125, 0.0150604248046875, -0.022491455078125, 0.08209228515625, -0.00084686279296875, 0.0230560302734375, 0.0115814208984375, -0.013214111328125, -0.02001953125, -0.0350341796875, -0.053436279296875, -0.0345458984375, 0.013397216796875, 0.0423583984375, 0.0543212890625, 0.06561279296875, 0.03631591796875, 0.0198211669921875, -0.0203094482421875, 0.01457977294921875, -0.0231781005859375, -0.02197265625, 0.00215911865234375, -0.027008056640625, -0.054840087890625, -0.0189361572265625, 0.05133056640625, 0.03271484375, -0.0250244140625, 0.051300048828125, 0.0009794235229492188, 0.039398193359375, -0.04290771484375, 0.0082855224609375, -0.032867431640625, 0.0203094482421875, -0.01947021484375, -0.0287322998046875, -0.02606201171875, -0.01462554931640625, -0.0221099853515625, -0.0303497314453125, 0.021881103515625, 0.00820159912109375, 0.0933837890625, 0.0218353271484375, -0.046630859375, -0.0014009475708007812, -0.061065673828125, 0.060272216796875, -0.06494140625, 0.0277099609375, 0.044525146484375, 0.03924560546875, 0.00757598876953125, -0.042144775390625, -0.032958984375, 0.0146484375, -0.007160186767578125, 0.01210784912109375, 0.0025653839111328125, -0.002727508544921875, 0.05419921875, 0.032867431640625, -0.05126953125, -0.0023860931396484375, -0.054718017578125, -0.02117919921875, 0.04156494140625, 0.0343017578125, 0.013427734375, -0.0207061767578125, -0.033294677734375, -0.002155303955078125, -0.037200927734375, 0.01102447509765625, 0.05291748046875, 0.02581787109375, -0.05096435546875, 0.052215576171875, -0.0312042236328125, 0.0537109375, 0.00579833984375, -0.03387451171875, 0.040863037109375, -0.00479888916015625, -0.031524658203125, 0.005214691162109375, 0.057891845703125, 0.03717041015625, 0.015838623046875, 0.0125885009765625, -0.00969696044921875, -0.0215606689453125, 0.005901336669921875, -0.0775146484375, -0.00384521484375, 0.0174560546875, -0.041046142578125, -0.0362548828125, 0.0115814208984375, -0.0516357421875, 0.01056671142578125, -0.025054931640625, 0.0217742919921875, -0.03607177734375, -0.027130126953125, 0.008026123046875, 0.005313873291015625, 0.036895751953125, -0.00015342235565185547, -0.07550048828125, 0.034759521484375, 0.0189056396484375, 0.046905517578125, 0.01580810546875, -0.0288543701171875, -0.00984954833984375, 0.0214996337890625, -0.0205841064453125, 0.047821044921875, -0.00780487060546875, -0.038970947265625, -0.01352691650390625, 0.0140838623046875, -0.0125579833984375, -0.034637451171875, 0.07025146484375, -0.0206146240234375, 0.0186004638671875, -0.005008697509765625, -0.0269012451171875, -0.0279693603515625, 0.030426025390625, -0.048095703125, 0.09173583984375, 0.01517486572265625, -0.0550537109375, 0.035858154296875, -0.04803466796875, -0.01837158203125, -0.013824462890625, -0.004512786865234375, -0.061248779296875, -0.01690673828125, 0.0135498046875, 0.0302276611328125, -0.01788330078125, 0.01148223876953125, -0.0173187255859375, -0.041839599609375, 0.007724761962890625, -0.041839599609375, 0.061737060546875, 0.027008056640625, -0.0255279541015625, 0.01068115234375, -0.103271484375, 0.02667236328125, 0.0095672607421875, -0.02374267578125, 0.01239776611328125, -0.0292510986328125, 0.0362548828125, 0.030120849609375, 0.0211181640625, -0.033172607421875, 0.0030059814453125, -0.0465087890625, 0.0141448974609375, 0.04486083984375, 0.005916595458984375, 0.009552001953125, -0.032745361328125, 0.0279388427734375, 0.0251922607421875, 0.0257568359375, 0.006649017333984375, -0.0263671875, -0.0687255859375, -0.016143798828125, 0.0216522216796875, 0.0338134765625, -0.0255279541015625, 0.0245361328125, -0.007305145263671875, -0.054931640625, -0.0208740234375, 0.021881103515625, 0.0258026123046875, 0.0287322998046875, 0.040283203125, 0.002910614013671875, -0.051177978515625, -0.08697509765625, -0.01519012451171875, 0.01053619384765625, 0.017303466796875, 0.0079345703125, 0.050048828125, -0.01451873779296875, 0.054901123046875, -0.034271240234375, -0.01441192626953125, -0.02972412109375, 0.00937652587890625, 0.039215087890625, 0.0498046875, 0.049072265625, -0.049774169921875, -0.049774169921875, -0.0020389556884765625, -0.043792724609375, 0.005840301513671875, -0.01094818115234375, -0.0153045654296875, 0.010650634765625, 0.00965118408203125, -0.031463623046875, 0.05157470703125, 0.0283660888671875, -0.032867431640625, 0.04449462890625, -0.01593017578125, 0.004451751708984375, -0.11767578125, 0.011260986328125, -0.008514404296875, -0.00875091552734375, -0.0267181396484375, 0.0013523101806640625, 0.0156402587890625, -0.01053619384765625, -0.04803466796875, 0.058837890625, -0.0211181640625, 0.016998291015625, -0.021820068359375, -0.03533935546875, -0.00002193450927734375, 0.063720703125, 0.010650634765625, 0.051300048828125, 0.046600341796875, -0.042724609375, 0.0170135498046875, 0.03265380859375, -0.01409149169921875, 0.034088134765625, -0.06512451171875, 0.007717132568359375, 0.0090179443359375, -0.019561767578125, -0.055267333984375, -0.025634765625, 0.033843994140625, -0.040496826171875, 0.019683837890625, -0.0156097412109375, -0.03271484375, -0.020355224609375, -0.0109100341796875, 0.026824951171875, 0.037384033203125, -0.0305023193359375, 0.046905517578125, -0.0162506103515625, 0.024627685546875, -0.052215576171875, -0.050048828125, -0.0205078125, -0.0252685546875, -0.0266876220703125, 0.006488800048828125, 0.00453948974609375, 0.00566864013671875, -0.01279449462890625, -0.0160980224609375, -0.023956298828125, -0.00720977783203125, 0.04541015625, 0.016082763671875, -0.0137939453125, -0.031494140625, 0.0124664306640625, -0.0244598388671875, 0.0080108642578125, 0.0176849365234375, 0.04730224609375, 0.0006489753723144531, -0.0338134765625, -0.05755615234375, 0.023681640625, 0.0474853515625, -0.01177215576171875, 0.0828857421875, 0.0711669921875, -0.037017822265625, -0.01329803466796875, -0.032073974609375, -0.006866455078125, -0.03448486328125, 0.044769287109375, -0.03790283203125, -0.01427459716796875, 0.050567626953125, -0.005428314208984375, -0.01261138916015625, 0.0616455078125, 0.04443359375, 0.02020263671875, 0.101318359375, 0.033843994140625, 0.006999969482421875, 0.0032405853271484375, -0.04913330078125, 0.00838470458984375, -0.05902099609375, -0.039642333984375, -0.040435791015625, -0.0098419189453125, -0.049468994140625, 0.006183624267578125, 0.00812530517578125, 0.01314544677734375, -0.06964111328125, 0.024627685546875, -0.024383544921875, 0.0297698974609375, 0.041229248046875, 0.022613525390625, 0.0029964447021484375, 0.008270263671875, -0.0259552001953125, -0.00909423828125, -0.05255126953125, -0.0428466796875, 0.0972900390625, 0.0242767333984375, 0.045928955078125, 0.0181121826171875, 0.048095703125, -0.0021839141845703125, 0.0148773193359375, -0.037933349609375, 0.033233642578125, 0.0019330978393554688, -0.062408447265625, 0.001995086669921875, -0.0263519287109375, -0.042205810546875, 0.001407623291015625, -0.027374267578125, -0.03955078125, 0.0079193115234375, 0.0011425018310546875, -0.03759765625, 0.03839111328125, -0.0355224609375, 0.07440185546875, -0.018310546875, -0.02789306640625, 0.0034809112548828125, -0.031768798828125, 0.017852783203125, 0.007099151611328125, 0.003505706787109375, -0.00626373291015625, 0.00475311279296875, 0.0625, -0.052154541015625, 0.05377197265625, -0.006374359130859375, 0.0297088623046875, 0.01462554931640625, -0.01192474365234375, 0.03448486328125, 0.014984130859375, -0.0115509033203125, 0.00897216796875, 0.013397216796875, -0.0560302734375, -0.0416259765625, 0.043914794921875, -0.09234619140625, -0.018890380859375, -0.050567626953125, -0.0309600830078125, -0.008453369140625, 0.027099609375, 0.045745849609375, 0.0550537109375, 0.004451751708984375, 0.0167083740234375, 0.022491455078125, -0.0096893310546875, 0.0175933837890625, 0.041229248046875, -0.0133056640625, -0.051361083984375, 0.062164306640625, 0.006305694580078125, 0.0197906494140625, 0.00771331787109375, 0.0028553009033203125, -0.0298309326171875, -0.0443115234375, -0.0458984375, 0.019378662109375, -0.0513916015625, -0.0265045166015625, -0.0318603515625, -0.041107177734375, -0.028900146484375, 0.002777099609375, -0.036773681640625, -0.0216522216796875, -0.024322509765625, -0.01297760009765625, 0.039215087890625, 0.040924072265625, 0.001983642578125, 0.044219970703125, -0.056671142578125, 0.00670623779296875, 0.002460479736328125, 0.0340576171875, -0.0004787445068359375, -0.07159423828125, -0.039276123046875, 0.01345062255859375, -0.043212890625, -0.06134033203125, 0.059356689453125, 0.0105438232421875, 0.036041259765625, 0.051849365234375, -0.006961822509765625, 0.068603515625, -0.0211029052734375, 0.05792236328125, 0.01055908203125, -0.046783447265625, 0.03289794921875, -0.0255279541015625, 0.02215576171875, 0.036102294921875, 0.05035400390625, -0.0197296142578125, -0.0099639892578125, -0.07049560546875, -0.067138671875, 0.062255859375, 0.022491455078125, 0.0124969482421875, 0.00125885009765625, 0.0182342529296875, -0.0010023117065429688, 0.015411376953125, -0.0640869140625, -0.05560302734375, -0.026947021484375, -0.0216522216796875, 0.0081939697265625, -0.0345458984375, -0.004291534423828125, -0.03912353515625, 0.07861328125, 0.00823974609375, 0.0168609619140625, -0.0006628036499023438, 0.00553131103515625, -0.008026123046875, 0.019073486328125, 0.0679931640625, 0.044158935546875, -0.0400390625, -0.005237579345703125, 0.03302001953125, -0.04931640625, 0.009674072265625, -0.0009222030639648438, -0.0175933837890625, 0.0097503662109375, 0.020111083984375, 0.077880859375, 0.0197906494140625, -0.02496337890625, 0.01959228515625, 0.003231048583984375, -0.026397705078125, -0.04803466796875, 0.00835418701171875, -0.0108642578125, 0.0122222900390625, 0.0255279541015625, 0.03765869140625, 0.00519561767578125, -0.0162353515625, 0.00479888916015625, 0.007305145263671875, -0.023284912109375, -0.0158233642578125, 0.060150146484375, -0.0104827880859375, -0.03448486328125, 0.043426513671875, -0.012939453125, -0.0311737060546875, 0.06146240234375, 0.053924560546875, 0.052093505859375, -0.023193359375, 0.005474090576171875, 0.07275390625, 0.00963592529296875, -0.01351165771484375, 0.04168701171875, 0.00634765625, -0.044677734375, -0.0229644775390625, -0.061065673828125, -0.0240020751953125, 0.0267333984375, -0.07373046875, 0.0489501953125, -0.03515625, -0.021636962890625, -0.004634857177734375, 0.01328277587890625, -0.053131103515625, 0.03973388671875, -0.0006108283996582031, 0.080078125, -0.06646728515625, 0.06256103515625, 0.044464111328125, -0.042205810546875, -0.10113525390625, -0.0266876220703125, -0.00928497314453125, -0.06591796875, 0.054779052734375, 0.004924774169921875, 0.00658416748046875, 0.01079559326171875, -0.028594970703125, -0.0716552734375, 0.0819091796875, 0.014495849609375, -0.02288818359375, 0.01593017578125, 0.045135498046875, 0.038665771484375, -0.00943756103515625, 0.05926513671875, 0.007274627685546875, 0.027130126953125, 0.02191162109375, -0.0655517578125, -0.0089569091796875, -0.04376220703125, -0.0020275115966796875, 0.0125274658203125, -0.053436279296875, 0.0799560546875, -0.001983642578125, 0.0055694580078125, 0.0265350341796875, 0.04376220703125, 0.0180511474609375, 0.023529052734375, 0.006488800048828125, 0.059478759765625, 0.027801513671875, -0.0036163330078125, 0.06024169921875, -0.046142578125, 0.0518798828125, 0.078369140625, -0.00458526611328125, 0.05731201171875, 0.03204345703125, -0.02392578125, 0.035247802734375, 0.064697265625, -0.0148162841796875, 0.02001953125, -0.012237548828125, -0.0031280517578125, -0.0254058837890625, 0.00856781005859375, -0.049468994140625, 0.03875732421875, 0.004985809326171875, -0.04656982421875, -0.03155517578125, -0.003940582275390625, 0.003582000732421875, 0.003536224365234375, -0.0374755859375, 0.037353515625, -0.0186309814453125, -0.01511383056640625, 0.07012939453125, 0.0217132568359375, 0.03515625, -0.05291748046875, -0.01092529296875, -0.01003265380859375, 0.01885986328125, -0.0364990234375, -0.038787841796875, 0.03936767578125, 0.0020503997802734375, -0.0205535888671875, -0.005687713623046875, 0.02825927734375, -0.0285797119140625, -0.07611083984375, -0.00443267822265625, 0.0307769775390625, 0.01751708984375, 0.010009765625, -0.0631103515625, -0.00374603271484375, -0.0005354881286621094, -0.02496337890625, 0.0221710205078125, 0.0137939453125, 0.0031452178955078125, 0.046051025390625, 0.0477294921875, 0.015777587890625, 0.00432586669921875, 0.00742340087890625, 0.05010986328125, -0.0526123046875, -0.034576416015625, -0.0701904296875, 0.030609130859375, -0.019256591796875, -0.05010986328125, 0.073974609375, 0.07733154296875, 0.057159423828125, -0.021514892578125, 0.034210205078125, 0.014801025390625, 0.050628662109375, -0.039520263671875, 0.06500244140625, -0.038421630859375, -0.0009417533874511719, -0.00970458984375, -0.055877685546875, -0.01204681396484375, 0.05499267578125, -0.035430908203125, 0.0174102783203125, 0.036346435546875, 0.07720947265625, -0.00543212890625, 0.0044097900390625, 0.0260772705078125, 0.006931304931640625, -0.0129241943359375, 0.03424072265625, 0.034820556640625, -0.0693359375, 0.032501220703125, -0.04803466796875, 0.01166534423828125, 0.001800537109375, -0.044677734375, -0.0799560546875, -0.03533935546875, -0.0252227783203125, -0.0313720703125, -0.008544921875, 0.09649658203125, 0.05169677734375, -0.07073974609375, -0.036834716796875, 0.006900787353515625, 0.00518035888671875, -0.0160980224609375, -0.016998291015625, 0.037811279296875, 0.0004010200500488281, -0.061614990234375, -0.01403045654296875, -0.0081634521484375, 0.0204315185546875, -0.0032100677490234375, -0.0169830322265625, -0.02020263671875, -0.0007739067077636719, 0.017242431640625, 0.01419830322265625, -0.0290374755859375, -0.00677490234375, 0.01122283935546875, -0.01081085205078125, 0.01548004150390625, 0.01251983642578125, -0.02581787109375, 0.00922393798828125, 0.006160736083984375, 0.01125335693359375, 0.03424072265625, -0.002376556396484375, 0.01154327392578125, -0.04791259765625, 0.036224365234375, 0.005863189697265625, 0.02459716796875, 0.0122222900390625, -0.025848388671875, 0.026214599609375, 0.02044677734375, -0.029541015625, -0.0751953125, -0.006839752197265625, -0.07928466796875, 0.01558685302734375, 0.09429931640625, 0.018035888671875, -0.040863037109375, -0.0012416839599609375, -0.03643798828125, 0.0254364013671875, -0.0143890380859375, 0.033233642578125, 0.052490234375, -0.004787445068359375, -0.01122283935546875, -0.049163818359375, 0.039398193359375, 0.0222320556640625, -0.03466796875, -0.031280517578125, -0.0027065277099609375, 0.04266357421875, -0.0018606185913085938, 0.02752685546875, -0.01087188720703125, 0.030731201171875, 0.00865936279296875, 0.016204833984375, -0.0400390625, -0.0091552734375, -0.0087738037109375, 0.01470947265625, 0.01131439208984375, -0.023834228515625 ] ]
LoneStriker/stabilityai_japanese-stablelm-instruct-gamma-7b-8.0bpw-h6-exl2
2023-10-28T20:44:20.000Z
[ "transformers", "safetensors", "mistral", "text-generation", "japanese-stablelm", "causal-lm", "ja", "arxiv:2310.06825", "license:apache-2.0", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
LoneStriker
null
null
LoneStriker/stabilityai_japanese-stablelm-instruct-gamma-7b-8.0bpw-h6-exl2
0
2
transformers
2023-10-28T20:43:59
--- language: - ja tags: - japanese-stablelm - causal-lm pipeline_tag: text-generation license: apache-2.0 extra_gated_fields: Name: text Email: text Country: text Organization or Affiliation: text I allow Stability AI to contact me about information related to its models and research: checkbox --- # Japanese Stable LM Instruct Gamma 7B ## Model Description This is a 7B-parameter decoder-only Japanese language model fine-tuned on instruction-following datasets, built on top of the base model [Japanese Stable LM Base Gamma 7B](https://huggingface.co/stabilityai/japanese-stablelm-base-gamma-7b). *If you are in search of a smaller model, please check [Japanese StableLM-3B-4E1T Instruct](https://huggingface.co/stabilityai/japanese-stablelm-3b-4e1t-base/blob/main/README.md).* ## Usage Ensure you are using Transformers 4.34.0 or newer. ```python import torch from transformers import AutoTokenizer, AutoModelForCausalLM tokenizer = AutoTokenizer.from_pretrained("stabilityai/japanese-stablelm-instruct-gamma-7b") model = AutoModelForCausalLM.from_pretrained( "stabilityai/japanese-stablelm-instruct-gamma-7b", torch_dtype="auto", ) model.eval() if torch.cuda.is_available(): model = model.to("cuda") def build_prompt(user_query, inputs="", sep="\n\n### "): sys_msg = "以下は、タスクを説明する指示と、文脈のある入力の組み合わせです。要求を適切に満たす応答を書きなさい。" p = sys_msg roles = ["指示", "応答"] msgs = [": \n" + user_query, ": \n"] if inputs: roles.insert(1, "入力") msgs.insert(1, ": \n" + inputs) for role, msg in zip(roles, msgs): p += sep + role + msg return p # Infer with prompt without any additional input user_inputs = { "user_query": "与えられたことわざの意味を小学生でも分かるように教えてください。", "inputs": "情けは人のためならず" } prompt = build_prompt(**user_inputs) input_ids = tokenizer.encode( prompt, add_special_tokens=False, return_tensors="pt" ) tokens = model.generate( input_ids.to(device=model.device), max_new_tokens=256, temperature=1, top_p=0.95, do_sample=True, ) out = tokenizer.decode(tokens[0][input_ids.shape[1]:], skip_special_tokens=True).strip() print(out) ``` ## Model Details * **Developed by**: [Stability AI](https://stability.ai/) * **Model type**: `Japanese Stable LM Instruct Gamma 7B` model is an auto-regressive language model based on the transformer decoder architecture. * **Language(s)**: Japanese * **License**: This model is licensed under [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0). * **Contact**: For questions and comments about the model, please join [Stable Community Japan](https://discord.gg/StableJP). For future announcements / information about Stability AI models, research, and events, please follow https://twitter.com/StabilityAI_JP. ### Model Architecture For details, please see Mistral AI's [paper](https://arxiv.org/abs/2310.06825) and [release blog post](https://mistral.ai/news/announcing-mistral-7b/). ### Training Datasets - [Japanese translation of the Databricks Dolly-15k dataset](https://huggingface.co/datasets/kunishou/databricks-dolly-15k-ja) - [Japanese translation of the subset of the Anthropic HH dataset](https://huggingface.co/datasets/fujiki/japanese_hh-rlhf-49k) - [Wikinews](https://ja.wikinews.org/wi) [subset](https://huggingface.co/datasets/fujiki/llm-japanese-dataset_wikinews) of the [izumi-lab/llm-japanese-dataset](https://huggingface.co/datasets/izumi-lab/llm-japanese-dataset) ## Use and Limitations ### Intended Use The model is intended to be used by all individuals as a foundational model for application-specific fine-tuning without strict limitations on commercial use. ### Limitations and bias The pre-training dataset may have contained offensive or inappropriate content even after applying data cleansing filters which can be reflected in the model-generated text. We recommend users exercise reasonable caution when using these models in production systems. Do not use the model for any applications that may cause harm or distress to individuals or groups. ## Credits The fine-tuning was carried out by [Fujiki Nakamura](https://huggingface.co/fujiki). Other aspects, including data preparation and evaluation, were handled by the Language Team of Stability AI Japan, notably [Meng Lee](https://huggingface.co/leemeng), [Makoto Shing](https://huggingface.co/mkshing), [Paul McCann](https://huggingface.co/polm-stability), [Naoki Orii](https://huggingface.co/mrorii), and [Takuya Akiba](https://huggingface.co/iwiwi). ## Acknowledgements This model is based on Mistral-7B-v0.1 released by the Mistral AI team. We are grateful to the Mistral AI team for providing such an excellent base model. We are grateful for the contributions of the EleutherAI Polyglot-JA team in helping us to collect a large amount of pre-training data in Japanese. Polyglot-JA members includes Hyunwoong Ko (Project Lead), Fujiki Nakamura (originally started this project when he commited to the Polyglot team), Yunho Mo, Minji Jung, KeunSeok Im, and Su-Kyeong Jang. We are also appreciative of [AI Novelist/Sta (Bit192, Inc.)](https://ai-novel.com/index.php) and the numerous contributors from [Stable Community Japan](https://discord.gg/VPrcE475HB) for assisting us in gathering a large amount of high-quality Japanese textual data for model training.
5,342
[ [ -0.028167724609375, -0.06396484375, 0.0005145072937011719, 0.01593017578125, -0.0211181640625, -0.02386474609375, -0.0204925537109375, -0.0290985107421875, 0.004909515380859375, 0.0262908935546875, -0.036041259765625, -0.04632568359375, -0.042327880859375, 0.00896453857421875, -0.00841522216796875, 0.0780029296875, -0.00740814208984375, 0.004550933837890625, -0.0046539306640625, -0.01409149169921875, -0.040130615234375, -0.03790283203125, -0.06304931640625, -0.03240966796875, 0.0150299072265625, 0.01056671142578125, 0.063232421875, 0.056671142578125, 0.029632568359375, 0.0260162353515625, 0.0030765533447265625, -0.0007715225219726562, -0.0462646484375, 0.0127716064453125, 0.0107269287109375, -0.04376220703125, -0.0455322265625, -0.0151214599609375, 0.0426025390625, 0.0173797607421875, -0.015716552734375, 0.015899658203125, -0.00682830810546875, 0.02294921875, -0.041259765625, 0.034454345703125, -0.0239715576171875, -0.01210784912109375, -0.0255889892578125, 0.021728515625, -0.033905029296875, -0.01751708984375, -0.018157958984375, -0.054534912109375, 0.0101776123046875, -0.003360748291015625, 0.09454345703125, 0.0254058837890625, -0.007434844970703125, 0.005767822265625, -0.026947021484375, 0.041778564453125, -0.07171630859375, 0.033935546875, 0.048675537109375, 0.01102447509765625, -0.0263519287109375, -0.0513916015625, -0.03582763671875, -0.026611328125, -0.004619598388671875, 0.0201263427734375, -0.004375457763671875, 0.00891876220703125, 0.029388427734375, 0.0209808349609375, -0.04412841796875, 0.0093994140625, -0.035430908203125, -0.0215606689453125, 0.051513671875, 0.0218048095703125, 0.0394287109375, -0.0234375, -0.01346588134765625, -0.0277862548828125, -0.0352783203125, 0.0217437744140625, 0.0154571533203125, 0.0210723876953125, -0.04888916015625, 0.03350830078125, -0.0066070556640625, 0.04315185546875, 0.0212249755859375, -0.0213470458984375, 0.029449462890625, -0.01708984375, -0.0146026611328125, -0.0023288726806640625, 0.092041015625, 0.0195159912109375, -0.0004322528839111328, 0.00673675537109375, -0.01337432861328125, 0.01541900634765625, -0.0013494491577148438, -0.0634765625, -0.020111083984375, 0.009613037109375, -0.036346435546875, -0.02447509765625, 0.020294189453125, -0.05487060546875, -0.0222320556640625, 0.0064544677734375, 0.03143310546875, -0.037750244140625, -0.044952392578125, 0.016326904296875, -0.005146026611328125, 0.0311126708984375, 0.011077880859375, -0.060638427734375, 0.0258941650390625, 0.0223388671875, 0.052703857421875, 0.0013570785522460938, -0.03857421875, -0.0175018310546875, 0.01018524169921875, -0.01502227783203125, 0.01104736328125, -0.021453857421875, -0.048919677734375, -0.0267486572265625, 0.0203094482421875, -0.0097198486328125, -0.0224456787109375, 0.03289794921875, -0.0192718505859375, 0.03594970703125, -0.00560760498046875, -0.023345947265625, -0.0128631591796875, 0.01666259765625, -0.048553466796875, 0.0909423828125, 0.0191192626953125, -0.07122802734375, 0.0025348663330078125, -0.0408935546875, -0.020538330078125, -0.005878448486328125, -0.01261138916015625, -0.04937744140625, -0.00937652587890625, 0.0220489501953125, 0.024871826171875, -0.02850341796875, 0.037689208984375, -0.025665283203125, -0.0193634033203125, 0.0008630752563476562, -0.0330810546875, 0.084228515625, 0.01049041748046875, -0.048004150390625, 0.003993988037109375, -0.049224853515625, -0.010772705078125, 0.023681640625, -0.01410675048828125, -0.01137542724609375, -0.0238800048828125, -0.0009632110595703125, 0.0161895751953125, 0.036712646484375, -0.023162841796875, 0.01837158203125, -0.03253173828125, 0.014739990234375, 0.049102783203125, -0.00408935546875, 0.0205535888671875, -0.0251312255859375, 0.061492919921875, 0.02154541015625, 0.0264434814453125, -0.01239776611328125, -0.051116943359375, -0.06817626953125, -0.01404571533203125, 0.0140838623046875, 0.04010009765625, -0.06524658203125, 0.041656494140625, -0.015869140625, -0.054901123046875, -0.053802490234375, -0.00965118408203125, 0.0438232421875, 0.049041748046875, 0.023345947265625, -0.018310546875, -0.043365478515625, -0.055755615234375, 0.00966644287109375, -0.031768798828125, 0.025054931640625, 0.0009312629699707031, 0.032623291015625, -0.03985595703125, 0.053680419921875, -0.0271148681640625, -0.0015916824340820312, -0.019805908203125, 0.004589080810546875, 0.039947509765625, 0.052825927734375, 0.0499267578125, -0.0513916015625, -0.03936767578125, 0.0143890380859375, -0.0733642578125, -0.00012946128845214844, 0.01035308837890625, -0.029571533203125, 0.027587890625, 0.0231170654296875, -0.07464599609375, 0.031982421875, 0.03900146484375, -0.034698486328125, 0.03656005859375, -0.0203704833984375, 0.0136566162109375, -0.112060546875, 0.02227783203125, 0.00933837890625, -0.0176544189453125, -0.04132080078125, 0.0158843994140625, 0.0028438568115234375, -0.00899505615234375, -0.0299072265625, 0.060302734375, -0.0399169921875, 0.023895263671875, -0.0137939453125, -0.0045318603515625, -0.00720977783203125, 0.03350830078125, 0.001194000244140625, 0.05133056640625, 0.06378173828125, -0.045867919921875, 0.0265960693359375, 0.0245513916015625, 0.0009450912475585938, 0.0025806427001953125, -0.0606689453125, 0.0026645660400390625, -0.0175018310546875, 0.01457977294921875, -0.050811767578125, -0.0274810791015625, 0.048126220703125, -0.054290771484375, 0.034759521484375, -0.022918701171875, -0.0237579345703125, -0.032470703125, -0.019012451171875, 0.02801513671875, 0.05609130859375, -0.0260162353515625, 0.045318603515625, 0.032318115234375, -0.00588226318359375, -0.0662841796875, -0.050567626953125, -0.0193328857421875, -0.0233306884765625, -0.044219970703125, 0.0099334716796875, -0.006290435791015625, -0.011749267578125, 0.002742767333984375, -0.006687164306640625, -0.0039215087890625, 0.01397705078125, 0.032806396484375, 0.040740966796875, -0.01910400390625, -0.0253753662109375, 0.0030345916748046875, -0.025146484375, 0.00592041015625, -0.003765106201171875, 0.051849365234375, -0.027923583984375, -0.004199981689453125, -0.050140380859375, -0.00818634033203125, 0.05810546875, -0.0156097412109375, 0.07501220703125, 0.06976318359375, -0.04058837890625, 0.00909423828125, -0.0268402099609375, -0.0152435302734375, -0.03619384765625, 0.037841796875, -0.03240966796875, -0.049468994140625, 0.06304931640625, 0.0281829833984375, 0.0103607177734375, 0.0640869140625, 0.048065185546875, 0.0162811279296875, 0.0843505859375, 0.048675537109375, -0.039398193359375, 0.035308837890625, -0.03839111328125, 0.0028438568115234375, -0.04205322265625, -0.02313232421875, -0.0408935546875, 0.0014486312866210938, -0.054473876953125, -0.0223388671875, 0.0254058837890625, 0.01776123046875, -0.044342041015625, 0.025146484375, -0.037567138671875, 0.0127716064453125, 0.025299072265625, 0.0098419189453125, 0.0013990402221679688, -0.01031494140625, 0.0005240440368652344, -0.0010175704956054688, -0.052032470703125, -0.0223541259765625, 0.0648193359375, 0.042327880859375, 0.08367919921875, 0.00296783447265625, 0.05377197265625, 0.0006742477416992188, 0.019073486328125, -0.042572021484375, 0.033355712890625, -0.006687164306640625, -0.04412841796875, -0.0251617431640625, -0.049774169921875, -0.0771484375, 0.0149078369140625, -0.00949859619140625, -0.04833984375, 0.0091552734375, 0.006267547607421875, -0.018096923828125, 0.00626373291015625, -0.04888916015625, 0.07733154296875, -0.030914306640625, -0.023468017578125, -0.0004754066467285156, -0.054046630859375, 0.032196044921875, 0.01410675048828125, 0.01348876953125, -0.007434844970703125, 0.004428863525390625, 0.06219482421875, -0.0380859375, 0.07037353515625, -0.03851318359375, 0.0030879974365234375, 0.01342010498046875, -0.006801605224609375, 0.0303192138671875, 0.02532958984375, -0.0292816162109375, 0.0223388671875, 0.0109405517578125, -0.0258026123046875, -0.029815673828125, 0.05108642578125, -0.10601806640625, -0.0478515625, -0.037750244140625, -0.0272064208984375, 0.007598876953125, 0.042236328125, 0.048858642578125, 0.03125, 0.005710601806640625, 0.0159759521484375, 0.04266357421875, -0.00807952880859375, 0.03057861328125, 0.0306549072265625, -0.026092529296875, -0.049041748046875, 0.056610107421875, 0.0053863525390625, 0.00726318359375, 0.0113677978515625, 0.0161285400390625, -0.0316162109375, -0.0259857177734375, -0.05230712890625, 0.0333251953125, -0.04290771484375, -0.027069091796875, -0.038665771484375, -0.0289459228515625, -0.040374755859375, 0.0013484954833984375, -0.037353515625, -0.019622802734375, -0.026885986328125, -0.01070404052734375, 0.0369873046875, 0.03436279296875, 0.01296234130859375, 0.0240478515625, -0.06341552734375, 0.0340576171875, -0.0184783935546875, 0.0173797607421875, -0.005458831787109375, -0.05230712890625, -0.040435791015625, 0.0262603759765625, -0.016632080078125, -0.0606689453125, 0.0390625, 0.006687164306640625, 0.06304931640625, 0.0240936279296875, 0.01519775390625, 0.057464599609375, -0.0029621124267578125, 0.07379150390625, 0.0224456787109375, -0.0618896484375, 0.046478271484375, -0.039764404296875, 0.03851318359375, 0.048919677734375, 0.039398193359375, -0.0274505615234375, -0.038848876953125, -0.054229736328125, -0.06768798828125, 0.0704345703125, 0.007152557373046875, 0.0113677978515625, 0.004673004150390625, 0.051666259765625, 0.00771331787109375, 0.002056121826171875, -0.078125, -0.045379638671875, -0.027587890625, -0.0400390625, 0.0077972412109375, -0.00031828880310058594, 0.00218963623046875, -0.033660888671875, 0.07647705078125, -0.002685546875, 0.0159454345703125, 0.01158905029296875, -0.0123138427734375, -0.0155029296875, -0.014739990234375, 0.027801513671875, 0.037750244140625, -0.00946044921875, -0.0096893310546875, 0.01222991943359375, -0.060821533203125, 0.019439697265625, 0.0204620361328125, -0.036468505859375, 0.002635955810546875, 0.01248931884765625, 0.0843505859375, 0.001804351806640625, -0.03167724609375, 0.031158447265625, -0.029632568359375, 0.001873016357421875, -0.0257415771484375, 0.02154541015625, 0.000005364418029785156, 0.003265380859375, 0.00433349609375, -0.002899169921875, -0.014739990234375, -0.0267486572265625, 0.004116058349609375, 0.01091766357421875, -0.0200653076171875, -0.03509521484375, 0.06964111328125, 0.00848388671875, -0.008209228515625, 0.0657958984375, -0.007762908935546875, -0.0276947021484375, 0.05328369140625, 0.056549072265625, 0.063232421875, -0.03240966796875, 0.01061248779296875, 0.049560546875, 0.0252227783203125, -0.032562255859375, 0.0252838134765625, 0.0174560546875, -0.0635986328125, -0.003631591796875, -0.041290283203125, -0.01299285888671875, 0.0177154541015625, -0.05938720703125, 0.04925537109375, -0.048736572265625, -0.03375244140625, -0.036041259765625, 0.00829315185546875, -0.03033447265625, 0.021575927734375, 0.00719451904296875, 0.053955078125, -0.06549072265625, 0.07196044921875, 0.0755615234375, -0.057373046875, -0.07073974609375, -0.004741668701171875, -0.01399993896484375, -0.050079345703125, 0.01456451416015625, 0.01512908935546875, -0.005157470703125, 0.005138397216796875, -0.047210693359375, -0.071044921875, 0.09112548828125, 0.051849365234375, -0.02703857421875, -0.0121307373046875, -0.004322052001953125, 0.043609619140625, -0.006725311279296875, 0.034423828125, 0.03741455078125, 0.036224365234375, -0.021514892578125, -0.07269287109375, 0.0104827880859375, -0.051483154296875, 0.0023956298828125, 0.01287078857421875, -0.07501220703125, 0.06707763671875, -0.0004749298095703125, -0.005817413330078125, 0.00997161865234375, 0.060791015625, 0.04766845703125, 0.014007568359375, 0.0232696533203125, 0.053558349609375, 0.052337646484375, -0.00909423828125, 0.078125, -0.043304443359375, 0.0408935546875, 0.056671142578125, 0.016632080078125, 0.0528564453125, 0.01367950439453125, -0.009613037109375, 0.036956787109375, 0.05419921875, -0.00975799560546875, 0.0279693603515625, -0.01351165771484375, -0.00217437744140625, -0.0094757080078125, 0.002170562744140625, -0.05224609375, 0.0247344970703125, 0.03411865234375, -0.0129547119140625, -0.002742767333984375, 0.0076446533203125, 0.024169921875, -0.018310546875, -0.0176849365234375, 0.044708251953125, 0.02362060546875, -0.046173095703125, 0.07769775390625, 0.016021728515625, 0.058258056640625, -0.059295654296875, 0.0147857666015625, -0.0236663818359375, 0.01290130615234375, -0.017425537109375, -0.04193115234375, 0.002620697021484375, 0.0018939971923828125, -0.02581787109375, 0.0011548995971679688, 0.04718017578125, -0.03509521484375, -0.04107666015625, 0.023406982421875, 0.0251312255859375, 0.01308441162109375, 0.0279693603515625, -0.07073974609375, 0.0252838134765625, 0.00628662109375, -0.028961181640625, 0.0178070068359375, 0.027191162109375, -0.01299285888671875, 0.051910400390625, 0.0291595458984375, 0.0037689208984375, 0.01113128662109375, 0.0125732421875, 0.058197021484375, -0.047943115234375, -0.039947509765625, -0.061981201171875, 0.058258056640625, 0.0110931396484375, -0.039947509765625, 0.066162109375, 0.042999267578125, 0.06597900390625, -0.0029430389404296875, 0.068603515625, -0.0233001708984375, -0.0023326873779296875, -0.03662109375, 0.06854248046875, -0.037628173828125, 0.004505157470703125, -0.0195465087890625, -0.055145263671875, -0.01201629638671875, 0.05474853515625, -0.0083770751953125, 0.0261688232421875, 0.03021240234375, 0.0673828125, -0.004253387451171875, -0.015380859375, 0.0164031982421875, 0.042510986328125, 0.02703857421875, 0.0380859375, 0.051849365234375, -0.0657958984375, 0.020233154296875, -0.03875732421875, -0.0156707763671875, -0.00742340087890625, -0.0361328125, -0.0634765625, -0.044189453125, -0.02471923828125, -0.0419921875, 0.0021305084228515625, 0.0787353515625, 0.0477294921875, -0.06134033203125, -0.03656005859375, -0.008392333984375, -0.0004143714904785156, -0.00577545166015625, -0.0187835693359375, 0.024261474609375, -0.016448974609375, -0.056610107421875, 0.0162353515625, 0.0003559589385986328, 0.012359619140625, -0.01499176025390625, -0.030487060546875, -0.002925872802734375, -0.025390625, 0.0205535888671875, 0.0279541015625, -0.050567626953125, -0.0018301010131835938, 0.005405426025390625, -0.022674560546875, 0.00695037841796875, 0.0170135498046875, -0.03558349609375, 0.034454345703125, 0.046173095703125, 0.047027587890625, 0.052886962890625, 0.01074981689453125, 0.04876708984375, -0.03076171875, 0.036651611328125, 0.005413055419921875, 0.04205322265625, 0.0204010009765625, -0.0460205078125, 0.0316162109375, 0.02886962890625, -0.037567138671875, -0.0565185546875, -0.006744384765625, -0.07342529296875, 0.0009965896606445312, 0.08929443359375, -0.0199737548828125, -0.041168212890625, 0.0041046142578125, -0.028839111328125, 0.04010009765625, -0.035888671875, 0.05548095703125, 0.04486083984375, -0.005474090576171875, -0.036285400390625, -0.0227508544921875, 0.035797119140625, 0.023193359375, -0.0635986328125, -0.0020732879638671875, 0.0382080078125, 0.02227783203125, 0.00937652587890625, 0.0623779296875, -0.0208587646484375, 0.03350830078125, 0.0013370513916015625, 0.01788330078125, -0.015899658203125, -0.01251220703125, -0.03436279296875, -0.01198577880859375, 0.0178985595703125, -0.0113372802734375 ] ]
trip2fun/hstv-cc-help_v01
2023-10-28T20:47:27.000Z
[ "transformers", "pytorch", "safetensors", "deberta", "text-classification", "autotrain", "en", "dataset:trip2fun/autotrain-data-hstv-cc-help_v01", "co2_eq_emissions", "endpoints_compatible", "region:us" ]
text-classification
trip2fun
null
null
trip2fun/hstv-cc-help_v01
0
2
transformers
2023-10-28T20:46:21
--- tags: - autotrain - text-classification language: - en widget: - text: "I love AutoTrain" datasets: - trip2fun/autotrain-data-hstv-cc-help_v01 co2_eq_emissions: emissions: 0.6136021183133442 --- # Model Trained Using AutoTrain - Problem type: Multi-class Classification - Model ID: 97985146964 - CO2 Emissions (in grams): 0.6136 ## Validation Metrics - Loss: 1.616 - Accuracy: 0.273 - Macro F1: 0.190 - Micro F1: 0.273 - Weighted F1: 0.153 - Macro Precision: 0.171 - Micro Precision: 0.273 - Weighted Precision: 0.129 - Macro Recall: 0.286 - Micro Recall: 0.273 - Weighted Recall: 0.273 ## Usage You can use cURL to access this model: ``` $ curl -X POST -H "Authorization: Bearer YOUR_API_KEY" -H "Content-Type: application/json" -d '{"inputs": "I love AutoTrain"}' https://api-inference.huggingface.co/models/trip2fun/autotrain-hstv-cc-help_v01-97985146964 ``` Or Python API: ``` from transformers import AutoModelForSequenceClassification, AutoTokenizer model = AutoModelForSequenceClassification.from_pretrained("trip2fun/autotrain-hstv-cc-help_v01-97985146964", use_auth_token=True) tokenizer = AutoTokenizer.from_pretrained("trip2fun/autotrain-hstv-cc-help_v01-97985146964", use_auth_token=True) inputs = tokenizer("I love AutoTrain", return_tensors="pt") outputs = model(**inputs) ```
1,310
[ [ -0.032135009765625, -0.0196533203125, 0.00730133056640625, 0.011322021484375, -0.00276947021484375, 0.004405975341796875, 0.0001970529556274414, -0.00799560546875, -0.00849151611328125, 0.01096343994140625, -0.0482177734375, -0.025909423828125, -0.057159423828125, -0.00983428955078125, -0.0231781005859375, 0.06298828125, -0.018890380859375, 0.011138916015625, 0.0055389404296875, -0.004528045654296875, -0.0208282470703125, -0.0633544921875, -0.05609130859375, -0.02423095703125, 0.01128387451171875, 0.017181396484375, 0.0187530517578125, 0.02947998046875, 0.036834716796875, 0.025482177734375, 0.004688262939453125, -0.004779815673828125, -0.019866943359375, -0.0265960693359375, 0.005237579345703125, -0.0322265625, -0.03399658203125, 0.0186920166015625, 0.050201416015625, 0.0269317626953125, -0.0099945068359375, 0.027252197265625, 0.00843048095703125, 0.0186614990234375, -0.037841796875, 0.03399658203125, -0.0311126708984375, 0.00847625732421875, 0.0187225341796875, -0.01068878173828125, -0.017333984375, 0.002559661865234375, 0.017333984375, -0.04541015625, 0.029205322265625, 0.0214691162109375, 0.10443115234375, 0.04718017578125, -0.023223876953125, -0.026947021484375, -0.03363037109375, 0.05279541015625, -0.059600830078125, 0.03173828125, 0.03265380859375, 0.0169219970703125, 0.00632476806640625, -0.05462646484375, -0.046905517578125, -0.002887725830078125, -0.0230865478515625, 0.02032470703125, 0.0093231201171875, -0.0026226043701171875, 0.0244140625, 0.04449462890625, -0.0531005859375, 0.00597381591796875, -0.025360107421875, -0.032073974609375, 0.0579833984375, 0.0293121337890625, 0.010101318359375, -0.029449462890625, -0.0355224609375, -0.03985595703125, -0.00769805908203125, 0.022125244140625, 0.033416748046875, 0.0180511474609375, -0.041015625, 0.034912109375, -0.02423095703125, 0.040740966796875, 0.00797271728515625, 0.0038433074951171875, 0.0445556640625, -0.015899658203125, -0.03314208984375, -0.008880615234375, 0.07421875, 0.0193328857421875, -0.01326751708984375, 0.0146331787109375, 0.005832672119140625, -0.004730224609375, -0.0035228729248046875, -0.07122802734375, -0.033294677734375, 0.02923583984375, -0.0237274169921875, -0.0262298583984375, 0.0251007080078125, -0.05206298828125, 0.016815185546875, -0.031463623046875, 0.04486083984375, -0.011810302734375, -0.041473388671875, 0.01416015625, -0.018585205078125, 0.03961181640625, 0.008392333984375, -0.0689697265625, 0.001979827880859375, 0.012725830078125, 0.06512451171875, -0.00830078125, -0.034271240234375, -0.00638580322265625, -0.0006041526794433594, 0.011077880859375, 0.041534423828125, -0.0008535385131835938, -0.0291748046875, -0.0190277099609375, 0.034210205078125, -0.043670654296875, -0.024383544921875, 0.02728271484375, -0.03326416015625, 0.032012939453125, 0.003238677978515625, -0.042388916015625, -0.0195770263671875, 0.01447296142578125, -0.02410888671875, 0.09625244140625, 0.0293121337890625, -0.0521240234375, 0.0305633544921875, -0.0555419921875, -0.022735595703125, -0.003803253173828125, 0.0012960433959960938, -0.06719970703125, -0.0237274169921875, -0.0009717941284179688, 0.02301025390625, 0.01137542724609375, 0.0386962890625, -0.033843994140625, -0.01467132568359375, -0.01209259033203125, -0.032440185546875, 0.08251953125, 0.0211639404296875, -0.036041259765625, 0.025054931640625, -0.07061767578125, 0.0024356842041015625, 0.01068878173828125, -0.0251617431640625, -0.0085296630859375, -0.0333251953125, 0.0265960693359375, 0.0297698974609375, 0.0157623291015625, -0.031707763671875, 0.01372528076171875, -0.01226806640625, 0.041412353515625, 0.048980712890625, -0.002971649169921875, 0.01012420654296875, -0.012725830078125, 0.01189422607421875, 0.0191802978515625, 0.0305633544921875, 0.021697998046875, -0.0267181396484375, -0.08489990234375, -0.0186614990234375, 0.01148223876953125, 0.03570556640625, -0.0234375, 0.075927734375, -0.0012083053588867188, -0.05535888671875, -0.02996826171875, -0.0013580322265625, 0.0025234222412109375, 0.04486083984375, 0.037200927734375, -0.0305023193359375, -0.038604736328125, -0.04351806640625, -0.0080413818359375, -0.00801849365234375, 0.003711700439453125, 0.0251312255859375, 0.07373046875, -0.0447998046875, 0.0550537109375, -0.04998779296875, -0.020477294921875, 0.007297515869140625, 0.03656005859375, 0.0176544189453125, 0.059600830078125, 0.04931640625, -0.0295867919921875, -0.032135009765625, -0.046722412109375, -0.062744140625, 0.0220489501953125, -0.005168914794921875, -0.038665771484375, 0.0024433135986328125, 0.021514892578125, -0.0229644775390625, 0.0445556640625, 0.025909423828125, -0.04766845703125, 0.0340576171875, -0.0130767822265625, 0.00542449951171875, -0.07452392578125, 0.01727294921875, -0.01549530029296875, -0.0171356201171875, -0.00897979736328125, -0.0006256103515625, -0.00008702278137207031, -0.01068878173828125, -0.04071044921875, 0.049224853515625, -0.010986328125, 0.0019550323486328125, -0.0230712890625, -0.02691650390625, 0.019439697265625, 0.05084228515625, 0.0279388427734375, 0.040313720703125, 0.0645751953125, -0.06353759765625, 0.041229248046875, 0.04522705078125, -0.0152740478515625, 0.01407623291015625, -0.04083251953125, 0.007343292236328125, 0.00905609130859375, 0.0225982666015625, -0.08282470703125, -0.045654296875, 0.0231781005859375, -0.038238525390625, 0.0264739990234375, -0.01447296142578125, -0.034637451171875, -0.044036865234375, 0.0097198486328125, 0.036224365234375, 0.0225677490234375, -0.058624267578125, 0.03497314453125, 0.01154327392578125, 0.0166168212890625, -0.028045654296875, -0.0513916015625, -0.025909423828125, -0.0175018310546875, -0.02288818359375, 0.00003230571746826172, -0.0209503173828125, 0.0239715576171875, -0.00031495094299316406, -0.006443023681640625, -0.00818634033203125, 0.01264190673828125, 0.0203399658203125, 0.034088134765625, 0.00760650634765625, -0.0004215240478515625, -0.00978851318359375, -0.0190582275390625, 0.018890380859375, -0.00855255126953125, 0.06304931640625, -0.03399658203125, -0.016693115234375, -0.04974365234375, -0.00511932373046875, 0.039337158203125, -0.01200103759765625, 0.060577392578125, 0.07666015625, -0.0218048095703125, 0.00524139404296875, -0.0261688232421875, -0.0247344970703125, -0.0357666015625, 0.0279083251953125, -0.01708984375, -0.049468994140625, 0.040313720703125, 0.0054168701171875, -0.00959014892578125, 0.072509765625, 0.05096435546875, -0.00998687744140625, 0.06781005859375, 0.0240631103515625, -0.004364013671875, 0.032562255859375, -0.06927490234375, -0.00441741943359375, -0.061553955078125, -0.034820556640625, -0.036773681640625, 0.005802154541015625, -0.037933349609375, 0.002597808837890625, 0.0215301513671875, -0.0001552104949951172, -0.0706787109375, 0.0469970703125, -0.053955078125, -0.004894256591796875, 0.06982421875, 0.00811767578125, 0.0101470947265625, 0.00472259521484375, -0.01136016845703125, 0.015899658203125, -0.051177978515625, -0.01212310791015625, 0.07568359375, 0.03973388671875, 0.05194091796875, -0.005893707275390625, 0.043060302734375, 0.0099945068359375, 0.0162200927734375, -0.0560302734375, 0.015411376953125, 0.011138916015625, -0.07366943359375, -0.0118255615234375, -0.035400390625, -0.039306640625, 0.0037975311279296875, -0.0135345458984375, -0.0196075439453125, 0.0296783447265625, 0.0155181884765625, -0.038818359375, 0.033966064453125, -0.05206298828125, 0.086669921875, -0.034210205078125, -0.030242919921875, 0.0038204193115234375, -0.054168701171875, 0.016937255859375, 0.0091400146484375, 0.01070404052734375, -0.006683349609375, 0.024688720703125, 0.07476806640625, -0.042694091796875, 0.060760498046875, -0.03448486328125, 0.01465606689453125, 0.040313720703125, -0.028228759765625, 0.0146026611328125, 0.005615234375, 0.00112152099609375, 0.04083251953125, 0.0117950439453125, -0.032257080078125, -0.019134521484375, 0.037567138671875, -0.10198974609375, -0.00977325439453125, -0.06427001953125, -0.038238525390625, 0.0014390945434570312, 0.028564453125, 0.047149658203125, 0.0283660888671875, 0.0211334228515625, -0.000047206878662109375, 0.0274658203125, -0.0140228271484375, 0.0582275390625, 0.0372314453125, -0.002399444580078125, -0.0469970703125, 0.068359375, -0.006744384765625, 0.0237884521484375, -0.0008206367492675781, 0.01165008544921875, -0.045257568359375, -0.004119873046875, -0.04766845703125, 0.01113128662109375, -0.043609619140625, -0.0252227783203125, -0.051422119140625, -0.039703369140625, -0.049224853515625, 0.0190582275390625, -0.041290283203125, -0.01544952392578125, -0.034210205078125, -0.00927734375, 0.035125732421875, 0.019012451171875, -0.0254974365234375, 0.05841064453125, -0.05224609375, 0.017425537109375, 0.0289764404296875, 0.0421142578125, -0.0022068023681640625, -0.07373046875, -0.024932861328125, -0.01007080078125, -0.038421630859375, -0.038421630859375, 0.0421142578125, 0.00838470458984375, 0.0291290283203125, 0.031951904296875, -0.0008373260498046875, 0.0648193359375, -0.0009899139404296875, 0.05523681640625, 0.016754150390625, -0.06689453125, 0.036895751953125, -0.011322021484375, 0.00395965576171875, 0.04931640625, 0.038970947265625, -0.0214996337890625, -0.01073455810546875, -0.06512451171875, -0.06866455078125, 0.059326171875, 0.020538330078125, -0.01300811767578125, 0.01224517822265625, 0.034576416015625, -0.0088958740234375, 0.0224151611328125, -0.0775146484375, -0.0285797119140625, -0.05615234375, -0.021209716796875, 0.0017614364624023438, 0.0118255615234375, -0.00930023193359375, -0.056915283203125, 0.0811767578125, -0.00962066650390625, 0.033447265625, 0.0377197265625, -0.005573272705078125, -0.01369476318359375, 0.0019702911376953125, 0.0316162109375, 0.00795745849609375, -0.037628173828125, -0.0006623268127441406, 0.006114959716796875, -0.038848876953125, 0.025299072265625, 0.01415252685546875, -0.00931549072265625, -0.0100860595703125, 0.020233154296875, 0.0714111328125, -0.01483917236328125, -0.01036834716796875, 0.033233642578125, -0.01523590087890625, -0.02105712890625, -0.058349609375, 0.0250091552734375, -0.01129913330078125, 0.004795074462890625, 0.0163726806640625, 0.030609130859375, 0.0120697021484375, -0.026611328125, 0.01476287841796875, 0.0259552001953125, -0.035369873046875, -0.0026226043701171875, 0.08245849609375, 0.00560760498046875, -0.0019664764404296875, 0.06549072265625, -0.028778076171875, -0.03521728515625, 0.06134033203125, 0.024871826171875, 0.0623779296875, -0.014190673828125, -0.0218963623046875, 0.07427978515625, 0.0098724365234375, -0.0061187744140625, 0.0144500732421875, 0.01154327392578125, -0.049041748046875, -0.0153350830078125, -0.0670166015625, -0.021728515625, 0.02947998046875, -0.07568359375, 0.030609130859375, -0.0231475830078125, -0.0208740234375, -0.019805908203125, 0.017425537109375, -0.066650390625, 0.035186767578125, 0.0145721435546875, 0.058563232421875, -0.084228515625, 0.05645751953125, 0.0360107421875, -0.05511474609375, -0.092529296875, -0.0221099853515625, -0.01360321044921875, -0.06488037109375, 0.039886474609375, 0.0229034423828125, 0.003101348876953125, 0.0295867919921875, -0.051361083984375, -0.055633544921875, 0.093994140625, -0.0094451904296875, -0.04656982421875, -0.01442718505859375, 0.0222625732421875, 0.0206146240234375, -0.0160064697265625, 0.046142578125, 0.043060302734375, 0.040130615234375, 0.0179443359375, -0.05413818359375, -0.0058135986328125, -0.016571044921875, -0.0187835693359375, -0.01641845703125, -0.09185791015625, 0.066650390625, -0.00902557373046875, 0.01187896728515625, -0.0023651123046875, 0.0457763671875, 0.019012451171875, 0.021575927734375, 0.042938232421875, 0.071533203125, 0.03851318359375, -0.0207672119140625, 0.050201416015625, -0.03131103515625, 0.0850830078125, 0.08099365234375, 0.00040650367736816406, 0.041748046875, 0.0125274658203125, -0.0229644775390625, 0.055755615234375, 0.073486328125, -0.04254150390625, 0.047393798828125, 0.0010471343994140625, -0.00847625732421875, -0.0200958251953125, 0.024200439453125, -0.0439453125, 0.042938232421875, 0.01849365234375, -0.0274200439453125, -0.007610321044921875, 0.004512786865234375, -0.0038547515869140625, -0.0467529296875, -0.0158233642578125, 0.047515869140625, -0.0121612548828125, -0.04486083984375, 0.054046630859375, -0.00937652587890625, 0.047454833984375, -0.038909912109375, -0.0006747245788574219, 0.0030422210693359375, 0.0224609375, -0.0266571044921875, -0.0293426513671875, 0.0273895263671875, -0.0236663818359375, -0.006206512451171875, 0.00341033935546875, 0.0307159423828125, -0.03668212890625, -0.04779052734375, 0.0262603759765625, 0.0183868408203125, 0.0145263671875, -0.002269744873046875, -0.06817626953125, 0.00023281574249267578, -0.0009503364562988281, -0.0270233154296875, 0.004291534423828125, -0.004093170166015625, 0.033843994140625, 0.036773681640625, 0.04046630859375, -0.0126800537109375, 0.0237884521484375, -0.001956939697265625, 0.05645751953125, -0.046600341796875, -0.0367431640625, -0.055206298828125, 0.033172607421875, -0.0015583038330078125, -0.0298004150390625, 0.050384521484375, 0.07379150390625, 0.07513427734375, -0.01428985595703125, 0.07037353515625, -0.0174713134765625, 0.031494140625, -0.0233917236328125, 0.057708740234375, -0.038970947265625, -0.005847930908203125, -0.00279998779296875, -0.02996826171875, 0.0013179779052734375, 0.06744384765625, -0.018218994140625, 0.01514434814453125, 0.044464111328125, 0.0570068359375, -0.0225677490234375, 0.0028324127197265625, -0.00959014892578125, 0.0175628662109375, 0.02386474609375, 0.03533935546875, 0.0411376953125, -0.074462890625, 0.03271484375, -0.03778076171875, -0.0229339599609375, -0.021087646484375, -0.044281005859375, -0.06768798828125, -0.031280517578125, -0.04217529296875, -0.050567626953125, -0.03662109375, 0.07244873046875, 0.07672119140625, -0.07208251953125, -0.02545166015625, -0.030792236328125, -0.0238494873046875, -0.0070037841796875, -0.0276031494140625, 0.060028076171875, -0.03448486328125, -0.0670166015625, 0.0007925033569335938, -0.023040771484375, 0.02691650390625, -0.0225067138671875, -0.01239776611328125, -0.020721435546875, -0.02545166015625, 0.026092529296875, 0.021209716796875, -0.0316162109375, -0.02630615234375, -0.0087127685546875, -0.010833740234375, 0.0184173583984375, 0.0237884521484375, -0.033721923828125, 0.0212249755859375, 0.024871826171875, 0.0228271484375, 0.056732177734375, -0.00974273681640625, 0.007617950439453125, -0.035552978515625, 0.0303802490234375, -0.005290985107421875, 0.03741455078125, 0.0228729248046875, -0.0303497314453125, 0.0390625, 0.058685302734375, -0.058685302734375, -0.042877197265625, 0.0008268356323242188, -0.07965087890625, 0.002742767333984375, 0.0789794921875, -0.016937255859375, -0.02044677734375, -0.01373291015625, -0.005413055419921875, 0.0535888671875, -0.0173797607421875, 0.053741455078125, 0.0504150390625, -0.0301513671875, -0.0039043426513671875, -0.042449951171875, 0.038787841796875, 0.0186920166015625, -0.065185546875, -0.01081085205078125, 0.00762176513671875, 0.060699462890625, 0.0256805419921875, 0.029205322265625, -0.01488494873046875, -0.00756072998046875, 0.0088653564453125, 0.0218048095703125, -0.017791748046875, -0.02288818359375, -0.0124664306640625, -0.00904083251953125, -0.0175933837890625, -0.03216552734375 ] ]
Gokdeniz-Tingur/ppo-LunarLander-v2
2023-10-28T21:17:48.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
Gokdeniz-Tingur
null
null
Gokdeniz-Tingur/ppo-LunarLander-v2
0
2
stable-baselines3
2023-10-28T21:17:28
--- 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: 252.19 +/- 19.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 ... ```
784
[ [ -0.0001958608627319336, -0.02716064453125, 0.0170745849609375, 0.0233306884765625, -0.006061553955078125, 0.0027523040771484375, 0.034423828125, -0.01212310791015625, 0.019866943359375, 0.06500244140625, -0.043182373046875, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017423629760742188, 0.06982421875, 0.0016050338745117188, 0.028167724609375, 0.00954437255859375, -0.00705718994140625, -0.0183563232421875, -0.0218505859375, -0.052032470703125, -0.07147216796875, 0.01197052001953125, 0.050201416015625, 0.054229736328125, 0.024261474609375, 0.028106689453125, 0.02923583984375, -0.0176544189453125, -0.032196044921875, -0.04132080078125, -0.0012617111206054688, -0.0005979537963867188, -0.04443359375, -0.06341552734375, 0.01415252685546875, 0.03961181640625, 0.0040435791015625, -0.019866943359375, 0.004917144775390625, -0.028289794921875, 0.0311126708984375, -0.037628173828125, 0.0157928466796875, -0.0153656005859375, 0.0017633438110351562, 0.007350921630859375, 0.01079559326171875, -0.0259552001953125, -0.0098419189453125, 0.020660400390625, -0.0906982421875, -0.005344390869140625, -0.0215301513671875, 0.09295654296875, 0.00943756103515625, -0.037994384765625, 0.0011739730834960938, -0.0190277099609375, 0.034088134765625, -0.02716064453125, 0.010345458984375, 0.049163818359375, 0.03619384765625, 0.0031757354736328125, -0.06915283203125, -0.0163421630859375, -0.032623291015625, 0.0010662078857421875, 0.031646728515625, 0.01551055908203125, 0.016754150390625, 0.01499176025390625, 0.0107421875, -0.0240478515625, 0.02410888671875, -0.04608154296875, -0.02392578125, 0.0355224609375, 0.018280029296875, 0.005329132080078125, -0.00782012939453125, -0.035308837890625, -0.01181793212890625, -0.03143310546875, 0.023040771484375, 0.030426025390625, 0.0128173828125, -0.058868408203125, 0.06585693359375, -0.0190887451171875, 0.031524658203125, 0.0302734375, -0.00037670135498046875, 0.0487060546875, 0.00939178466796875, -0.0079193115234375, -0.0259857177734375, 0.039306640625, 0.0675048828125, 0.00408172607421875, 0.005626678466796875, -0.03369140625, -0.0187835693359375, 0.0120391845703125, -0.055511474609375, -0.024932861328125, 0.03375244140625, -0.0198211669921875, -0.048797607421875, 0.0350341796875, -0.04180908203125, -0.0251007080078125, -0.0006718635559082031, 0.0272216796875, -0.047210693359375, -0.041290283203125, 0.004352569580078125, -0.032470703125, 0.050048828125, 0.00983428955078125, -0.063232421875, 0.030914306640625, 0.04852294921875, 0.0660400390625, 0.041259765625, -0.047943115234375, -0.0491943359375, 0.01354217529296875, -0.031524658203125, 0.05523681640625, 0.017242431640625, -0.033721923828125, 0.02178955078125, 0.0003864765167236328, 0.01499176025390625, -0.035736083984375, 0.0181732177734375, -0.032958984375, 0.020660400390625, 0.006580352783203125, -0.0308837890625, -0.0007572174072265625, 0.03253173828125, -0.045745849609375, 0.0982666015625, 0.060394287109375, -0.0399169921875, 0.0260009765625, -0.046173095703125, -0.0052642822265625, 0.036407470703125, 0.017578125, -0.05072021484375, -0.0019931793212890625, -0.03106689453125, 0.01299285888671875, 0.004817962646484375, 0.0030574798583984375, -0.0262908935546875, -0.0268402099609375, 0.005527496337890625, 0.056671142578125, 0.063720703125, 0.0156402587890625, -0.0023651123046875, 0.01444244384765625, -0.043670654296875, -0.0099334716796875, 0.006317138671875, -0.020294189453125, -0.01104736328125, -0.01715087890625, 0.037567138671875, 0.0171051025390625, 0.034027099609375, -0.034393310546875, 0.035736083984375, -0.039306640625, 0.01409149169921875, 0.0498046875, -0.00911712646484375, 0.0560302734375, -0.047882080078125, 0.0235137939453125, -0.01239776611328125, 0.0191497802734375, 0.01393890380859375, -0.0253143310546875, -0.045684814453125, -0.036346435546875, -0.0020599365234375, 0.058013916015625, -0.08660888671875, 0.049041748046875, 0.0156097412109375, -0.054840087890625, -0.01468658447265625, -0.010711669921875, 0.03643798828125, 0.0189056396484375, 0.0032901763916015625, -0.006378173828125, -0.042510986328125, -0.06072998046875, 0.017333984375, -0.04833984375, -0.01690673828125, 0.00008112192153930664, 0.047607421875, -0.0242462158203125, 0.058807373046875, -0.0262603759765625, -0.0253448486328125, -0.0228729248046875, 0.01385498046875, 0.0198516845703125, 0.053558349609375, 0.06768798828125, -0.041046142578125, -0.03668212890625, -0.0190277099609375, -0.063232421875, -0.0302734375, 0.0109100341796875, -0.0113067626953125, 0.0007958412170410156, 0.02392578125, -0.055023193359375, 0.006504058837890625, 0.042510986328125, -0.07159423828125, 0.051513671875, -0.0263214111328125, -0.0000832676887512207, -0.09185791015625, 0.01305389404296875, 0.0162200927734375, -0.0242767333984375, -0.055511474609375, 0.0236968994140625, 0.01108551025390625, -0.004314422607421875, -0.050994873046875, 0.064453125, -0.037841796875, 0.0016260147094726562, -0.032318115234375, -0.00922393798828125, -0.0105133056640625, -0.004230499267578125, 0.0018558502197265625, 0.04364013671875, 0.0792236328125, -0.0303955078125, 0.043060302734375, 0.042877197265625, 0.007556915283203125, 0.053436279296875, -0.042633056640625, 0.0088958740234375, -0.0184783935546875, 0.0185546875, -0.045166015625, -0.043975830078125, 0.042388916015625, -0.035675048828125, 0.0223388671875, -0.0321044921875, -0.0238037109375, -0.033660888671875, -0.04229736328125, 0.013458251953125, 0.043975830078125, -0.0207977294921875, 0.05316162109375, 0.0489501953125, 0.00811004638671875, -0.039276123046875, -0.03070068359375, -0.0134429931640625, -0.0196685791015625, -0.0293731689453125, 0.032073974609375, 0.00940704345703125, -0.034393310546875, -0.01561737060546875, 0.0025424957275390625, -0.01493072509765625, 0.006183624267578125, 0.033355712890625, 0.028564453125, -0.0017080307006835938, -0.0202178955078125, -0.028594970703125, -0.049652099609375, -0.01038360595703125, -0.0106048583984375, 0.047271728515625, -0.0190277099609375, 0.0263824462890625, -0.05908203125, -0.00347900390625, 0.052276611328125, 0.017578125, 0.05859375, 0.030303955078125, -0.0380859375, -0.007106781005859375, -0.0239410400390625, -0.01152801513671875, -0.03826904296875, 0.031707763671875, -0.0396728515625, -0.040008544921875, 0.050628662109375, 0.00001704692840576172, -0.02642822265625, 0.041748046875, 0.0404052734375, -0.005695343017578125, 0.04656982421875, 0.0687255859375, -0.007595062255859375, 0.050628662109375, -0.04937744140625, -0.046417236328125, -0.053619384765625, -0.0423583984375, -0.0268096923828125, 0.016815185546875, -0.0284881591796875, -0.017913818359375, 0.00933074951171875, 0.032196044921875, -0.053375244140625, 0.06182861328125, -0.030059814453125, 0.04254150390625, 0.0406494140625, 0.01081085205078125, -0.01934814453125, -0.03814697265625, -0.0032978057861328125, 0.0158843994140625, -0.0232391357421875, -0.0380859375, 0.06817626953125, 0.039703369140625, 0.052459716796875, 0.005016326904296875, 0.044830322265625, 0.006420135498046875, 0.04473876953125, -0.038604736328125, 0.033782958984375, -0.012298583984375, -0.06317138671875, -0.0082244873046875, -0.0222015380859375, -0.052886962890625, 0.01297760009765625, -0.0304718017578125, -0.0665283203125, -0.011749267578125, 0.00640106201171875, -0.0196990966796875, 0.005279541015625, -0.037078857421875, 0.07135009765625, -0.0242919921875, -0.0243988037109375, 0.01059722900390625, -0.04791259765625, 0.01849365234375, 0.01351165771484375, -0.00362396240234375, -0.02490234375, -0.0181732177734375, 0.050048828125, -0.032989501953125, 0.043701171875, -0.05755615234375, 0.013031005859375, 0.016632080078125, 0.00891876220703125, 0.0274658203125, 0.031982421875, -0.0117034912109375, 0.0013055801391601562, 0.005802154541015625, -0.052276611328125, -0.003215789794921875, 0.031219482421875, -0.09857177734375, -0.00464630126953125, -0.057861328125, -0.0232696533203125, 0.0090179443359375, 0.02008056640625, 0.039459228515625, 0.00940704345703125, -0.0279998779296875, 0.00021135807037353516, 0.005939483642578125, 0.00885009765625, 0.01515960693359375, 0.0614013671875, -0.0357666015625, -0.061126708984375, 0.0299224853515625, 0.001735687255859375, -0.0007481575012207031, 0.0221405029296875, 0.005687713623046875, -0.0225830078125, -0.042083740234375, -0.00986480712890625, 0.03094482421875, -0.0251617431640625, -0.013458251953125, -0.01134490966796875, -0.022705078125, -0.025634765625, -0.0291290283203125, -0.046112060546875, -0.0204315185546875, -0.033111572265625, -0.0225067138671875, 0.0256195068359375, 0.0499267578125, -0.0301513671875, 0.08660888671875, -0.034942626953125, 0.033355712890625, 0.010040283203125, 0.041351318359375, -0.05865478515625, -0.033782958984375, -0.026611328125, -0.0174560546875, -0.03155517578125, -0.06683349609375, 0.03271484375, -0.01617431640625, 0.05377197265625, 0.028167724609375, -0.01082611083984375, 0.025482177734375, -0.01160430908203125, 0.0555419921875, 0.033355712890625, -0.0716552734375, 0.0283355712890625, -0.051239013671875, 0.00919342041015625, 0.062469482421875, 0.0146026611328125, -0.01800537109375, -0.0259246826171875, -0.060150146484375, -0.06903076171875, 0.08331298828125, 0.032135009765625, -0.006000518798828125, 0.0221099853515625, 0.05523681640625, -0.005458831787109375, 0.0068206787109375, -0.06524658203125, -0.0196533203125, -0.0264129638671875, -0.01267242431640625, -0.0197296142578125, -0.011962890625, -0.0140533447265625, 0.004131317138671875, 0.06378173828125, -0.0108184814453125, 0.020263671875, 0.00620269775390625, -0.00853729248046875, -0.0303955078125, -0.03729248046875, 0.028045654296875, 0.0230560302734375, -0.06353759765625, -0.0156402587890625, 0.0036773681640625, -0.040679931640625, 0.025634765625, 0.043426513671875, -0.0190887451171875, -0.0179290771484375, 0.0283050537109375, 0.050506591796875, 0.011138916015625, -0.019775390625, 0.04632568359375, 0.008209228515625, -0.034820556640625, -0.053619384765625, 0.0029296875, -0.0061492919921875, 0.037261962890625, 0.0201873779296875, 0.0103302001953125, -0.00911712646484375, -0.036956787109375, 0.030242919921875, 0.0177001953125, -0.050018310546875, -0.036041259765625, 0.061126708984375, 0.02532958984375, -0.05633544921875, 0.044830322265625, -0.00724029541015625, -0.03973388671875, 0.06695556640625, 0.031707763671875, 0.0650634765625, -0.02569580078125, 0.032989501953125, 0.033935546875, 0.013275146484375, -0.0251007080078125, 0.04010009765625, 0.0201568603515625, -0.07379150390625, -0.0159454345703125, -0.01183319091796875, -0.0523681640625, 0.0155181884765625, -0.04443359375, 0.041534423828125, -0.043975830078125, -0.03485107421875, 0.0029354095458984375, 0.0207366943359375, -0.0294036865234375, -0.005176544189453125, 0.0255584716796875, 0.0943603515625, -0.06097412109375, 0.07122802734375, 0.07159423828125, -0.03729248046875, -0.038238525390625, -0.0018472671508789062, 0.02777099609375, -0.058074951171875, 0.040618896484375, 0.032196044921875, 0.00386810302734375, 0.00968170166015625, -0.054443359375, -0.048919677734375, 0.1009521484375, 0.01381683349609375, -0.003070831298828125, 0.0163116455078125, -0.01514434814453125, 0.0469970703125, -0.0406494140625, 0.0372314453125, 0.0236358642578125, 0.035797119140625, 0.01329803466796875, -0.0660400390625, -0.0251312255859375, -0.03375244140625, -0.0085601806640625, -0.00312042236328125, -0.07568359375, 0.08154296875, 0.002895355224609375, 0.024505615234375, 0.063720703125, 0.03436279296875, 0.055877685546875, 0.0192413330078125, 0.03668212890625, 0.042572021484375, 0.01947021484375, -0.0190582275390625, 0.0615234375, -0.0224151611328125, 0.0650634765625, 0.050537109375, -0.05926513671875, 0.0389404296875, 0.02032470703125, 0.007175445556640625, 0.035736083984375, 0.045928955078125, -0.01397705078125, 0.056671142578125, 0.01380157470703125, -0.0086822509765625, -0.00632476806640625, 0.030914306640625, -0.0193328857421875, 0.033416748046875, 0.01335906982421875, 0.0003476142883300781, -0.006130218505859375, -0.00133514404296875, 0.0027713775634765625, -0.00333404541015625, -0.031707763671875, 0.06964111328125, -0.01200103759765625, -0.047821044921875, 0.032012939453125, 0.0242462158203125, 0.04351806640625, -0.061981201171875, -0.002285003662109375, -0.01031494140625, 0.045623779296875, 0.0006203651428222656, -0.07171630859375, -0.0023345947265625, -0.014190673828125, 0.00789642333984375, -0.0176239013671875, 0.0518798828125, -0.01439666748046875, -0.020294189453125, 0.057403564453125, 0.025238037109375, 0.002532958984375, 0.01580810546875, -0.07080078125, -0.0129241943359375, -0.0350341796875, -0.037841796875, 0.016082763671875, 0.020965576171875, 0.0240478515625, 0.0531005859375, 0.032257080078125, -0.0011568069458007812, -0.0248565673828125, -0.007289886474609375, 0.06878662109375, -0.048065185546875, -0.05230712890625, -0.03375244140625, 0.0780029296875, -0.0226287841796875, -0.06005859375, 0.0343017578125, 0.069580078125, 0.03912353515625, -0.0216827392578125, 0.03887939453125, -0.0143280029296875, 0.0219879150390625, -0.032562255859375, 0.055511474609375, -0.0188140869140625, -0.00885772705078125, -0.009307861328125, -0.05133056640625, -0.03472900390625, 0.06915283203125, -0.0013608932495117188, -0.004581451416015625, 0.019744873046875, 0.053680419921875, 0.0026073455810546875, -0.022918701171875, 0.0157470703125, 0.041107177734375, 0.0057373046875, 0.0283355712890625, 0.0706787109375, -0.04681396484375, 0.01110076904296875, -0.039154052734375, -0.05157470703125, -0.019012451171875, -0.0458984375, -0.07586669921875, -0.03143310546875, -0.018646240234375, -0.0701904296875, 0.0158843994140625, 0.062469482421875, 0.0736083984375, -0.04815673828125, -0.050872802734375, -0.0162506103515625, -0.007701873779296875, -0.01080322265625, -0.0127105712890625, 0.007465362548828125, -0.004177093505859375, -0.04766845703125, 0.018707275390625, -0.0023708343505859375, 0.0282440185546875, 0.0008940696716308594, -0.044281005859375, -0.01311492919921875, -0.0236358642578125, 0.0187835693359375, 0.036895751953125, -0.0216217041015625, -0.028900146484375, -0.00911712646484375, -0.0176544189453125, 0.0026607513427734375, 0.036407470703125, -0.047332763671875, 0.004749298095703125, 0.0296478271484375, -0.0267791748046875, 0.0640869140625, 0.01155853271484375, 0.042205810546875, -0.03955078125, 0.047149658203125, 0.018646240234375, 0.030487060546875, 0.01511383056640625, -0.01534271240234375, 0.0484619140625, 0.02679443359375, -0.050048828125, -0.048309326171875, 0.01165771484375, -0.08441162109375, -0.01611328125, 0.08331298828125, 0.0007719993591308594, -0.0136260986328125, -0.004791259765625, -0.040985107421875, 0.0175018310546875, -0.03369140625, 0.036834716796875, 0.035797119140625, -0.0041656494140625, -0.026885986328125, -0.027496337890625, 0.033294677734375, -0.01068878173828125, -0.044677734375, -0.02923583984375, 0.034942626953125, 0.032073974609375, 0.021820068359375, 0.0675048828125, -0.01039886474609375, 0.0311431884765625, 0.03277587890625, 0.0215911865234375, -0.01580810546875, -0.0239410400390625, -0.033966064453125, 0.00849151611328125, 0.0080718994140625, -0.00995635986328125 ] ]
petrosfk/ppo-LunarLander-v2
2023-10-28T21:36:59.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
petrosfk
null
null
petrosfk/ppo-LunarLander-v2
0
2
stable-baselines3
2023-10-28T21:36:38
--- 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: 257.03 +/- 22.17 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 ... ```
784
[ [ -0.0001958608627319336, -0.02716064453125, 0.0170745849609375, 0.0233306884765625, -0.006061553955078125, 0.0027523040771484375, 0.034423828125, -0.01212310791015625, 0.019866943359375, 0.06500244140625, -0.043182373046875, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017423629760742188, 0.06982421875, 0.0016050338745117188, 0.028167724609375, 0.00954437255859375, -0.00705718994140625, -0.0183563232421875, -0.0218505859375, -0.052032470703125, -0.07147216796875, 0.01197052001953125, 0.050201416015625, 0.054229736328125, 0.024261474609375, 0.028106689453125, 0.02923583984375, -0.0176544189453125, -0.032196044921875, -0.04132080078125, -0.0012617111206054688, -0.0005979537963867188, -0.04443359375, -0.06341552734375, 0.01415252685546875, 0.03961181640625, 0.0040435791015625, -0.019866943359375, 0.004917144775390625, -0.028289794921875, 0.0311126708984375, -0.037628173828125, 0.0157928466796875, -0.0153656005859375, 0.0017633438110351562, 0.007350921630859375, 0.01079559326171875, -0.0259552001953125, -0.0098419189453125, 0.020660400390625, -0.0906982421875, -0.005344390869140625, -0.0215301513671875, 0.09295654296875, 0.00943756103515625, -0.037994384765625, 0.0011739730834960938, -0.0190277099609375, 0.034088134765625, -0.02716064453125, 0.010345458984375, 0.049163818359375, 0.03619384765625, 0.0031757354736328125, -0.06915283203125, -0.0163421630859375, -0.032623291015625, 0.0010662078857421875, 0.031646728515625, 0.01551055908203125, 0.016754150390625, 0.01499176025390625, 0.0107421875, -0.0240478515625, 0.02410888671875, -0.04608154296875, -0.02392578125, 0.0355224609375, 0.018280029296875, 0.005329132080078125, -0.00782012939453125, -0.035308837890625, -0.01181793212890625, -0.03143310546875, 0.023040771484375, 0.030426025390625, 0.0128173828125, -0.058868408203125, 0.06585693359375, -0.0190887451171875, 0.031524658203125, 0.0302734375, -0.00037670135498046875, 0.0487060546875, 0.00939178466796875, -0.0079193115234375, -0.0259857177734375, 0.039306640625, 0.0675048828125, 0.00408172607421875, 0.005626678466796875, -0.03369140625, -0.0187835693359375, 0.0120391845703125, -0.055511474609375, -0.024932861328125, 0.03375244140625, -0.0198211669921875, -0.048797607421875, 0.0350341796875, -0.04180908203125, -0.0251007080078125, -0.0006718635559082031, 0.0272216796875, -0.047210693359375, -0.041290283203125, 0.004352569580078125, -0.032470703125, 0.050048828125, 0.00983428955078125, -0.063232421875, 0.030914306640625, 0.04852294921875, 0.0660400390625, 0.041259765625, -0.047943115234375, -0.0491943359375, 0.01354217529296875, -0.031524658203125, 0.05523681640625, 0.017242431640625, -0.033721923828125, 0.02178955078125, 0.0003864765167236328, 0.01499176025390625, -0.035736083984375, 0.0181732177734375, -0.032958984375, 0.020660400390625, 0.006580352783203125, -0.0308837890625, -0.0007572174072265625, 0.03253173828125, -0.045745849609375, 0.0982666015625, 0.060394287109375, -0.0399169921875, 0.0260009765625, -0.046173095703125, -0.0052642822265625, 0.036407470703125, 0.017578125, -0.05072021484375, -0.0019931793212890625, -0.03106689453125, 0.01299285888671875, 0.004817962646484375, 0.0030574798583984375, -0.0262908935546875, -0.0268402099609375, 0.005527496337890625, 0.056671142578125, 0.063720703125, 0.0156402587890625, -0.0023651123046875, 0.01444244384765625, -0.043670654296875, -0.0099334716796875, 0.006317138671875, -0.020294189453125, -0.01104736328125, -0.01715087890625, 0.037567138671875, 0.0171051025390625, 0.034027099609375, -0.034393310546875, 0.035736083984375, -0.039306640625, 0.01409149169921875, 0.0498046875, -0.00911712646484375, 0.0560302734375, -0.047882080078125, 0.0235137939453125, -0.01239776611328125, 0.0191497802734375, 0.01393890380859375, -0.0253143310546875, -0.045684814453125, -0.036346435546875, -0.0020599365234375, 0.058013916015625, -0.08660888671875, 0.049041748046875, 0.0156097412109375, -0.054840087890625, -0.01468658447265625, -0.010711669921875, 0.03643798828125, 0.0189056396484375, 0.0032901763916015625, -0.006378173828125, -0.042510986328125, -0.06072998046875, 0.017333984375, -0.04833984375, -0.01690673828125, 0.00008112192153930664, 0.047607421875, -0.0242462158203125, 0.058807373046875, -0.0262603759765625, -0.0253448486328125, -0.0228729248046875, 0.01385498046875, 0.0198516845703125, 0.053558349609375, 0.06768798828125, -0.041046142578125, -0.03668212890625, -0.0190277099609375, -0.063232421875, -0.0302734375, 0.0109100341796875, -0.0113067626953125, 0.0007958412170410156, 0.02392578125, -0.055023193359375, 0.006504058837890625, 0.042510986328125, -0.07159423828125, 0.051513671875, -0.0263214111328125, -0.0000832676887512207, -0.09185791015625, 0.01305389404296875, 0.0162200927734375, -0.0242767333984375, -0.055511474609375, 0.0236968994140625, 0.01108551025390625, -0.004314422607421875, -0.050994873046875, 0.064453125, -0.037841796875, 0.0016260147094726562, -0.032318115234375, -0.00922393798828125, -0.0105133056640625, -0.004230499267578125, 0.0018558502197265625, 0.04364013671875, 0.0792236328125, -0.0303955078125, 0.043060302734375, 0.042877197265625, 0.007556915283203125, 0.053436279296875, -0.042633056640625, 0.0088958740234375, -0.0184783935546875, 0.0185546875, -0.045166015625, -0.043975830078125, 0.042388916015625, -0.035675048828125, 0.0223388671875, -0.0321044921875, -0.0238037109375, -0.033660888671875, -0.04229736328125, 0.013458251953125, 0.043975830078125, -0.0207977294921875, 0.05316162109375, 0.0489501953125, 0.00811004638671875, -0.039276123046875, -0.03070068359375, -0.0134429931640625, -0.0196685791015625, -0.0293731689453125, 0.032073974609375, 0.00940704345703125, -0.034393310546875, -0.01561737060546875, 0.0025424957275390625, -0.01493072509765625, 0.006183624267578125, 0.033355712890625, 0.028564453125, -0.0017080307006835938, -0.0202178955078125, -0.028594970703125, -0.049652099609375, -0.01038360595703125, -0.0106048583984375, 0.047271728515625, -0.0190277099609375, 0.0263824462890625, -0.05908203125, -0.00347900390625, 0.052276611328125, 0.017578125, 0.05859375, 0.030303955078125, -0.0380859375, -0.007106781005859375, -0.0239410400390625, -0.01152801513671875, -0.03826904296875, 0.031707763671875, -0.0396728515625, -0.040008544921875, 0.050628662109375, 0.00001704692840576172, -0.02642822265625, 0.041748046875, 0.0404052734375, -0.005695343017578125, 0.04656982421875, 0.0687255859375, -0.007595062255859375, 0.050628662109375, -0.04937744140625, -0.046417236328125, -0.053619384765625, -0.0423583984375, -0.0268096923828125, 0.016815185546875, -0.0284881591796875, -0.017913818359375, 0.00933074951171875, 0.032196044921875, -0.053375244140625, 0.06182861328125, -0.030059814453125, 0.04254150390625, 0.0406494140625, 0.01081085205078125, -0.01934814453125, -0.03814697265625, -0.0032978057861328125, 0.0158843994140625, -0.0232391357421875, -0.0380859375, 0.06817626953125, 0.039703369140625, 0.052459716796875, 0.005016326904296875, 0.044830322265625, 0.006420135498046875, 0.04473876953125, -0.038604736328125, 0.033782958984375, -0.012298583984375, -0.06317138671875, -0.0082244873046875, -0.0222015380859375, -0.052886962890625, 0.01297760009765625, -0.0304718017578125, -0.0665283203125, -0.011749267578125, 0.00640106201171875, -0.0196990966796875, 0.005279541015625, -0.037078857421875, 0.07135009765625, -0.0242919921875, -0.0243988037109375, 0.01059722900390625, -0.04791259765625, 0.01849365234375, 0.01351165771484375, -0.00362396240234375, -0.02490234375, -0.0181732177734375, 0.050048828125, -0.032989501953125, 0.043701171875, -0.05755615234375, 0.013031005859375, 0.016632080078125, 0.00891876220703125, 0.0274658203125, 0.031982421875, -0.0117034912109375, 0.0013055801391601562, 0.005802154541015625, -0.052276611328125, -0.003215789794921875, 0.031219482421875, -0.09857177734375, -0.00464630126953125, -0.057861328125, -0.0232696533203125, 0.0090179443359375, 0.02008056640625, 0.039459228515625, 0.00940704345703125, -0.0279998779296875, 0.00021135807037353516, 0.005939483642578125, 0.00885009765625, 0.01515960693359375, 0.0614013671875, -0.0357666015625, -0.061126708984375, 0.0299224853515625, 0.001735687255859375, -0.0007481575012207031, 0.0221405029296875, 0.005687713623046875, -0.0225830078125, -0.042083740234375, -0.00986480712890625, 0.03094482421875, -0.0251617431640625, -0.013458251953125, -0.01134490966796875, -0.022705078125, -0.025634765625, -0.0291290283203125, -0.046112060546875, -0.0204315185546875, -0.033111572265625, -0.0225067138671875, 0.0256195068359375, 0.0499267578125, -0.0301513671875, 0.08660888671875, -0.034942626953125, 0.033355712890625, 0.010040283203125, 0.041351318359375, -0.05865478515625, -0.033782958984375, -0.026611328125, -0.0174560546875, -0.03155517578125, -0.06683349609375, 0.03271484375, -0.01617431640625, 0.05377197265625, 0.028167724609375, -0.01082611083984375, 0.025482177734375, -0.01160430908203125, 0.0555419921875, 0.033355712890625, -0.0716552734375, 0.0283355712890625, -0.051239013671875, 0.00919342041015625, 0.062469482421875, 0.0146026611328125, -0.01800537109375, -0.0259246826171875, -0.060150146484375, -0.06903076171875, 0.08331298828125, 0.032135009765625, -0.006000518798828125, 0.0221099853515625, 0.05523681640625, -0.005458831787109375, 0.0068206787109375, -0.06524658203125, -0.0196533203125, -0.0264129638671875, -0.01267242431640625, -0.0197296142578125, -0.011962890625, -0.0140533447265625, 0.004131317138671875, 0.06378173828125, -0.0108184814453125, 0.020263671875, 0.00620269775390625, -0.00853729248046875, -0.0303955078125, -0.03729248046875, 0.028045654296875, 0.0230560302734375, -0.06353759765625, -0.0156402587890625, 0.0036773681640625, -0.040679931640625, 0.025634765625, 0.043426513671875, -0.0190887451171875, -0.0179290771484375, 0.0283050537109375, 0.050506591796875, 0.011138916015625, -0.019775390625, 0.04632568359375, 0.008209228515625, -0.034820556640625, -0.053619384765625, 0.0029296875, -0.0061492919921875, 0.037261962890625, 0.0201873779296875, 0.0103302001953125, -0.00911712646484375, -0.036956787109375, 0.030242919921875, 0.0177001953125, -0.050018310546875, -0.036041259765625, 0.061126708984375, 0.02532958984375, -0.05633544921875, 0.044830322265625, -0.00724029541015625, -0.03973388671875, 0.06695556640625, 0.031707763671875, 0.0650634765625, -0.02569580078125, 0.032989501953125, 0.033935546875, 0.013275146484375, -0.0251007080078125, 0.04010009765625, 0.0201568603515625, -0.07379150390625, -0.0159454345703125, -0.01183319091796875, -0.0523681640625, 0.0155181884765625, -0.04443359375, 0.041534423828125, -0.043975830078125, -0.03485107421875, 0.0029354095458984375, 0.0207366943359375, -0.0294036865234375, -0.005176544189453125, 0.0255584716796875, 0.0943603515625, -0.06097412109375, 0.07122802734375, 0.07159423828125, -0.03729248046875, -0.038238525390625, -0.0018472671508789062, 0.02777099609375, -0.058074951171875, 0.040618896484375, 0.032196044921875, 0.00386810302734375, 0.00968170166015625, -0.054443359375, -0.048919677734375, 0.1009521484375, 0.01381683349609375, -0.003070831298828125, 0.0163116455078125, -0.01514434814453125, 0.0469970703125, -0.0406494140625, 0.0372314453125, 0.0236358642578125, 0.035797119140625, 0.01329803466796875, -0.0660400390625, -0.0251312255859375, -0.03375244140625, -0.0085601806640625, -0.00312042236328125, -0.07568359375, 0.08154296875, 0.002895355224609375, 0.024505615234375, 0.063720703125, 0.03436279296875, 0.055877685546875, 0.0192413330078125, 0.03668212890625, 0.042572021484375, 0.01947021484375, -0.0190582275390625, 0.0615234375, -0.0224151611328125, 0.0650634765625, 0.050537109375, -0.05926513671875, 0.0389404296875, 0.02032470703125, 0.007175445556640625, 0.035736083984375, 0.045928955078125, -0.01397705078125, 0.056671142578125, 0.01380157470703125, -0.0086822509765625, -0.00632476806640625, 0.030914306640625, -0.0193328857421875, 0.033416748046875, 0.01335906982421875, 0.0003476142883300781, -0.006130218505859375, -0.00133514404296875, 0.0027713775634765625, -0.00333404541015625, -0.031707763671875, 0.06964111328125, -0.01200103759765625, -0.047821044921875, 0.032012939453125, 0.0242462158203125, 0.04351806640625, -0.061981201171875, -0.002285003662109375, -0.01031494140625, 0.045623779296875, 0.0006203651428222656, -0.07171630859375, -0.0023345947265625, -0.014190673828125, 0.00789642333984375, -0.0176239013671875, 0.0518798828125, -0.01439666748046875, -0.020294189453125, 0.057403564453125, 0.025238037109375, 0.002532958984375, 0.01580810546875, -0.07080078125, -0.0129241943359375, -0.0350341796875, -0.037841796875, 0.016082763671875, 0.020965576171875, 0.0240478515625, 0.0531005859375, 0.032257080078125, -0.0011568069458007812, -0.0248565673828125, -0.007289886474609375, 0.06878662109375, -0.048065185546875, -0.05230712890625, -0.03375244140625, 0.0780029296875, -0.0226287841796875, -0.06005859375, 0.0343017578125, 0.069580078125, 0.03912353515625, -0.0216827392578125, 0.03887939453125, -0.0143280029296875, 0.0219879150390625, -0.032562255859375, 0.055511474609375, -0.0188140869140625, -0.00885772705078125, -0.009307861328125, -0.05133056640625, -0.03472900390625, 0.06915283203125, -0.0013608932495117188, -0.004581451416015625, 0.019744873046875, 0.053680419921875, 0.0026073455810546875, -0.022918701171875, 0.0157470703125, 0.041107177734375, 0.0057373046875, 0.0283355712890625, 0.0706787109375, -0.04681396484375, 0.01110076904296875, -0.039154052734375, -0.05157470703125, -0.019012451171875, -0.0458984375, -0.07586669921875, -0.03143310546875, -0.018646240234375, -0.0701904296875, 0.0158843994140625, 0.062469482421875, 0.0736083984375, -0.04815673828125, -0.050872802734375, -0.0162506103515625, -0.007701873779296875, -0.01080322265625, -0.0127105712890625, 0.007465362548828125, -0.004177093505859375, -0.04766845703125, 0.018707275390625, -0.0023708343505859375, 0.0282440185546875, 0.0008940696716308594, -0.044281005859375, -0.01311492919921875, -0.0236358642578125, 0.0187835693359375, 0.036895751953125, -0.0216217041015625, -0.028900146484375, -0.00911712646484375, -0.0176544189453125, 0.0026607513427734375, 0.036407470703125, -0.047332763671875, 0.004749298095703125, 0.0296478271484375, -0.0267791748046875, 0.0640869140625, 0.01155853271484375, 0.042205810546875, -0.03955078125, 0.047149658203125, 0.018646240234375, 0.030487060546875, 0.01511383056640625, -0.01534271240234375, 0.0484619140625, 0.02679443359375, -0.050048828125, -0.048309326171875, 0.01165771484375, -0.08441162109375, -0.01611328125, 0.08331298828125, 0.0007719993591308594, -0.0136260986328125, -0.004791259765625, -0.040985107421875, 0.0175018310546875, -0.03369140625, 0.036834716796875, 0.035797119140625, -0.0041656494140625, -0.026885986328125, -0.027496337890625, 0.033294677734375, -0.01068878173828125, -0.044677734375, -0.02923583984375, 0.034942626953125, 0.032073974609375, 0.021820068359375, 0.0675048828125, -0.01039886474609375, 0.0311431884765625, 0.03277587890625, 0.0215911865234375, -0.01580810546875, -0.0239410400390625, -0.033966064453125, 0.00849151611328125, 0.0080718994140625, -0.00995635986328125 ] ]
AmirH98/a2c-PandaReachDense-v3
2023-10-28T21:56:59.000Z
[ "stable-baselines3", "PandaReachDense-v3", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
AmirH98
null
null
AmirH98/a2c-PandaReachDense-v3
0
2
stable-baselines3
2023-10-28T21:51:27
--- library_name: stable-baselines3 tags: - PandaReachDense-v3 - deep-reinforcement-learning - reinforcement-learning - stable-baselines3 model-index: - name: A2C results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: PandaReachDense-v3 type: PandaReachDense-v3 metrics: - type: mean_reward value: -0.15 +/- 0.07 name: mean_reward verified: false --- # **A2C** Agent playing **PandaReachDense-v3** This is a trained model of a **A2C** agent playing **PandaReachDense-v3** 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 ... ```
802
[ [ -0.0222320556640625, -0.046966552734375, -0.0018177032470703125, 0.0477294921875, 0.0019350051879882812, -0.00589752197265625, 0.034088134765625, -0.0240478515625, 0.0287322998046875, 0.043853759765625, -0.061187744140625, -0.03411865234375, -0.0300140380859375, -0.0010099411010742188, -0.0265655517578125, 0.072021484375, -0.01364898681640625, 0.03326416015625, 0.0006427764892578125, -0.01519775390625, -0.01407623291015625, -0.0194854736328125, -0.0714111328125, -0.054656982421875, 0.0158233642578125, 0.0288543701171875, 0.056854248046875, 0.045257568359375, 0.03778076171875, 0.026275634765625, -0.029266357421875, -0.03466796875, -0.040313720703125, 0.00830078125, 0.002101898193359375, -0.05181884765625, -0.04632568359375, 0.006999969482421875, 0.041473388671875, 0.01251220703125, -0.030609130859375, 0.00908660888671875, -0.011016845703125, 0.03515625, -0.039642333984375, 0.02642822265625, -0.0135955810546875, 0.00603485107421875, 0.00444793701171875, 0.0176239013671875, -0.019317626953125, -0.0221099853515625, 0.0189056396484375, -0.0584716796875, 0.0029125213623046875, -0.0072174072265625, 0.0953369140625, 0.02227783203125, -0.0271453857421875, 0.001331329345703125, -0.003753662109375, 0.028228759765625, -0.0247802734375, 0.0081329345703125, 0.0452880859375, 0.043182373046875, 0.003719329833984375, -0.059844970703125, -0.015777587890625, -0.0184478759765625, 0.011016845703125, 0.00927734375, -0.0028934478759765625, -0.0010366439819335938, 0.031402587890625, 0.01554107666015625, -0.01922607421875, 0.01428985595703125, -0.03662109375, -0.034149169921875, 0.0277557373046875, 0.0265350341796875, 0.0081329345703125, 0.00850677490234375, -0.0338134765625, -0.0005035400390625, -0.0302734375, 0.03466796875, 0.0204925537109375, 0.006389617919921875, -0.04827880859375, 0.05792236328125, -0.01611328125, 0.038177490234375, 0.03155517578125, 0.01800537109375, 0.036346435546875, 0.0033817291259765625, 0.001094818115234375, -0.00312042236328125, 0.0278167724609375, 0.04718017578125, -0.00009441375732421875, 0.00909423828125, -0.02874755859375, 0.00799560546875, 0.02227783203125, -0.0771484375, -0.02984619140625, 0.02911376953125, -0.037109375, -0.04290771484375, 0.003765106201171875, -0.03875732421875, -0.020050048828125, -0.01434326171875, 0.005710601806640625, -0.050811767578125, -0.0267486572265625, -0.018096923828125, -0.035919189453125, 0.04644775390625, 0.01386260986328125, -0.064453125, 0.043975830078125, 0.03851318359375, 0.07733154296875, 0.01081085205078125, -0.045989990234375, -0.04998779296875, 0.00809478759765625, -0.0343017578125, 0.07000732421875, 0.004566192626953125, -0.031463623046875, 0.025146484375, 0.0222930908203125, 0.01439666748046875, -0.03765869140625, 0.027923583984375, -0.04022216796875, -0.01534271240234375, -0.01366424560546875, -0.034942626953125, -0.009918212890625, 0.0291595458984375, -0.05859375, 0.082275390625, 0.04022216796875, -0.054290771484375, 0.0144805908203125, -0.046539306640625, -0.0214691162109375, 0.01384735107421875, 0.0262298583984375, -0.055450439453125, -0.0251922607421875, -0.00998687744140625, 0.0162811279296875, 0.0306549072265625, -0.0214385986328125, -0.062103271484375, -0.038482666015625, -0.0017080307006835938, 0.0204010009765625, 0.09356689453125, 0.0101318359375, -0.00754547119140625, 0.01383209228515625, -0.052093505859375, -0.0166778564453125, 0.00682830810546875, -0.0271148681640625, 0.00368499755859375, -0.00649261474609375, 0.021728515625, 0.005596160888671875, 0.038543701171875, -0.039947509765625, 0.0250396728515625, -0.026611328125, 0.0184783935546875, 0.052215576171875, -0.003307342529296875, 0.04412841796875, -0.044281005859375, 0.025604248046875, 0.003368377685546875, 0.005458831787109375, 0.0119476318359375, -0.029205322265625, -0.044403076171875, -0.04425048828125, 0.007244110107421875, 0.0701904296875, -0.076171875, 0.046539306640625, 0.0199737548828125, -0.050628662109375, -0.03533935546875, -0.0020771026611328125, 0.01593017578125, 0.01094818115234375, 0.0248260498046875, -0.006809234619140625, -0.03955078125, -0.060699462890625, 0.0197296142578125, -0.029693603515625, -0.0020618438720703125, 0.0098876953125, 0.036956787109375, -0.042449951171875, 0.05120849609375, -0.0310516357421875, -0.0275726318359375, -0.0194549560546875, -0.005290985107421875, 0.006633758544921875, 0.058746337890625, 0.07183837890625, -0.016082763671875, -0.03314208984375, -0.0396728515625, -0.05938720703125, -0.0187225341796875, 0.0195159912109375, -0.034088134765625, 0.024658203125, 0.032196044921875, -0.06488037109375, 0.038238525390625, 0.042083740234375, -0.04925537109375, 0.051666259765625, -0.00820159912109375, -0.008026123046875, -0.07965087890625, 0.00972747802734375, 0.016937255859375, -0.02813720703125, -0.036712646484375, 0.025054931640625, 0.024169921875, -0.007801055908203125, -0.0478515625, 0.05780029296875, -0.040985107421875, -0.00820159912109375, -0.034820556640625, -0.00800323486328125, -0.003879547119140625, 0.014923095703125, 0.00904083251953125, 0.042022705078125, 0.0972900390625, -0.03753662109375, 0.0697021484375, 0.0555419921875, -0.01202392578125, 0.05059814453125, -0.03369140625, -0.014678955078125, -0.01015472412109375, 0.04608154296875, -0.035186767578125, -0.0273284912109375, 0.03955078125, -0.036102294921875, 0.0265960693359375, -0.0189208984375, -0.03118896484375, -0.043609619140625, -0.02392578125, 0.021270751953125, 0.026092529296875, -0.052276611328125, 0.03961181640625, 0.03912353515625, 0.0012922286987304688, -0.040313720703125, -0.052886962890625, -0.00971221923828125, -0.0103302001953125, -0.03338623046875, 0.01187896728515625, -0.0119476318359375, -0.016632080078125, -0.0038776397705078125, -0.0015783309936523438, -0.016998291015625, 0.0167236328125, 0.0114593505859375, 0.0227813720703125, -0.016143798828125, -0.034454345703125, -0.012420654296875, -0.0199127197265625, 0.01198577880859375, 0.020263671875, 0.043548583984375, -0.0291595458984375, 0.0079345703125, -0.0693359375, 0.01404571533203125, 0.022705078125, 0.00278472900390625, 0.06451416015625, 0.04632568359375, -0.04010009765625, -0.0161895751953125, -0.01288604736328125, -0.012664794921875, -0.03814697265625, 0.0214691162109375, -0.029876708984375, -0.032501220703125, 0.06256103515625, 0.01235198974609375, -0.00791168212890625, 0.032379150390625, 0.040008544921875, -0.004241943359375, 0.0830078125, 0.045989990234375, -0.0199432373046875, 0.048828125, -0.04248046875, -0.03216552734375, -0.064697265625, -0.0244598388671875, -0.03460693359375, 0.011932373046875, -0.0257415771484375, -0.007259368896484375, -0.0004334449768066406, 0.032135009765625, -0.04998779296875, 0.055389404296875, -0.0180206298828125, 0.029388427734375, 0.035186767578125, 0.0201416015625, -0.031341552734375, -0.0273284912109375, -0.007061004638671875, 0.035369873046875, -0.0222320556640625, -0.02490234375, 0.06292724609375, 0.0406494140625, 0.05853271484375, 0.02593994140625, 0.0467529296875, 0.007389068603515625, 0.03656005859375, -0.046966552734375, 0.03765869140625, 0.002685546875, -0.06390380859375, -0.01390838623046875, -0.01496124267578125, -0.06585693359375, 0.0179901123046875, -0.0196685791015625, -0.056976318359375, -0.00366973876953125, 0.00806427001953125, -0.02386474609375, 0.0027866363525390625, -0.035675048828125, 0.08062744140625, -0.00024175643920898438, -0.0271453857421875, 0.00020051002502441406, -0.046783447265625, 0.032257080078125, 0.03106689453125, -0.006671905517578125, -0.016632080078125, -0.01338958740234375, 0.02239990234375, -0.0308837890625, 0.045501708984375, -0.045684814453125, -0.0002524852752685547, 0.035919189453125, 0.0271148681640625, 0.03363037109375, 0.0361328125, -0.016754150390625, 0.019622802734375, 0.0215606689453125, -0.0728759765625, -0.006549835205078125, 0.048828125, -0.08148193359375, -0.0204925537109375, -0.05938720703125, -0.00905609130859375, 0.0037384033203125, 0.02392578125, 0.0108184814453125, 0.035125732421875, -0.03094482421875, 0.015472412109375, 0.0230712890625, 0.019500732421875, 0.031982421875, 0.052886962890625, -0.029083251953125, -0.03863525390625, 0.043487548828125, -0.01238250732421875, -0.0051422119140625, 0.00200653076171875, -0.013031005859375, -0.020782470703125, -0.0260772705078125, -0.037933349609375, 0.0100250244140625, -0.0362548828125, -0.0219879150390625, -0.033172607421875, -0.042633056640625, -0.04156494140625, -0.0207061767578125, -0.0284271240234375, -0.01264190673828125, -0.059539794921875, -0.0211029052734375, 0.017791748046875, 0.03125, -0.045867919921875, 0.06866455078125, -0.045684814453125, 0.043548583984375, 0.0013027191162109375, 0.053802490234375, -0.029815673828125, -0.022552490234375, -0.041839599609375, 0.003662109375, -0.052001953125, -0.068115234375, 0.03216552734375, -0.0086669921875, 0.06842041015625, 0.038970947265625, -0.016754150390625, 0.038238525390625, -0.0328369140625, 0.0675048828125, 0.006084442138671875, -0.0701904296875, 0.032440185546875, -0.034942626953125, 0.018646240234375, 0.050506591796875, 0.02532958984375, -0.00905609130859375, -0.028961181640625, -0.05963134765625, -0.048980712890625, 0.08251953125, 0.034423828125, -0.01580810546875, 0.0013914108276367188, 0.037994384765625, -0.018768310546875, 0.008636474609375, -0.06085205078125, -0.02642822265625, -0.046600341796875, -0.01291656494140625, -0.0141143798828125, 0.0009059906005859375, -0.0161895751953125, -0.0034542083740234375, 0.07672119140625, -0.0163421630859375, 0.0193939208984375, 0.00545501708984375, -0.004764556884765625, -0.02972412109375, -0.05059814453125, 0.02459716796875, 0.0035305023193359375, -0.048583984375, -0.0236968994140625, 0.00475311279296875, -0.02587890625, 0.00504302978515625, 0.0374755859375, -0.01263427734375, -0.0174713134765625, 0.032135009765625, 0.06689453125, 0.0038242340087890625, -0.0285491943359375, 0.054656982421875, -0.015838623046875, -0.01421356201171875, -0.045013427734375, 0.0139312744140625, -0.0014352798461914062, 0.032562255859375, -0.0095367431640625, 0.038482666015625, 0.019317626953125, -0.04083251953125, 0.031494140625, 0.029693603515625, -0.0543212890625, -0.0179443359375, 0.055816650390625, 0.020111083984375, -0.035430908203125, 0.046966552734375, -0.005741119384765625, -0.0382080078125, 0.0782470703125, 0.035308837890625, 0.062103271484375, -0.03857421875, 0.01502227783203125, 0.0419921875, 0.01235198974609375, -0.03289794921875, 0.03277587890625, 0.0010833740234375, -0.0654296875, 0.0032901763916015625, -0.034027099609375, -0.043487548828125, -0.0018701553344726562, -0.060272216796875, 0.043243408203125, -0.034332275390625, -0.0228424072265625, -0.0019283294677734375, 0.019775390625, -0.0345458984375, -0.0029315948486328125, 0.0164642333984375, 0.10565185546875, -0.04730224609375, 0.062042236328125, 0.06396484375, -0.03765869140625, -0.026611328125, 0.00804901123046875, 0.0228424072265625, -0.06744384765625, 0.021453857421875, 0.042510986328125, 0.01328277587890625, 0.01070404052734375, -0.0731201171875, -0.072021484375, 0.087646484375, -0.002765655517578125, 0.01413726806640625, 0.0190887451171875, -0.032501220703125, 0.0499267578125, -0.04302978515625, 0.032196044921875, 0.04168701171875, 0.0268096923828125, 0.0079803466796875, -0.05120849609375, -0.018310546875, -0.0386962890625, -0.0010013580322265625, -0.02081298828125, -0.08642578125, 0.06365966796875, -0.0008172988891601562, 0.00940704345703125, 0.06402587890625, 0.0623779296875, 0.056060791015625, 0.0013570785522460938, 0.042266845703125, 0.043853759765625, 0.01427459716796875, -0.00164031982421875, 0.061248779296875, -0.03662109375, 0.03912353515625, 0.04541015625, -0.048126220703125, 0.052642822265625, 0.0030517578125, 0.00673675537109375, 0.05694580078125, 0.07293701171875, -0.0222930908203125, 0.050445556640625, 0.0240020751953125, -0.00445556640625, -0.01371002197265625, 0.0284423828125, -0.0245361328125, 0.02557373046875, 0.0343017578125, 0.01061248779296875, -0.014495849609375, -0.01337432861328125, -0.0030612945556640625, -0.01190185546875, -0.04010009765625, 0.07379150390625, -0.0015354156494140625, -0.05413818359375, 0.056121826171875, 0.01132965087890625, 0.033294677734375, -0.042236328125, -0.002033233642578125, -0.01641845703125, 0.04217529296875, -0.0012617111206054688, -0.0738525390625, 0.015899658203125, -0.01401519775390625, -0.0059051513671875, -0.0019102096557617188, 0.03570556640625, -0.0240325927734375, -0.033172607421875, 0.05218505859375, 0.003902435302734375, 0.0062713623046875, 0.018524169921875, -0.07781982421875, -0.002361297607421875, -0.0290985107421875, -0.03509521484375, 0.0240325927734375, 0.03277587890625, 0.0199127197265625, 0.06866455078125, 0.031646728515625, 0.00457000732421875, -0.004245758056640625, -0.00937652587890625, 0.06207275390625, -0.04278564453125, -0.060150146484375, -0.02117919921875, 0.045684814453125, -0.020721435546875, -0.034820556640625, 0.034332275390625, 0.0751953125, 0.03759765625, -0.004932403564453125, 0.045501708984375, 0.00325775146484375, 0.04730224609375, -0.0204925537109375, 0.056396484375, -0.03118896484375, -0.0054931640625, -0.0023288726806640625, -0.060150146484375, -0.01038360595703125, 0.06707763671875, 0.0289764404296875, -0.0125579833984375, 0.03533935546875, 0.05963134765625, -0.000762939453125, 0.01073455810546875, -0.007404327392578125, 0.048980712890625, 0.016571044921875, 0.00605010986328125, 0.05120849609375, -0.042236328125, 0.0284423828125, -0.03961181640625, -0.053955078125, -0.0169677734375, -0.039215087890625, -0.0858154296875, -0.0185546875, -0.0175933837890625, -0.07867431640625, 0.002704620361328125, 0.06085205078125, 0.046661376953125, -0.068359375, -0.04351806640625, -0.006839752197265625, -0.007106781005859375, -0.03436279296875, -0.016632080078125, 0.0180816650390625, -0.02996826171875, -0.053497314453125, 0.0219573974609375, -0.01812744140625, 0.0303802490234375, -0.019927978515625, -0.0203399658203125, -0.0201873779296875, -0.0021953582763671875, 0.022216796875, 0.036224365234375, -0.0299224853515625, -0.0240020751953125, -0.0244598388671875, -0.021392822265625, -0.003025054931640625, 0.0217742919921875, -0.040863037109375, -0.01172637939453125, 0.025299072265625, 0.0054168701171875, 0.04852294921875, 0.01465606689453125, 0.03558349609375, -0.025909423828125, 0.0305328369140625, 0.005329132080078125, 0.046844482421875, 0.0184326171875, -0.0194549560546875, 0.037384033203125, 0.0305633544921875, -0.05108642578125, -0.05609130859375, 0.01142120361328125, -0.0823974609375, -0.0239715576171875, 0.10015869140625, -0.01139068603515625, -0.040679931640625, -0.0032138824462890625, -0.04473876953125, 0.027740478515625, -0.045623779296875, 0.045166015625, 0.04815673828125, -0.01068878173828125, -0.01727294921875, -0.0258331298828125, 0.048675537109375, -0.006313323974609375, -0.039031982421875, -0.016265869140625, 0.044952392578125, 0.024658203125, 0.006755828857421875, 0.046234130859375, -0.0005693435668945312, 0.027740478515625, 0.030181884765625, 0.0184478759765625, 0.007427215576171875, -0.0233917236328125, -0.030487060546875, 0.005611419677734375, -0.0178375244140625, -0.0031147003173828125 ] ]
jaweed123/Pyramids-Training
2023-10-28T22:32:04.000Z
[ "ml-agents", "tensorboard", "onnx", "Pyramids", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Pyramids", "region:us" ]
reinforcement-learning
jaweed123
null
null
jaweed123/Pyramids-Training
0
2
ml-agents
2023-10-28T22:31:56
--- 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://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub: - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction - A *longer tutorial* to understand how works ML-Agents: https://huggingface.co/learn/deep-rl-course/unit5/introduction ### Resume the training ```bash mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume ``` ### Watch your Agent play You can watch your agent **playing directly in your browser** 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity 2. Step 1: Find your model_id: jaweed123/Pyramids-Training 3. Step 2: Select your *.nn /*.onnx file 4. Click on Watch the agent play 👀
1,339
[ [ -0.041107177734375, -0.034637451171875, 0.0005784034729003906, 0.0151519775390625, -0.0104827880859375, 0.01200103759765625, 0.015869140625, -0.01611328125, 0.03314208984375, 0.0289154052734375, -0.041107177734375, -0.0498046875, -0.0299530029296875, -0.01494598388671875, 0.013214111328125, 0.0970458984375, 0.0069122314453125, 0.03204345703125, -0.0015707015991210938, 0.00974273681640625, 0.00400543212890625, -0.012054443359375, -0.06951904296875, -0.0604248046875, 0.035888671875, 0.0231781005859375, 0.06414794921875, 0.04205322265625, 0.0295867919921875, 0.0289306640625, -0.0029163360595703125, -0.03668212890625, -0.037750244140625, -0.00949859619140625, -0.0127410888671875, -0.03131103515625, -0.05926513671875, 0.0267486572265625, 0.047607421875, 0.0205078125, -0.022918701171875, 0.017303466796875, -0.02764892578125, 0.03216552734375, -0.034515380859375, 0.0177154541015625, -0.013458251953125, 0.03485107421875, 0.0232696533203125, -0.0163116455078125, -0.024566650390625, -0.0253448486328125, 0.0287322998046875, -0.0660400390625, 0.0010595321655273438, -0.0171051025390625, 0.086669921875, 0.0201873779296875, -0.033721923828125, -0.02325439453125, -0.03533935546875, 0.04718017578125, -0.0286865234375, 0.004428863525390625, 0.036956787109375, 0.052093505859375, -0.026641845703125, -0.07708740234375, -0.0299835205078125, -0.05230712890625, 0.004627227783203125, 0.007175445556640625, -0.00269317626953125, 0.0196075439453125, 0.03564453125, 0.0257110595703125, -0.031890869140625, -0.01032257080078125, -0.0174102783203125, -0.0200653076171875, 0.047454833984375, 0.00748443603515625, 0.022735595703125, 0.016998291015625, -0.04443359375, -0.034912109375, -0.048919677734375, 0.0460205078125, 0.03131103515625, 0.001720428466796875, -0.036529541015625, 0.058135986328125, 0.00438690185546875, 0.0215911865234375, 0.0295562744140625, -0.03826904296875, 0.0157470703125, 0.0169219970703125, -0.02435302734375, -0.0013303756713867188, 0.03851318359375, 0.0233154296875, 0.0208892822265625, -0.0167083740234375, -0.028228759765625, -0.0037517547607421875, 0.035980224609375, -0.0704345703125, -0.037017822265625, 0.0161590576171875, -0.0333251953125, -0.037322998046875, 0.00406646728515625, -0.029541015625, -0.019989013671875, -0.01387786865234375, 0.03521728515625, -0.038665771484375, -0.03857421875, 0.006320953369140625, -0.0303802490234375, 0.050933837890625, 0.01293182373046875, -0.059539794921875, 0.027069091796875, 0.043609619140625, 0.03973388671875, 0.0401611328125, -0.053131103515625, -0.04229736328125, 0.00685882568359375, -0.01424407958984375, 0.052581787109375, -0.0182952880859375, -0.0239410400390625, 0.0128173828125, -0.001285552978515625, -0.004390716552734375, -0.04315185546875, 0.014007568359375, -0.049530029296875, 0.01520538330078125, 0.009063720703125, -0.0487060546875, -0.021575927734375, 0.034759521484375, -0.034393310546875, 0.066650390625, 0.029876708984375, -0.037353515625, 0.0211334228515625, -0.06707763671875, -0.0289764404296875, 0.00762939453125, -0.0026092529296875, -0.035308837890625, -0.0116729736328125, -0.023345947265625, 0.0283355712890625, 0.0206146240234375, -0.010162353515625, -0.028228759765625, -0.0306243896484375, 0.0196075439453125, 0.0169219970703125, 0.07080078125, 0.007320404052734375, -0.03057861328125, 0.032135009765625, -0.057403564453125, 0.0005893707275390625, 0.01503753662109375, -0.034820556640625, 0.0211944580078125, -0.00539398193359375, 0.0011434555053710938, 0.027252197265625, 0.0285797119140625, -0.028533935546875, 0.05072021484375, -0.019866943359375, 0.0013523101806640625, 0.0484619140625, -0.0168609619140625, 0.052215576171875, -0.0390625, 0.053497314453125, 0.0026493072509765625, 0.0283355712890625, -0.0016927719116210938, -0.0296783447265625, -0.053680419921875, -0.028533935546875, 0.01013946533203125, 0.042755126953125, -0.057708740234375, 0.04473876953125, 0.01338958740234375, -0.05120849609375, -0.045318603515625, -0.01285552978515625, 0.0318603515625, 0.00872802734375, 0.0136260986328125, -0.038482666015625, -0.035430908203125, -0.044189453125, 0.02386474609375, -0.01384735107421875, -0.024322509765625, 0.0242767333984375, 0.0540771484375, -0.02703857421875, 0.06927490234375, -0.0192718505859375, -0.030181884765625, -0.0081024169921875, 0.0060577392578125, 0.0013246536254882812, 0.03912353515625, 0.051788330078125, -0.0430908203125, -0.0306854248046875, -0.0101776123046875, -0.07501220703125, 0.02227783203125, 0.0015850067138671875, -0.00394439697265625, -0.00392913818359375, 0.0179595947265625, -0.055511474609375, 0.02972412109375, 0.03326416015625, -0.0557861328125, 0.0552978515625, -0.01739501953125, -0.009521484375, -0.0706787109375, 0.0038280487060546875, 0.0030231475830078125, -0.0221099853515625, -0.0302734375, 0.0286712646484375, -0.0291290283203125, -0.01171875, -0.04638671875, 0.041046142578125, -0.0347900390625, -0.03033447265625, -0.037933349609375, -0.00823211669921875, -0.016571044921875, 0.045806884765625, -0.0027217864990234375, 0.0462646484375, 0.08819580078125, -0.05499267578125, 0.045318603515625, 0.0305938720703125, -0.005878448486328125, 0.0300750732421875, -0.0413818359375, 0.0142059326171875, -0.0168914794921875, 0.038299560546875, -0.0477294921875, -0.00970458984375, 0.054290771484375, -0.04046630859375, 0.038482666015625, -0.033782958984375, -0.0097808837890625, -0.01047515869140625, -0.026947021484375, 0.0031871795654296875, 0.035797119140625, -0.04010009765625, 0.05908203125, 0.052490234375, 0.0274200439453125, -0.06689453125, -0.00724029541015625, -0.00778961181640625, -0.0180816650390625, -0.0390625, 0.0246124267578125, -0.0147247314453125, -0.0182952880859375, 0.0003647804260253906, 0.01031494140625, -0.009765625, 0.0176239013671875, 0.041534423828125, 0.0001277923583984375, -0.0283355712890625, -0.01873779296875, -0.022308349609375, -0.033966064453125, 0.01153564453125, -0.006134033203125, 0.039886474609375, -0.03704833984375, -0.0013017654418945312, -0.061126708984375, -0.003864288330078125, 0.037445068359375, 0.00733184814453125, 0.05609130859375, 0.0679931640625, -0.021331787109375, -0.00745391845703125, -0.020538330078125, -0.0447998046875, -0.037017822265625, 0.0098419189453125, -0.046112060546875, -0.05078125, 0.03594970703125, -0.0277862548828125, 0.0055694580078125, 0.01922607421875, 0.040283203125, -0.021453857421875, 0.06732177734375, 0.0733642578125, -0.009796142578125, 0.0484619140625, -0.058563232421875, -0.01488494873046875, -0.051727294921875, -0.031951904296875, -0.0290679931640625, -0.0277099609375, -0.033538818359375, -0.01396942138671875, 0.00792694091796875, 0.040252685546875, -0.0450439453125, 0.04229736328125, -0.0225372314453125, 0.042236328125, 0.04107666015625, 0.0013074874877929688, 0.0012941360473632812, 0.01154327392578125, -0.0094146728515625, 0.01294708251953125, -0.04876708984375, -0.05657958984375, 0.0667724609375, 0.05426025390625, 0.061737060546875, 0.0117950439453125, 0.055633544921875, 0.01309967041015625, 0.038177490234375, -0.05487060546875, 0.052581787109375, 0.02593994140625, -0.0391845703125, -0.024749755859375, -0.0029201507568359375, -0.069580078125, 0.0163421630859375, -0.022430419921875, -0.044342041015625, -0.00914764404296875, 0.00923919677734375, -0.010955810546875, 0.0276031494140625, -0.04168701171875, 0.08856201171875, -0.007648468017578125, -0.01503753662109375, -0.0206146240234375, -0.053558349609375, 0.0041656494140625, 0.047607421875, -0.0233917236328125, -0.01342010498046875, -0.004474639892578125, 0.0268096923828125, -0.0205078125, 0.05816650390625, -0.04315185546875, -0.005035400390625, 0.036041259765625, 0.0210418701171875, 0.029449462890625, 0.0169219970703125, 0.009124755859375, 0.01224517822265625, -0.004665374755859375, -0.046478271484375, -0.0199127197265625, 0.0291290283203125, -0.088134765625, -0.0193939208984375, -0.04827880859375, -0.0154876708984375, 0.02484130859375, 0.0002244710922241211, 0.0190887451171875, -0.0009832382202148438, -0.032379150390625, -0.002498626708984375, 0.037353515625, -0.0057525634765625, 0.03631591796875, 0.053619384765625, -0.0258941650390625, -0.02655029296875, 0.062255859375, -0.02227783203125, -0.01215362548828125, 0.0218658447265625, 0.010040283203125, -0.0259857177734375, -0.035003662109375, -0.0465087890625, 0.01300048828125, -0.028961181640625, -0.0027256011962890625, -0.0289764404296875, -0.0174560546875, -0.03460693359375, -0.0102691650390625, -0.03619384765625, -0.00850677490234375, -0.032928466796875, -0.00240325927734375, 0.0150604248046875, 0.049468994140625, -0.0404052734375, 0.0531005859375, -0.03826904296875, 0.020111083984375, 0.0299835205078125, 0.031097412109375, -0.005512237548828125, -0.0263214111328125, -0.0286712646484375, 0.002777099609375, -0.041412353515625, -0.057861328125, 0.0261993408203125, 0.0011548995971679688, 0.04364013671875, 0.0645751953125, -0.01593017578125, 0.032806396484375, -0.0291290283203125, 0.0413818359375, 0.017669677734375, -0.045196533203125, 0.032867431640625, -0.0284881591796875, 0.0030651092529296875, 0.046875, 0.056121826171875, -0.0301055908203125, -0.004241943359375, -0.053741455078125, -0.0438232421875, 0.060546875, 0.0203704833984375, 0.005481719970703125, 0.0127716064453125, 0.0313720703125, -0.01410675048828125, 0.0213470458984375, -0.08209228515625, -0.043182373046875, -0.0233154296875, 0.0260467529296875, 0.0017642974853515625, -0.0225982666015625, -0.02301025390625, -0.028411865234375, 0.08404541015625, -0.0099334716796875, 0.0306243896484375, 0.004009246826171875, -0.00445556640625, -0.0411376953125, -0.012664794921875, 0.033721923828125, 0.04931640625, -0.048248291015625, -0.025543212890625, -0.00827789306640625, -0.044189453125, 0.012420654296875, 0.01276397705078125, -0.00579071044921875, -0.0030765533447265625, 0.006069183349609375, 0.05865478515625, 0.0128021240234375, -0.042694091796875, 0.044677734375, -0.012542724609375, -0.0156097412109375, -0.06982421875, 0.016357421875, 0.008148193359375, 0.042144775390625, 0.01122283935546875, -0.00841522216796875, -0.00432586669921875, -0.05078125, 0.02813720703125, 0.038665771484375, -0.0401611328125, -0.0205535888671875, 0.03515625, 0.01371002197265625, -0.05084228515625, 0.04644775390625, -0.040557861328125, -0.032684326171875, 0.0721435546875, 0.038970947265625, 0.06219482421875, -0.018829345703125, 0.04290771484375, 0.032318115234375, 0.01061248779296875, 0.01424407958984375, 0.0207061767578125, -0.00870513916015625, -0.06927490234375, -0.0247955322265625, -0.03631591796875, -0.042633056640625, 0.0122528076171875, -0.041595458984375, 0.0261077880859375, -0.0487060546875, -0.00782012939453125, 0.0069427490234375, 0.03143310546875, -0.042694091796875, -0.0011692047119140625, 0.0208282470703125, 0.07855224609375, -0.035308837890625, 0.07806396484375, 0.07916259765625, -0.041473388671875, -0.0611572265625, -0.0191650390625, -0.007297515869140625, -0.06103515625, 0.03509521484375, 0.0172119140625, -0.00433349609375, 0.0262908935546875, -0.06719970703125, -0.03729248046875, 0.099853515625, 0.010833740234375, -0.0213775634765625, -0.0002579689025878906, 0.004425048828125, 0.044189453125, -0.05792236328125, 0.0556640625, 0.0262908935546875, 0.0254974365234375, 0.022613525390625, -0.05023193359375, -0.0246124267578125, -0.0137176513671875, -0.027557373046875, -0.00933074951171875, -0.04718017578125, 0.06988525390625, -0.034942626953125, -0.005359649658203125, 0.032958984375, 0.045166015625, 0.0302276611328125, 0.043731689453125, 0.04290771484375, 0.06243896484375, 0.031036376953125, 0.006114959716796875, 0.06756591796875, -0.032012939453125, 0.056915283203125, 0.074951171875, -0.0322265625, 0.041015625, 0.0190582275390625, -0.0105133056640625, 0.062744140625, 0.061981201171875, -0.0229034423828125, 0.03179931640625, 0.044830322265625, -0.036895751953125, -0.0182037353515625, -0.00815582275390625, -0.0390625, 0.03033447265625, 0.0087127685546875, -0.01537322998046875, -0.02313232421875, 0.0060577392578125, -0.012176513671875, -0.01190948486328125, -0.033721923828125, 0.0802001953125, -0.00130462646484375, -0.036895751953125, 0.0299835205078125, 0.0123748779296875, 0.04547119140625, -0.06512451171875, -0.024139404296875, -0.017059326171875, 0.0292510986328125, -0.00981903076171875, -0.042083740234375, -0.016265869140625, -0.020111083984375, -0.0021266937255859375, -0.01548004150390625, 0.051422119140625, -0.0238037109375, -0.00246429443359375, 0.041748046875, 0.037139892578125, 0.042510986328125, -0.003505706787109375, -0.0872802734375, -0.033843994140625, -0.0095672607421875, -0.0300140380859375, 0.051971435546875, 0.00954437255859375, 0.0350341796875, 0.06744384765625, 0.041412353515625, -0.0176239013671875, -0.00382232666015625, -0.00006622076034545898, 0.07391357421875, -0.0531005859375, -0.034759521484375, -0.039794921875, 0.047637939453125, 0.006610870361328125, -0.0361328125, 0.040374755859375, 0.059356689453125, 0.08203125, -0.036376953125, 0.019744873046875, -0.0163116455078125, 0.00592041015625, -0.00933074951171875, 0.06011962890625, -0.02972412109375, -0.012451171875, 0.000614166259765625, -0.0712890625, 0.004669189453125, 0.07720947265625, 0.0113677978515625, -0.0017213821411132812, 0.0286102294921875, 0.06781005859375, -0.00815582275390625, -0.0098114013671875, 0.027923583984375, 0.02374267578125, 0.006771087646484375, 0.033447265625, 0.076904296875, -0.044158935546875, 0.037750244140625, -0.047393798828125, -0.02252197265625, -0.01285552978515625, -0.052886962890625, -0.0838623046875, -0.01163482666015625, -0.031036376953125, -0.0662841796875, 0.0028362274169921875, 0.076171875, 0.06829833984375, -0.05322265625, -0.050567626953125, -0.0020294189453125, 0.026458740234375, -0.024139404296875, -0.017120361328125, 0.018768310546875, -0.01641845703125, -0.056976318359375, 0.035003662109375, 0.0006031990051269531, 0.029876708984375, -0.03216552734375, -0.0408935546875, -0.028106689453125, -0.031707763671875, 0.033599853515625, 0.05303955078125, -0.0218658447265625, -0.005176544189453125, -0.016143798828125, -0.02691650390625, 0.0106964111328125, 0.06903076171875, -0.07122802734375, 0.00673675537109375, 0.00949859619140625, 0.007472991943359375, 0.0400390625, -0.016082763671875, 0.028045654296875, -0.042449951171875, 0.0247955322265625, 0.027008056640625, 0.017364501953125, -0.0029468536376953125, -0.020965576171875, 0.047637939453125, 0.021514892578125, -0.05047607421875, -0.0352783203125, 0.01861572265625, -0.07806396484375, -0.015777587890625, 0.0654296875, -0.027313232421875, -0.0184783935546875, -0.003444671630859375, -0.03302001953125, 0.0300140380859375, -0.03460693359375, 0.0682373046875, 0.0258636474609375, -0.0035266876220703125, -0.00525665283203125, -0.0259246826171875, 0.059417724609375, 0.016143798828125, -0.044158935546875, -0.04608154296875, 0.03240966796875, 0.025543212890625, 0.0212860107421875, 0.051788330078125, 0.0073699951171875, 0.035308837890625, 0.0193939208984375, 0.0401611328125, -0.0160064697265625, -0.0435791015625, -0.037933349609375, 0.0245361328125, -0.00154876708984375, -0.030914306640625 ] ]
immich-app/XLM-Roberta-Large-Vit-L-14
2023-10-28T22:59:13.000Z
[ "transformers", "onnx", "immich", "clip", "multilingual", "endpoints_compatible", "region:us" ]
null
immich-app
null
null
immich-app/XLM-Roberta-Large-Vit-L-14
0
2
transformers
2023-10-28T22:46:24
--- tags: - immich - clip - multilingual --- # Model Description This repo contains ONNX exports for the multilingual CLIP model [M-CLIP/XLM-Roberta-Large-Vit-L-14](https://huggingface.co/M-CLIP/XLM-Roberta-Large-Vit-L-14). It separates the visual and textual encoders into separate models for the purpose of generating image and text embeddings. This repo is specifically intended for use with [Immich](https://immich.app/), a self-hosted photo library.
461
[ [ -0.0305328369140625, -0.02191162109375, 0.028839111328125, 0.0197906494140625, -0.024688720703125, 0.01073455810546875, -0.00009560585021972656, -0.02105712890625, 0.039520263671875, 0.073974609375, -0.062225341796875, -0.05157470703125, -0.0264739990234375, 0.02386474609375, -0.023956298828125, 0.068603515625, -0.00980377197265625, 0.0203094482421875, -0.01273345947265625, -0.0165557861328125, -0.0015878677368164062, -0.039031982421875, -0.021270751953125, -0.00971221923828125, 0.028045654296875, 0.0411376953125, 0.05364990234375, 0.0595703125, 0.040496826171875, 0.023529052734375, 0.000031948089599609375, -0.00830078125, -0.0139617919921875, 0.01500701904296875, -0.02197265625, -0.0226898193359375, -0.0274505615234375, -0.0186920166015625, 0.057525634765625, -0.00867462158203125, 0.006633758544921875, 0.0167999267578125, -0.0232391357421875, 0.02972412109375, -0.031646728515625, -0.0127716064453125, -0.026885986328125, 0.0101165771484375, -0.0069580078125, 0.006198883056640625, -0.011505126953125, -0.022857666015625, 0.0196075439453125, -0.05059814453125, -0.01285552978515625, -0.00868988037109375, 0.07891845703125, 0.003780364990234375, -0.040985107421875, -0.0145111083984375, -0.0265350341796875, 0.054473876953125, -0.044464111328125, 0.028106689453125, 0.0088653564453125, 0.046142578125, 0.023162841796875, -0.06878662109375, -0.022308349609375, 0.00902557373046875, 0.0160369873046875, 0.01366424560546875, -0.022186279296875, -0.0070343017578125, 0.00902557373046875, 0.0258331298828125, -0.034149169921875, -0.00225830078125, -0.03973388671875, -0.026947021484375, 0.03314208984375, 0.0115509033203125, 0.06439208984375, -0.043548583984375, -0.056915283203125, -0.0193328857421875, -0.06842041015625, -0.017181396484375, 0.0288238525390625, 0.0053863525390625, -0.0302581787109375, 0.06268310546875, 0.01995849609375, 0.034942626953125, -0.0217132568359375, -0.01611328125, 0.0084381103515625, -0.03070068359375, 0.005901336669921875, -0.00598907470703125, 0.061492919921875, 0.035064697265625, 0.01532745361328125, 0.0028057098388671875, -0.0164947509765625, -0.022064208984375, 0.01013946533203125, -0.083984375, -0.01215362548828125, -0.0004584789276123047, -0.044586181640625, -0.01544189453125, 0.0238037109375, -0.04205322265625, 0.006374359130859375, -0.018157958984375, 0.0438232421875, -0.038116455078125, -0.0105133056640625, -0.005344390869140625, -0.036590576171875, -0.0037975311279296875, 0.018218994140625, -0.05126953125, 0.0257415771484375, 0.0225982666015625, 0.07696533203125, -0.01216888427734375, -0.0230712890625, -0.0288238525390625, 0.01172637939453125, -0.004184722900390625, 0.04266357421875, -0.0234222412109375, -0.0249786376953125, 0.01465606689453125, 0.051971435546875, 0.00847625732421875, -0.031585693359375, 0.04595947265625, -0.0238037109375, -0.003604888916015625, -0.0188751220703125, -0.035247802734375, -0.034210205078125, 0.034759521484375, -0.0537109375, 0.053985595703125, 0.0241851806640625, -0.044158935546875, -0.01003265380859375, -0.040252685546875, 0.002086639404296875, -0.015380859375, -0.004932403564453125, -0.0279388427734375, -0.0205230712890625, 0.01070404052734375, 0.0306396484375, -0.0322265625, -0.003147125244140625, -0.027374267578125, -0.007080078125, 0.035614013671875, 0.005443572998046875, 0.0557861328125, 0.0238494873046875, 0.011260986328125, 0.031585693359375, -0.07720947265625, 0.0018320083618164062, -0.0028629302978515625, -0.0213165283203125, -0.057098388671875, -0.033538818359375, 0.04510498046875, 0.03582763671875, 0.01116180419921875, -0.061187744140625, 0.01495361328125, -0.004364013671875, 0.0679931640625, 0.03533935546875, 0.0008168220520019531, 0.03411865234375, -0.01071929931640625, 0.06298828125, -0.004169464111328125, 0.0209197998046875, -0.04541015625, -0.0380859375, -0.041229248046875, -0.0411376953125, 0.034637451171875, 0.044830322265625, -0.05908203125, 0.0012826919555664062, -0.0035381317138671875, -0.042022705078125, -0.02239990234375, -0.005855560302734375, 0.054656982421875, -0.0010223388671875, 0.0016145706176757812, -0.0285797119140625, -0.041412353515625, -0.08245849609375, 0.0098724365234375, 0.0216522216796875, -0.00823211669921875, 0.0236358642578125, 0.06732177734375, -0.04302978515625, 0.04461669921875, -0.0294647216796875, -0.014068603515625, 0.00007826089859008789, -0.0017900466918945312, -0.002445220947265625, 0.040557861328125, 0.0750732421875, -0.0413818359375, -0.042816162109375, 0.01328277587890625, -0.04388427734375, 0.004856109619140625, 0.00955963134765625, -0.034332275390625, 0.004253387451171875, 0.0231475830078125, -0.04345703125, 0.028961181640625, 0.06317138671875, -0.028839111328125, 0.05426025390625, -0.01335906982421875, 0.017303466796875, -0.10986328125, -0.00373077392578125, 0.0086517333984375, -0.0460205078125, -0.00836944580078125, 0.0252227783203125, 0.02764892578125, -0.042755126953125, -0.0631103515625, 0.0538330078125, -0.0462646484375, -0.02398681640625, -0.00162506103515625, -0.0013713836669921875, 0.0281524658203125, 0.01514434814453125, 0.006641387939453125, 0.05828857421875, 0.03759765625, -0.0294647216796875, 0.0257415771484375, 0.05108642578125, -0.02191162109375, 0.021148681640625, -0.06256103515625, -0.0004887580871582031, 0.0249176025390625, -0.0011653900146484375, -0.045623779296875, -0.034698486328125, 0.0205230712890625, -0.0240325927734375, 0.01251983642578125, -0.0516357421875, -0.03497314453125, -0.017913818359375, -0.0362548828125, 0.03350830078125, 0.0233154296875, -0.047271728515625, 0.034393310546875, 0.05072021484375, -0.010284423828125, -0.0237274169921875, -0.07379150390625, -0.006275177001953125, -0.006481170654296875, -0.0516357421875, 0.04583740234375, -0.002246856689453125, -0.0209503173828125, 0.0165557861328125, 0.0302276611328125, -0.033966064453125, -0.0303955078125, 0.031463623046875, 0.030487060546875, -0.03411865234375, 0.00815582275390625, 0.0188751220703125, 0.004413604736328125, -0.00104522705078125, -0.015167236328125, 0.0189971923828125, 0.004848480224609375, -0.0244140625, -0.0224456787109375, 0.030609130859375, 0.05059814453125, -0.01432037353515625, 0.05291748046875, 0.051910400390625, -0.024169921875, -0.0120697021484375, -0.00867462158203125, -0.026031494140625, -0.0308837890625, 0.0283203125, -0.0269317626953125, -0.06793212890625, 0.058197021484375, 0.0002353191375732422, -0.0173797607421875, 0.034393310546875, 0.0294036865234375, 0.0242919921875, 0.06683349609375, 0.050201416015625, 0.0078582763671875, 0.037994384765625, -0.033538818359375, -0.01212310791015625, -0.0706787109375, 0.0007920265197753906, -0.0259246826171875, 0.005924224853515625, -0.03759765625, -0.0419921875, 0.013671875, -0.001018524169921875, -0.03192138671875, 0.04974365234375, -0.050567626953125, 0.043365478515625, 0.046966552734375, 0.0023403167724609375, 0.021331787109375, 0.0091094970703125, -0.0165252685546875, -0.04034423828125, -0.052459716796875, -0.03485107421875, 0.07745361328125, 0.0249786376953125, 0.066650390625, 0.0229339599609375, 0.022125244140625, 0.007762908935546875, 0.00284576416015625, -0.0682373046875, 0.02197265625, -0.039520263671875, -0.048675537109375, 0.0023365020751953125, -0.0191802978515625, -0.054290771484375, 0.0140380859375, -0.0192413330078125, -0.047332763671875, 0.003475189208984375, 0.0005598068237304688, -0.007511138916015625, 0.035400390625, -0.037353515625, 0.0843505859375, -0.0158538818359375, -0.0144195556640625, -0.005157470703125, -0.035247802734375, 0.052001953125, 0.006999969482421875, 0.008880615234375, -0.01203155517578125, -0.006069183349609375, 0.047698974609375, -0.050567626953125, 0.04974365234375, 0.019287109375, 0.0078582763671875, 0.0311431884765625, 0.0220184326171875, 0.021240234375, 0.020751953125, 0.0009531974792480469, 0.019927978515625, 0.02490234375, 0.017974853515625, -0.0262451171875, 0.06805419921875, -0.054351806640625, -0.002490997314453125, -0.0268707275390625, -0.0297088623046875, 0.0311737060546875, 0.0154266357421875, 0.0421142578125, 0.0731201171875, -0.0254058837890625, 0.027618408203125, 0.037750244140625, -0.036712646484375, 0.019989013671875, 0.035064697265625, -0.057220458984375, -0.0709228515625, 0.0648193359375, 0.014129638671875, 0.023529052734375, 0.03558349609375, 0.01456451416015625, -0.0297088623046875, -0.012237548828125, -0.062255859375, 0.0247955322265625, -0.06951904296875, -0.0240325927734375, -0.03515625, -0.02386474609375, -0.0308990478515625, -0.0019512176513671875, -0.0447998046875, -0.058502197265625, -0.04150390625, 0.0120697021484375, 0.054595947265625, 0.0694580078125, -0.01117706298828125, 0.0218505859375, -0.10198974609375, 0.018096923828125, 0.016448974609375, 0.006656646728515625, -0.005558013916015625, -0.04058837890625, -0.0323486328125, -0.006809234619140625, -0.05010986328125, -0.06732177734375, 0.07000732421875, 0.02484130859375, 0.0293121337890625, 0.037017822265625, 0.00611114501953125, 0.026824951171875, -0.04241943359375, 0.050506591796875, 0.02764892578125, -0.07354736328125, 0.048126220703125, -0.043609619140625, 0.034271240234375, -0.003894805908203125, 0.04168701171875, -0.042633056640625, -0.017364501953125, -0.029266357421875, -0.07171630859375, 0.054656982421875, 0.0222625732421875, 0.005176544189453125, -0.00494384765625, 0.0201416015625, 0.0120697021484375, 0.0010128021240234375, -0.05755615234375, -0.0117340087890625, -0.02679443359375, -0.0137786865234375, 0.0194091796875, -0.036102294921875, -0.021820068359375, -0.01543426513671875, 0.054412841796875, -0.014923095703125, 0.0183563232421875, 0.0282745361328125, -0.0259857177734375, -0.00345611572265625, 0.0021800994873046875, 0.04510498046875, 0.039093017578125, -0.007061004638671875, -0.004467010498046875, -0.0189361572265625, -0.0285797119140625, 0.0036373138427734375, -0.002605438232421875, -0.0294952392578125, 0.0246734619140625, 0.01088714599609375, 0.06689453125, 0.0631103515625, -0.061309814453125, 0.03814697265625, -0.00807952880859375, -0.0168304443359375, -0.04931640625, -0.01543426513671875, 0.0017986297607421875, 0.0236358642578125, 0.00533294677734375, 0.007843017578125, 0.0228118896484375, -0.04937744140625, 0.027618408203125, 0.0165557861328125, -0.044830322265625, -0.054931640625, 0.04705810546875, 0.0157928466796875, -0.019256591796875, 0.0352783203125, -0.0020351409912109375, -0.055877685546875, 0.05804443359375, 0.059967041015625, 0.048675537109375, -0.004428863525390625, 0.033447265625, 0.052276611328125, 0.0135040283203125, -0.0022869110107421875, 0.0380859375, 0.0080413818359375, -0.049346923828125, -0.018035888671875, -0.03802490234375, -0.049102783203125, -0.0111083984375, -0.059814453125, 0.037445068359375, -0.04083251953125, -0.032562255859375, 0.0006237030029296875, -0.042144775390625, -0.032318115234375, -0.0020122528076171875, 0.0100555419921875, 0.0709228515625, -0.03326416015625, 0.0650634765625, 0.069091796875, -0.038360595703125, -0.0533447265625, -0.041168212890625, 0.02447509765625, -0.046966552734375, 0.04827880859375, 0.0158538818359375, 0.01035308837890625, -0.007648468017578125, -0.034027099609375, -0.07928466796875, 0.06634521484375, 0.043060302734375, -0.031951904296875, 0.02581787109375, -0.005123138427734375, 0.026031494140625, -0.051849365234375, 0.02099609375, -0.00618743896484375, 0.019805908203125, -0.0029354095458984375, -0.0628662109375, 0.0002002716064453125, -0.023040771484375, 0.015655517578125, 0.00946807861328125, -0.05126953125, 0.0882568359375, -0.0102081298828125, -0.01085662841796875, 0.038726806640625, 0.014007568359375, 0.02142333984375, -0.0024394989013671875, 0.004161834716796875, 0.0361328125, 0.01245880126953125, -0.00669097900390625, 0.0849609375, -0.0198211669921875, 0.025848388671875, 0.084228515625, -0.00685882568359375, 0.07342529296875, 0.0296478271484375, -0.005924224853515625, 0.044952392578125, 0.059417724609375, -0.01165008544921875, 0.032318115234375, -0.0007872581481933594, -0.0005617141723632812, -0.009521484375, -0.01493072509765625, -0.0310821533203125, 0.0289306640625, 0.021331787109375, -0.052001953125, 0.000025928020477294922, 0.0191192626953125, -0.00603485107421875, -0.0025157928466796875, -0.030487060546875, 0.040069580078125, 0.017425537109375, -0.032135009765625, 0.026458740234375, -0.005130767822265625, 0.04547119140625, -0.05328369140625, -0.005252838134765625, 0.0178680419921875, 0.022552490234375, -0.0001327991485595703, -0.07623291015625, 0.048553466796875, -0.00997161865234375, -0.0242462158203125, -0.019805908203125, 0.07269287109375, -0.038818359375, -0.0455322265625, 0.044647216796875, 0.028045654296875, 0.021820068359375, -0.0116119384765625, -0.06201171875, 0.017333984375, -0.0032501220703125, -0.0167999267578125, 0.0265350341796875, 0.03997802734375, -0.0072021484375, 0.054931640625, 0.044952392578125, -0.013519287109375, 0.01399993896484375, 0.0282135009765625, 0.058746337890625, -0.0557861328125, -0.03857421875, -0.047393798828125, 0.038360595703125, -0.0037822723388671875, -0.0513916015625, 0.06842041015625, 0.04791259765625, 0.0447998046875, -0.05755615234375, 0.04833984375, 0.0016126632690429688, 0.0246124267578125, -0.04833984375, 0.07403564453125, -0.06207275390625, -0.0175323486328125, -0.0265960693359375, -0.06890869140625, -0.01873779296875, 0.04107666015625, 0.0206756591796875, -0.056884765625, 0.033843994140625, 0.04656982421875, -0.0172882080078125, -0.00438690185546875, 0.0341796875, 0.0027370452880859375, -0.00843048095703125, 0.008056640625, 0.058685302734375, -0.057159423828125, 0.051513671875, -0.0277252197265625, 0.0072479248046875, -0.01006317138671875, -0.061248779296875, -0.0794677734375, -0.047119140625, -0.0178985595703125, -0.02825927734375, -0.01068878173828125, 0.07452392578125, 0.07794189453125, -0.0570068359375, -0.031005859375, 0.0211639404296875, 0.006153106689453125, 0.0218353271484375, -0.0119781494140625, 0.003055572509765625, 0.01861572265625, -0.055633544921875, 0.0128173828125, 0.031524658203125, 0.037200927734375, -0.035186767578125, -0.026947021484375, -0.0019083023071289062, -0.0090179443359375, 0.044097900390625, 0.03326416015625, -0.05206298828125, -0.0126800537109375, 0.0130157470703125, -0.00673675537109375, 0.0194244384765625, 0.050048828125, -0.01849365234375, 0.0333251953125, 0.046905517578125, 0.02685546875, 0.050323486328125, -0.0208892822265625, 0.064453125, -0.053131103515625, 0.0419921875, -0.0103759765625, 0.058319091796875, 0.032501220703125, -0.0198211669921875, 0.0369873046875, 0.01126861572265625, -0.047027587890625, -0.04864501953125, 0.01326751708984375, -0.0799560546875, -0.0140380859375, 0.07666015625, -0.038726806640625, -0.05291748046875, 0.014251708984375, -0.031005859375, 0.012420654296875, -0.039581298828125, 0.0203094482421875, 0.051055908203125, 0.036376953125, -0.054473876953125, -0.037750244140625, 0.0160980224609375, -0.0128021240234375, -0.052276611328125, -0.037078857421875, 0.0172271728515625, 0.0264892578125, 0.029510498046875, 0.0236968994140625, -0.027191162109375, 0.02313232421875, 0.003055572509765625, 0.037841796875, -0.0015897750854492188, -0.0277557373046875, -0.00927734375, -0.013153076171875, -0.0179901123046875, -0.02239990234375 ] ]
jaweed123/a2c-PandaReachDense-v3
2023-10-28T23:53:10.000Z
[ "stable-baselines3", "PandaReachDense-v3", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
jaweed123
null
null
jaweed123/a2c-PandaReachDense-v3
0
2
stable-baselines3
2023-10-28T23:47:41
--- library_name: stable-baselines3 tags: - PandaReachDense-v3 - deep-reinforcement-learning - reinforcement-learning - stable-baselines3 model-index: - name: A2C results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: PandaReachDense-v3 type: PandaReachDense-v3 metrics: - type: mean_reward value: -0.22 +/- 0.09 name: mean_reward verified: false --- # **A2C** Agent playing **PandaReachDense-v3** This is a trained model of a **A2C** agent playing **PandaReachDense-v3** 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 ... ```
802
[ [ -0.0222320556640625, -0.046966552734375, -0.001811981201171875, 0.0477294921875, 0.0019321441650390625, -0.0059051513671875, 0.034088134765625, -0.0240325927734375, 0.02874755859375, 0.043853759765625, -0.061187744140625, -0.03411865234375, -0.0300140380859375, -0.0009937286376953125, -0.0265960693359375, 0.072021484375, -0.0136566162109375, 0.03326416015625, 0.0006146430969238281, -0.01519012451171875, -0.01404571533203125, -0.0194854736328125, -0.0714111328125, -0.054656982421875, 0.01580810546875, 0.0288238525390625, 0.056884765625, 0.04522705078125, 0.03778076171875, 0.0262908935546875, -0.029296875, -0.03466796875, -0.040313720703125, 0.00826263427734375, 0.00209808349609375, -0.0517578125, -0.046356201171875, 0.00701141357421875, 0.041473388671875, 0.012542724609375, -0.030609130859375, 0.00908660888671875, -0.01099395751953125, 0.03515625, -0.03961181640625, 0.0264434814453125, -0.0135650634765625, 0.0060272216796875, 0.0044403076171875, 0.0176239013671875, -0.019287109375, -0.0220947265625, 0.0189056396484375, -0.0584716796875, 0.0029277801513671875, -0.007213592529296875, 0.095458984375, 0.0222625732421875, -0.0271148681640625, 0.0013093948364257812, -0.00371551513671875, 0.028228759765625, -0.0247650146484375, 0.00812530517578125, 0.0452880859375, 0.04315185546875, 0.0037059783935546875, -0.059814453125, -0.015777587890625, -0.0184326171875, 0.01097869873046875, 0.00923919677734375, -0.00290679931640625, -0.0010633468627929688, 0.031402587890625, 0.01555633544921875, -0.01922607421875, 0.01428985595703125, -0.03662109375, -0.034088134765625, 0.0277557373046875, 0.02655029296875, 0.00815582275390625, 0.00849151611328125, -0.0338134765625, -0.00048732757568359375, -0.0302734375, 0.034637451171875, 0.020477294921875, 0.0063934326171875, -0.04833984375, 0.05792236328125, -0.0161285400390625, 0.038177490234375, 0.03155517578125, 0.01800537109375, 0.036346435546875, 0.0033588409423828125, 0.0010929107666015625, -0.0031528472900390625, 0.027862548828125, 0.04718017578125, -0.0000814199447631836, 0.00908660888671875, -0.028717041015625, 0.00798797607421875, 0.022247314453125, -0.0771484375, -0.02984619140625, 0.0291290283203125, -0.037109375, -0.042877197265625, 0.003772735595703125, -0.0386962890625, -0.02001953125, -0.0143280029296875, 0.0056610107421875, -0.050811767578125, -0.0267486572265625, -0.0180816650390625, -0.035919189453125, 0.04644775390625, 0.01386260986328125, -0.06451416015625, 0.0439453125, 0.03851318359375, 0.0772705078125, 0.01084136962890625, -0.045989990234375, -0.049957275390625, 0.00807952880859375, -0.0343017578125, 0.07000732421875, 0.00455474853515625, -0.031494140625, 0.025146484375, 0.02227783203125, 0.01441192626953125, -0.03765869140625, 0.027923583984375, -0.04022216796875, -0.015350341796875, -0.013702392578125, -0.034912109375, -0.00989532470703125, 0.0291595458984375, -0.05859375, 0.082275390625, 0.040252685546875, -0.054290771484375, 0.01448822021484375, -0.0465087890625, -0.021484375, 0.01386260986328125, 0.0262298583984375, -0.055450439453125, -0.0251617431640625, -0.00997161865234375, 0.016265869140625, 0.0306549072265625, -0.0214385986328125, -0.062164306640625, -0.0384521484375, -0.0017099380493164062, 0.0204315185546875, 0.09356689453125, 0.0101318359375, -0.007503509521484375, 0.01384735107421875, -0.052001953125, -0.0166778564453125, 0.006832122802734375, -0.0271148681640625, 0.003673553466796875, -0.006519317626953125, 0.0216827392578125, 0.00557708740234375, 0.038543701171875, -0.039947509765625, 0.0250396728515625, -0.026611328125, 0.0184783935546875, 0.052215576171875, -0.003326416015625, 0.044097900390625, -0.044281005859375, 0.02557373046875, 0.0033721923828125, 0.0054473876953125, 0.011932373046875, -0.0291595458984375, -0.044403076171875, -0.04425048828125, 0.007213592529296875, 0.070068359375, -0.0762939453125, 0.046539306640625, 0.0199432373046875, -0.05059814453125, -0.0352783203125, -0.0020751953125, 0.01593017578125, 0.01092529296875, 0.0248260498046875, -0.006824493408203125, -0.03955078125, -0.060699462890625, 0.01971435546875, -0.0297088623046875, -0.0020542144775390625, 0.00983428955078125, 0.036956787109375, -0.042449951171875, 0.05120849609375, -0.0310516357421875, -0.027557373046875, -0.0194549560546875, -0.0052947998046875, 0.006622314453125, 0.05877685546875, 0.07183837890625, -0.0160675048828125, -0.03314208984375, -0.0396728515625, -0.05938720703125, -0.01873779296875, 0.0195159912109375, -0.03411865234375, 0.024658203125, 0.032196044921875, -0.06488037109375, 0.0382080078125, 0.042022705078125, -0.04931640625, 0.0516357421875, -0.0081939697265625, -0.008026123046875, -0.07965087890625, 0.0097198486328125, 0.0169677734375, -0.02813720703125, -0.036773681640625, 0.025054931640625, 0.024200439453125, -0.0078125, -0.0478515625, 0.05780029296875, -0.04095458984375, -0.008209228515625, -0.034820556640625, -0.00800323486328125, -0.003864288330078125, 0.0149078369140625, 0.00905609130859375, 0.042022705078125, 0.0972900390625, -0.03753662109375, 0.06964111328125, 0.055572509765625, -0.01198577880859375, 0.05059814453125, -0.03369140625, -0.014678955078125, -0.010162353515625, 0.0460205078125, -0.035186767578125, -0.0273590087890625, 0.03955078125, -0.036102294921875, 0.026580810546875, -0.0189056396484375, -0.03118896484375, -0.0435791015625, -0.02392578125, 0.0212554931640625, 0.026092529296875, -0.05230712890625, 0.03961181640625, 0.039031982421875, 0.001285552978515625, -0.040313720703125, -0.0528564453125, -0.00970458984375, -0.01031494140625, -0.03338623046875, 0.01184844970703125, -0.01195526123046875, -0.01666259765625, -0.0038738250732421875, -0.001590728759765625, -0.0170135498046875, 0.0167236328125, 0.01143646240234375, 0.022796630859375, -0.0161590576171875, -0.03448486328125, -0.012420654296875, -0.0198974609375, 0.01200103759765625, 0.020263671875, 0.04351806640625, -0.0291900634765625, 0.00792694091796875, -0.0693359375, 0.01404571533203125, 0.022705078125, 0.0028057098388671875, 0.06451416015625, 0.04632568359375, -0.0400390625, -0.016204833984375, -0.01287841796875, -0.01263427734375, -0.03814697265625, 0.0214691162109375, -0.0298919677734375, -0.032501220703125, 0.0625, 0.01235198974609375, -0.0079345703125, 0.032379150390625, 0.040008544921875, -0.004230499267578125, 0.08294677734375, 0.045989990234375, -0.0199432373046875, 0.048828125, -0.04248046875, -0.032135009765625, -0.064697265625, -0.0244598388671875, -0.034576416015625, 0.01195526123046875, -0.0257415771484375, -0.007259368896484375, -0.0004742145538330078, 0.032135009765625, -0.0499267578125, 0.055389404296875, -0.01800537109375, 0.029388427734375, 0.03515625, 0.020111083984375, -0.03131103515625, -0.0273284912109375, -0.007022857666015625, 0.03546142578125, -0.0222320556640625, -0.0249176025390625, 0.06292724609375, 0.0406494140625, 0.05853271484375, 0.025909423828125, 0.0467529296875, 0.007389068603515625, 0.036590576171875, -0.046966552734375, 0.03765869140625, 0.0026760101318359375, -0.06390380859375, -0.0139007568359375, -0.0149688720703125, -0.06585693359375, 0.01800537109375, -0.019683837890625, -0.05694580078125, -0.0036640167236328125, 0.00804901123046875, -0.0238800048828125, 0.0027828216552734375, -0.03564453125, 0.08062744140625, -0.00022602081298828125, -0.0271148681640625, 0.00022113323211669922, -0.046783447265625, 0.03228759765625, 0.03106689453125, -0.00666046142578125, -0.01666259765625, -0.0133819580078125, 0.0223846435546875, -0.0308837890625, 0.0455322265625, -0.045654296875, -0.00027441978454589844, 0.035919189453125, 0.0270843505859375, 0.0335693359375, 0.0361328125, -0.016754150390625, 0.019622802734375, 0.0216064453125, -0.0728759765625, -0.006542205810546875, 0.048828125, -0.08148193359375, -0.0204925537109375, -0.05938720703125, -0.00904083251953125, 0.003757476806640625, 0.02392578125, 0.0107879638671875, 0.035125732421875, -0.0309600830078125, 0.0154571533203125, 0.0230560302734375, 0.0194854736328125, 0.031982421875, 0.0528564453125, -0.0291290283203125, -0.03863525390625, 0.04345703125, -0.0124053955078125, -0.005126953125, 0.002002716064453125, -0.01300048828125, -0.020751953125, -0.0260467529296875, -0.037933349609375, 0.01007080078125, -0.0362548828125, -0.021942138671875, -0.033172607421875, -0.0426025390625, -0.04156494140625, -0.020721435546875, -0.028411865234375, -0.0126190185546875, -0.05950927734375, -0.0211181640625, 0.01776123046875, 0.03131103515625, -0.045867919921875, 0.06866455078125, -0.045684814453125, 0.043548583984375, 0.0012969970703125, 0.05377197265625, -0.029815673828125, -0.0225067138671875, -0.04180908203125, 0.003650665283203125, -0.052001953125, -0.068115234375, 0.03216552734375, -0.00870513916015625, 0.06842041015625, 0.038970947265625, -0.016754150390625, 0.038238525390625, -0.03277587890625, 0.0675048828125, 0.00609588623046875, -0.0701904296875, 0.032379150390625, -0.034942626953125, 0.0186004638671875, 0.050506591796875, 0.025360107421875, -0.00905609130859375, -0.028961181640625, -0.0596923828125, -0.0489501953125, 0.0823974609375, 0.03436279296875, -0.015777587890625, 0.001361846923828125, 0.03802490234375, -0.018768310546875, 0.008636474609375, -0.06085205078125, -0.0264129638671875, -0.046600341796875, -0.01290130615234375, -0.01413726806640625, 0.0009050369262695312, -0.016204833984375, -0.003467559814453125, 0.07666015625, -0.0163726806640625, 0.01934814453125, 0.005458831787109375, -0.00473785400390625, -0.02972412109375, -0.050628662109375, 0.024566650390625, 0.003528594970703125, -0.048553466796875, -0.023712158203125, 0.004772186279296875, -0.02587890625, 0.0050201416015625, 0.0374755859375, -0.01261138916015625, -0.0174713134765625, 0.032135009765625, 0.06695556640625, 0.0038242340087890625, -0.028533935546875, 0.054718017578125, -0.0158233642578125, -0.014190673828125, -0.044952392578125, 0.01390838623046875, -0.0014524459838867188, 0.0325927734375, -0.00954437255859375, 0.0384521484375, 0.019317626953125, -0.040863037109375, 0.031494140625, 0.02972412109375, -0.054290771484375, -0.017974853515625, 0.0557861328125, 0.020111083984375, -0.035430908203125, 0.046966552734375, -0.005733489990234375, -0.0382080078125, 0.0782470703125, 0.035308837890625, 0.062103271484375, -0.03851318359375, 0.01502227783203125, 0.041961669921875, 0.01235198974609375, -0.032867431640625, 0.03277587890625, 0.001056671142578125, -0.06536865234375, 0.003307342529296875, -0.034027099609375, -0.043487548828125, -0.0018815994262695312, -0.06024169921875, 0.043212890625, -0.034423828125, -0.0228118896484375, -0.0019235610961914062, 0.019744873046875, -0.0345458984375, -0.0029296875, 0.0164337158203125, 0.1055908203125, -0.04730224609375, 0.062042236328125, 0.06390380859375, -0.03765869140625, -0.026611328125, 0.0080718994140625, 0.0228424072265625, -0.06744384765625, 0.021484375, 0.04254150390625, 0.0132904052734375, 0.0106658935546875, -0.0731201171875, -0.072021484375, 0.08758544921875, -0.0027618408203125, 0.01415252685546875, 0.019073486328125, -0.032501220703125, 0.0499267578125, -0.042999267578125, 0.032196044921875, 0.04168701171875, 0.02679443359375, 0.0079803466796875, -0.05120849609375, -0.0182952880859375, -0.0386962890625, -0.000995635986328125, -0.0207977294921875, -0.08636474609375, 0.06365966796875, -0.0008206367492675781, 0.00939178466796875, 0.0640869140625, 0.062408447265625, 0.056060791015625, 0.001346588134765625, 0.042205810546875, 0.043853759765625, 0.01427459716796875, -0.00164794921875, 0.061248779296875, -0.03662109375, 0.03912353515625, 0.04534912109375, -0.048095703125, 0.052642822265625, 0.0030574798583984375, 0.00670623779296875, 0.05694580078125, 0.07293701171875, -0.0222930908203125, 0.0504150390625, 0.0240020751953125, -0.004459381103515625, -0.01371002197265625, 0.0284271240234375, -0.0245361328125, 0.025543212890625, 0.0343017578125, 0.01061248779296875, -0.01451873779296875, -0.01338958740234375, -0.0030422210693359375, -0.01189422607421875, -0.04010009765625, 0.07379150390625, -0.0015287399291992188, -0.054168701171875, 0.056121826171875, 0.0113067626953125, 0.03326416015625, -0.042205810546875, -0.00202178955078125, -0.01641845703125, 0.04217529296875, -0.0012836456298828125, -0.0738525390625, 0.0159454345703125, -0.0139923095703125, -0.005889892578125, -0.001926422119140625, 0.03570556640625, -0.0240020751953125, -0.033172607421875, 0.05218505859375, 0.0038928985595703125, 0.006305694580078125, 0.0185546875, -0.07781982421875, -0.0023403167724609375, -0.02911376953125, -0.0350341796875, 0.0240478515625, 0.032806396484375, 0.0199127197265625, 0.068603515625, 0.03167724609375, 0.004543304443359375, -0.004268646240234375, -0.0093841552734375, 0.062103271484375, -0.04278564453125, -0.060150146484375, -0.021209716796875, 0.045684814453125, -0.0207061767578125, -0.034820556640625, 0.034332275390625, 0.07513427734375, 0.03759765625, -0.004917144775390625, 0.0455322265625, 0.0032501220703125, 0.0472412109375, -0.0204925537109375, 0.056396484375, -0.0311431884765625, -0.005496978759765625, -0.0023403167724609375, -0.060089111328125, -0.0103912353515625, 0.06707763671875, 0.0289306640625, -0.0125579833984375, 0.03533935546875, 0.0595703125, -0.0007243156433105469, 0.01074981689453125, -0.007404327392578125, 0.0489501953125, 0.0165863037109375, 0.00603485107421875, 0.05120849609375, -0.04217529296875, 0.0284271240234375, -0.03961181640625, -0.053985595703125, -0.016937255859375, -0.0391845703125, -0.08587646484375, -0.0185699462890625, -0.0175933837890625, -0.07867431640625, 0.002696990966796875, 0.06085205078125, 0.046630859375, -0.06829833984375, -0.04351806640625, -0.0068206787109375, -0.007106781005859375, -0.034332275390625, -0.0166168212890625, 0.01806640625, -0.02996826171875, -0.053497314453125, 0.0219573974609375, -0.0181121826171875, 0.0303802490234375, -0.0199432373046875, -0.02032470703125, -0.0201568603515625, -0.0021991729736328125, 0.0222015380859375, 0.0362548828125, -0.029937744140625, -0.0240020751953125, -0.0244598388671875, -0.0214080810546875, -0.0030002593994140625, 0.0217742919921875, -0.040863037109375, -0.01174163818359375, 0.025299072265625, 0.005401611328125, 0.04852294921875, 0.01465606689453125, 0.035552978515625, -0.025909423828125, 0.0305328369140625, 0.005283355712890625, 0.046844482421875, 0.018463134765625, -0.019439697265625, 0.037384033203125, 0.0305633544921875, -0.05108642578125, -0.056060791015625, 0.01142120361328125, -0.0823974609375, -0.023956298828125, 0.10015869140625, -0.011383056640625, -0.040679931640625, -0.0031986236572265625, -0.044769287109375, 0.0277252197265625, -0.045562744140625, 0.045166015625, 0.04815673828125, -0.01068878173828125, -0.017242431640625, -0.0258026123046875, 0.04864501953125, -0.00634002685546875, -0.03912353515625, -0.0162506103515625, 0.044921875, 0.0246429443359375, 0.00678253173828125, 0.046234130859375, -0.0005712509155273438, 0.0277252197265625, 0.030181884765625, 0.0184173583984375, 0.007427215576171875, -0.0233917236328125, -0.030487060546875, 0.00562286376953125, -0.017822265625, -0.0030956268310546875 ] ]
jaweed123/a2c-PandaPickAndPlace-v3
2023-10-29T00:59:39.000Z
[ "stable-baselines3", "PandaPickAndPlace-v3", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
jaweed123
null
null
jaweed123/a2c-PandaPickAndPlace-v3
0
2
stable-baselines3
2023-10-29T00:54:06
--- library_name: stable-baselines3 tags: - PandaPickAndPlace-v3 - deep-reinforcement-learning - reinforcement-learning - stable-baselines3 model-index: - name: A2C results: - task: type: reinforcement-learning name: reinforcement-learning dataset: name: PandaPickAndPlace-v3 type: PandaPickAndPlace-v3 metrics: - type: mean_reward value: -50.00 +/- 0.00 name: mean_reward verified: false --- # **A2C** Agent playing **PandaPickAndPlace-v3** This is a trained model of a **A2C** agent playing **PandaPickAndPlace-v3** 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 ... ```
813
[ [ -0.0178375244140625, -0.047027587890625, -0.0033206939697265625, 0.050140380859375, 0.0005803108215332031, -0.0009918212890625, 0.0270843505859375, -0.0246124267578125, 0.02655029296875, 0.037750244140625, -0.04638671875, -0.03778076171875, -0.032958984375, -0.0101776123046875, -0.022613525390625, 0.06524658203125, -0.005954742431640625, 0.0311126708984375, -0.0003826618194580078, -0.0188446044921875, -0.0182037353515625, -0.018218994140625, -0.06756591796875, -0.051910400390625, 0.0096282958984375, 0.03277587890625, 0.060791015625, 0.0462646484375, 0.03277587890625, 0.0264434814453125, -0.0229949951171875, -0.038665771484375, -0.0404052734375, 0.0018110275268554688, 0.00591278076171875, -0.050262451171875, -0.0509033203125, 0.010711669921875, 0.042724609375, 0.0121002197265625, -0.032257080078125, 0.01528167724609375, -0.0178070068359375, 0.030609130859375, -0.03729248046875, 0.0285491943359375, -0.016326904296875, 0.00150299072265625, 0.0070343017578125, 0.01399993896484375, -0.0172119140625, -0.0281524658203125, 0.0105438232421875, -0.06500244140625, 0.0003933906555175781, -0.0100250244140625, 0.09429931640625, 0.027587890625, -0.0234527587890625, 0.001674652099609375, -0.01197052001953125, 0.028533935546875, -0.0236358642578125, 0.0101470947265625, 0.04669189453125, 0.04339599609375, 0.0001512765884399414, -0.054168701171875, -0.01812744140625, -0.0250396728515625, 0.0174407958984375, 0.00768280029296875, 0.00014829635620117188, -0.004344940185546875, 0.03387451171875, 0.0105438232421875, -0.016204833984375, 0.0211334228515625, -0.049072265625, -0.029327392578125, 0.037353515625, 0.01934814453125, 0.014862060546875, 0.01313018798828125, -0.037017822265625, 0.002185821533203125, -0.0374755859375, 0.037017822265625, 0.027862548828125, 0.01526641845703125, -0.05450439453125, 0.06439208984375, -0.007904052734375, 0.0433349609375, 0.032989501953125, 0.00533294677734375, 0.03851318359375, 0.0113067626953125, -0.0012445449829101562, 0.000052034854888916016, 0.028778076171875, 0.0491943359375, 0.008209228515625, 0.0161590576171875, -0.02545166015625, 0.003902435302734375, 0.019439697265625, -0.07098388671875, -0.035919189453125, 0.027618408203125, -0.035003662109375, -0.039276123046875, -0.0013942718505859375, -0.037811279296875, -0.018585205078125, -0.01739501953125, 0.008575439453125, -0.05023193359375, -0.0311279296875, -0.0220794677734375, -0.03411865234375, 0.05255126953125, 0.01267242431640625, -0.06329345703125, 0.041259765625, 0.030792236328125, 0.0692138671875, 0.01056671142578125, -0.041839599609375, -0.04754638671875, 0.007633209228515625, -0.03375244140625, 0.0694580078125, 0.0011739730834960938, -0.03497314453125, 0.0168914794921875, 0.00946807861328125, 0.0188140869140625, -0.035247802734375, 0.0291290283203125, -0.03021240234375, -0.0132598876953125, -0.01023101806640625, -0.0289764404296875, -0.004901885986328125, 0.0276641845703125, -0.05938720703125, 0.087646484375, 0.039764404296875, -0.0472412109375, 0.0270843505859375, -0.044342041015625, -0.015869140625, 0.0235748291015625, 0.006259918212890625, -0.05560302734375, -0.025543212890625, -0.01092529296875, 0.016387939453125, 0.0258941650390625, -0.0221405029296875, -0.059112548828125, -0.04254150390625, 0.0012950897216796875, 0.02313232421875, 0.09326171875, 0.009307861328125, -0.0014057159423828125, 0.0138092041015625, -0.06097412109375, -0.0213623046875, 0.006900787353515625, -0.033599853515625, -0.0004057884216308594, -0.0178375244140625, 0.0333251953125, 0.01128387451171875, 0.0313720703125, -0.04156494140625, 0.0299072265625, -0.0243682861328125, 0.00970458984375, 0.0546875, -0.00792694091796875, 0.04473876953125, -0.037353515625, 0.030853271484375, -0.0035724639892578125, -0.002445220947265625, 0.0224609375, -0.03668212890625, -0.031341552734375, -0.0596923828125, 0.00765228271484375, 0.062103271484375, -0.0704345703125, 0.04364013671875, 0.021270751953125, -0.052947998046875, -0.03125, -0.0025615692138671875, 0.0160369873046875, 0.01268768310546875, 0.024169921875, -0.0109100341796875, -0.03851318359375, -0.056365966796875, 0.0160675048828125, -0.030609130859375, -0.0038242340087890625, 0.01153564453125, 0.02984619140625, -0.0302734375, 0.054412841796875, -0.033721923828125, -0.02777099609375, -0.0231781005859375, -0.0017137527465820312, 0.0110626220703125, 0.0614013671875, 0.08154296875, -0.02545166015625, -0.036865234375, -0.042266845703125, -0.0557861328125, -0.0145721435546875, 0.01450347900390625, -0.026824951171875, 0.0174407958984375, 0.03131103515625, -0.06884765625, 0.042205810546875, 0.033966064453125, -0.051849365234375, 0.0545654296875, -0.01282501220703125, -0.00559234619140625, -0.07635498046875, 0.01535797119140625, 0.0239715576171875, -0.02178955078125, -0.0421142578125, 0.0213623046875, 0.0208282470703125, -0.011810302734375, -0.054962158203125, 0.0623779296875, -0.040924072265625, -0.01096343994140625, -0.0311431884765625, -0.009613037109375, -0.01270294189453125, 0.0218048095703125, 0.006526947021484375, 0.036956787109375, 0.094970703125, -0.045196533203125, 0.06781005859375, 0.057891845703125, -0.005519866943359375, 0.0572509765625, -0.033050537109375, -0.0166473388671875, -0.01415252685546875, 0.043548583984375, -0.04534912109375, -0.0295562744140625, 0.040252685546875, -0.04058837890625, 0.032684326171875, -0.0275726318359375, -0.026824951171875, -0.037994384765625, -0.0262451171875, 0.033782958984375, 0.030242919921875, -0.0467529296875, 0.038177490234375, 0.0439453125, 0.002471923828125, -0.05096435546875, -0.055694580078125, -0.014068603515625, -0.01483917236328125, -0.0233154296875, 0.019439697265625, -0.01097869873046875, -0.0194244384765625, -0.0067291259765625, -0.003467559814453125, -0.016265869140625, 0.01372528076171875, 0.01812744140625, 0.0251312255859375, -0.010040283203125, -0.03375244140625, -0.0151214599609375, -0.020599365234375, 0.01113128662109375, 0.0204315185546875, 0.042388916015625, -0.0225372314453125, 0.007381439208984375, -0.06329345703125, 0.0048828125, 0.0286712646484375, 0.00524139404296875, 0.061065673828125, 0.05059814453125, -0.047119140625, -0.01360321044921875, -0.0109405517578125, -0.00691986083984375, -0.0364990234375, 0.0199737548828125, -0.037078857421875, -0.0257568359375, 0.059722900390625, 0.01654052734375, -0.0118560791015625, 0.03265380859375, 0.049468994140625, -0.0006117820739746094, 0.075927734375, 0.048828125, -0.0143280029296875, 0.045928955078125, -0.04193115234375, -0.031219482421875, -0.0576171875, -0.0286102294921875, -0.029693603515625, 0.0103759765625, -0.0298919677734375, -0.00958251953125, -0.00028967857360839844, 0.0310516357421875, -0.045928955078125, 0.058502197265625, -0.0251007080078125, 0.031768798828125, 0.036834716796875, 0.0152130126953125, -0.032867431640625, -0.026824951171875, -0.01287841796875, 0.031402587890625, -0.018829345703125, -0.01715087890625, 0.06854248046875, 0.042694091796875, 0.06036376953125, 0.0261077880859375, 0.04443359375, 0.0077972412109375, 0.034637451171875, -0.046600341796875, 0.039276123046875, 0.00745391845703125, -0.058074951171875, -0.0181884765625, -0.01033782958984375, -0.062744140625, 0.0107574462890625, -0.0234832763671875, -0.058074951171875, 0.0015430450439453125, 0.01245880126953125, -0.027984619140625, 0.0005307197570800781, -0.0291748046875, 0.0777587890625, -0.00580596923828125, -0.0293426513671875, 0.001220703125, -0.044097900390625, 0.033416748046875, 0.031219482421875, -0.006259918212890625, -0.0272064208984375, -0.01004791259765625, 0.0250091552734375, -0.0250701904296875, 0.03948974609375, -0.053253173828125, -0.0024509429931640625, 0.035003662109375, 0.0218658447265625, 0.0267333984375, 0.0364990234375, -0.01375579833984375, 0.01244354248046875, 0.0161285400390625, -0.07366943359375, -0.006473541259765625, 0.05084228515625, -0.0816650390625, -0.0125885009765625, -0.05657958984375, -0.01093292236328125, 0.0049285888671875, 0.0189056396484375, 0.01073455810546875, 0.03118896484375, -0.03326416015625, 0.0111846923828125, 0.0166168212890625, 0.007381439208984375, 0.03021240234375, 0.044189453125, -0.0283203125, -0.03558349609375, 0.045135498046875, -0.00797271728515625, -0.01152801513671875, 0.004730224609375, -0.01178741455078125, -0.0287322998046875, -0.030242919921875, -0.038330078125, 0.00896453857421875, -0.03839111328125, -0.019744873046875, -0.02691650390625, -0.037384033203125, -0.04315185546875, -0.0175323486328125, -0.031982421875, -0.02655029296875, -0.051513671875, -0.0287017822265625, 0.022735595703125, 0.0305328369140625, -0.04888916015625, 0.05462646484375, -0.036834716796875, 0.048675537109375, 0.0033626556396484375, 0.054046630859375, -0.03753662109375, -0.0230560302734375, -0.03448486328125, -0.0037841796875, -0.038543701171875, -0.06573486328125, 0.036895751953125, -0.00519561767578125, 0.07257080078125, 0.033172607421875, -0.0145721435546875, 0.0355224609375, -0.0269012451171875, 0.0650634765625, 0.00817108154296875, -0.0645751953125, 0.0302581787109375, -0.0362548828125, 0.0189056396484375, 0.050018310546875, 0.0279388427734375, -0.002826690673828125, -0.0271453857421875, -0.057098388671875, -0.055999755859375, 0.07958984375, 0.037139892578125, -0.01486968994140625, 0.004878997802734375, 0.038848876953125, -0.017242431640625, 0.0111846923828125, -0.0653076171875, -0.03204345703125, -0.047027587890625, -0.016754150390625, -0.0099029541015625, 0.0011129379272460938, -0.0188446044921875, -0.00901031494140625, 0.07025146484375, -0.01543426513671875, 0.027435302734375, -0.0008573532104492188, -0.00868988037109375, -0.0328369140625, -0.04974365234375, 0.031646728515625, 0.01375579833984375, -0.053985595703125, -0.0232086181640625, 0.0043792724609375, -0.0281524658203125, 0.008941650390625, 0.043212890625, -0.0051422119140625, -0.020904541015625, 0.0224456787109375, 0.058074951171875, 0.005603790283203125, -0.0294952392578125, 0.0517578125, -0.01270294189453125, -0.016265869140625, -0.0535888671875, 0.01099395751953125, -0.006015777587890625, 0.029937744140625, 0.0011491775512695312, 0.037841796875, 0.016265869140625, -0.040771484375, 0.032928466796875, 0.0298614501953125, -0.050018310546875, -0.0179901123046875, 0.0618896484375, 0.0185394287109375, -0.039398193359375, 0.04559326171875, -0.00850677490234375, -0.0355224609375, 0.07855224609375, 0.0316162109375, 0.0576171875, -0.037139892578125, 0.01514434814453125, 0.04339599609375, 0.008880615234375, -0.02655029296875, 0.033843994140625, -0.0017137527465820312, -0.065673828125, -0.0008692741394042969, -0.031890869140625, -0.0419921875, 0.0030040740966796875, -0.056304931640625, 0.04876708984375, -0.041534423828125, -0.01812744140625, 0.0008168220520019531, 0.017822265625, -0.0411376953125, -0.00006645917892456055, 0.0234527587890625, 0.1019287109375, -0.0537109375, 0.06591796875, 0.06585693359375, -0.042633056640625, -0.031646728515625, 0.0025501251220703125, 0.0243682861328125, -0.0645751953125, 0.0265655517578125, 0.0404052734375, 0.01226806640625, 0.006908416748046875, -0.07574462890625, -0.07196044921875, 0.0885009765625, 0.0031795501708984375, 0.01763916015625, 0.0182952880859375, -0.0285797119140625, 0.0537109375, -0.042938232421875, 0.031524658203125, 0.0443115234375, 0.0269927978515625, 0.0151214599609375, -0.052398681640625, -0.01381683349609375, -0.04266357421875, -0.005870819091796875, -0.0248565673828125, -0.07952880859375, 0.0635986328125, -0.005565643310546875, 0.0130767822265625, 0.0567626953125, 0.06488037109375, 0.06610107421875, 0.0025196075439453125, 0.04010009765625, 0.040435791015625, 0.015838623046875, -0.0011167526245117188, 0.052734375, -0.03887939453125, 0.037811279296875, 0.04766845703125, -0.04449462890625, 0.050079345703125, 0.00476837158203125, 0.0062408447265625, 0.047760009765625, 0.0701904296875, -0.0277557373046875, 0.048828125, 0.0322265625, -0.001407623291015625, -0.00751495361328125, 0.032562255859375, -0.0235443115234375, 0.032989501953125, 0.037750244140625, 0.0120697021484375, -0.00632476806640625, -0.0086212158203125, -0.006534576416015625, -0.005023956298828125, -0.040435791015625, 0.0633544921875, -0.002895355224609375, -0.0491943359375, 0.05499267578125, 0.017547607421875, 0.034149169921875, -0.033050537109375, -0.01120758056640625, -0.01331329345703125, 0.03875732421875, -0.00257110595703125, -0.06890869140625, 0.0108642578125, -0.016082763671875, 0.007904052734375, -0.004627227783203125, 0.039764404296875, -0.03271484375, -0.033447265625, 0.041961669921875, 0.00225830078125, 0.00978851318359375, 0.0184478759765625, -0.07989501953125, -0.0021190643310546875, -0.0335693359375, -0.03021240234375, 0.0210418701171875, 0.0227813720703125, 0.01898193359375, 0.06793212890625, 0.029296875, 0.0028553009033203125, -0.005756378173828125, -0.00972747802734375, 0.059478759765625, -0.039581298828125, -0.060577392578125, -0.0191802978515625, 0.054534912109375, -0.020263671875, -0.0352783203125, 0.035308837890625, 0.07476806640625, 0.03515625, -0.010162353515625, 0.046600341796875, -0.00099945068359375, 0.042388916015625, -0.021392822265625, 0.0604248046875, -0.024261474609375, 0.0011568069458007812, -0.007251739501953125, -0.0672607421875, -0.01922607421875, 0.07086181640625, 0.0293731689453125, -0.005107879638671875, 0.023651123046875, 0.05438232421875, -0.0036334991455078125, -0.0032062530517578125, -0.0008687973022460938, 0.047698974609375, 0.01593017578125, 0.0037975311279296875, 0.04931640625, -0.04119873046875, 0.0280303955078125, -0.0369873046875, -0.04913330078125, -0.0195770263671875, -0.040252685546875, -0.08319091796875, -0.023193359375, -0.0261077880859375, -0.0821533203125, -0.0003173351287841797, 0.07623291015625, 0.05023193359375, -0.06585693359375, -0.045135498046875, -0.006664276123046875, -0.00653839111328125, -0.03204345703125, -0.0154266357421875, 0.0225372314453125, -0.016387939453125, -0.05712890625, 0.02630615234375, -0.0147552490234375, 0.033355712890625, -0.0210723876953125, -0.0215301513671875, -0.0234222412109375, -0.0030727386474609375, 0.0179290771484375, 0.048858642578125, -0.0310821533203125, -0.024383544921875, -0.028106689453125, -0.0168609619140625, -0.0008568763732910156, 0.0219573974609375, -0.04327392578125, -0.005191802978515625, 0.0264129638671875, -0.0016326904296875, 0.0562744140625, 0.0193328857421875, 0.044525146484375, -0.039459228515625, 0.033966064453125, 0.00569915771484375, 0.040313720703125, 0.022216796875, -0.02215576171875, 0.03741455078125, 0.026763916015625, -0.046417236328125, -0.061004638671875, 0.01024627685546875, -0.0887451171875, -0.0164794921875, 0.1029052734375, -0.00708770751953125, -0.0325927734375, -0.00377655029296875, -0.0426025390625, 0.0286712646484375, -0.0465087890625, 0.044525146484375, 0.040313720703125, -0.0162353515625, -0.02142333984375, -0.0198516845703125, 0.05902099609375, -0.0131683349609375, -0.035980224609375, -0.0217437744140625, 0.04327392578125, 0.0268096923828125, 0.007305145263671875, 0.053924560546875, -0.00278472900390625, 0.032867431640625, 0.031829833984375, 0.021728515625, 0.00318145751953125, -0.0260009765625, -0.03338623046875, 0.00864410400390625, -0.0066986083984375, -0.007053375244140625 ] ]
bartmiller/ppo-MLAgentsPyramids
2023-10-29T01:42:53.000Z
[ "ml-agents", "tensorboard", "onnx", "Pyramids", "deep-reinforcement-learning", "reinforcement-learning", "ML-Agents-Pyramids", "region:us" ]
reinforcement-learning
bartmiller
null
null
bartmiller/ppo-MLAgentsPyramids
0
2
ml-agents
2023-10-29T01:35:51
--- 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://unity-technologies.github.io/ml-agents/ML-Agents-Toolkit-Documentation/ We wrote a complete tutorial to learn to train your first agent using ML-Agents and publish it to the Hub: - A *short tutorial* where you teach Huggy the Dog 🐶 to fetch the stick and then play with him directly in your browser: https://huggingface.co/learn/deep-rl-course/unitbonus1/introduction - A *longer tutorial* to understand how works ML-Agents: https://huggingface.co/learn/deep-rl-course/unit5/introduction ### Resume the training ```bash mlagents-learn <your_configuration_file_path.yaml> --run-id=<run_id> --resume ``` ### Watch your Agent play You can watch your agent **playing directly in your browser** 1. If the environment is part of ML-Agents official environments, go to https://huggingface.co/unity 2. Step 1: Find your model_id: bartmiller/ppo-MLAgentsPyramids 3. Step 2: Select your *.nn /*.onnx file 4. Click on Watch the agent play 👀
1,343
[ [ -0.03955078125, -0.033843994140625, 0.003719329833984375, 0.01314544677734375, -0.01025390625, 0.01348876953125, 0.0167083740234375, -0.0157318115234375, 0.034423828125, 0.0312042236328125, -0.042144775390625, -0.04913330078125, -0.02978515625, -0.01558685302734375, 0.01393890380859375, 0.09710693359375, 0.007350921630859375, 0.0309906005859375, -0.0016345977783203125, 0.0107421875, 0.0038471221923828125, -0.0158843994140625, -0.06951904296875, -0.06011962890625, 0.037078857421875, 0.023284912109375, 0.06256103515625, 0.03912353515625, 0.0296478271484375, 0.029693603515625, -0.0036163330078125, -0.033843994140625, -0.03863525390625, -0.01045989990234375, -0.0124359130859375, -0.031890869140625, -0.060760498046875, 0.028167724609375, 0.047210693359375, 0.0191192626953125, -0.0219879150390625, 0.0164794921875, -0.0283050537109375, 0.0316162109375, -0.034149169921875, 0.0184478759765625, -0.0143280029296875, 0.03460693359375, 0.0228729248046875, -0.01532745361328125, -0.027099609375, -0.0235443115234375, 0.0277099609375, -0.06781005859375, 0.0013151168823242188, -0.016510009765625, 0.090087890625, 0.0185394287109375, -0.033447265625, -0.02313232421875, -0.0367431640625, 0.048553466796875, -0.0303802490234375, 0.00323486328125, 0.03558349609375, 0.051422119140625, -0.0271759033203125, -0.0771484375, -0.02972412109375, -0.053131103515625, 0.0038356781005859375, 0.00910186767578125, -0.002399444580078125, 0.0199127197265625, 0.03289794921875, 0.0239715576171875, -0.0306396484375, -0.01045989990234375, -0.015960693359375, -0.022003173828125, 0.046844482421875, 0.007648468017578125, 0.020263671875, 0.019073486328125, -0.044586181640625, -0.035369873046875, -0.044921875, 0.04266357421875, 0.033538818359375, 0.0027008056640625, -0.03448486328125, 0.057525634765625, 0.00632476806640625, 0.0199737548828125, 0.02960205078125, -0.0389404296875, 0.0174560546875, 0.0162200927734375, -0.0238494873046875, -0.0024013519287109375, 0.039215087890625, 0.02349853515625, 0.02154541015625, -0.016632080078125, -0.0286407470703125, -0.00557708740234375, 0.036712646484375, -0.06732177734375, -0.03692626953125, 0.01399993896484375, -0.032501220703125, -0.0380859375, 0.006053924560546875, -0.0307159423828125, -0.0194244384765625, -0.0166473388671875, 0.037384033203125, -0.038543701171875, -0.038604736328125, 0.005218505859375, -0.0302276611328125, 0.05078125, 0.01519012451171875, -0.05694580078125, 0.0262908935546875, 0.045257568359375, 0.0391845703125, 0.040863037109375, -0.05340576171875, -0.041351318359375, 0.0064849853515625, -0.01519012451171875, 0.0523681640625, -0.0181884765625, -0.0225982666015625, 0.0117950439453125, 0.0002887248992919922, -0.005527496337890625, -0.043853759765625, 0.01364898681640625, -0.050048828125, 0.0168304443359375, 0.00843048095703125, -0.049468994140625, -0.0200042724609375, 0.034088134765625, -0.0345458984375, 0.0657958984375, 0.029296875, -0.037750244140625, 0.022064208984375, -0.0689697265625, -0.02783203125, 0.0053863525390625, 0.0006546974182128906, -0.03582763671875, -0.00940704345703125, -0.024566650390625, 0.0272064208984375, 0.0202484130859375, -0.0091400146484375, -0.0291900634765625, -0.0292510986328125, 0.022003173828125, 0.01558685302734375, 0.069580078125, 0.0085906982421875, -0.0267333984375, 0.03216552734375, -0.058502197265625, -0.002166748046875, 0.0170745849609375, -0.03460693359375, 0.021484375, -0.006008148193359375, 0.00441741943359375, 0.027069091796875, 0.02984619140625, -0.0290069580078125, 0.05047607421875, -0.018829345703125, 0.0025787353515625, 0.0513916015625, -0.0173187255859375, 0.052459716796875, -0.040374755859375, 0.053558349609375, 0.0034580230712890625, 0.028533935546875, -0.0007266998291015625, -0.0292816162109375, -0.055908203125, -0.0307159423828125, 0.01010894775390625, 0.043853759765625, -0.057891845703125, 0.045684814453125, 0.0153045654296875, -0.049163818359375, -0.04669189453125, -0.01238250732421875, 0.0316162109375, 0.0108184814453125, 0.01334381103515625, -0.037078857421875, -0.035430908203125, -0.04595947265625, 0.0241851806640625, -0.0149993896484375, -0.0257110595703125, 0.025299072265625, 0.0540771484375, -0.0278167724609375, 0.070556640625, -0.01934814453125, -0.0308990478515625, -0.00836181640625, 0.006500244140625, 0.0031948089599609375, 0.039886474609375, 0.051025390625, -0.041839599609375, -0.028289794921875, -0.01065826416015625, -0.07513427734375, 0.020538330078125, -0.00006514787673950195, -0.00658416748046875, -0.00453948974609375, 0.0189971923828125, -0.055633544921875, 0.025115966796875, 0.03179931640625, -0.056243896484375, 0.055755615234375, -0.0186614990234375, -0.01004791259765625, -0.072509765625, 0.005443572998046875, 0.0030498504638671875, -0.023712158203125, -0.03216552734375, 0.028564453125, -0.031524658203125, -0.012786865234375, -0.047332763671875, 0.039825439453125, -0.03369140625, -0.02947998046875, -0.03656005859375, -0.0093994140625, -0.0156707763671875, 0.04400634765625, -0.003875732421875, 0.046112060546875, 0.0860595703125, -0.052581787109375, 0.042572021484375, 0.0287628173828125, -0.003490447998046875, 0.028594970703125, -0.040374755859375, 0.0167236328125, -0.0186004638671875, 0.0372314453125, -0.0501708984375, -0.01043701171875, 0.053253173828125, -0.03985595703125, 0.0401611328125, -0.03521728515625, -0.013031005859375, -0.00986480712890625, -0.024444580078125, 0.0018978118896484375, 0.0360107421875, -0.038970947265625, 0.059295654296875, 0.053131103515625, 0.02777099609375, -0.06494140625, -0.007160186767578125, -0.006633758544921875, -0.0201873779296875, -0.037322998046875, 0.0223388671875, -0.0148468017578125, -0.018585205078125, -0.0020046234130859375, 0.01187896728515625, -0.01016998291015625, 0.0181121826171875, 0.0389404296875, 0.0033893585205078125, -0.0275421142578125, -0.017333984375, -0.022186279296875, -0.035491943359375, 0.01207733154296875, -0.00698089599609375, 0.04010009765625, -0.036895751953125, 0.0003590583801269531, -0.06048583984375, -0.004428863525390625, 0.039337158203125, 0.00838470458984375, 0.05517578125, 0.0693359375, -0.01873779296875, -0.006511688232421875, -0.02178955078125, -0.045501708984375, -0.0369873046875, 0.0080413818359375, -0.04632568359375, -0.05255126953125, 0.036651611328125, -0.028656005859375, 0.005035400390625, 0.018524169921875, 0.039306640625, -0.0229644775390625, 0.06732177734375, 0.07318115234375, -0.01084136962890625, 0.048980712890625, -0.058013916015625, -0.01532745361328125, -0.049652099609375, -0.02960205078125, -0.0269927978515625, -0.0282135009765625, -0.0340576171875, -0.01560211181640625, 0.007747650146484375, 0.03863525390625, -0.043975830078125, 0.042572021484375, -0.0239715576171875, 0.04119873046875, 0.04144287109375, 0.001560211181640625, 0.0013580322265625, 0.010162353515625, -0.01143646240234375, 0.01248931884765625, -0.048828125, -0.058013916015625, 0.06768798828125, 0.05633544921875, 0.061798095703125, 0.0110931396484375, 0.058013916015625, 0.0130767822265625, 0.0389404296875, -0.054443359375, 0.053619384765625, 0.0243377685546875, -0.041015625, -0.02313232421875, -0.003772735595703125, -0.06781005859375, 0.017120361328125, -0.02276611328125, -0.04522705078125, -0.0084686279296875, 0.0099029541015625, -0.0087127685546875, 0.0264434814453125, -0.04327392578125, 0.089111328125, -0.007556915283203125, -0.016021728515625, -0.0197296142578125, -0.052947998046875, 0.0047607421875, 0.045989990234375, -0.021728515625, -0.0158538818359375, -0.00551605224609375, 0.0264739990234375, -0.02252197265625, 0.058502197265625, -0.044464111328125, -0.004550933837890625, 0.035888671875, 0.019561767578125, 0.028167724609375, 0.0163421630859375, 0.0090179443359375, 0.01239013671875, -0.0047607421875, -0.047271728515625, -0.017242431640625, 0.0285797119140625, -0.087646484375, -0.018585205078125, -0.047882080078125, -0.0159759521484375, 0.02410888671875, 0.0002982616424560547, 0.0190277099609375, -0.0020236968994140625, -0.03216552734375, -0.004741668701171875, 0.03741455078125, -0.00653839111328125, 0.035888671875, 0.05517578125, -0.0259246826171875, -0.0266265869140625, 0.0628662109375, -0.0227508544921875, -0.0121612548828125, 0.02496337890625, 0.01078033447265625, -0.025848388671875, -0.033599853515625, -0.0440673828125, 0.0147247314453125, -0.0294189453125, -0.0027637481689453125, -0.0278167724609375, -0.0162811279296875, -0.03350830078125, -0.01043701171875, -0.037567138671875, -0.0057830810546875, -0.0355224609375, -0.00157928466796875, 0.0157623291015625, 0.047943115234375, -0.039703369140625, 0.052764892578125, -0.03717041015625, 0.0186614990234375, 0.0303497314453125, 0.030517578125, -0.006618499755859375, -0.0265350341796875, -0.0275115966796875, 0.0009822845458984375, -0.03985595703125, -0.057373046875, 0.02777099609375, 0.00115966796875, 0.044036865234375, 0.0653076171875, -0.0151824951171875, 0.032806396484375, -0.02960205078125, 0.039764404296875, 0.01715087890625, -0.046539306640625, 0.033447265625, -0.029998779296875, 0.003383636474609375, 0.04937744140625, 0.0545654296875, -0.0269927978515625, -0.006366729736328125, -0.053955078125, -0.044219970703125, 0.060760498046875, 0.0203704833984375, 0.006557464599609375, 0.0120086669921875, 0.029998779296875, -0.01367950439453125, 0.0209503173828125, -0.0810546875, -0.041656494140625, -0.022064208984375, 0.0266265869140625, -0.0006952285766601562, -0.022247314453125, -0.0224609375, -0.02752685546875, 0.0833740234375, -0.01099395751953125, 0.03326416015625, 0.005870819091796875, -0.0043487548828125, -0.038787841796875, -0.01201629638671875, 0.03369140625, 0.049041748046875, -0.05047607421875, -0.025848388671875, -0.00860595703125, -0.043212890625, 0.01361083984375, 0.013519287109375, -0.00467681884765625, -0.001529693603515625, 0.006656646728515625, 0.05889892578125, 0.013641357421875, -0.045013427734375, 0.044097900390625, -0.01251220703125, -0.0168304443359375, -0.07073974609375, 0.014678955078125, 0.007114410400390625, 0.0416259765625, 0.011138916015625, -0.00872802734375, -0.00373077392578125, -0.05218505859375, 0.0287628173828125, 0.037750244140625, -0.039886474609375, -0.0198974609375, 0.036590576171875, 0.01216888427734375, -0.04901123046875, 0.04608154296875, -0.041259765625, -0.031280517578125, 0.07177734375, 0.0390625, 0.06268310546875, -0.0162506103515625, 0.04327392578125, 0.0296478271484375, 0.01080322265625, 0.01474761962890625, 0.0194854736328125, -0.007595062255859375, -0.0699462890625, -0.02587890625, -0.03839111328125, -0.042999267578125, 0.01447296142578125, -0.04144287109375, 0.0248870849609375, -0.05029296875, -0.0106658935546875, 0.00933837890625, 0.0306854248046875, -0.0426025390625, -0.0034847259521484375, 0.0230865478515625, 0.077880859375, -0.0384521484375, 0.079345703125, 0.08111572265625, -0.04241943359375, -0.06036376953125, -0.01904296875, -0.005786895751953125, -0.061065673828125, 0.0347900390625, 0.0172576904296875, -0.0029201507568359375, 0.02532958984375, -0.0660400390625, -0.038177490234375, 0.09912109375, 0.01247406005859375, -0.0227813720703125, -0.0008411407470703125, 0.004093170166015625, 0.045745849609375, -0.057525634765625, 0.0556640625, 0.02716064453125, 0.0267333984375, 0.02374267578125, -0.05023193359375, -0.026214599609375, -0.01397705078125, -0.0271148681640625, -0.0089263916015625, -0.047760009765625, 0.07025146484375, -0.033111572265625, -0.003505706787109375, 0.033599853515625, 0.0435791015625, 0.02960205078125, 0.045318603515625, 0.043060302734375, 0.06317138671875, 0.029998779296875, 0.005382537841796875, 0.06671142578125, -0.030731201171875, 0.05755615234375, 0.07598876953125, -0.032958984375, 0.040985107421875, 0.01947021484375, -0.01171112060546875, 0.0615234375, 0.05999755859375, -0.0246429443359375, 0.0311737060546875, 0.043701171875, -0.036651611328125, -0.01947021484375, -0.00743865966796875, -0.03466796875, 0.031768798828125, 0.00836181640625, -0.017303466796875, -0.021575927734375, 0.007755279541015625, -0.01031494140625, -0.0108642578125, -0.032501220703125, 0.08270263671875, -0.0018606185913085938, -0.036224365234375, 0.02984619140625, 0.0116424560546875, 0.0450439453125, -0.0648193359375, -0.0230865478515625, -0.016876220703125, 0.0312347412109375, -0.00698089599609375, -0.04144287109375, -0.016571044921875, -0.020782470703125, -0.00220489501953125, -0.0175018310546875, 0.052581787109375, -0.023223876953125, -0.005218505859375, 0.04345703125, 0.037322998046875, 0.043487548828125, -0.00347137451171875, -0.08795166015625, -0.032623291015625, -0.01009368896484375, -0.0284576416015625, 0.05316162109375, 0.00888824462890625, 0.036865234375, 0.06634521484375, 0.04266357421875, -0.019287109375, -0.004222869873046875, 0.0009741783142089844, 0.07415771484375, -0.051513671875, -0.033416748046875, -0.039520263671875, 0.048309326171875, 0.006183624267578125, -0.0362548828125, 0.040008544921875, 0.059783935546875, 0.08062744140625, -0.038299560546875, 0.0185394287109375, -0.014556884765625, 0.007289886474609375, -0.009674072265625, 0.061920166015625, -0.0301666259765625, -0.01261138916015625, -0.00130462646484375, -0.0711669921875, 0.004878997802734375, 0.0767822265625, 0.01064300537109375, -0.0033588409423828125, 0.0260467529296875, 0.0693359375, -0.00836181640625, -0.01329803466796875, 0.0291900634765625, 0.0242767333984375, 0.005802154541015625, 0.03375244140625, 0.07684326171875, -0.0438232421875, 0.037109375, -0.0472412109375, -0.022857666015625, -0.01367950439453125, -0.0537109375, -0.08319091796875, -0.01210784912109375, -0.0306854248046875, -0.06585693359375, 0.003971099853515625, 0.075927734375, 0.0706787109375, -0.054229736328125, -0.050750732421875, -0.0037860870361328125, 0.0254669189453125, -0.02362060546875, -0.0179595947265625, 0.0152130126953125, -0.018829345703125, -0.056182861328125, 0.03570556640625, -0.0006046295166015625, 0.02984619140625, -0.031494140625, -0.039306640625, -0.029296875, -0.02911376953125, 0.0347900390625, 0.0513916015625, -0.0235748291015625, -0.0034694671630859375, -0.016326904296875, -0.0244598388671875, 0.01094818115234375, 0.0679931640625, -0.07098388671875, 0.0084228515625, 0.0088653564453125, 0.004650115966796875, 0.04132080078125, -0.015380859375, 0.02777099609375, -0.043060302734375, 0.02490234375, 0.028350830078125, 0.0174407958984375, -0.003692626953125, -0.02008056640625, 0.04571533203125, 0.0222320556640625, -0.0506591796875, -0.034637451171875, 0.0163116455078125, -0.07965087890625, -0.0167388916015625, 0.06427001953125, -0.0273590087890625, -0.0174560546875, -0.00226593017578125, -0.03424072265625, 0.028900146484375, -0.03765869140625, 0.0665283203125, 0.0257415771484375, -0.0027103424072265625, -0.0079345703125, -0.0272216796875, 0.057037353515625, 0.0158538818359375, -0.044097900390625, -0.045013427734375, 0.032958984375, 0.026214599609375, 0.0218963623046875, 0.052093505859375, 0.006744384765625, 0.033355712890625, 0.0201568603515625, 0.039306640625, -0.015777587890625, -0.0428466796875, -0.038238525390625, 0.0245208740234375, -0.0001786947250366211, -0.0309295654296875 ] ]
H2789/use_data_finetuning
2023-10-29T06:26:07.000Z
[ "transformers", "pytorch", "detr", "object-detection", "generated_from_trainer", "license:apache-2.0", "endpoints_compatible", "region:us" ]
object-detection
H2789
null
null
H2789/use_data_finetuning
0
2
transformers
2023-10-29T03:26:00
--- license: apache-2.0 base_model: facebook/detr-resnet-50 tags: - generated_from_trainer model-index: - name: use_data_finetuning 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. --> # use_data_finetuning This model is a fine-tuned version of [facebook/detr-resnet-50](https://huggingface.co/facebook/detr-resnet-50) 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: 1e-05 - train_batch_size: 8 - eval_batch_size: 8 - seed: 42 - optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08 - lr_scheduler_type: linear - num_epochs: 100 ### Training results ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,083
[ [ -0.036102294921875, -0.05328369140625, 0.0002827644348144531, 0.0124053955078125, -0.0247344970703125, -0.0303497314453125, -0.01021575927734375, -0.016082763671875, 0.0222625732421875, 0.0279998779296875, -0.07110595703125, -0.03521728515625, -0.03460693359375, 0.007221221923828125, -0.0244903564453125, 0.08099365234375, 0.014984130859375, 0.0287933349609375, -0.01091766357421875, 0.0021190643310546875, -0.0219879150390625, -0.039337158203125, -0.08526611328125, -0.043212890625, 0.036285400390625, 0.019805908203125, 0.055572509765625, 0.07415771484375, 0.060760498046875, 0.0237884521484375, -0.026092529296875, 0.0014095306396484375, -0.063232421875, -0.03533935546875, -0.02374267578125, -0.0272369384765625, -0.05865478515625, 0.00449371337890625, 0.048370361328125, 0.02886962890625, -0.0165252685546875, 0.055908203125, -0.002040863037109375, 0.04144287109375, -0.033905029296875, 0.0261993408203125, -0.040985107421875, 0.0254974365234375, -0.0079803466796875, -0.0168914794921875, -0.0262298583984375, -0.0194549560546875, -0.003997802734375, -0.03594970703125, 0.0478515625, -0.0037994384765625, 0.094482421875, 0.027008056640625, -0.01151275634765625, 0.017333984375, -0.066650390625, 0.0281829833984375, -0.048614501953125, 0.02587890625, 0.03887939453125, 0.0518798828125, 0.0006933212280273438, -0.07647705078125, -0.0235137939453125, -0.007221221923828125, 0.00672149658203125, 0.005344390869140625, -0.0150299072265625, 0.00543975830078125, 0.058135986328125, 0.0283355712890625, -0.0293121337890625, 0.00716400146484375, -0.05731201171875, -0.017333984375, 0.056365966796875, 0.03314208984375, -0.01461029052734375, -0.017181396484375, -0.0255279541015625, -0.0139007568359375, -0.016387939453125, 0.02117919921875, 0.04144287109375, 0.0421142578125, -0.0305023193359375, 0.0526123046875, -0.04156494140625, 0.06201171875, 0.017730712890625, 0.004833221435546875, 0.05010986328125, -0.0037288665771484375, -0.0290679931640625, -0.0175628662109375, 0.06622314453125, 0.05145263671875, 0.032623291015625, 0.006092071533203125, -0.02142333984375, -0.006458282470703125, 0.033355712890625, -0.0648193359375, -0.032684326171875, 0.0037670135498046875, -0.052825927734375, -0.04718017578125, 0.0179443359375, -0.044158935546875, 0.00746917724609375, -0.03338623046875, 0.031951904296875, -0.02392578125, -0.0107879638671875, 0.00739288330078125, -0.0137176513671875, 0.0017518997192382812, 0.0052337646484375, -0.049285888671875, 0.0229034423828125, 0.025054931640625, 0.035003662109375, 0.0226898193359375, -0.02313232421875, -0.0233612060546875, 0.0021228790283203125, -0.0189666748046875, 0.034912109375, -0.008941650390625, -0.023956298828125, -0.0035037994384765625, 0.034149169921875, 0.0010862350463867188, -0.03521728515625, 0.07098388671875, -0.0284576416015625, 0.00571441650390625, -0.0261993408203125, -0.04425048828125, -0.018951416015625, 0.02154541015625, -0.0704345703125, 0.08038330078125, 0.0124969482421875, -0.054168701171875, 0.03759765625, -0.045379638671875, -0.013031005859375, 0.01043701171875, 0.0017147064208984375, -0.04962158203125, 0.0079193115234375, -0.0036106109619140625, 0.0460205078125, -0.0008287429809570312, 0.020477294921875, -0.0445556640625, -0.043121337890625, 0.005413055419921875, -0.044525146484375, 0.050048828125, 0.0198516845703125, -0.01155853271484375, 0.01238250732421875, -0.09747314453125, 0.0184478759765625, 0.027923583984375, -0.034332275390625, 0.0106201171875, -0.02252197265625, 0.039031982421875, 0.0265350341796875, 0.031097412109375, -0.046905517578125, 0.001216888427734375, -0.0250244140625, 0.018890380859375, 0.05133056640625, 0.0014238357543945312, 0.002391815185546875, -0.037109375, 0.0153045654296875, -0.0010814666748046875, 0.040191650390625, 0.0272674560546875, -0.020263671875, -0.0533447265625, -0.01139068603515625, 0.0178375244140625, 0.0235595703125, -0.025177001953125, 0.049591064453125, -0.009124755859375, -0.06597900390625, -0.023223876953125, 0.00978851318359375, 0.030242919921875, 0.03955078125, 0.037384033203125, -0.018310546875, -0.032928466796875, -0.08135986328125, -0.005931854248046875, 0.005123138427734375, 0.0184326171875, 0.028228759765625, 0.042205810546875, -0.0187530517578125, 0.0672607421875, -0.0391845703125, -0.0035724639892578125, -0.0121307373046875, -0.01251220703125, 0.0263214111328125, 0.06304931640625, 0.056671142578125, -0.046478271484375, -0.019439697265625, -0.022979736328125, -0.055450439453125, 0.0169219970703125, -0.013153076171875, -0.0188140869140625, -0.0153045654296875, 0.03302001953125, -0.04071044921875, 0.052459716796875, 0.0159149169921875, -0.0175628662109375, 0.039764404296875, -0.024658203125, -0.016387939453125, -0.08819580078125, 0.01221466064453125, 0.033721923828125, -0.0201873779296875, -0.024627685546875, 0.0021228790283203125, 0.01113128662109375, -0.0155487060546875, -0.0382080078125, 0.041839599609375, -0.003299713134765625, 0.0173492431640625, -0.0203857421875, -0.027496337890625, -0.003021240234375, 0.0413818359375, -0.001445770263671875, 0.020843505859375, 0.04547119140625, -0.04815673828125, 0.047454833984375, 0.036346435546875, -0.006145477294921875, 0.038421630859375, -0.06536865234375, 0.002391815185546875, -0.0112457275390625, 0.005401611328125, -0.060089111328125, -0.03411865234375, 0.048309326171875, -0.0335693359375, 0.02099609375, -0.0068817138671875, -0.031158447265625, -0.0555419921875, 0.0038700103759765625, 0.025787353515625, 0.02325439453125, -0.045379638671875, 0.033782958984375, -0.00981903076171875, 0.03704833984375, -0.03375244140625, -0.054107666015625, -0.023406982421875, -0.01030731201171875, -0.0305328369140625, 0.01331329345703125, -0.004833221435546875, 0.0119476318359375, 0.00782012939453125, -0.011505126953125, -0.019775390625, -0.01114654541015625, 0.032806396484375, 0.0113372802734375, -0.0010700225830078125, 0.000514984130859375, 0.0021114349365234375, -0.0223236083984375, 0.0256500244140625, 0.01152801513671875, 0.03466796875, -0.004901885986328125, -0.02252197265625, -0.082763671875, -0.00946044921875, 0.028228759765625, -0.0139312744140625, 0.064453125, 0.06982421875, -0.0479736328125, -0.00997161865234375, -0.039215087890625, -0.0272216796875, -0.0352783203125, 0.0474853515625, -0.033660888671875, -0.0278778076171875, 0.05224609375, -0.00926971435546875, 0.003467559814453125, 0.05804443359375, 0.033111572265625, 0.00983428955078125, 0.07275390625, 0.035003662109375, -0.0034999847412109375, 0.0430908203125, -0.053558349609375, -0.0113067626953125, -0.04296875, -0.031005859375, -0.032379150390625, -0.0292205810546875, -0.056396484375, 0.01094818115234375, -0.004497528076171875, 0.0085296630859375, -0.05377197265625, 0.0430908203125, -0.0362548828125, 0.0277862548828125, 0.05499267578125, 0.049468994140625, -0.012725830078125, 0.01505279541015625, -0.0012788772583007812, 0.007091522216796875, -0.062408447265625, -0.0228424072265625, 0.0885009765625, 0.040283203125, 0.05462646484375, -0.027496337890625, 0.048736572265625, -0.0035305023193359375, 0.004871368408203125, -0.03240966796875, 0.045166015625, -0.00782012939453125, -0.0743408203125, -0.01024627685546875, -0.040771484375, -0.050628662109375, -0.005939483642578125, -0.036865234375, -0.04302978515625, 0.0180206298828125, 0.019073486328125, -0.035491943359375, 0.021881103515625, -0.0450439453125, 0.09130859375, -0.01456451416015625, -0.0269317626953125, -0.01296234130859375, -0.043792724609375, 0.004077911376953125, 0.00498199462890625, -0.0125274658203125, -0.0036334991455078125, 0.0290985107421875, 0.0667724609375, -0.04022216796875, 0.06689453125, -0.02569580078125, 0.035430908203125, 0.03240966796875, -0.01812744140625, 0.033782958984375, 0.01293182373046875, -0.013031005859375, 0.0160064697265625, 0.0002028942108154297, -0.039703369140625, -0.0177459716796875, 0.045440673828125, -0.07861328125, -0.00556182861328125, -0.0222320556640625, -0.04150390625, -0.007511138916015625, 0.016876220703125, 0.04766845703125, 0.054168701171875, -0.01358795166015625, 0.02777099609375, 0.0177154541015625, 0.0015077590942382812, 0.0313720703125, 0.018524169921875, 0.0016164779663085938, -0.041229248046875, 0.06512451171875, 0.003444671630859375, 0.0223846435546875, -0.00455474853515625, 0.01483154296875, -0.0181732177734375, -0.01947021484375, -0.01186370849609375, 0.026458740234375, -0.056610107421875, -0.021026611328125, -0.025054931640625, -0.0460205078125, -0.02001953125, 0.0004851818084716797, -0.045562744140625, -0.0174560546875, -0.047637939453125, -0.0296630859375, 0.033782958984375, 0.032562255859375, -0.0210113525390625, 0.06646728515625, -0.05364990234375, 0.00881195068359375, 0.0035552978515625, 0.04144287109375, 0.0022182464599609375, -0.051971435546875, -0.040985107421875, 0.0189666748046875, -0.024322509765625, -0.0416259765625, 0.019134521484375, 0.004825592041015625, 0.05206298828125, 0.043212890625, -0.0032749176025390625, 0.058990478515625, -0.0202789306640625, 0.041595458984375, 0.01422882080078125, -0.02972412109375, 0.0290985107421875, -0.0234832763671875, 0.018524169921875, 0.054779052734375, 0.043365478515625, 0.00567626953125, -0.0114288330078125, -0.0872802734375, -0.0565185546875, 0.06365966796875, 0.0170135498046875, 0.029815673828125, 0.0025691986083984375, 0.056671142578125, -0.0149383544921875, 0.020721435546875, -0.0648193359375, -0.04144287109375, -0.020904541015625, -0.01506805419921875, -0.00644683837890625, -0.02716064453125, -0.01515960693359375, -0.049957275390625, 0.0655517578125, 0.00621795654296875, 0.01280975341796875, 0.002559661865234375, 0.0246429443359375, -0.0308685302734375, -0.0290985107421875, 0.02587890625, 0.0572509765625, -0.047454833984375, -0.0274505615234375, 0.007965087890625, -0.040435791015625, -0.0138092041015625, 0.031951904296875, -0.0166778564453125, 0.00949859619140625, 0.0180816650390625, 0.07537841796875, 0.0006361007690429688, -0.004360198974609375, 0.0201416015625, -0.0138092041015625, -0.025360107421875, -0.0305023193359375, 0.0231475830078125, -0.00604248046875, 0.0300445556640625, 0.0048675537109375, 0.037567138671875, 0.00003528594970703125, 0.00043010711669921875, 0.0253753662109375, 0.017974853515625, -0.0472412109375, -0.0211334228515625, 0.06451416015625, 0.00597381591796875, -0.033660888671875, 0.05230712890625, -0.015655517578125, -0.00315093994140625, 0.06146240234375, 0.041107177734375, 0.06121826171875, -0.01493072509765625, 0.00994873046875, 0.0665283203125, 0.0105438232421875, -0.020904541015625, 0.045684814453125, 0.0180816650390625, -0.05194091796875, -0.0174407958984375, -0.047637939453125, -0.00335693359375, 0.03741455078125, -0.08953857421875, 0.038726806640625, -0.04498291015625, -0.053131103515625, 0.0231781005859375, 0.0012950897216796875, -0.0791015625, 0.051025390625, 0.00001913309097290039, 0.087158203125, -0.07684326171875, 0.045654296875, 0.059417724609375, -0.042755126953125, -0.0843505859375, -0.0169219970703125, -0.0047149658203125, -0.051177978515625, 0.05291748046875, 0.00872802734375, 0.032135009765625, 0.0245513916015625, -0.05859375, -0.050506591796875, 0.069091796875, 0.0170135498046875, -0.04925537109375, 0.005035400390625, 0.0140380859375, 0.046173095703125, -0.0178070068359375, 0.0300445556640625, 0.00348663330078125, 0.0071868896484375, 0.019256591796875, -0.0662841796875, -0.00363922119140625, -0.0195770263671875, 0.01165008544921875, -0.00949859619140625, -0.056610107421875, 0.07330322265625, 0.005645751953125, 0.025787353515625, 0.015716552734375, 0.04766845703125, 0.0106964111328125, 0.01922607421875, 0.025970458984375, 0.0594482421875, 0.038177490234375, 0.00005042552947998047, 0.064453125, -0.046600341796875, 0.06488037109375, 0.0863037109375, 0.0092010498046875, 0.040771484375, 0.0202178955078125, -0.006130218505859375, 0.01044464111328125, 0.0704345703125, -0.03948974609375, 0.0345458984375, 0.0172882080078125, 0.00739288330078125, -0.0301971435546875, 0.00641632080078125, -0.043853759765625, 0.0321044921875, -0.003345489501953125, -0.057159423828125, -0.0322265625, -0.01287841796875, -0.00463104248046875, -0.013031005859375, -0.036376953125, 0.0382080078125, -0.01453399658203125, -0.01122283935546875, 0.0430908203125, 0.009002685546875, 0.0211181640625, -0.04443359375, -0.006519317626953125, -0.0028247833251953125, 0.039154052734375, -0.025726318359375, -0.037933349609375, 0.019073486328125, -0.01116943359375, -0.019927978515625, 0.00333404541015625, 0.0479736328125, -0.0177764892578125, -0.07342529296875, 0.01045989990234375, 0.03363037109375, 0.01367950439453125, -0.003314971923828125, -0.0789794921875, -0.00563812255859375, -0.0073394775390625, -0.034698486328125, 0.005924224853515625, 0.034332275390625, 0.00982666015625, 0.05072021484375, 0.050811767578125, -0.001537322998046875, -0.0065155029296875, 0.013946533203125, 0.07904052734375, -0.040740966796875, -0.040679931640625, -0.06842041015625, 0.040435791015625, -0.0198211669921875, -0.055328369140625, 0.056732177734375, 0.0703125, 0.0863037109375, -0.0171661376953125, 0.031890869140625, -0.0011129379272460938, 0.0341796875, -0.0169830322265625, 0.052398681640625, -0.037933349609375, -0.0185699462890625, -0.03302001953125, -0.06976318359375, 0.0016012191772460938, 0.060699462890625, -0.011627197265625, 0.024658203125, 0.027618408203125, 0.060089111328125, -0.019439697265625, 0.0175323486328125, 0.003662109375, 0.00033926963806152344, 0.00885772705078125, 0.010406494140625, 0.025787353515625, -0.0556640625, 0.0304412841796875, -0.0609130859375, -0.01425933837890625, -0.007801055908203125, -0.04925537109375, -0.08148193359375, -0.02777099609375, -0.035675048828125, -0.04638671875, 0.0015106201171875, 0.0743408203125, 0.05865478515625, -0.048370361328125, -0.0294952392578125, -0.005931854248046875, -0.0235595703125, -0.0283355712890625, -0.0163421630859375, 0.0281829833984375, -0.0117034912109375, -0.0450439453125, -0.0117645263671875, -0.035247802734375, 0.0214996337890625, -0.005603790283203125, -0.002101898193359375, -0.01551055908203125, -0.025390625, 0.01372528076171875, 0.01088714599609375, -0.0276641845703125, -0.0312347412109375, -0.005939483642578125, -0.00677490234375, -0.0012273788452148438, 0.0116119384765625, -0.034454345703125, 0.032806396484375, 0.02362060546875, 0.026092529296875, 0.045562744140625, 0.0252532958984375, 0.0234527587890625, -0.05194091796875, 0.0272064208984375, 0.002109527587890625, 0.024658203125, 0.00641632080078125, -0.0341796875, 0.0428466796875, 0.04095458984375, -0.0384521484375, -0.05755615234375, -0.00818634033203125, -0.0762939453125, 0.01094818115234375, 0.09130859375, 0.00927734375, -0.039306640625, 0.0345458984375, -0.0211334228515625, 0.036346435546875, -0.0228118896484375, 0.04071044921875, 0.04541015625, -0.0018281936645507812, 0.0058135986328125, -0.050994873046875, 0.0350341796875, 0.0002689361572265625, -0.03802490234375, -0.0195770263671875, 0.03265380859375, 0.036285400390625, 0.00023305416107177734, 0.028167724609375, 0.0027103424072265625, 0.0188751220703125, 0.0070343017578125, 0.0211029052734375, -0.0411376953125, -0.02752685546875, -0.01495361328125, 0.0020885467529296875, -0.010711669921875, -0.0438232421875 ] ]
enjoygoodboy/qw7c4
2023-10-29T03:55:20.000Z
[ "peft", "region:us" ]
null
enjoygoodboy
null
null
enjoygoodboy/qw7c4
0
2
peft
2023-10-29T03:54:58
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - quant_method: bitsandbytes - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: True - bnb_4bit_compute_dtype: bfloat16 ### Framework versions - PEFT 0.5.0
464
[ [ -0.045074462890625, -0.056121826171875, 0.033416748046875, 0.0352783203125, -0.038604736328125, 0.007015228271484375, 0.01174163818359375, -0.01399993896484375, -0.01226043701171875, 0.03125, -0.041656494140625, -0.009490966796875, -0.033294677734375, 0.01139068603515625, 0.0008449554443359375, 0.06719970703125, -0.0071563720703125, 0.032958984375, -0.006694793701171875, 0.0019664764404296875, -0.0235595703125, -0.0247802734375, -0.07757568359375, -0.028076171875, -0.0246734619140625, 0.0285186767578125, 0.031951904296875, 0.008575439453125, 0.055267333984375, 0.0194549560546875, -0.0019235610961914062, -0.0235595703125, -0.0140838623046875, -0.029327392578125, 0.0048370361328125, -0.039703369140625, -0.057586669921875, -0.007770538330078125, 0.07275390625, 0.01473236083984375, -0.00786590576171875, 0.01163482666015625, -0.0173797607421875, 0.064453125, -0.0491943359375, 0.006717681884765625, -0.035675048828125, 0.03826904296875, -0.00405120849609375, -0.007175445556640625, -0.01253509521484375, -0.0167999267578125, 0.00444793701171875, -0.037017822265625, 0.02911376953125, 0.001865386962890625, 0.068359375, 0.00919342041015625, -0.05133056640625, 0.00829315185546875, -0.03448486328125, 0.050079345703125, -0.046539306640625, 0.038299560546875, 0.04638671875, 0.0084991455078125, 0.0095672607421875, -0.0528564453125, -0.029571533203125, 0.01392364501953125, 0.019256591796875, -0.0148468017578125, -0.0037097930908203125, 0.035003662109375, 0.05633544921875, 0.04156494140625, -0.02606201171875, -0.0224761962890625, -0.043365478515625, -0.036956787109375, 0.050506591796875, 0.007526397705078125, -0.0212860107421875, 0.02496337890625, -0.057891845703125, -0.005260467529296875, -0.047149658203125, 0.0153045654296875, 0.0258331298828125, -0.01045989990234375, -0.041473388671875, 0.020111083984375, -0.023223876953125, 0.039947509765625, 0.06146240234375, 0.001377105712890625, 0.06890869140625, -0.03271484375, -0.042816162109375, 0.026702880859375, 0.061676025390625, 0.0159759521484375, 0.007144927978515625, 0.005748748779296875, -0.03826904296875, -0.0294036865234375, 0.029327392578125, -0.08892822265625, -0.0270233154296875, 0.029998779296875, -0.00830841064453125, -0.0296783447265625, 0.013641357421875, -0.036041259765625, 0.01174163818359375, 0.01207733154296875, 0.058197021484375, -0.06121826171875, -0.0313720703125, 0.0219879150390625, -0.0221405029296875, 0.039031982421875, 0.007213592529296875, -0.08441162109375, 0.0435791015625, 0.041473388671875, 0.041839599609375, 0.014892578125, -0.01262664794921875, -0.0271148681640625, -0.00919342041015625, -0.0156402587890625, 0.0307159423828125, 0.02166748046875, -0.0196380615234375, -0.0145721435546875, 0.009429931640625, -0.00695037841796875, -0.0433349609375, 0.050689697265625, -0.03814697265625, -0.006481170654296875, -0.01532745361328125, -0.037139892578125, -0.0252532958984375, 0.019073486328125, -0.0406494140625, 0.08148193359375, 0.0301361083984375, -0.049163818359375, 0.0219268798828125, -0.034637451171875, -0.0240631103515625, 0.016387939453125, -0.03021240234375, -0.05328369140625, 0.038970947265625, -0.0218658447265625, 0.029876708984375, 0.01096343994140625, 0.0205230712890625, -0.01406097412109375, -0.05810546875, 0.0261077880859375, -0.0279083251953125, 0.07330322265625, 0.01189422607421875, -0.05413818359375, -0.005702972412109375, -0.06304931640625, 0.021209716796875, 0.0011854171752929688, -0.047149658203125, 0.035064697265625, -0.0330810546875, 0.00969696044921875, 0.0005893707275390625, 0.040252685546875, -0.0601806640625, -0.01218414306640625, -0.039215087890625, 0.04376220703125, 0.053497314453125, -0.0030460357666015625, 0.022125244140625, -0.0158233642578125, 0.029205322265625, 0.00519561767578125, 0.0278472900390625, 0.045257568359375, -0.035888671875, -0.05853271484375, -0.0028095245361328125, 0.01447296142578125, 0.033233642578125, -0.050140380859375, 0.052581787109375, 0.0080108642578125, -0.0166168212890625, -0.00788116455078125, -0.00902557373046875, 0.035247802734375, 0.0088958740234375, 0.01491546630859375, -0.008941650390625, -0.035736083984375, -0.06976318359375, 0.032196044921875, 0.006053924560546875, 0.00628662109375, -0.002742767333984375, 0.058197021484375, 0.0131683349609375, 0.039581298828125, -0.029266357421875, 0.0004329681396484375, 0.003757476806640625, 0.00484466552734375, 0.0330810546875, 0.05340576171875, 0.057373046875, -0.0689697265625, -0.0281219482421875, -0.045074462890625, -0.00933837890625, 0.0135650634765625, -0.0110626220703125, -0.019866943359375, 0.0290069580078125, 0.0174102783203125, -0.0255889892578125, 0.039276123046875, 0.035369873046875, -0.055816650390625, 0.061431884765625, -0.0159149169921875, 0.0210418701171875, -0.0594482421875, 0.0023288726806640625, 0.0006284713745117188, -0.034759521484375, 0.00970458984375, 0.0006837844848632812, 0.029937744140625, 0.0040435791015625, -0.05511474609375, 0.0166168212890625, -0.022369384765625, -0.007053375244140625, -0.00919342041015625, -0.042724609375, 0.022857666015625, 0.037445068359375, 0.0063323974609375, 0.071533203125, 0.0491943359375, -0.043609619140625, 0.03045654296875, 0.005405426025390625, 0.00876617431640625, 0.0478515625, -0.04437255859375, 0.01009368896484375, 0.0341796875, 0.0014886856079101562, -0.056976318359375, 0.0037174224853515625, 0.021148681640625, -0.027435302734375, 0.02734375, -0.01013946533203125, -0.036163330078125, -0.0058441162109375, -0.052886962890625, 0.041717529296875, 0.033843994140625, -0.0164642333984375, 0.020751953125, 0.00914764404296875, 0.041717529296875, -0.0167236328125, -0.0643310546875, -0.03076171875, -0.0081024169921875, -0.036041259765625, 0.05584716796875, -0.03131103515625, 0.0032215118408203125, -0.023529052734375, -0.038665771484375, -0.031585693359375, 0.01155853271484375, 0.0242919921875, 0.0178680419921875, -0.0157318115234375, -0.004852294921875, 0.018707275390625, -0.006954193115234375, 0.03363037109375, -0.0102996826171875, 0.044525146484375, -0.045196533203125, -0.0021305084228515625, -0.02801513671875, 0.0074310302734375, 0.0094146728515625, 0.01507568359375, 0.055419921875, 0.0799560546875, -0.03948974609375, 0.01033782958984375, -0.03131103515625, -0.0206298828125, -0.038909912109375, 0.022064208984375, -0.043060302734375, -0.07489013671875, 0.0159759521484375, -0.0037441253662109375, -0.002445220947265625, 0.055694580078125, 0.01971435546875, -0.0243682861328125, 0.049957275390625, 0.0333251953125, 0.0288543701171875, 0.048187255859375, -0.039306640625, -0.0026988983154296875, -0.07562255859375, -0.0022678375244140625, -0.0306243896484375, -0.02880859375, -0.054962158203125, -0.00461578369140625, 0.037750244140625, 0.04388427734375, -0.060791015625, 0.01082611083984375, -0.040191650390625, 0.035614013671875, 0.042236328125, 0.030029296875, -0.0165252685546875, 0.01439666748046875, -0.013671875, 0.01035308837890625, -0.038055419921875, -0.00130462646484375, 0.09930419921875, 0.0177154541015625, 0.032867431640625, -0.0050201416015625, 0.0587158203125, 0.00597381591796875, -0.034912109375, -0.03814697265625, 0.044189453125, -0.0117645263671875, -0.067626953125, -0.0134124755859375, -0.031646728515625, -0.041778564453125, -0.011566162109375, -0.02740478515625, -0.053314208984375, 0.016265869140625, 0.0259246826171875, -0.047271728515625, 0.00746917724609375, -0.03955078125, 0.07073974609375, -0.035980224609375, -0.01084136962890625, -0.024658203125, -0.054168701171875, 0.00930023193359375, 0.0015506744384765625, -0.0057830810546875, -0.005001068115234375, -0.0058135986328125, 0.07183837890625, -0.0271759033203125, 0.04736328125, -0.02398681640625, 0.022247314453125, 0.026519775390625, -0.0184173583984375, 0.0271759033203125, 0.013427734375, -0.0028438568115234375, 0.04559326171875, 0.033599853515625, -0.0450439453125, 0.0018100738525390625, 0.039306640625, -0.07342529296875, 0.00208282470703125, -0.0531005859375, -0.0181427001953125, -0.01499176025390625, 0.0080718994140625, 0.0443115234375, 0.020416259765625, 0.00439453125, 0.0268707275390625, 0.08209228515625, 0.0167236328125, 0.042327880859375, 0.031585693359375, -0.00972747802734375, -0.06927490234375, 0.056121826171875, 0.005916595458984375, 0.038116455078125, 0.030029296875, 0.0231475830078125, -0.0201263427734375, -0.061676025390625, -0.0263214111328125, 0.01058197021484375, -0.0251922607421875, -0.033447265625, -0.0141448974609375, -0.03900146484375, -0.0513916015625, 0.00434112548828125, -0.039276123046875, -0.052734375, -0.0305023193359375, -0.01275634765625, 0.0494384765625, -0.004611968994140625, -0.02301025390625, 0.0609130859375, -0.0748291015625, 0.0113067626953125, 0.00376129150390625, 0.025482177734375, -0.0238800048828125, -0.04644775390625, -0.06463623046875, -0.001819610595703125, -0.06304931640625, -0.06195068359375, -0.0022144317626953125, 0.0218048095703125, 0.0267181396484375, 0.038970947265625, -0.00441741943359375, 0.0228271484375, -0.013458251953125, 0.0445556640625, 0.01088714599609375, -0.078857421875, 0.040679931640625, -0.00807952880859375, 0.02569580078125, 0.058135986328125, 0.036956787109375, 0.0025844573974609375, 0.0142364501953125, -0.0789794921875, -0.069091796875, 0.050445556640625, 0.0193939208984375, -0.007419586181640625, 0.01165771484375, 0.03485107421875, -0.0009517669677734375, 0.055419921875, -0.052947998046875, -0.006591796875, -0.012603759765625, -0.0024051666259765625, 0.0316162109375, -0.02191162109375, -0.000015854835510253906, -0.02606201171875, 0.08001708984375, -0.0113372802734375, 0.039154052734375, 0.01898193359375, -0.004604339599609375, -0.0282135009765625, 0.0036373138427734375, 0.0245361328125, 0.050872802734375, -0.0635986328125, 0.01081085205078125, 0.0008864402770996094, -0.0703125, 0.006145477294921875, 0.0144195556640625, -0.0182037353515625, -0.0216217041015625, 0.0013780593872070312, 0.07696533203125, 0.01078033447265625, -0.0213623046875, 0.02032470703125, -0.00606536865234375, -0.04437255859375, -0.04547119140625, 0.0345458984375, -0.005863189697265625, 0.032257080078125, 0.006572723388671875, 0.0055999755859375, 0.01267242431640625, -0.0126953125, 0.0095672607421875, 0.0283203125, -0.0233154296875, -0.0247039794921875, 0.02984619140625, 0.0307769775390625, -0.0160369873046875, 0.0626220703125, -0.0509033203125, -0.027740478515625, 0.05718994140625, 0.0372314453125, 0.0780029296875, -0.0008702278137207031, 0.0030231475830078125, 0.0236358642578125, 0.014495849609375, -0.0022106170654296875, 0.07269287109375, -0.021636962890625, -0.0765380859375, -0.020477294921875, -0.07440185546875, -0.016326904296875, 0.01479339599609375, -0.058868408203125, 0.0164031982421875, -0.066162109375, -0.035247802734375, 0.0122528076171875, 0.045867919921875, -0.05242919921875, 0.031158447265625, 0.024169921875, 0.08154296875, -0.05999755859375, 0.08697509765625, 0.06781005859375, -0.027435302734375, -0.052459716796875, -0.0166473388671875, -0.0086822509765625, -0.050750732421875, 0.037445068359375, 0.004108428955078125, 0.0193023681640625, 0.033294677734375, -0.04266357421875, -0.041290283203125, 0.09423828125, 0.02294921875, -0.053192138671875, 0.0122222900390625, 0.0184783935546875, 0.0004911422729492188, -0.01076507568359375, 0.0169830322265625, 0.042236328125, 0.0233154296875, 0.01462554931640625, -0.06463623046875, 0.006565093994140625, 0.0013265609741210938, -0.0139007568359375, 0.04791259765625, -0.0587158203125, 0.09161376953125, 0.0005478858947753906, 0.029937744140625, -0.00614166259765625, 0.03436279296875, 0.04278564453125, 0.0159759521484375, 0.051025390625, 0.060577392578125, 0.0284881591796875, -0.004627227783203125, 0.029144287109375, -0.03515625, 0.052337646484375, 0.0689697265625, -0.006450653076171875, 0.052734375, 0.06793212890625, -0.048583984375, 0.00908660888671875, 0.06304931640625, -0.0194549560546875, 0.034393310546875, 0.0036373138427734375, -0.033355712890625, -0.028228759765625, 0.0223846435546875, -0.026824951171875, 0.0044403076171875, 0.036834716796875, -0.0195770263671875, -0.0029239654541015625, -0.010711669921875, 0.00711822509765625, -0.05621337890625, -0.0259552001953125, 0.042083740234375, 0.003993988037109375, -0.01212310791015625, 0.044677734375, 0.005031585693359375, 0.06304931640625, -0.060272216796875, -0.021270751953125, -0.0013408660888671875, 0.022186279296875, -0.0179901123046875, -0.052459716796875, 0.029205322265625, -0.0187225341796875, -0.03240966796875, -0.0113372802734375, 0.045257568359375, -0.005855560302734375, -0.053619384765625, -0.002857208251953125, -0.009063720703125, 0.015899658203125, -0.0499267578125, -0.06646728515625, 0.0088348388671875, 0.029327392578125, -0.0360107421875, 0.044830322265625, 0.05316162109375, 0.015655517578125, 0.014923095703125, 0.022552490234375, 0.0082855224609375, 0.01087188720703125, -0.012603759765625, 0.04962158203125, -0.05633544921875, -0.043853759765625, -0.064208984375, 0.0364990234375, 0.004955291748046875, -0.04278564453125, 0.025604248046875, 0.056854248046875, 0.084716796875, 0.00868988037109375, 0.0278167724609375, -0.017974853515625, -0.0145263671875, -0.06005859375, 0.038818359375, -0.0140533447265625, 0.0007786750793457031, 0.0159454345703125, -0.04095458984375, 0.0248870849609375, 0.06561279296875, -0.003955841064453125, 0.005092620849609375, 0.075927734375, 0.0285797119140625, -0.0093994140625, 0.0211029052734375, 0.0141143798828125, 0.01473236083984375, 0.0017862319946289062, 0.048828125, 0.008819580078125, -0.0648193359375, 0.0259246826171875, -0.06048583984375, -0.0252838134765625, -0.01050567626953125, -0.060272216796875, -0.03411865234375, -0.015838623046875, -0.05169677734375, -0.030975341796875, -0.006526947021484375, 0.060821533203125, 0.06292724609375, -0.057403564453125, -0.03167724609375, -0.025543212890625, -0.009307861328125, -0.013031005859375, -0.0217437744140625, 0.0251312255859375, -0.00841522216796875, -0.0296783447265625, 0.00882720947265625, 0.007274627685546875, 0.02685546875, -0.0224761962890625, -0.015625, -0.033599853515625, -0.0052490234375, 0.0113067626953125, -0.01617431640625, -0.0033969879150390625, -0.01018524169921875, -0.026214599609375, 0.0067291259765625, 0.0400390625, 0.037200927734375, -0.06256103515625, 0.0037288665771484375, 0.04608154296875, 0.0175018310546875, 0.050567626953125, -0.02569580078125, 0.022979736328125, -0.07086181640625, 0.0250701904296875, 0.024810791015625, 0.0280609130859375, -0.00739288330078125, -0.049041748046875, 0.031158447265625, 0.03924560546875, -0.05987548828125, -0.039520263671875, -0.008544921875, -0.0836181640625, -0.0033664703369140625, 0.052581787109375, -0.01030731201171875, -0.04095458984375, 0.027069091796875, -0.010528564453125, 0.0167083740234375, -0.048187255859375, 0.02972412109375, 0.037811279296875, -0.040435791015625, -0.004337310791015625, -0.050506591796875, 0.0303955078125, 0.0183868408203125, -0.0479736328125, -0.054229736328125, 0.030364990234375, 0.035064697265625, 0.005855560302734375, 0.056854248046875, -0.005756378173828125, 0.024200439453125, 0.029266357421875, 0.0251312255859375, -0.016876220703125, -0.005950927734375, -0.034820556640625, -0.0012540817260742188, 0.002559661865234375, -0.0631103515625 ] ]
ThangDinh/qthang-finetuned-2
2023-10-29T05:50:08.000Z
[ "transformers", "pytorch", "bert", "question-answering", "generated_from_trainer", "dataset:covid_qa_deepset", "license:mit", "autotrain_compatible", "endpoints_compatible", "region:us" ]
question-answering
ThangDinh
null
null
ThangDinh/qthang-finetuned-2
0
2
transformers
2023-10-29T04:49:44
--- license: mit base_model: microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext tags: - generated_from_trainer datasets: - covid_qa_deepset model-index: - name: qthang-finetuned-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. --> # qthang-finetuned-2 This model is a fine-tuned version of [microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext](https://huggingface.co/microsoft/BiomedNLP-PubMedBERT-base-uncased-abstract-fulltext) on the covid_qa_deepset 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: 2 ### Training results ### Framework versions - Transformers 4.34.1 - Pytorch 2.1.0+cu118 - Datasets 2.14.6 - Tokenizers 0.14.1
1,227
[ [ -0.01959228515625, -0.036956787109375, 0.0063629150390625, 0.0031299591064453125, -0.02777099609375, -0.0198211669921875, 0.00046515464782714844, -0.031768798828125, 0.004241943359375, 0.01183319091796875, -0.044830322265625, -0.045440673828125, -0.032470703125, -0.000812530517578125, -0.00934600830078125, 0.099609375, 0.0213623046875, 0.03399658203125, -0.03668212890625, -0.002407073974609375, -0.01702880859375, -0.05108642578125, -0.067626953125, -0.061126708984375, 0.0225982666015625, 0.0200042724609375, 0.06243896484375, 0.050323486328125, 0.054168701171875, 0.0128936767578125, -0.0268707275390625, -0.00609588623046875, -0.05072021484375, -0.020477294921875, -0.01580810546875, -0.0266876220703125, -0.06793212890625, 0.007389068603515625, 0.031494140625, 0.016357421875, -0.01434326171875, 0.054840087890625, 0.00859832763671875, 0.0300445556640625, -0.036224365234375, 0.0191497802734375, -0.03607177734375, 0.03399658203125, 0.007022857666015625, -0.0178985595703125, -0.023468017578125, 0.0010786056518554688, 0.01263427734375, -0.042999267578125, 0.046142578125, -0.00836944580078125, 0.08648681640625, 0.0263671875, -0.01287078857421875, 0.02154541015625, -0.05072021484375, 0.035400390625, -0.05267333984375, 0.01059722900390625, 0.033660888671875, 0.03643798828125, -0.0013570785522460938, -0.0693359375, -0.01415252685546875, -0.0174560546875, 0.007312774658203125, 0.01336669921875, -0.0228424072265625, 0.0164642333984375, 0.04913330078125, 0.0256805419921875, -0.055755615234375, 0.01387786865234375, -0.04779052734375, -0.022430419921875, 0.06005859375, 0.028289794921875, -0.0028018951416015625, -0.006511688232421875, -0.038665771484375, -0.0017747879028320312, -0.03082275390625, 0.01486968994140625, 0.0030975341796875, 0.004611968994140625, -0.0328369140625, 0.04510498046875, -0.016876220703125, 0.044189453125, 0.0093841552734375, -0.004558563232421875, 0.0401611328125, -0.00569915771484375, -0.03826904296875, -0.004100799560546875, 0.057342529296875, 0.043701171875, 0.01403045654296875, -0.003826141357421875, -0.0073089599609375, -0.0027866363525390625, 0.022186279296875, -0.07379150390625, -0.04376220703125, 0.026458740234375, -0.039947509765625, -0.040924072265625, -0.011383056640625, -0.041229248046875, -0.002750396728515625, -0.0279541015625, 0.039886474609375, -0.02520751953125, -0.006046295166015625, 0.01270294189453125, -0.01520538330078125, 0.0169830322265625, 0.0199432373046875, -0.04107666015625, 0.0282135009765625, 0.0306549072265625, 0.035064697265625, -0.0029811859130859375, -0.01392364501953125, -0.0274200439453125, 0.005828857421875, -0.01381683349609375, 0.033233642578125, -0.01293182373046875, -0.018463134765625, -0.015106201171875, 0.008087158203125, 0.004108428955078125, -0.040771484375, 0.057525634765625, -0.03167724609375, 0.01544952392578125, -0.015716552734375, -0.04803466796875, -0.0145721435546875, 0.033447265625, -0.044921875, 0.07122802734375, 0.0038013458251953125, -0.056121826171875, 0.0276641845703125, -0.04351806640625, -0.00788116455078125, 0.016082763671875, -0.0150604248046875, -0.0693359375, -0.0031299591064453125, 0.009429931640625, 0.04571533203125, -0.015289306640625, 0.035736083984375, -0.037200927734375, -0.0272064208984375, 0.0011053085327148438, -0.03173828125, 0.05584716796875, 0.020599365234375, -0.0219573974609375, 0.017425537109375, -0.0958251953125, 0.02679443359375, 0.0171966552734375, -0.033477783203125, 0.0026760101318359375, -0.021148681640625, 0.0308837890625, 0.0279388427734375, 0.027252197265625, -0.044891357421875, 0.01690673828125, -0.0287933349609375, 0.0285491943359375, 0.024078369140625, 0.0127716064453125, 0.0078582763671875, -0.027923583984375, 0.03277587890625, 0.0180511474609375, 0.039764404296875, 0.03350830078125, -0.037109375, -0.042755126953125, -0.032257080078125, 0.01422882080078125, 0.03472900390625, -0.0263671875, 0.046661376953125, 0.00994110107421875, -0.06256103515625, -0.0295257568359375, -0.005947113037109375, 0.036865234375, 0.037628173828125, 0.052093505859375, -0.00978851318359375, -0.03753662109375, -0.076416015625, -0.005184173583984375, 0.00608062744140625, 0.015411376953125, 0.0083465576171875, 0.05120849609375, -0.0307769775390625, 0.057891845703125, -0.039581298828125, -0.0073699951171875, -0.00563812255859375, -0.0012254714965820312, 0.0175933837890625, 0.0745849609375, 0.043243408203125, -0.03094482421875, -0.00705718994140625, -0.0249481201171875, -0.056427001953125, 0.01654052734375, -0.0152435302734375, -0.01337432861328125, -0.0214080810546875, 0.0421142578125, -0.0379638671875, 0.057281494140625, 0.020721435546875, -0.0302276611328125, 0.04364013671875, -0.034149169921875, -0.0230712890625, -0.09326171875, 0.016571044921875, 0.016937255859375, -0.0193328857421875, -0.0304718017578125, 0.017913818359375, 0.0005130767822265625, -0.0283966064453125, -0.033050537109375, 0.037353515625, -0.00890350341796875, 0.0167236328125, -0.01302337646484375, -0.0391845703125, 0.025543212890625, 0.039886474609375, -0.0006537437438964844, 0.04193115234375, 0.040557861328125, -0.04522705078125, 0.028167724609375, 0.042266845703125, -0.004589080810546875, 0.0224609375, -0.0848388671875, 0.006591796875, -0.0063934326171875, -0.00036215782165527344, -0.06005859375, -0.01153564453125, 0.03472900390625, -0.0300750732421875, 0.0224456787109375, -0.006153106689453125, -0.022857666015625, -0.02557373046875, 0.00037932395935058594, 0.044158935546875, 0.039154052734375, -0.039581298828125, 0.0203399658203125, 0.0009546279907226562, 0.0265045166015625, -0.03125, -0.0574951171875, -0.0186920166015625, 0.0008077621459960938, -0.03240966796875, 0.0285186767578125, -0.0073089599609375, 0.0110321044921875, -0.007419586181640625, -0.002010345458984375, -0.0235137939453125, 0.000789642333984375, 0.03411865234375, 0.0161895751953125, -0.01434326171875, 0.01006317138671875, 0.0091094970703125, -0.00833892822265625, 0.0221710205078125, 0.003925323486328125, 0.025665283203125, -0.01074981689453125, -0.019317626953125, -0.0654296875, 0.01013946533203125, 0.04058837890625, -0.0283355712890625, 0.053619384765625, 0.07220458984375, -0.044403076171875, 0.007465362548828125, -0.0225982666015625, -0.016448974609375, -0.029754638671875, 0.04852294921875, -0.02386474609375, -0.035980224609375, 0.042083740234375, 0.002056121826171875, -0.0078887939453125, 0.06982421875, 0.03887939453125, 0.01190185546875, 0.08074951171875, 0.0305633544921875, 0.005428314208984375, 0.0185394287109375, -0.05804443359375, -0.01326751708984375, -0.06085205078125, -0.040069580078125, -0.039947509765625, -0.01300048828125, -0.048309326171875, -0.007549285888671875, 0.0277252197265625, 0.018463134765625, -0.050079345703125, 0.015899658203125, -0.049896240234375, 0.01318359375, 0.04949951171875, 0.04962158203125, -0.01158905029296875, 0.0157012939453125, -0.0189971923828125, 0.004947662353515625, -0.0853271484375, -0.026031494140625, 0.08880615234375, 0.050262451171875, 0.05126953125, -0.01538848876953125, 0.054412841796875, 0.004547119140625, -0.0008893013000488281, -0.03363037109375, 0.036285400390625, -0.0002351999282836914, -0.05291748046875, -0.0087890625, -0.0080413818359375, -0.06591796875, -0.0017576217651367188, -0.05072021484375, -0.037811279296875, 0.037567138671875, 0.02978515625, -0.053863525390625, 0.0110015869140625, -0.042999267578125, 0.0926513671875, -0.0084228515625, -0.04620361328125, -0.021209716796875, -0.041473388671875, 0.005634307861328125, 0.017303466796875, -0.0264892578125, -0.005451202392578125, 0.01142120361328125, 0.0638427734375, -0.048553466796875, 0.06292724609375, -0.0215301513671875, 0.036865234375, 0.03240966796875, -0.0220794677734375, 0.03759765625, 0.028900146484375, -0.01427459716796875, 0.0195465087890625, 0.027435302734375, -0.057373046875, -0.011260986328125, 0.033721923828125, -0.0958251953125, -0.012298583984375, -0.0509033203125, -0.03643798828125, -0.0077056884765625, -0.0010976791381835938, 0.053192138671875, 0.057220458984375, -0.0210418701171875, 0.015411376953125, 0.0382080078125, -0.0174713134765625, 0.01092529296875, 0.0230865478515625, 0.003448486328125, -0.041748046875, 0.05206298828125, -0.005016326904296875, 0.0081939697265625, 0.00753021240234375, 0.018341064453125, -0.0147552490234375, -0.049346923828125, -0.01482391357421875, 0.00783538818359375, -0.04296875, -0.0311126708984375, -0.0301971435546875, -0.047027587890625, -0.03143310546875, 0.01349639892578125, -0.022430419921875, -0.006267547607421875, -0.06353759765625, -0.01047515869140625, 0.040496826171875, 0.034027099609375, -0.0118865966796875, 0.041351318359375, -0.0626220703125, 0.01453399658203125, 0.0191497802734375, 0.02545166015625, 0.0030517578125, -0.05609130859375, -0.04193115234375, 0.01238250732421875, -0.02801513671875, -0.04693603515625, 0.03753662109375, 0.0241241455078125, 0.04345703125, 0.0219573974609375, -0.0034618377685546875, 0.056243896484375, -0.0268096923828125, 0.06207275390625, 0.0214691162109375, -0.033966064453125, 0.0296173095703125, -0.01812744140625, 0.037872314453125, 0.046875, 0.0379638671875, 0.0086212158203125, -0.012115478515625, -0.08160400390625, -0.0606689453125, 0.03399658203125, 0.01885986328125, -0.00007647275924682617, 0.0038318634033203125, 0.05426025390625, -0.00435638427734375, 0.0184478759765625, -0.049072265625, -0.0274658203125, -0.0211029052734375, -0.0105743408203125, -0.01471710205078125, -0.043243408203125, -0.019317626953125, -0.06982421875, 0.06982421875, -0.0007419586181640625, 0.0308990478515625, 0.0382080078125, 0.0077056884765625, -0.015045166015625, 0.0022907257080078125, 0.05120849609375, 0.0513916015625, -0.043853759765625, -0.0105438232421875, 0.0000788569450378418, -0.052703857421875, -0.00563812255859375, 0.025543212890625, -0.01439666748046875, 0.01177215576171875, 0.0184783935546875, 0.07965087890625, -0.00439453125, -0.01406097412109375, 0.033294677734375, -0.00843048095703125, -0.0263671875, -0.031463623046875, 0.0189056396484375, -0.00975799560546875, 0.0333251953125, 0.008575439453125, 0.044342041015625, 0.0215301513671875, -0.006542205810546875, 0.027191162109375, 0.022491455078125, -0.038665771484375, -0.0219268798828125, 0.0718994140625, 0.01123046875, -0.0181884765625, 0.049835205078125, -0.0174713134765625, -0.0132904052734375, 0.0606689453125, 0.044525146484375, 0.0692138671875, -0.0025482177734375, 0.010101318359375, 0.05548095703125, 0.007274627685546875, -0.010650634765625, 0.0518798828125, 0.020965576171875, -0.040618896484375, -0.02532958984375, -0.048492431640625, -0.01334381103515625, 0.043701171875, -0.08984375, 0.0222930908203125, -0.042388916015625, -0.038299560546875, 0.02276611328125, 0.01039886474609375, -0.08367919921875, 0.05230712890625, 0.00945281982421875, 0.090576171875, -0.080810546875, 0.0657958984375, 0.060516357421875, -0.04144287109375, -0.075439453125, -0.01464080810546875, -0.023651123046875, -0.06561279296875, 0.03955078125, -0.01050567626953125, 0.037109375, 0.01499176025390625, -0.059295654296875, -0.054840087890625, 0.0732421875, 0.0270843505859375, -0.058563232421875, 0.0018262863159179688, 0.0091552734375, 0.06781005859375, -0.019683837890625, 0.0294647216796875, 0.007171630859375, -0.004367828369140625, 0.0072784423828125, -0.060028076171875, -0.00630950927734375, -0.03033447265625, 0.003490447998046875, -0.0169219970703125, -0.0443115234375, 0.070068359375, -0.01303863525390625, 0.037200927734375, 0.016571044921875, 0.0540771484375, 0.01910400390625, 0.0355224609375, 0.00406646728515625, 0.055633544921875, 0.05230712890625, 0.00707244873046875, 0.0672607421875, -0.04296875, 0.050445556640625, 0.09832763671875, 0.0036106109619140625, 0.057586669921875, 0.031158447265625, -0.01293182373046875, 0.02130126953125, 0.06573486328125, -0.041290283203125, 0.0328369140625, 0.0204925537109375, 0.00010073184967041016, -0.03143310546875, 0.00872802734375, -0.06158447265625, 0.0308074951171875, 0.006984710693359375, -0.058013916015625, -0.0196990966796875, -0.00423431396484375, -0.01357269287109375, -0.013519287109375, -0.0494384765625, 0.045684814453125, -0.00873565673828125, -0.02398681640625, 0.06451416015625, 0.0021839141845703125, 0.020050048828125, -0.03436279296875, -0.0106658935546875, 0.00959014892578125, 0.022308349609375, -0.03460693359375, -0.0330810546875, 0.01476287841796875, -0.0182342529296875, -0.0287322998046875, 0.0156707763671875, 0.04779052734375, -0.035614013671875, -0.052001953125, 0.00030303001403808594, 0.03594970703125, 0.0203857421875, -0.00592041015625, -0.08740234375, -0.010345458984375, -0.00887298583984375, -0.0163726806640625, 0.0166473388671875, 0.0093841552734375, 0.003940582275390625, 0.034393310546875, 0.032379150390625, 0.0028018951416015625, -0.0030345916748046875, 0.0035991668701171875, 0.06304931640625, -0.035736083984375, -0.038665771484375, -0.059783935546875, 0.03515625, -0.01052093505859375, -0.056671142578125, 0.039947509765625, 0.08001708984375, 0.057342529296875, -0.028564453125, 0.042755126953125, 0.025054931640625, 0.02691650390625, -0.02557373046875, 0.05584716796875, -0.038543701171875, -0.004100799560546875, -0.01020050048828125, -0.040985107421875, -0.0106658935546875, 0.04400634765625, -0.0176544189453125, 0.0005307197570800781, 0.039825439453125, 0.05657958984375, -0.0004570484161376953, -0.001277923583984375, 0.022186279296875, 0.016326904296875, 0.01523590087890625, 0.0296173095703125, 0.0206451416015625, -0.0692138671875, 0.0166778564453125, -0.03759765625, -0.00899505615234375, -0.015625, -0.054595947265625, -0.08050537109375, -0.0229644775390625, -0.056671142578125, -0.06610107421875, 0.0179595947265625, 0.1007080078125, 0.061065673828125, -0.070068359375, -0.01519012451171875, -0.007556915283203125, -0.024017333984375, -0.028961181640625, -0.01165008544921875, 0.038665771484375, -0.0110321044921875, -0.024749755859375, -0.00772857666015625, -0.0136566162109375, 0.02679443359375, -0.00940704345703125, -0.00856781005859375, -0.0187835693359375, -0.0230560302734375, 0.035308837890625, 0.0238037109375, -0.0350341796875, -0.021728515625, -0.0084228515625, -0.0257110595703125, 0.018218994140625, 0.0106201171875, -0.053436279296875, 0.03192138671875, 0.0301055908203125, 0.0308685302734375, 0.038726806640625, -0.00919342041015625, 0.03326416015625, -0.053497314453125, 0.02862548828125, 0.028656005859375, 0.02142333984375, 0.00439453125, -0.04083251953125, 0.0260009765625, 0.028717041015625, -0.053009033203125, -0.05157470703125, -0.01410675048828125, -0.0880126953125, 0.0007181167602539062, 0.0972900390625, 0.0048065185546875, -0.034912109375, 0.0114288330078125, -0.026031494140625, 0.042083740234375, -0.023193359375, 0.041046142578125, 0.01519012451171875, -0.00962066650390625, 0.0054931640625, -0.03619384765625, 0.060821533203125, 0.015655517578125, -0.0526123046875, -0.035186767578125, 0.024658203125, 0.034515380859375, -0.004802703857421875, 0.026580810546875, 0.00295257568359375, 0.04193115234375, -0.003620147705078125, 0.040924072265625, -0.0313720703125, -0.0156402587890625, -0.043548583984375, 0.0194549560546875, 0.016693115234375, -0.041412353515625 ] ]
zaanind/llama-2-7b-miniguanaco
2023-10-29T05:54:36.000Z
[ "peft", "region:us" ]
null
zaanind
null
null
zaanind/llama-2-7b-miniguanaco
0
2
peft
2023-10-29T05:54:27
--- library_name: peft --- ## Training procedure The following `bitsandbytes` quantization config was used during training: - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: False - bnb_4bit_compute_dtype: float16 The following `bitsandbytes` quantization config was used during training: - load_in_8bit: False - load_in_4bit: True - llm_int8_threshold: 6.0 - llm_int8_skip_modules: None - llm_int8_enable_fp32_cpu_offload: False - llm_int8_has_fp16_weight: False - bnb_4bit_quant_type: nf4 - bnb_4bit_use_double_quant: False - bnb_4bit_compute_dtype: float16 ### Framework versions - PEFT 0.4.0 - PEFT 0.4.0
795
[ [ -0.049346923828125, -0.04913330078125, 0.02398681640625, 0.034698486328125, -0.04168701171875, 0.004528045654296875, 0.0069427490234375, -0.020843505859375, -0.009796142578125, 0.026275634765625, -0.048797607421875, -0.0138397216796875, -0.0377197265625, 0.01464080810546875, 0.0058746337890625, 0.0679931640625, -0.018798828125, 0.03460693359375, -0.01125335693359375, -0.001956939697265625, -0.032562255859375, -0.032012939453125, -0.06689453125, -0.02142333984375, -0.0167999267578125, 0.024017333984375, 0.0303497314453125, 0.0198822021484375, 0.048004150390625, 0.0178985595703125, -0.0004267692565917969, -0.0173492431640625, -0.0167999267578125, -0.0246429443359375, 0.01125335693359375, -0.03350830078125, -0.06109619140625, -0.0091705322265625, 0.0711669921875, 0.01450347900390625, -0.00949859619140625, 0.0183563232421875, -0.00786590576171875, 0.068359375, -0.05242919921875, 0.0165863037109375, -0.034210205078125, 0.03582763671875, -0.00678253173828125, -0.021240234375, -0.0200958251953125, -0.01163482666015625, -0.004650115966796875, -0.045501708984375, 0.02984619140625, 0.0021343231201171875, 0.07220458984375, 0.01068878173828125, -0.049163818359375, 0.011962890625, -0.033477783203125, 0.050384521484375, -0.0552978515625, 0.035919189453125, 0.03546142578125, 0.01119232177734375, 0.0110931396484375, -0.04083251953125, -0.031890869140625, 0.01384735107421875, 0.0124969482421875, -0.0043792724609375, -0.007755279541015625, 0.03662109375, 0.059295654296875, 0.033599853515625, -0.031982421875, -0.00888824462890625, -0.039031982421875, -0.03607177734375, 0.0513916015625, 0.0171051025390625, -0.0225830078125, 0.01959228515625, -0.0516357421875, -0.0147857666015625, -0.05206298828125, 0.0158538818359375, 0.031463623046875, -0.002643585205078125, -0.039642333984375, 0.0279388427734375, -0.029937744140625, 0.04180908203125, 0.05145263671875, -0.0017490386962890625, 0.067626953125, -0.03741455078125, -0.03814697265625, 0.0213470458984375, 0.0623779296875, 0.01898193359375, 0.01137542724609375, 0.00911712646484375, -0.0361328125, -0.02801513671875, 0.0304718017578125, -0.08538818359375, -0.01483917236328125, 0.0280303955078125, -0.0172271728515625, -0.03118896484375, 0.012420654296875, -0.03936767578125, 0.01213836669921875, -0.0031108856201171875, 0.05780029296875, -0.054473876953125, -0.0300140380859375, 0.022430419921875, -0.0173797607421875, 0.0418701171875, 0.01084136962890625, -0.0787353515625, 0.04461669921875, 0.047119140625, 0.048004150390625, 0.000045239925384521484, -0.008819580078125, -0.027008056640625, -0.0038623809814453125, -0.01235198974609375, 0.023834228515625, 0.0226287841796875, -0.02508544921875, -0.0127105712890625, 0.006740570068359375, -0.0175323486328125, -0.041259765625, 0.04425048828125, -0.045684814453125, 0.00011742115020751953, -0.010833740234375, -0.040374755859375, -0.025634765625, 0.019500732421875, -0.042327880859375, 0.08258056640625, 0.02349853515625, -0.05596923828125, 0.021881103515625, -0.036468505859375, -0.0189361572265625, 0.01385498046875, -0.031890869140625, -0.055694580078125, 0.0274200439453125, -0.017578125, 0.030181884765625, 0.00559234619140625, 0.019805908203125, -0.0140533447265625, -0.057403564453125, 0.0257415771484375, -0.036468505859375, 0.070556640625, 0.0096588134765625, -0.060272216796875, -0.0032939910888671875, -0.06884765625, 0.020477294921875, -0.0039215087890625, -0.046173095703125, 0.0276947021484375, -0.0289306640625, 0.0016536712646484375, 0.0037021636962890625, 0.03570556640625, -0.056854248046875, -0.01067352294921875, -0.036468505859375, 0.034149169921875, 0.06036376953125, 0.007587432861328125, 0.021484375, -0.0175933837890625, 0.0384521484375, 0.0162353515625, 0.024322509765625, 0.03912353515625, -0.038116455078125, -0.061859130859375, -0.01313018798828125, 0.008026123046875, 0.04046630859375, -0.05572509765625, 0.05511474609375, -0.002620697021484375, -0.0204620361328125, -0.01512908935546875, -0.01348114013671875, 0.038787841796875, 0.0274505615234375, 0.024383544921875, -0.01108551025390625, -0.03594970703125, -0.06890869140625, 0.0249176025390625, 0.00847625732421875, 0.007720947265625, -0.001667022705078125, 0.058197021484375, 0.0133819580078125, 0.04736328125, -0.031524658203125, 0.0022029876708984375, 0.0107421875, 0.0078887939453125, 0.03179931640625, 0.056243896484375, 0.049835205078125, -0.0648193359375, -0.025726318359375, -0.039764404296875, -0.016448974609375, 0.0180816650390625, -0.0225830078125, -0.0184783935546875, 0.0360107421875, 0.01110076904296875, -0.0284423828125, 0.049163818359375, 0.030975341796875, -0.0489501953125, 0.07122802734375, -0.0178985595703125, 0.018463134765625, -0.0626220703125, 0.003787994384765625, 0.0008387565612792969, -0.022369384765625, 0.0006551742553710938, 0.0007710456848144531, 0.026031494140625, 0.005908966064453125, -0.047637939453125, 0.0193939208984375, -0.023895263671875, -0.00923919677734375, -0.0014476776123046875, -0.04534912109375, 0.0182647705078125, 0.042633056640625, 0.004909515380859375, 0.07244873046875, 0.0516357421875, -0.055023193359375, 0.0254364013671875, -0.0011548995971679688, -0.0023212432861328125, 0.038970947265625, -0.048248291015625, 0.0017833709716796875, 0.032684326171875, 0.0003132820129394531, -0.06158447265625, 0.00881195068359375, 0.0247039794921875, -0.0347900390625, 0.03424072265625, -0.006824493408203125, -0.0360107421875, -0.004058837890625, -0.04949951171875, 0.045013427734375, 0.03289794921875, -0.0227813720703125, 0.019989013671875, 0.0015554428100585938, 0.0418701171875, -0.03326416015625, -0.062744140625, -0.0338134765625, -0.0160369873046875, -0.041595458984375, 0.049285888671875, -0.036865234375, 0.01198577880859375, -0.0185089111328125, -0.036956787109375, -0.0252532958984375, 0.0169830322265625, 0.0304718017578125, 0.028564453125, -0.0233306884765625, -0.01275634765625, 0.0131988525390625, -0.01023101806640625, 0.0284423828125, -0.0082855224609375, 0.0396728515625, -0.034912109375, -0.01409149169921875, -0.040283203125, 0.00789642333984375, 0.01036834716796875, 0.012969970703125, 0.0648193359375, 0.07586669921875, -0.033599853515625, 0.01104736328125, -0.031646728515625, -0.0211944580078125, -0.03912353515625, 0.0202484130859375, -0.046539306640625, -0.07574462890625, 0.0228424072265625, 0.007564544677734375, -0.00003153085708618164, 0.0557861328125, 0.0192108154296875, -0.0197296142578125, 0.055389404296875, 0.03192138671875, 0.024017333984375, 0.050018310546875, -0.04022216796875, -0.003643035888671875, -0.0772705078125, -0.007183074951171875, -0.036895751953125, -0.0263824462890625, -0.0595703125, -0.00659942626953125, 0.037750244140625, 0.033416748046875, -0.06298828125, 0.01611328125, -0.037445068359375, 0.0250244140625, 0.0428466796875, 0.027008056640625, -0.01288604736328125, 0.023895263671875, -0.0164031982421875, 0.0030765533447265625, -0.039642333984375, -0.005275726318359375, 0.09576416015625, 0.02056884765625, 0.0303192138671875, -0.007808685302734375, 0.06304931640625, 0.0025806427001953125, -0.02630615234375, -0.04638671875, 0.047119140625, -0.002101898193359375, -0.0582275390625, -0.012786865234375, -0.0477294921875, -0.044158935546875, -0.00004458427429199219, -0.0236358642578125, -0.050506591796875, 0.01800537109375, 0.0242767333984375, -0.041412353515625, 0.01534271240234375, -0.03765869140625, 0.071533203125, -0.0231475830078125, -0.00890350341796875, -0.024993896484375, -0.053741455078125, 0.01430511474609375, -0.0020351409912109375, -0.00141143798828125, 0.00550079345703125, -0.01090240478515625, 0.07415771484375, -0.037567138671875, 0.0482177734375, -0.0276336669921875, 0.016082763671875, 0.0270538330078125, -0.020660400390625, 0.0290069580078125, 0.0107574462890625, -0.010589599609375, 0.044647216796875, 0.02392578125, -0.0396728515625, -0.00037288665771484375, 0.036468505859375, -0.0819091796875, -0.0029354095458984375, -0.053466796875, -0.0187225341796875, -0.01436614990234375, 0.008392333984375, 0.04388427734375, 0.02984619140625, 0.0112152099609375, 0.0306396484375, 0.08038330078125, 0.00640106201171875, 0.042999267578125, 0.034820556640625, 0.006855010986328125, -0.06903076171875, 0.0545654296875, 0.0008134841918945312, 0.0462646484375, 0.034454345703125, 0.01100921630859375, -0.020782470703125, -0.06036376953125, -0.0286102294921875, 0.0164337158203125, -0.03118896484375, -0.038604736328125, -0.0170135498046875, -0.03741455078125, -0.05029296875, 0.00325775146484375, -0.039520263671875, -0.054443359375, -0.0360107421875, -0.0123748779296875, 0.049163818359375, -0.0064849853515625, -0.019561767578125, 0.058197021484375, -0.076416015625, 0.01045989990234375, -0.0006237030029296875, 0.0265045166015625, -0.01512908935546875, -0.057464599609375, -0.055084228515625, 0.005252838134765625, -0.05438232421875, -0.0631103515625, 0.0047607421875, 0.0163116455078125, 0.03216552734375, 0.03741455078125, -0.0038814544677734375, 0.038299560546875, -0.017364501953125, 0.052001953125, 0.01788330078125, -0.07489013671875, 0.028900146484375, -0.005992889404296875, 0.0175933837890625, 0.05255126953125, 0.03668212890625, -0.001842498779296875, 0.01334381103515625, -0.0728759765625, -0.06768798828125, 0.0621337890625, 0.0150299072265625, -0.00841522216796875, 0.0183258056640625, 0.03863525390625, -0.0040740966796875, 0.04620361328125, -0.0557861328125, -0.015380859375, -0.0168304443359375, 0.0019073486328125, 0.0265655517578125, -0.020233154296875, -0.007335662841796875, -0.0220184326171875, 0.0865478515625, -0.01213836669921875, 0.041534423828125, 0.01294708251953125, -0.0011472702026367188, -0.026885986328125, 0.00617218017578125, 0.032012939453125, 0.047210693359375, -0.057220458984375, 0.005687713623046875, 0.0029125213623046875, -0.06842041015625, 0.0042724609375, 0.01226806640625, -0.0256805419921875, -0.01529693603515625, 0.007183074951171875, 0.08258056640625, 0.016876220703125, -0.018310546875, 0.0245361328125, -0.00635528564453125, -0.04345703125, -0.041168212890625, 0.0284423828125, -0.001873016357421875, 0.020904541015625, 0.0080718994140625, 0.0119476318359375, 0.00714111328125, -0.004116058349609375, 0.0087738037109375, 0.026580810546875, -0.01214599609375, -0.024444580078125, 0.0269775390625, 0.020477294921875, -0.0002994537353515625, 0.06256103515625, -0.044830322265625, -0.0240936279296875, 0.060699462890625, 0.036376953125, 0.0760498046875, -0.0035915374755859375, 0.01099395751953125, 0.03778076171875, 0.01275634765625, -0.0028018951416015625, 0.06646728515625, -0.0196533203125, -0.06768798828125, -0.025634765625, -0.067138671875, -0.0149078369140625, 0.01119232177734375, -0.0745849609375, 0.0236053466796875, -0.0543212890625, -0.02301025390625, 0.002330780029296875, 0.039642333984375, -0.058135986328125, 0.0322265625, 0.02166748046875, 0.0833740234375, -0.06146240234375, 0.07489013671875, 0.060943603515625, -0.0301361083984375, -0.0679931640625, -0.025726318359375, -0.00771331787109375, -0.055450439453125, 0.040496826171875, 0.00211334228515625, 0.016815185546875, 0.02581787109375, -0.034912109375, -0.05389404296875, 0.1064453125, 0.0175628662109375, -0.048187255859375, 0.01213836669921875, 0.0252685546875, 0.00916290283203125, -0.0152435302734375, 0.0240478515625, 0.0301361083984375, 0.021331787109375, 0.021240234375, -0.063720703125, 0.01397705078125, 0.002498626708984375, -0.01172637939453125, 0.037139892578125, -0.05621337890625, 0.08551025390625, -0.003787994384765625, 0.019683837890625, -0.008697509765625, 0.03729248046875, 0.04766845703125, 0.0193023681640625, 0.049713134765625, 0.060211181640625, 0.02471923828125, -0.00511932373046875, 0.03289794921875, -0.037353515625, 0.043670654296875, 0.0728759765625, -0.003326416015625, 0.059234619140625, 0.057037353515625, -0.040771484375, 0.01367950439453125, 0.0673828125, -0.01250457763671875, 0.036956787109375, 0.004611968994140625, -0.0335693359375, -0.022247314453125, 0.02996826171875, -0.039703369140625, 0.0029506683349609375, 0.034942626953125, -0.01493072509765625, -0.009490966796875, -0.00988006591796875, 0.01169586181640625, -0.0626220703125, -0.025970458984375, 0.046112060546875, -0.00006479024887084961, -0.0233917236328125, 0.05255126953125, 0.009002685546875, 0.0621337890625, -0.06353759765625, -0.01288604736328125, -0.00603485107421875, 0.0174713134765625, -0.0248260498046875, -0.046630859375, 0.0246124267578125, -0.00957489013671875, -0.0264434814453125, -0.0164794921875, 0.03997802734375, -0.0034275054931640625, -0.04388427734375, -0.005855560302734375, -0.00640106201171875, 0.020416259765625, -0.04046630859375, -0.062469482421875, 0.007251739501953125, 0.03253173828125, -0.04449462890625, 0.044158935546875, 0.048858642578125, 0.01544189453125, 0.0153961181640625, 0.0252838134765625, 0.01166534423828125, 0.0218353271484375, -0.005645751953125, 0.059234619140625, -0.049163818359375, -0.0418701171875, -0.0584716796875, 0.044677734375, 0.004711151123046875, -0.042205810546875, 0.0296173095703125, 0.05780029296875, 0.07904052734375, 0.002246856689453125, 0.032684326171875, -0.01229095458984375, -0.01027679443359375, -0.059051513671875, 0.0302581787109375, -0.022216796875, 0.006717681884765625, 0.00960540771484375, -0.0460205078125, 0.0207366943359375, 0.05902099609375, -0.007503509521484375, 0.007640838623046875, 0.0712890625, 0.037017822265625, -0.0074310302734375, 0.01947021484375, 0.011505126953125, 0.01079559326171875, 0.01358795166015625, 0.049224853515625, 0.0107574462890625, -0.0626220703125, 0.032470703125, -0.05303955078125, -0.0302276611328125, -0.0126800537109375, -0.0635986328125, -0.033477783203125, -0.01386260986328125, -0.05902099609375, -0.03460693359375, -0.01511383056640625, 0.057525634765625, 0.06317138671875, -0.06060791015625, -0.0298919677734375, -0.023681640625, -0.01401519775390625, -0.0205230712890625, -0.0202178955078125, 0.02911376953125, -0.012725830078125, -0.0265655517578125, 0.008544921875, 0.0024700164794921875, 0.023162841796875, -0.01702880859375, -0.0206756591796875, -0.02764892578125, -0.0092315673828125, 0.01137542724609375, -0.00785064697265625, -0.006526947021484375, -0.01267242431640625, -0.020294189453125, 0.004669189453125, 0.033355712890625, 0.036956787109375, -0.05914306640625, 0.01027679443359375, 0.044891357421875, 0.0212554931640625, 0.053466796875, -0.0216827392578125, 0.0195770263671875, -0.0755615234375, 0.0254669189453125, 0.022064208984375, 0.0301055908203125, -0.0081024169921875, -0.046661376953125, 0.0340576171875, 0.040618896484375, -0.054046630859375, -0.04632568359375, -0.004680633544921875, -0.08892822265625, 0.005336761474609375, 0.0631103515625, -0.01265716552734375, -0.02947998046875, 0.0267791748046875, -0.003444671630859375, 0.0223846435546875, -0.041259765625, 0.03289794921875, 0.044708251953125, -0.032684326171875, 0.00013971328735351562, -0.051788330078125, 0.03680419921875, 0.0223388671875, -0.054290771484375, -0.0469970703125, 0.032012939453125, 0.037445068359375, 0.00814056396484375, 0.055084228515625, -0.0107269287109375, 0.023468017578125, 0.018768310546875, 0.0238037109375, -0.0210723876953125, -0.00189971923828125, -0.039794921875, -0.002300262451171875, -0.0061798095703125, -0.064697265625 ] ]
sunriseL/ppo-LunarLander-v2
2023-10-29T08:08:51.000Z
[ "stable-baselines3", "LunarLander-v2", "deep-reinforcement-learning", "reinforcement-learning", "model-index", "region:us" ]
reinforcement-learning
sunriseL
null
null
sunriseL/ppo-LunarLander-v2
0
2
stable-baselines3
2023-10-29T08:08:29
--- 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: 247.63 +/- 15.17 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 ... ```
784
[ [ -0.00023484230041503906, -0.02716064453125, 0.017059326171875, 0.023345947265625, -0.00606536865234375, 0.002735137939453125, 0.034454345703125, -0.012115478515625, 0.019866943359375, 0.06500244140625, -0.043212890625, -0.035247802734375, -0.0343017578125, -0.01922607421875, 0.0017528533935546875, 0.06982421875, 0.0015935897827148438, 0.028167724609375, 0.00954437255859375, -0.00704193115234375, -0.018341064453125, -0.0218658447265625, -0.05206298828125, -0.07147216796875, 0.011993408203125, 0.050201416015625, 0.054229736328125, 0.0242462158203125, 0.028106689453125, 0.0292205810546875, -0.0176849365234375, -0.0322265625, -0.04132080078125, -0.0012683868408203125, -0.000614166259765625, -0.044403076171875, -0.0633544921875, 0.01415252685546875, 0.03961181640625, 0.004047393798828125, -0.0198822021484375, 0.004917144775390625, -0.0282745361328125, 0.031097412109375, -0.037567138671875, 0.015777587890625, -0.01535797119140625, 0.0017938613891601562, 0.007350921630859375, 0.01081085205078125, -0.0259246826171875, -0.00986480712890625, 0.020660400390625, -0.0906982421875, -0.00533294677734375, -0.021514892578125, 0.09295654296875, 0.0093994140625, -0.037994384765625, 0.0011854171752929688, -0.0190277099609375, 0.034088134765625, -0.027191162109375, 0.0103607177734375, 0.049163818359375, 0.036163330078125, 0.0031528472900390625, -0.06915283203125, -0.016387939453125, -0.032623291015625, 0.0010671615600585938, 0.0316162109375, 0.0154876708984375, 0.0167236328125, 0.0150146484375, 0.0107574462890625, -0.0240478515625, 0.0241241455078125, -0.04608154296875, -0.0239410400390625, 0.0355224609375, 0.0182342529296875, 0.00534820556640625, -0.00782012939453125, -0.03533935546875, -0.01183319091796875, -0.03143310546875, 0.0230560302734375, 0.0303955078125, 0.0128326416015625, -0.05889892578125, 0.0657958984375, -0.019073486328125, 0.031524658203125, 0.0303192138671875, -0.0003750324249267578, 0.0487060546875, 0.0093994140625, -0.00792694091796875, -0.025970458984375, 0.039337158203125, 0.0675048828125, 0.00406646728515625, 0.005634307861328125, -0.03369140625, -0.018798828125, 0.0120391845703125, -0.055511474609375, -0.024932861328125, 0.03375244140625, -0.01983642578125, -0.048797607421875, 0.0350341796875, -0.0418701171875, -0.02508544921875, -0.0006508827209472656, 0.0272216796875, -0.04718017578125, -0.041290283203125, 0.0043487548828125, -0.032470703125, 0.050048828125, 0.00983428955078125, -0.06329345703125, 0.0309295654296875, 0.04852294921875, 0.0660400390625, 0.041259765625, -0.0479736328125, -0.0491943359375, 0.0135040283203125, -0.031494140625, 0.05523681640625, 0.0172576904296875, -0.03375244140625, 0.02178955078125, 0.0003981590270996094, 0.01496124267578125, -0.03570556640625, 0.0181732177734375, -0.032989501953125, 0.02069091796875, 0.006561279296875, -0.0308990478515625, -0.0007753372192382812, 0.03253173828125, -0.04571533203125, 0.0982666015625, 0.060394287109375, -0.0399169921875, 0.0259857177734375, -0.046173095703125, -0.005298614501953125, 0.036407470703125, 0.017578125, -0.05078125, -0.0019855499267578125, -0.0310516357421875, 0.01300811767578125, 0.004825592041015625, 0.003040313720703125, -0.02630615234375, -0.0268402099609375, 0.0055084228515625, 0.0567626953125, 0.06378173828125, 0.015625, -0.002384185791015625, 0.0144195556640625, -0.043670654296875, -0.00995635986328125, 0.00634765625, -0.0202789306640625, -0.0110321044921875, -0.0171661376953125, 0.037567138671875, 0.0171051025390625, 0.034027099609375, -0.034393310546875, 0.0357666015625, -0.039306640625, 0.014068603515625, 0.0498046875, -0.00911712646484375, 0.055999755859375, -0.0478515625, 0.023529052734375, -0.01238250732421875, 0.0191497802734375, 0.01395416259765625, -0.0253143310546875, -0.045684814453125, -0.036285400390625, -0.002056121826171875, 0.058013916015625, -0.08660888671875, 0.04913330078125, 0.015625, -0.0548095703125, -0.014678955078125, -0.01074981689453125, 0.03643798828125, 0.018890380859375, 0.003299713134765625, -0.006404876708984375, -0.042510986328125, -0.060699462890625, 0.017333984375, -0.04833984375, -0.01690673828125, 0.00007045269012451172, 0.047637939453125, -0.0242462158203125, 0.058746337890625, -0.0262603759765625, -0.0253448486328125, -0.02288818359375, 0.01381683349609375, 0.019866943359375, 0.053558349609375, 0.06768798828125, -0.041107177734375, -0.03668212890625, -0.0190582275390625, -0.063232421875, -0.0302581787109375, 0.01092529296875, -0.01129150390625, 0.0008001327514648438, 0.0238800048828125, -0.055023193359375, 0.00653076171875, 0.04254150390625, -0.07159423828125, 0.051513671875, -0.02630615234375, -0.00007575750350952148, -0.09185791015625, 0.01305389404296875, 0.0162200927734375, -0.024261474609375, -0.055511474609375, 0.0236968994140625, 0.01108551025390625, -0.004302978515625, -0.050994873046875, 0.064453125, -0.037841796875, 0.0016231536865234375, -0.03228759765625, -0.00919342041015625, -0.01050567626953125, -0.0042266845703125, 0.0018405914306640625, 0.04364013671875, 0.0792236328125, -0.0303955078125, 0.0430908203125, 0.04290771484375, 0.00759124755859375, 0.053436279296875, -0.042633056640625, 0.008880615234375, -0.0184478759765625, 0.0185546875, -0.045166015625, -0.04400634765625, 0.042388916015625, -0.035675048828125, 0.0223541259765625, -0.0321044921875, -0.0238037109375, -0.03369140625, -0.04229736328125, 0.0134735107421875, 0.043975830078125, -0.0208282470703125, 0.05322265625, 0.048980712890625, 0.0081024169921875, -0.03924560546875, -0.03070068359375, -0.013458251953125, -0.0196685791015625, -0.0293731689453125, 0.032073974609375, 0.0093994140625, -0.03436279296875, -0.0156097412109375, 0.002529144287109375, -0.0149383544921875, 0.006168365478515625, 0.033355712890625, 0.028564453125, -0.00170135498046875, -0.020263671875, -0.028594970703125, -0.049652099609375, -0.01038360595703125, -0.010589599609375, 0.047271728515625, -0.0190277099609375, 0.0263824462890625, -0.059112548828125, -0.00348663330078125, 0.052276611328125, 0.0176239013671875, 0.05859375, 0.0303192138671875, -0.0380859375, -0.00710296630859375, -0.0239410400390625, -0.01154327392578125, -0.03826904296875, 0.03167724609375, -0.0396728515625, -0.0400390625, 0.050628662109375, 0.00003361701965332031, -0.02642822265625, 0.041748046875, 0.040374755859375, -0.0056915283203125, 0.04656982421875, 0.06878662109375, -0.00760650634765625, 0.05059814453125, -0.04931640625, -0.046417236328125, -0.053619384765625, -0.0423583984375, -0.0268096923828125, 0.0167999267578125, -0.028533935546875, -0.0178985595703125, 0.0093231201171875, 0.032196044921875, -0.0533447265625, 0.06182861328125, -0.030059814453125, 0.042510986328125, 0.0406494140625, 0.01081085205078125, -0.0193634033203125, -0.038116455078125, -0.00330352783203125, 0.0158538818359375, -0.0232696533203125, -0.0380859375, 0.06817626953125, 0.039703369140625, 0.052459716796875, 0.005001068115234375, 0.044830322265625, 0.006404876708984375, 0.04473876953125, -0.038604736328125, 0.033782958984375, -0.0123138427734375, -0.06317138671875, -0.008209228515625, -0.022186279296875, -0.052886962890625, 0.0129852294921875, -0.030487060546875, -0.0665283203125, -0.011749267578125, 0.006420135498046875, -0.0196990966796875, 0.005298614501953125, -0.03704833984375, 0.07135009765625, -0.0242767333984375, -0.02435302734375, 0.0106048583984375, -0.04791259765625, 0.0185089111328125, 0.0135040283203125, -0.003620147705078125, -0.02490234375, -0.0181427001953125, 0.050048828125, -0.032958984375, 0.043701171875, -0.057586669921875, 0.013031005859375, 0.0166015625, 0.00891876220703125, 0.0274810791015625, 0.031951904296875, -0.0117034912109375, 0.001331329345703125, 0.00582122802734375, -0.052276611328125, -0.0032062530517578125, 0.031219482421875, -0.09857177734375, -0.0046539306640625, -0.057861328125, -0.02325439453125, 0.0090179443359375, 0.020111083984375, 0.03948974609375, 0.00940704345703125, -0.0279998779296875, 0.00021457672119140625, 0.0059661865234375, 0.00882720947265625, 0.01517486572265625, 0.0614013671875, -0.035797119140625, -0.061126708984375, 0.0298919677734375, 0.0017242431640625, -0.0007538795471191406, 0.0221099853515625, 0.00569915771484375, -0.0225372314453125, -0.042083740234375, -0.0098419189453125, 0.0309600830078125, -0.0251007080078125, -0.0134429931640625, -0.0113525390625, -0.0227508544921875, -0.0256500244140625, -0.0291290283203125, -0.046112060546875, -0.0204315185546875, -0.0330810546875, -0.0225067138671875, 0.0256195068359375, 0.0499267578125, -0.03021240234375, 0.08660888671875, -0.034942626953125, 0.03338623046875, 0.010040283203125, 0.04132080078125, -0.058624267578125, -0.0338134765625, -0.026611328125, -0.0174560546875, -0.03155517578125, -0.06683349609375, 0.03271484375, -0.016204833984375, 0.05377197265625, 0.028167724609375, -0.010833740234375, 0.0254974365234375, -0.01161956787109375, 0.055572509765625, 0.033355712890625, -0.0716552734375, 0.0283355712890625, -0.051239013671875, 0.0092010498046875, 0.062469482421875, 0.0146331787109375, -0.01800537109375, -0.0259246826171875, -0.0601806640625, -0.06903076171875, 0.08331298828125, 0.03216552734375, -0.00598907470703125, 0.0221099853515625, 0.055267333984375, -0.00547027587890625, 0.00682830810546875, -0.06524658203125, -0.0196380615234375, -0.0264129638671875, -0.01265716552734375, -0.0196990966796875, -0.01195526123046875, -0.0140533447265625, 0.00411224365234375, 0.06378173828125, -0.01079559326171875, 0.0202789306640625, 0.00621795654296875, -0.00850677490234375, -0.0304107666015625, -0.03729248046875, 0.0280609130859375, 0.0230560302734375, -0.06353759765625, -0.015655517578125, 0.0036869049072265625, -0.040679931640625, 0.0256195068359375, 0.043426513671875, -0.0190887451171875, -0.0178985595703125, 0.0283050537109375, 0.050506591796875, 0.0111541748046875, -0.0197296142578125, 0.046356201171875, 0.00817108154296875, -0.034820556640625, -0.053619384765625, 0.002925872802734375, -0.0061492919921875, 0.037261962890625, 0.0201873779296875, 0.01031494140625, -0.0091552734375, -0.036956787109375, 0.0302734375, 0.0177154541015625, -0.050048828125, -0.03607177734375, 0.061126708984375, 0.02532958984375, -0.05633544921875, 0.044830322265625, -0.007259368896484375, -0.03973388671875, 0.06695556640625, 0.031707763671875, 0.0650634765625, -0.0257415771484375, 0.032989501953125, 0.033935546875, 0.01325225830078125, -0.0251007080078125, 0.04010009765625, 0.0201568603515625, -0.07379150390625, -0.0159454345703125, -0.01184844970703125, -0.0523681640625, 0.0155181884765625, -0.04449462890625, 0.041534423828125, -0.043975830078125, -0.03485107421875, 0.0029296875, 0.020721435546875, -0.0294036865234375, -0.00514984130859375, 0.0255126953125, 0.0943603515625, -0.06097412109375, 0.07122802734375, 0.07159423828125, -0.037261962890625, -0.03826904296875, -0.0018377304077148438, 0.02777099609375, -0.058074951171875, 0.040618896484375, 0.032196044921875, 0.003887176513671875, 0.0096893310546875, -0.054443359375, -0.048919677734375, 0.10089111328125, 0.01378631591796875, -0.003082275390625, 0.0163116455078125, -0.0151824951171875, 0.0469970703125, -0.0406494140625, 0.037139892578125, 0.02362060546875, 0.035797119140625, 0.01329803466796875, -0.0660400390625, -0.0251312255859375, -0.03375244140625, -0.008575439453125, -0.00312042236328125, -0.07568359375, 0.08154296875, 0.002880096435546875, 0.0245208740234375, 0.063720703125, 0.03436279296875, 0.055877685546875, 0.0192413330078125, 0.03668212890625, 0.042572021484375, 0.01947021484375, -0.01904296875, 0.061492919921875, -0.0224151611328125, 0.0650634765625, 0.050537109375, -0.05926513671875, 0.038970947265625, 0.0203399658203125, 0.007175445556640625, 0.0357666015625, 0.045928955078125, -0.01399993896484375, 0.056671142578125, 0.0138092041015625, -0.0086822509765625, -0.006305694580078125, 0.0308990478515625, -0.0193328857421875, 0.033355712890625, 0.01335906982421875, 0.0003542900085449219, -0.006134033203125, -0.0013151168823242188, 0.002819061279296875, -0.00335693359375, -0.031707763671875, 0.069580078125, -0.01198577880859375, -0.047821044921875, 0.031982421875, 0.02423095703125, 0.043548583984375, -0.062042236328125, -0.002262115478515625, -0.01031494140625, 0.04559326171875, 0.00061798095703125, -0.07171630859375, -0.002323150634765625, -0.01418304443359375, 0.00791168212890625, -0.0176239013671875, 0.0518798828125, -0.01438140869140625, -0.020263671875, 0.057403564453125, 0.025238037109375, 0.0025386810302734375, 0.01580810546875, -0.07073974609375, -0.012908935546875, -0.03497314453125, -0.037933349609375, 0.0160980224609375, 0.020965576171875, 0.0240478515625, 0.0531005859375, 0.03228759765625, -0.0011396408081054688, -0.0248565673828125, -0.00730133056640625, 0.06878662109375, -0.048065185546875, -0.05230712890625, -0.03375244140625, 0.0780029296875, -0.02264404296875, -0.06005859375, 0.034332275390625, 0.06951904296875, 0.03912353515625, -0.0216827392578125, 0.03887939453125, -0.01435089111328125, 0.0220184326171875, -0.03253173828125, 0.05548095703125, -0.0188140869140625, -0.0088653564453125, -0.0093231201171875, -0.051300048828125, -0.034759521484375, 0.06915283203125, -0.0013580322265625, -0.004581451416015625, 0.019775390625, 0.053680419921875, 0.0025920867919921875, -0.02288818359375, 0.015716552734375, 0.0411376953125, 0.0057373046875, 0.0283355712890625, 0.0706787109375, -0.04681396484375, 0.01110076904296875, -0.039215087890625, -0.05157470703125, -0.0189971923828125, -0.0458984375, -0.07586669921875, -0.03143310546875, -0.0186614990234375, -0.0701904296875, 0.0158843994140625, 0.062469482421875, 0.0736083984375, -0.048187255859375, -0.05084228515625, -0.0162353515625, -0.00771331787109375, -0.01080322265625, -0.0127105712890625, 0.00746917724609375, -0.004177093505859375, -0.04766845703125, 0.018707275390625, -0.0023746490478515625, 0.0282440185546875, 0.0008997917175292969, -0.044219970703125, -0.01312255859375, -0.02362060546875, 0.0187835693359375, 0.036895751953125, -0.0216217041015625, -0.028900146484375, -0.009124755859375, -0.0176544189453125, 0.0026683807373046875, 0.036346435546875, -0.047332763671875, 0.004730224609375, 0.0296173095703125, -0.0267791748046875, 0.06414794921875, 0.01155853271484375, 0.042236328125, -0.03948974609375, 0.047149658203125, 0.01861572265625, 0.030487060546875, 0.0151214599609375, -0.01531219482421875, 0.0484619140625, 0.0268096923828125, -0.050048828125, -0.048309326171875, 0.0116729736328125, -0.08441162109375, -0.01611328125, 0.08331298828125, 0.0007581710815429688, -0.01366424560546875, -0.004764556884765625, -0.040985107421875, 0.0175018310546875, -0.033721923828125, 0.036834716796875, 0.035797119140625, -0.0041961669921875, -0.02685546875, -0.0274810791015625, 0.033294677734375, -0.01068115234375, -0.044677734375, -0.029266357421875, 0.034912109375, 0.0321044921875, 0.021820068359375, 0.0675048828125, -0.01039886474609375, 0.0311431884765625, 0.032745361328125, 0.0216217041015625, -0.01580810546875, -0.0239105224609375, -0.03399658203125, 0.0084991455078125, 0.00803375244140625, -0.00995635986328125 ] ]
Kooten/Echidna-13b-v0.3-3bpw-h8-exl2
2023-10-29T11:06:56.000Z
[ "transformers", "pytorch", "llama", "text-generation", "not-for-all-audiences", "nsfw", "license:cc-by-nc-4.0", "endpoints_compatible", "text-generation-inference", "region:us" ]
text-generation
Kooten
null
null
Kooten/Echidna-13b-v0.3-3bpw-h8-exl2
1
2
transformers
2023-10-29T08:15:12
--- license: cc-by-nc-4.0 tags: - not-for-all-audiences - nsfw --- ## Description Exllama 2 quant of [NeverSleep/Echidna-13b-v0.3](https://huggingface.co/NeverSleep/Echidna-13b-v0.3) 3 BPW, Head bit set to 8 ## VRAM My VRAM usage with 13B models are: | Bits per weight | Context | VRAM | |--|--|--| | 8bpw | 8k | 22gb | | 8bpw | 4k | 19gb | | 6bpw | 8k | 19gb | | 6bpw | 4k | 16gb | | 4bpw | 8k | 16gb | | 4bpw | 4k | 13gb | | 3bpw | 8k | 15gb | | 3bpw | 4k | 12gb | I have rounded up, these arent exact numbers, this is also on a windows machine, they should be slightly lower on linux. ## Prompt template: Alpaca ``` Below is an instruction that describes a task. Write a response that appropriately completes the request. ### Instruction: {prompt} ### Response: ```
787
[ [ -0.027618408203125, -0.06329345703125, 0.04180908203125, 0.045013427734375, -0.044647216796875, -0.0234527587890625, 0.017120361328125, -0.03179931640625, 0.043212890625, 0.035919189453125, -0.04266357421875, -0.0238494873046875, -0.049102783203125, -0.0176849365234375, -0.01084136962890625, 0.06658935546875, 0.01056671142578125, -0.005321502685546875, 0.0006656646728515625, -0.01345062255859375, -0.0526123046875, -0.0272674560546875, -0.0496826171875, 0.007160186767578125, 0.01971435546875, 0.041229248046875, 0.023529052734375, 0.0516357421875, 0.0419921875, 0.01555633544921875, 0.011993408203125, 0.0174713134765625, -0.0189056396484375, 0.006397247314453125, 0.00860595703125, -0.025543212890625, -0.056671142578125, -0.01995849609375, 0.044403076171875, 0.0303802490234375, -0.01471710205078125, 0.042266845703125, -0.00847625732421875, 0.033599853515625, -0.0460205078125, 0.0004916191101074219, -0.034912109375, 0.004482269287109375, -0.0231170654296875, -0.0231475830078125, -0.0198822021484375, -0.02886962890625, -0.005645751953125, -0.047393798828125, 0.016265869140625, 0.0218963623046875, 0.06591796875, 0.032684326171875, -0.037750244140625, -0.0241546630859375, -0.019195556640625, 0.058258056640625, -0.046234130859375, 0.004795074462890625, 0.0548095703125, 0.00641632080078125, -0.0041351318359375, -0.037139892578125, -0.04144287109375, -0.004913330078125, 0.0284881591796875, -0.0007729530334472656, -0.035980224609375, -0.005855560302734375, 0.043304443359375, 0.003948211669921875, -0.050140380859375, 0.0077972412109375, -0.055816650390625, -0.01342010498046875, 0.01374053955078125, 0.047821044921875, 0.00888824462890625, -0.01303863525390625, -0.0291595458984375, -0.0278778076171875, -0.0265045166015625, 0.00440216064453125, 0.0221405029296875, 0.01229095458984375, -0.048126220703125, 0.057403564453125, 0.0016679763793945312, 0.069580078125, 0.014862060546875, 0.0064544677734375, 0.0313720703125, -0.003719329833984375, -0.0528564453125, -0.004932403564453125, 0.047210693359375, 0.04595947265625, -0.031829833984375, 0.0255126953125, 0.0115966796875, 0.01454925537109375, 0.056915283203125, -0.07708740234375, -0.019317626953125, 0.03643798828125, -0.039337158203125, -0.007564544677734375, 0.0221710205078125, -0.060882568359375, -0.0179290771484375, 0.0014867782592773438, 0.0294647216796875, -0.037750244140625, -0.0248870849609375, 0.0168914794921875, -0.0169830322265625, 0.048187255859375, 0.0144195556640625, -0.0484619140625, 0.0491943359375, 0.034576416015625, 0.0458984375, 0.0087127685546875, 0.0043487548828125, -0.0246429443359375, 0.027557373046875, -0.01317596435546875, 0.054412841796875, 0.0023479461669921875, -0.05035400390625, -0.0224761962890625, 0.0164794921875, -0.0168914794921875, -0.0305633544921875, 0.04132080078125, -0.02264404296875, -0.015380859375, -0.042816162109375, -0.034210205078125, -0.0406494140625, 0.0032138824462890625, -0.054718017578125, 0.069580078125, 0.00865936279296875, -0.042999267578125, -0.01038360595703125, -0.037811279296875, -0.0167236328125, 0.00907135009765625, -0.0131072998046875, -0.034698486328125, 0.0394287109375, -0.025421142578125, 0.0224609375, -0.01187896728515625, -0.024261474609375, -0.01898193359375, -0.02935791015625, 0.022216796875, -0.022003173828125, 0.0736083984375, 0.0184783935546875, -0.0419921875, -0.002960205078125, -0.07891845703125, 0.030426025390625, 0.00922393798828125, -0.00785064697265625, 0.0036716461181640625, -0.037994384765625, 0.01070404052734375, -0.004253387451171875, 0.0726318359375, -0.06365966796875, 0.0233306884765625, 0.00864410400390625, 0.0213775634765625, 0.06689453125, -0.01314544677734375, -0.00109100341796875, -0.0186920166015625, 0.040771484375, 0.0024356842041015625, 0.0090179443359375, 0.02581787109375, -0.039886474609375, -0.07464599609375, -0.0187225341796875, -0.0248260498046875, 0.04400634765625, -0.018310546875, 0.045257568359375, 0.01073455810546875, -0.058990478515625, -0.0333251953125, -0.0179595947265625, 0.0263824462890625, 0.043609619140625, 0.036895751953125, -0.021514892578125, -0.048980712890625, -0.0863037109375, 0.01708984375, -0.03179931640625, 0.0011892318725585938, 0.0100860595703125, 0.03167724609375, -0.0248565673828125, 0.0230560302734375, -0.0594482421875, -0.01221466064453125, -0.00556182861328125, 0.0161285400390625, 0.03790283203125, 0.0400390625, 0.042266845703125, -0.01837158203125, -0.0171051025390625, -0.01372528076171875, -0.02813720703125, -0.031036376953125, -0.0167236328125, -0.0382080078125, 0.0450439453125, -0.01015472412109375, -0.06201171875, 0.048980712890625, 0.038116455078125, -0.0682373046875, 0.042724609375, -0.039947509765625, 0.0038394927978515625, -0.06890869140625, 0.00653076171875, -0.01116943359375, -0.0213775634765625, -0.00789642333984375, 0.02099609375, 0.030303955078125, 0.0182037353515625, -0.0199432373046875, 0.02911376953125, -0.042388916015625, -0.007671356201171875, -0.043792724609375, -0.0261077880859375, 0.01136016845703125, 0.03338623046875, -0.00909423828125, 0.041595458984375, 0.045013427734375, -0.054931640625, 0.0465087890625, 0.0120391845703125, -0.0011463165283203125, 0.046661376953125, -0.057342529296875, 0.0251922607421875, 0.0064849853515625, 0.003932952880859375, -0.07952880859375, -0.0139007568359375, 0.02655029296875, -0.0309295654296875, 0.003620147705078125, 0.03155517578125, -0.031341552734375, -0.02825927734375, -0.04266357421875, 0.03656005859375, 0.042999267578125, -0.01593017578125, 0.0479736328125, 0.0161895751953125, 0.0024051666259765625, -0.0197296142578125, -0.06060791015625, -0.028076171875, 0.004230499267578125, -0.01605224609375, 0.02777099609375, -0.022705078125, 0.003101348876953125, -0.003665924072265625, -0.0275115966796875, -0.0194854736328125, -0.0223541259765625, 0.05029296875, 0.033111572265625, 0.01580810546875, -0.04022216796875, 0.00713348388671875, -0.015533447265625, 0.0187225341796875, -0.0018663406372070312, 0.059722900390625, -0.0102386474609375, -0.03704833984375, -0.043609619140625, 0.0269622802734375, 0.036376953125, 0.0121612548828125, 0.058624267578125, 0.046783447265625, -0.040740966796875, 0.01727294921875, -0.03826904296875, 0.0236663818359375, -0.029296875, 0.028778076171875, -0.039886474609375, -0.0251007080078125, 0.05828857421875, 0.056549072265625, 0.0112457275390625, 0.058319091796875, 0.03887939453125, -0.0103912353515625, 0.036895751953125, 0.0599365234375, 0.0236968994140625, 0.0086669921875, -0.03936767578125, 0.0094757080078125, -0.0718994140625, -0.04638671875, -0.05303955078125, -0.026153564453125, -0.03668212890625, -0.042144775390625, 0.028839111328125, -0.002471923828125, -0.04644775390625, 0.0645751953125, -0.0465087890625, -0.0030460357666015625, 0.057891845703125, 0.032073974609375, -0.0153350830078125, -0.0101776123046875, 0.00684356689453125, 0.0036449432373046875, -0.0211639404296875, -0.024169921875, 0.070068359375, 0.00020039081573486328, 0.047119140625, 0.0171661376953125, 0.031829833984375, 0.01284027099609375, -0.0191650390625, -0.031585693359375, 0.056671142578125, 0.0222015380859375, -0.03924560546875, -0.00439453125, -0.0213470458984375, -0.061676025390625, 0.0012521743774414062, 0.025787353515625, -0.05120849609375, 0.01708984375, 0.01058197021484375, -0.06280517578125, 0.035186767578125, -0.039154052734375, 0.048828125, -0.00531768798828125, -0.002796173095703125, -0.0322265625, -0.041656494140625, 0.006687164306640625, 0.004627227783203125, -0.0157928466796875, -0.0085601806640625, -0.05181884765625, 0.08697509765625, -0.0513916015625, 0.05517578125, -0.0185546875, -0.0152740478515625, 0.0273895263671875, -0.00025725364685058594, 0.032562255859375, -0.004985809326171875, -0.00661468505859375, 0.018157958984375, 0.0328369140625, -0.0711669921875, -0.003963470458984375, 0.047515869140625, -0.0731201171875, -0.0157470703125, -0.05084228515625, -0.039581298828125, 0.00295257568359375, 0.0018262863159179688, 0.04620361328125, 0.0249786376953125, 0.0096893310546875, 0.00839996337890625, 0.056365966796875, -0.0335693359375, 0.0496826171875, 0.05419921875, -0.01131439208984375, -0.0406494140625, 0.05682373046875, 0.036895751953125, 0.00933837890625, 0.030731201171875, -0.031524658203125, -0.0291900634765625, -0.0216217041015625, -0.041534423828125, 0.003910064697265625, -0.01995849609375, -0.038818359375, -0.073486328125, -0.0019664764404296875, -0.029327392578125, -0.0002779960632324219, -0.026153564453125, -0.053985595703125, -0.0237884521484375, -0.0252532958984375, 0.057464599609375, 0.04010009765625, -0.033538818359375, 0.060760498046875, -0.044219970703125, 0.05859375, 0.01519775390625, 0.01409149169921875, 0.0127716064453125, -0.061767578125, -0.02294921875, -0.0035266876220703125, -0.0572509765625, -0.0955810546875, 0.020111083984375, -0.025115966796875, 0.0287017822265625, 0.04339599609375, -0.004878997802734375, 0.07470703125, -0.0189666748046875, 0.057281494140625, 0.01290130615234375, -0.08050537109375, 0.03338623046875, -0.01776123046875, 0.0253448486328125, 0.0298919677734375, 0.01861572265625, -0.0291748046875, -0.009552001953125, -0.07171630859375, -0.08306884765625, 0.0300445556640625, 0.0157623291015625, 0.02154541015625, -0.014190673828125, 0.0011587142944335938, 0.02325439453125, 0.0211029052734375, -0.04339599609375, -0.041412353515625, -0.018951416015625, 0.007556915283203125, 0.0457763671875, -0.044952392578125, 0.018096923828125, -0.034454345703125, 0.06842041015625, 0.0221405029296875, 0.06744384765625, -0.0027370452880859375, 0.00667572021484375, -0.01763916015625, -0.010986328125, 0.062255859375, 0.06573486328125, -0.052337646484375, 0.00154876708984375, 0.003002166748046875, -0.056427001953125, 0.01473236083984375, 0.00995635986328125, 0.0233306884765625, 0.0029430389404296875, 0.0216217041015625, 0.050933837890625, -0.0167236328125, -0.031036376953125, 0.00807952880859375, -0.014556884765625, 0.01242828369140625, -0.0400390625, 0.007450103759765625, 0.00262451171875, -0.00140380859375, 0.03948974609375, -0.0050048828125, 0.0001068115234375, -0.0081939697265625, -0.0115966796875, 0.033203125, -0.0016727447509765625, -0.0170440673828125, 0.03765869140625, 0.0033969879150390625, -0.007110595703125, 0.046356201171875, -0.0187225341796875, -0.0038661956787109375, 0.09356689453125, 0.042327880859375, 0.059234619140625, -0.0240631103515625, -0.00830841064453125, 0.03497314453125, 0.0330810546875, 0.016510009765625, 0.08306884765625, 0.0008511543273925781, -0.041656494140625, -0.01446533203125, -0.054840087890625, -0.04559326171875, 0.02197265625, -0.0927734375, 0.01430511474609375, -0.0595703125, -0.018951416015625, 0.004306793212890625, 0.0265655517578125, -0.0556640625, 0.0269622802734375, 0.00222015380859375, 0.08099365234375, -0.04583740234375, 0.06256103515625, 0.056121826171875, -0.0300140380859375, -0.05792236328125, -0.035980224609375, -0.00933074951171875, -0.07305908203125, 0.0092620849609375, 0.0259857177734375, 0.0043182373046875, -0.015960693359375, -0.049652099609375, -0.065185546875, 0.07550048828125, 0.023529052734375, -0.04107666015625, 0.016204833984375, -0.0035305023193359375, 0.00548553466796875, -0.0032634735107421875, 0.0377197265625, 0.01045989990234375, 0.039794921875, -0.0196075439453125, -0.0631103515625, 0.0157470703125, -0.02777099609375, 0.0106658935546875, 0.0113525390625, -0.06298828125, 0.08154296875, -0.0114898681640625, 0.014068603515625, 0.04180908203125, 0.080322265625, 0.0574951171875, -0.005290985107421875, 0.023223876953125, 0.07122802734375, 0.059600830078125, 0.004550933837890625, 0.07183837890625, -0.020538330078125, 0.014556884765625, 0.07403564453125, -0.0169830322265625, 0.056549072265625, 0.0426025390625, -0.02178955078125, 0.055511474609375, 0.06683349609375, -0.0046844482421875, 0.0226898193359375, 0.01345062255859375, -0.0091705322265625, 0.00370025634765625, 0.006061553955078125, -0.0526123046875, 0.01074981689453125, 0.02471923828125, -0.0172882080078125, -0.01232147216796875, 0.0074005126953125, 0.020050048828125, -0.03790283203125, -0.0440673828125, 0.0343017578125, -0.00007724761962890625, -0.0253753662109375, 0.047943115234375, 0.0276947021484375, 0.045654296875, -0.042144775390625, -0.005451202392578125, -0.0127105712890625, 0.01508331298828125, -0.0138702392578125, -0.0472412109375, 0.04217529296875, 0.006900787353515625, -0.048187255859375, -0.005100250244140625, 0.0207366943359375, -0.0056304931640625, -0.05535888671875, 0.0202789306640625, 0.020660400390625, 0.03912353515625, -0.015594482421875, -0.03717041015625, 0.043212890625, 0.01036834716796875, -0.0226287841796875, 0.028076171875, 0.043792724609375, 0.01459503173828125, 0.04461669921875, 0.0272979736328125, 0.007640838623046875, 0.031982421875, -0.03131103515625, 0.054595947265625, -0.0758056640625, -0.0458984375, -0.0782470703125, 0.0206756591796875, 0.0065765380859375, -0.03424072265625, 0.055633544921875, 0.05401611328125, 0.051361083984375, -0.0163726806640625, 0.038360595703125, -0.041778564453125, 0.0202484130859375, -0.020904541015625, 0.0225830078125, -0.0211639404296875, -0.0184326171875, 0.001804351806640625, -0.071533203125, 0.0172576904296875, 0.06396484375, 0.0015039443969726562, -0.006412506103515625, 0.060699462890625, 0.05401611328125, -0.006511688232421875, 0.01119232177734375, 0.0170135498046875, 0.031402587890625, 0.0021572113037109375, 0.0640869140625, 0.0160980224609375, -0.048919677734375, 0.0209197998046875, -0.0192108154296875, -0.0294952392578125, 0.0005922317504882812, -0.06585693359375, -0.034698486328125, -0.0218963623046875, -0.0232391357421875, -0.038909912109375, -0.01396942138671875, 0.081298828125, 0.05657958984375, -0.05303955078125, -0.0440673828125, 0.006378173828125, -0.0182647705078125, -0.02197265625, -0.01551055908203125, 0.03558349609375, 0.006866455078125, -0.0474853515625, 0.0015859603881835938, 0.00830841064453125, 0.0267486572265625, -0.01180267333984375, 0.002574920654296875, 0.006603240966796875, 0.03387451171875, 0.0302581787109375, 0.0265655517578125, -0.034515380859375, 0.006809234619140625, -0.0220489501953125, -0.0232086181640625, 0.00045943260192871094, 0.012054443359375, -0.045989990234375, -0.0181732177734375, 0.0350341796875, 0.0231781005859375, 0.037322998046875, -0.020721435546875, 0.0151824951171875, -0.03240966796875, 0.03289794921875, 0.0006427764892578125, 0.032989501953125, 0.00576019287109375, -0.030548095703125, 0.023101806640625, 0.001949310302734375, -0.033111572265625, -0.0615234375, -0.00021195411682128906, -0.11865234375, -0.01337432861328125, 0.05474853515625, -0.006488800048828125, -0.051025390625, 0.01105499267578125, -0.02825927734375, 0.0219268798828125, -0.037078857421875, 0.048065185546875, 0.037384033203125, -0.037750244140625, -0.0017261505126953125, -0.054595947265625, 0.007205963134765625, 0.0311126708984375, -0.06329345703125, -0.018096923828125, 0.036376953125, 0.0082244873046875, 0.025238037109375, 0.06439208984375, -0.0020618438720703125, 0.02008056640625, -0.001850128173828125, 0.0313720703125, -0.00762939453125, -0.0263519287109375, -0.0087890625, 0.0171356201171875, -0.0091400146484375, -0.061065673828125 ] ]
TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF
2023-10-29T09:32:14.000Z
[ "transformers", "mistral", "not-for-all-audiences", "nsfw", "license:apache-2.0", "text-generation-inference", "region:us" ]
null
TheBloke
null
null
TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF
4
2
transformers
2023-10-29T09:27:59
--- base_model: Undi95/Mistral-ClaudeLimaRP-v3-7B inference: false license: apache-2.0 model_creator: Undi model_name: Mistral ClaudeLimaRP v3 7B model_type: mistral prompt_template: "### Instruction:\nCharacter's Persona: bot character description\n\ \nUser's persona: user character description\n \nScenario: what happens in the\ \ story\n\nPlay the role of Character. You must engage in a roleplaying chat with\ \ User below this line. Do not write dialogues and narration for User. Character\ \ should respond with messages of medium length.\n\n### Input:\nUser: {prompt}\n\ \n### Response:\nCharacter: \n" quantized_by: TheBloke tags: - not-for-all-audiences - nsfw --- <!-- markdownlint-disable MD041 --> <!-- header start --> <!-- 200823 --> <div style="width: auto; margin-left: auto; margin-right: auto"> <img src="https://i.imgur.com/EBdldam.jpg" alt="TheBlokeAI" style="width: 100%; min-width: 400px; display: block; margin: auto;"> </div> <div style="display: flex; justify-content: space-between; width: 100%;"> <div style="display: flex; flex-direction: column; align-items: flex-start;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://discord.gg/theblokeai">Chat & support: TheBloke's Discord server</a></p> </div> <div style="display: flex; flex-direction: column; align-items: flex-end;"> <p style="margin-top: 0.5em; margin-bottom: 0em;"><a href="https://www.patreon.com/TheBlokeAI">Want to contribute? TheBloke's Patreon page</a></p> </div> </div> <div style="text-align:center; margin-top: 0em; margin-bottom: 0em"><p style="margin-top: 0.25em; margin-bottom: 0em;">TheBloke's LLM work is generously supported by a grant from <a href="https://a16z.com">andreessen horowitz (a16z)</a></p></div> <hr style="margin-top: 1.0em; margin-bottom: 1.0em;"> <!-- header end --> # Mistral ClaudeLimaRP v3 7B - GGUF - Model creator: [Undi](https://huggingface.co/Undi95) - Original model: [Mistral ClaudeLimaRP v3 7B](https://huggingface.co/Undi95/Mistral-ClaudeLimaRP-v3-7B) <!-- description start --> ## Description This repo contains GGUF format model files for [Undi's Mistral ClaudeLimaRP v3 7B](https://huggingface.co/Undi95/Mistral-ClaudeLimaRP-v3-7B). These files were quantised using hardware kindly provided by [Massed Compute](https://massedcompute.com/). <!-- description end --> <!-- README_GGUF.md-about-gguf start --> ### About GGUF GGUF is a new format introduced by the llama.cpp team on August 21st 2023. It is a replacement for GGML, which is no longer supported by llama.cpp. Here is an incomplate list of clients and libraries that are known to support GGUF: * [llama.cpp](https://github.com/ggerganov/llama.cpp). The source project for GGUF. Offers a CLI and a server option. * [text-generation-webui](https://github.com/oobabooga/text-generation-webui), the most widely used web UI, with many features and powerful extensions. Supports GPU acceleration. * [KoboldCpp](https://github.com/LostRuins/koboldcpp), a fully featured web UI, with GPU accel across all platforms and GPU architectures. Especially good for story telling. * [LM Studio](https://lmstudio.ai/), an easy-to-use and powerful local GUI for Windows and macOS (Silicon), with GPU acceleration. * [LoLLMS Web UI](https://github.com/ParisNeo/lollms-webui), a great web UI with many interesting and unique features, including a full model library for easy model selection. * [Faraday.dev](https://faraday.dev/), an attractive and easy to use character-based chat GUI for Windows and macOS (both Silicon and Intel), with GPU acceleration. * [ctransformers](https://github.com/marella/ctransformers), a Python library with GPU accel, LangChain support, and OpenAI-compatible AI server. * [llama-cpp-python](https://github.com/abetlen/llama-cpp-python), a Python library with GPU accel, LangChain support, and OpenAI-compatible API server. * [candle](https://github.com/huggingface/candle), a Rust ML framework with a focus on performance, including GPU support, and ease of use. <!-- README_GGUF.md-about-gguf end --> <!-- repositories-available start --> ## Repositories available * [AWQ model(s) for GPU inference.](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-AWQ) * [GPTQ models for GPU inference, with multiple quantisation parameter options.](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GPTQ) * [2, 3, 4, 5, 6 and 8-bit GGUF models for CPU+GPU inference](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF) * [Undi's original unquantised fp16 model in pytorch format, for GPU inference and for further conversions](https://huggingface.co/Undi95/Mistral-ClaudeLimaRP-v3-7B) <!-- repositories-available end --> <!-- prompt-template start --> ## Prompt template: LimaRP-Alpaca ``` ### Instruction: Character's Persona: bot character description User's persona: user character description Scenario: what happens in the story Play the role of Character. You must engage in a roleplaying chat with User below this line. Do not write dialogues and narration for User. Character should respond with messages of medium length. ### Input: User: {prompt} ### Response: Character: ``` <!-- prompt-template end --> <!-- compatibility_gguf start --> ## Compatibility These quantised GGUFv2 files are compatible with llama.cpp from August 27th onwards, as of commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) They are also compatible with many third party UIs and libraries - please see the list at the top of this README. ## Explanation of quantisation methods <details> <summary>Click to see details</summary> The new methods available are: * GGML_TYPE_Q2_K - "type-1" 2-bit quantization in super-blocks containing 16 blocks, each block having 16 weight. Block scales and mins are quantized with 4 bits. This ends up effectively using 2.5625 bits per weight (bpw) * GGML_TYPE_Q3_K - "type-0" 3-bit quantization in super-blocks containing 16 blocks, each block having 16 weights. Scales are quantized with 6 bits. This end up using 3.4375 bpw. * GGML_TYPE_Q4_K - "type-1" 4-bit quantization in super-blocks containing 8 blocks, each block having 32 weights. Scales and mins are quantized with 6 bits. This ends up using 4.5 bpw. * GGML_TYPE_Q5_K - "type-1" 5-bit quantization. Same super-block structure as GGML_TYPE_Q4_K resulting in 5.5 bpw * GGML_TYPE_Q6_K - "type-0" 6-bit quantization. Super-blocks with 16 blocks, each block having 16 weights. Scales are quantized with 8 bits. This ends up using 6.5625 bpw Refer to the Provided Files table below to see what files use which methods, and how. </details> <!-- compatibility_gguf end --> <!-- README_GGUF.md-provided-files start --> ## Provided files | Name | Quant method | Bits | Size | Max RAM required | Use case | | ---- | ---- | ---- | ---- | ---- | ----- | | [mistral-claudelimarp-v3-7b.Q2_K.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q2_K.gguf) | Q2_K | 2 | 3.08 GB| 5.58 GB | smallest, significant quality loss - not recommended for most purposes | | [mistral-claudelimarp-v3-7b.Q3_K_S.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q3_K_S.gguf) | Q3_K_S | 3 | 3.16 GB| 5.66 GB | very small, high quality loss | | [mistral-claudelimarp-v3-7b.Q3_K_M.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q3_K_M.gguf) | Q3_K_M | 3 | 3.52 GB| 6.02 GB | very small, high quality loss | | [mistral-claudelimarp-v3-7b.Q3_K_L.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q3_K_L.gguf) | Q3_K_L | 3 | 3.82 GB| 6.32 GB | small, substantial quality loss | | [mistral-claudelimarp-v3-7b.Q4_0.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q4_0.gguf) | Q4_0 | 4 | 4.11 GB| 6.61 GB | legacy; small, very high quality loss - prefer using Q3_K_M | | [mistral-claudelimarp-v3-7b.Q4_K_S.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q4_K_S.gguf) | Q4_K_S | 4 | 4.14 GB| 6.64 GB | small, greater quality loss | | [mistral-claudelimarp-v3-7b.Q4_K_M.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q4_K_M.gguf) | Q4_K_M | 4 | 4.37 GB| 6.87 GB | medium, balanced quality - recommended | | [mistral-claudelimarp-v3-7b.Q5_0.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q5_0.gguf) | Q5_0 | 5 | 5.00 GB| 7.50 GB | legacy; medium, balanced quality - prefer using Q4_K_M | | [mistral-claudelimarp-v3-7b.Q5_K_S.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q5_K_S.gguf) | Q5_K_S | 5 | 5.00 GB| 7.50 GB | large, low quality loss - recommended | | [mistral-claudelimarp-v3-7b.Q5_K_M.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q5_K_M.gguf) | Q5_K_M | 5 | 5.13 GB| 7.63 GB | large, very low quality loss - recommended | | [mistral-claudelimarp-v3-7b.Q6_K.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q6_K.gguf) | Q6_K | 6 | 5.94 GB| 8.44 GB | very large, extremely low quality loss | | [mistral-claudelimarp-v3-7b.Q8_0.gguf](https://huggingface.co/TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF/blob/main/mistral-claudelimarp-v3-7b.Q8_0.gguf) | Q8_0 | 8 | 7.70 GB| 10.20 GB | very large, extremely low quality loss - not recommended | **Note**: the above RAM figures assume no GPU offloading. If layers are offloaded to the GPU, this will reduce RAM usage and use VRAM instead. <!-- README_GGUF.md-provided-files end --> <!-- README_GGUF.md-how-to-download start --> ## How to download GGUF files **Note for manual downloaders:** You almost never want to clone the entire repo! Multiple different quantisation formats are provided, and most users only want to pick and download a single file. The following clients/libraries will automatically download models for you, providing a list of available models to choose from: * LM Studio * LoLLMS Web UI * Faraday.dev ### In `text-generation-webui` Under Download Model, you can enter the model repo: TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF and below it, a specific filename to download, such as: mistral-claudelimarp-v3-7b.Q4_K_M.gguf. Then click Download. ### On the command line, including multiple files at once I recommend using the `huggingface-hub` Python library: ```shell pip3 install huggingface-hub ``` Then you can download any individual model file to the current directory, at high speed, with a command like this: ```shell huggingface-cli download TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF mistral-claudelimarp-v3-7b.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` <details> <summary>More advanced huggingface-cli download usage</summary> You can also download multiple files at once with a pattern: ```shell huggingface-cli download TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF --local-dir . --local-dir-use-symlinks False --include='*Q4_K*gguf' ``` For more documentation on downloading with `huggingface-cli`, please see: [HF -> Hub Python Library -> Download files -> Download from the CLI](https://huggingface.co/docs/huggingface_hub/guides/download#download-from-the-cli). To accelerate downloads on fast connections (1Gbit/s or higher), install `hf_transfer`: ```shell pip3 install hf_transfer ``` And set environment variable `HF_HUB_ENABLE_HF_TRANSFER` to `1`: ```shell HF_HUB_ENABLE_HF_TRANSFER=1 huggingface-cli download TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF mistral-claudelimarp-v3-7b.Q4_K_M.gguf --local-dir . --local-dir-use-symlinks False ``` Windows Command Line users: You can set the environment variable by running `set HF_HUB_ENABLE_HF_TRANSFER=1` before the download command. </details> <!-- README_GGUF.md-how-to-download end --> <!-- README_GGUF.md-how-to-run start --> ## Example `llama.cpp` command Make sure you are using `llama.cpp` from commit [d0cee0d](https://github.com/ggerganov/llama.cpp/commit/d0cee0d36d5be95a0d9088b674dbb27354107221) or later. ```shell ./main -ngl 32 -m mistral-claudelimarp-v3-7b.Q4_K_M.gguf --color -c 2048 --temp 0.7 --repeat_penalty 1.1 -n -1 -p "### Instruction:\nCharacter's Persona: bot character description\n\nUser's persona: user character description\n \nScenario: what happens in the story\n\nPlay the role of Character. You must engage in a roleplaying chat with User below this line. Do not write dialogues and narration for User. Character should respond with messages of medium length.\n\n### Input:\nUser: {prompt}\n\n### Response:\nCharacter:" ``` Change `-ngl 32` to the number of layers to offload to GPU. Remove it if you don't have GPU acceleration. Change `-c 2048` to the desired sequence length. For extended sequence models - eg 8K, 16K, 32K - the necessary RoPE scaling parameters are read from the GGUF file and set by llama.cpp automatically. If you want to have a chat-style conversation, replace the `-p <PROMPT>` argument with `-i -ins` For other parameters and how to use them, please refer to [the llama.cpp documentation](https://github.com/ggerganov/llama.cpp/blob/master/examples/main/README.md) ## How to run in `text-generation-webui` Further instructions here: [text-generation-webui/docs/llama.cpp.md](https://github.com/oobabooga/text-generation-webui/blob/main/docs/llama.cpp.md). ## How to run from Python code You can use GGUF models from Python using the [llama-cpp-python](https://github.com/abetlen/llama-cpp-python) or [ctransformers](https://github.com/marella/ctransformers) libraries. ### How to load this model in Python code, using ctransformers #### First install the package Run one of the following commands, according to your system: ```shell # Base ctransformers with no GPU acceleration pip install ctransformers # Or with CUDA GPU acceleration pip install ctransformers[cuda] # Or with AMD ROCm GPU acceleration (Linux only) CT_HIPBLAS=1 pip install ctransformers --no-binary ctransformers # Or with Metal GPU acceleration for macOS systems only CT_METAL=1 pip install ctransformers --no-binary ctransformers ``` #### Simple ctransformers example code ```python from ctransformers import AutoModelForCausalLM # Set gpu_layers to the number of layers to offload to GPU. Set to 0 if no GPU acceleration is available on your system. llm = AutoModelForCausalLM.from_pretrained("TheBloke/Mistral-ClaudeLimaRP-v3-7B-GGUF", model_file="mistral-claudelimarp-v3-7b.Q4_K_M.gguf", model_type="mistral", gpu_layers=50) print(llm("AI is going to")) ``` ## How to use with LangChain Here are guides on using llama-cpp-python and ctransformers with LangChain: * [LangChain + llama-cpp-python](https://python.langchain.com/docs/integrations/llms/llamacpp) * [LangChain + ctransformers](https://python.langchain.com/docs/integrations/providers/ctransformers) <!-- README_GGUF.md-how-to-run end --> <!-- footer start --> <!-- 200823 --> ## Discord For further support, and discussions on these models and AI in general, join us at: [TheBloke AI's Discord server](https://discord.gg/theblokeai) ## Thanks, and how to contribute Thanks to the [chirper.ai](https://chirper.ai) team! Thanks to Clay from [gpus.llm-utils.org](llm-utils)! I've had a lot of people ask if they can contribute. I enjoy providing models and helping people, and would love to be able to spend even more time doing it, as well as expanding into new projects like fine tuning/training. If you're able and willing to contribute it will be most gratefully received and will help me to keep providing more models, and to start work on new AI projects. Donaters will get priority support on any and all AI/LLM/model questions and requests, access to a private Discord room, plus other benefits. * Patreon: https://patreon.com/TheBlokeAI * Ko-Fi: https://ko-fi.com/TheBlokeAI **Special thanks to**: Aemon Algiz. **Patreon special mentions**: Brandon Frisco, LangChain4j, Spiking Neurons AB, transmissions 11, Joseph William Delisle, Nitin Borwankar, Willem Michiel, Michael Dempsey, vamX, Jeffrey Morgan, zynix, jjj, Omer Bin Jawed, Sean Connelly, jinyuan sun, Jeromy Smith, Shadi, Pawan Osman, Chadd, Elijah Stavena, Illia Dulskyi, Sebastain Graf, Stephen Murray, terasurfer, Edmond Seymore, Celu Ramasamy, Mandus, Alex, biorpg, Ajan Kanaga, Clay Pascal, Raven Klaugh, 阿明, K, ya boyyy, usrbinkat, Alicia Loh, John Villwock, ReadyPlayerEmma, Chris Smitley, Cap'n Zoog, fincy, GodLy, S_X, sidney chen, Cory Kujawski, OG, Mano Prime, AzureBlack, Pieter, Kalila, Spencer Kim, Tom X Nguyen, Stanislav Ovsiannikov, Michael Levine, Andrey, Trailburnt, Vadim, Enrico Ros, Talal Aujan, Brandon Phillips, Jack West, Eugene Pentland, Michael Davis, Will Dee, webtim, Jonathan Leane, Alps Aficionado, Rooh Singh, Tiffany J. Kim, theTransient, Luke @flexchar, Elle, Caitlyn Gatomon, Ari Malik, subjectnull, Johann-Peter Hartmann, Trenton Dambrowitz, Imad Khwaja, Asp the Wyvern, Emad Mostaque, Rainer Wilmers, Alexandros Triantafyllidis, Nicholas, Pedro Madruga, SuperWojo, Harry Royden McLaughlin, James Bentley, Olakabola, David Ziegler, Ai Maven, Jeff Scroggin, Nikolai Manek, Deo Leter, Matthew Berman, Fen Risland, Ken Nordquist, Manuel Alberto Morcote, Luke Pendergrass, TL, Fred von Graf, Randy H, Dan Guido, NimbleBox.ai, Vitor Caleffi, Gabriel Tamborski, knownsqashed, Lone Striker, Erik Bjäreholt, John Detwiler, Leonard Tan, Iucharbius Thank you to all my generous patrons and donaters! And thank you again to a16z for their generous grant. <!-- footer end --> <!-- original-model-card start --> # Original model card: Undi's Mistral ClaudeLimaRP v3 7B ## Description This repo contains fp16 files of [Norquinal/Mistral-7B-claude-chat](https://huggingface.co/Norquinal/Mistral-7B-claude-chat) with the LoRA [lemonilia/LimaRP-Mistral-7B-v0.1](https://huggingface.co/lemonilia/LimaRP-Mistral-7B-v0.1) applied at weight "0.75". All credit go to [lemonilia](https://huggingface.co/lemonilia) and [Norquinal](https://huggingface.co/Norquinal) ## Prompt format Same as before. It uses the [extended Alpaca format](https://github.com/tatsu-lab/stanford_alpaca), with `### Input:` immediately preceding user inputs and `### Response:` immediately preceding model outputs. While Alpaca wasn't originally intended for multi-turn responses, in practice this is not a problem; the format follows a pattern already used by other models. ``` ### Instruction: Character's Persona: {bot character description} User's Persona: {user character description} Scenario: {what happens in the story} Play the role of Character. You must engage in a roleplaying chat with User below this line. Do not write dialogues and narration for User. ### Input: User: {utterance} ### Response: Character: {utterance} ### Input User: {utterance} ### Response: Character: {utterance} (etc.) ``` You should: - Replace all text in curly braces (curly braces included) with your own text. - Replace `User` and `Character` with appropriate names. ### Message length control Inspired by the previously named "Roleplay" preset in SillyTavern, with this version of LimaRP it is possible to append a length modifier to the response instruction sequence, like this: ``` ### Input User: {utterance} ### Response: (length = medium) Character: {utterance} ``` This has an immediately noticeable effect on bot responses. The available lengths are: `tiny`, `short`, `medium`, `long`, `huge`, `humongous`, `extreme`, `unlimited`. **The recommended starting length is `medium`**. Keep in mind that the AI may ramble or impersonate the user with very long messages. The length control effect is reproducible, but the messages will not necessarily follow lengths very precisely, rather follow certain ranges on average, as seen in this table with data from tests made with one reply at the beginning of the conversation: ![lengths](https://files.catbox.moe/dy39bt.png) Response length control appears to work well also deep into the conversation. ## Suggested settings You can follow these instruction format settings in SillyTavern. Replace `tiny` with your desired response length: ![settings](https://files.catbox.moe/6lcz0u.png) ## Text generation settings Extensive testing with Mistral has not been performed yet, but suggested starting text generation settings may be: - TFS = 0.90~0.95 - Temperature = 0.70~0.85 - Repetition penalty = 1.08~1.10 - top-k = 0 (disabled) - top-p = 1 (disabled) If you want to support me, you can [here](https://ko-fi.com/undiai). <!-- original-model-card end -->
20,850
[ [ -0.053497314453125, -0.05535888671875, 0.0266876220703125, 0.0240631103515625, -0.0253448486328125, -0.01380157470703125, 0.0030975341796875, -0.04547119140625, 0.03466796875, 0.0215301513671875, -0.060150146484375, -0.03485107421875, -0.0394287109375, 0.0016069412231445312, -0.0164031982421875, 0.08050537109375, 0.002086639404296875, -0.019134521484375, -0.0060882568359375, -0.01531219482421875, -0.013336181640625, -0.03668212890625, -0.051300048828125, -0.0323486328125, 0.0372314453125, 0.018280029296875, 0.06829833984375, 0.041595458984375, 0.0260009765625, 0.0257720947265625, -0.00908660888671875, 0.0011262893676757812, -0.03411865234375, -0.0152435302734375, 0.0189208984375, -0.01222991943359375, -0.07244873046875, -0.0006852149963378906, 0.03668212890625, -0.0007123947143554688, -0.0250701904296875, 0.0256195068359375, 0.0027675628662109375, 0.061370849609375, -0.03192138671875, 0.01076507568359375, -0.0034961700439453125, 0.01263427734375, -0.018768310546875, -0.0019140243530273438, -0.00112152099609375, -0.0262451171875, 0.0031337738037109375, -0.07598876953125, 0.008636474609375, -0.003696441650390625, 0.08990478515625, 0.0067901611328125, -0.0241851806640625, 0.0015392303466796875, -0.0297393798828125, 0.060211181640625, -0.06781005859375, 0.02117919921875, 0.0297393798828125, 0.0247802734375, -0.01444244384765625, -0.0745849609375, -0.037078857421875, 0.00536346435546875, -0.01479339599609375, 0.02313232421875, -0.050140380859375, 0.01146697998046875, 0.033843994140625, 0.059295654296875, -0.0576171875, -0.01186370849609375, -0.0248870849609375, -0.00978851318359375, 0.0576171875, 0.0084228515625, 0.041778564453125, -0.0175018310546875, -0.030029296875, -0.01436614990234375, -0.044647216796875, 0.0013875961303710938, 0.034881591796875, -0.0222625732421875, -0.06097412109375, 0.0296783447265625, -0.006740570068359375, 0.04669189453125, 0.01503753662109375, -0.0313720703125, 0.01557159423828125, -0.027740478515625, -0.038116455078125, -0.030029296875, 0.0859375, 0.037841796875, -0.00579833984375, 0.0186920166015625, 0.0072479248046875, -0.00725555419921875, -0.00014257431030273438, -0.08197021484375, -0.03375244140625, 0.04180908203125, -0.044525146484375, -0.01776123046875, -0.003055572509765625, -0.0633544921875, -0.0161895751953125, -0.003589630126953125, 0.031646728515625, -0.045166015625, -0.0225067138671875, 0.00536346435546875, -0.0243682861328125, 0.0239715576171875, 0.04364013671875, -0.06500244140625, 0.0260162353515625, 0.0272064208984375, 0.052947998046875, 0.005985260009765625, -0.0077362060546875, -0.0228271484375, 0.0092926025390625, -0.016632080078125, 0.0361328125, -0.01340484619140625, -0.04620361328125, -0.0189666748046875, 0.01503753662109375, 0.00855255126953125, -0.0254669189453125, 0.050628662109375, -0.0023174285888671875, 0.031402587890625, -0.0303192138671875, -0.02899169921875, -0.031951904296875, 0.004444122314453125, -0.046966552734375, 0.08642578125, 0.0287628173828125, -0.0714111328125, 0.0085296630859375, -0.041839599609375, -0.004924774169921875, 0.0048828125, 0.00010955333709716797, -0.04217529296875, 0.0002589225769042969, 0.022857666015625, 0.03485107421875, -0.034149169921875, 0.00736236572265625, -0.0225830078125, -0.027496337890625, 0.0125885009765625, -0.0258941650390625, 0.08447265625, 0.0276336669921875, -0.0282745361328125, 0.00801849365234375, -0.061065673828125, 0.00446319580078125, 0.033843994140625, -0.024261474609375, 0.007289886474609375, -0.01568603515625, 0.00765228271484375, 0.0092926025390625, 0.021392822265625, -0.0182342529296875, 0.026611328125, -0.0003268718719482422, 0.040283203125, 0.05072021484375, 0.004985809326171875, 0.0153961181640625, -0.042388916015625, 0.0472412109375, -0.0089263916015625, 0.05206298828125, -0.00027561187744140625, -0.05218505859375, -0.0535888671875, -0.043487548828125, 0.01314544677734375, 0.0419921875, -0.0494384765625, 0.04083251953125, 0.002231597900390625, -0.059478759765625, -0.044189453125, 0.00806427001953125, 0.038970947265625, 0.021331787109375, 0.0369873046875, -0.027496337890625, -0.034210205078125, -0.067138671875, 0.0087738037109375, -0.028076171875, -0.00565338134765625, 0.045013427734375, 0.035308837890625, -0.0256195068359375, 0.041168212890625, -0.05712890625, -0.0257415771484375, -0.005901336669921875, -0.006816864013671875, 0.01212310791015625, 0.043914794921875, 0.0816650390625, -0.049041748046875, -0.032501220703125, 0.00266265869140625, -0.0618896484375, -0.0085296630859375, 0.00662994384765625, -0.02154541015625, 0.025360107421875, 0.0147705078125, -0.052642822265625, 0.040740966796875, 0.0675048828125, -0.04119873046875, 0.052642822265625, -0.03369140625, 0.019622802734375, -0.08575439453125, 0.0169830322265625, 0.0160369873046875, -0.0285186767578125, -0.047271728515625, 0.0202178955078125, -0.00440216064453125, 0.0084075927734375, -0.035125732421875, 0.04864501953125, -0.03509521484375, 0.00926971435546875, 0.0055084228515625, -0.0030918121337890625, 0.005405426025390625, 0.048248291015625, -0.010955810546875, 0.060028076171875, 0.04962158203125, -0.03131103515625, 0.04400634765625, 0.020263671875, 0.0054168701171875, 0.04779052734375, -0.06854248046875, 0.0098419189453125, -0.0013742446899414062, 0.034271240234375, -0.07183837890625, -0.0254364013671875, 0.0562744140625, -0.04779052734375, 0.02978515625, -0.031646728515625, -0.0272064208984375, -0.032318115234375, -0.0460205078125, 0.031585693359375, 0.05511474609375, -0.04144287109375, 0.03997802734375, 0.03363037109375, 0.00014257431030273438, -0.039215087890625, -0.046905517578125, 0.0034885406494140625, -0.0281829833984375, -0.045318603515625, 0.031158447265625, -0.020782470703125, -0.00844573974609375, 0.001377105712890625, -0.003993988037109375, 0.003910064697265625, 0.0005764961242675781, 0.033233642578125, 0.023529052734375, -0.0113067626953125, -0.034942626953125, -0.0016107559204101562, -0.0160064697265625, -0.004337310791015625, -0.0267333984375, 0.037689208984375, -0.0269622802734375, -0.005390167236328125, -0.04107666015625, 0.0165557861328125, 0.0345458984375, -0.00716400146484375, 0.042694091796875, 0.07208251953125, -0.0294952392578125, 0.01081085205078125, -0.040283203125, 0.0089569091796875, -0.03900146484375, -0.006427764892578125, -0.01776123046875, -0.07135009765625, 0.05218505859375, 0.0263671875, 0.0096435546875, 0.054351806640625, 0.02667236328125, 0.0013914108276367188, 0.072509765625, 0.041351318359375, -0.009552001953125, 0.04010009765625, -0.049102783203125, -0.01107025146484375, -0.06280517578125, -0.0259246826171875, -0.0277862548828125, -0.0247802734375, -0.051422119140625, -0.041534423828125, 0.0269622802734375, 0.029296875, -0.01861572265625, 0.03985595703125, -0.052581787109375, 0.0219879150390625, 0.0310516357421875, 0.0111083984375, 0.0093231201171875, 0.001964569091796875, -0.0031375885009765625, -0.005558013916015625, -0.032257080078125, -0.017547607421875, 0.0740966796875, 0.0321044921875, 0.051116943359375, 0.0305633544921875, 0.04815673828125, 0.0171966552734375, 0.0122833251953125, -0.040069580078125, 0.049072265625, 0.0021514892578125, -0.046905517578125, -0.01552581787109375, -0.03326416015625, -0.061065673828125, 0.0219268798828125, -0.0233306884765625, -0.07000732421875, 0.0204315185546875, 0.009063720703125, -0.023193359375, 0.031951904296875, -0.046844482421875, 0.064697265625, 0.0029506683349609375, -0.028839111328125, -0.00499725341796875, -0.048492431640625, 0.04248046875, 0.01284027099609375, -0.0004622936248779297, -0.0107269287109375, -0.00698089599609375, 0.056396484375, -0.0595703125, 0.041290283203125, -0.0205535888671875, -0.0298309326171875, 0.039947509765625, -0.0019407272338867188, 0.030792236328125, 0.0283966064453125, 0.01482391357421875, 0.029876708984375, 0.016204833984375, -0.035980224609375, -0.030853271484375, 0.056365966796875, -0.0628662109375, -0.041748046875, -0.04632568359375, -0.022735595703125, 0.01267242431640625, 0.003437042236328125, 0.044281005859375, 0.041046142578125, -0.012481689453125, 0.0079498291015625, 0.050567626953125, -0.02081298828125, 0.0421142578125, 0.016510009765625, -0.0273284912109375, -0.06695556640625, 0.071533203125, -0.00771331787109375, 0.01528167724609375, 0.016998291015625, 0.00940704345703125, -0.0201263427734375, -0.0291595458984375, -0.051116943359375, 0.0272369384765625, -0.0276336669921875, -0.02581787109375, -0.04052734375, -0.023193359375, -0.0262451171875, -0.00827789306640625, -0.01117706298828125, -0.0455322265625, -0.036956787109375, 0.00789642333984375, 0.0587158203125, 0.04364013671875, -0.0240631103515625, 0.0229339599609375, -0.056732177734375, 0.03436279296875, 0.0297393798828125, 0.0181427001953125, 0.005157470703125, -0.04351806640625, -0.005462646484375, -0.0037631988525390625, -0.04107666015625, -0.064208984375, 0.035675048828125, 0.0010328292846679688, 0.02667236328125, 0.04620361328125, -0.01323699951171875, 0.06964111328125, -0.023529052734375, 0.07684326171875, 0.03271484375, -0.068115234375, 0.03753662109375, -0.047088623046875, 0.01226043701171875, 0.0224456787109375, 0.033843994140625, -0.037933349609375, -0.0176544189453125, -0.061676025390625, -0.0533447265625, 0.053924560546875, 0.031585693359375, -0.01274871826171875, 0.015472412109375, 0.0269775390625, -0.0014934539794921875, 0.00443267822265625, -0.047637939453125, -0.057830810546875, -0.0237579345703125, -0.0036144256591796875, -0.01300048828125, -0.0224456787109375, -0.0183563232421875, -0.0518798828125, 0.064453125, -0.015960693359375, 0.05352783203125, 0.033782958984375, 0.01274871826171875, -0.00824737548828125, 0.009918212890625, 0.0595703125, 0.046783447265625, -0.02679443359375, -0.00833892822265625, 0.011383056640625, -0.06634521484375, 0.01323699951171875, 0.035308837890625, -0.0169525146484375, 0.0006623268127441406, 0.00606536865234375, 0.061309814453125, 0.008209228515625, -0.0158843994140625, 0.034271240234375, -0.0240478515625, -0.0333251953125, -0.02490234375, 0.01549530029296875, 0.0195770263671875, 0.023681640625, 0.025360107421875, -0.006744384765625, 0.01526641845703125, -0.039703369140625, 0.006687164306640625, 0.032958984375, -0.0340576171875, -0.030120849609375, 0.06939697265625, -0.00531005859375, -0.0002837181091308594, 0.0178680419921875, -0.0283355712890625, -0.0234527587890625, 0.0435791015625, 0.041046142578125, 0.06842041015625, -0.0224761962890625, 0.02642822265625, 0.039215087890625, 0.01251220703125, -0.0020503997802734375, 0.040740966796875, 0.0003337860107421875, -0.0165863037109375, -0.0207977294921875, -0.04779052734375, -0.030303955078125, 0.0246124267578125, -0.044219970703125, 0.01366424560546875, -0.055389404296875, -0.0254974365234375, -0.01190948486328125, 0.0312347412109375, -0.036865234375, 0.0179901123046875, 0.007694244384765625, 0.0689697265625, -0.0419921875, 0.064697265625, 0.050384521484375, -0.027740478515625, -0.06121826171875, -0.01284027099609375, 0.022216796875, -0.052215576171875, 0.0026378631591796875, -0.0107269287109375, 0.01251220703125, 0.00921630859375, -0.05712890625, -0.057037353515625, 0.1109619140625, 0.032318115234375, -0.0238800048828125, 0.006801605224609375, -0.0106201171875, 0.0288543701171875, -0.00769805908203125, 0.0302276611328125, 0.04327392578125, 0.0374755859375, 0.0156097412109375, -0.06292724609375, 0.0287628173828125, -0.03240966796875, 0.00036525726318359375, 0.02105712890625, -0.08447265625, 0.066650390625, -0.01117706298828125, -0.01491546630859375, 0.02703857421875, 0.057769775390625, 0.0433349609375, 0.0061492919921875, 0.0165252685546875, 0.07025146484375, 0.0548095703125, -0.0343017578125, 0.0831298828125, -0.0146484375, 0.0289459228515625, 0.036407470703125, 0.01343536376953125, 0.045013427734375, 0.021453857421875, -0.038543701171875, 0.042755126953125, 0.0528564453125, -0.015289306640625, 0.0203094482421875, 0.0150146484375, -0.0289459228515625, -0.00406646728515625, -0.005252838134765625, -0.053619384765625, 0.002109527587890625, 0.0250244140625, -0.00811004638671875, -0.0024814605712890625, -0.022674560546875, 0.021484375, -0.033905029296875, -0.0207977294921875, 0.038360595703125, 0.0209503173828125, -0.0249786376953125, 0.06536865234375, 0.0081787109375, 0.06378173828125, -0.050933837890625, -0.014984130859375, -0.035888671875, 0.01097869873046875, -0.028839111328125, -0.05743408203125, -0.00701141357421875, -0.003173828125, -0.0026798248291015625, -0.0082855224609375, 0.061004638671875, -0.01371002197265625, -0.025543212890625, 0.024749755859375, 0.0186004638671875, 0.018768310546875, 0.002178192138671875, -0.06695556640625, 0.0268707275390625, 0.0022430419921875, -0.03106689453125, 0.03936767578125, 0.031829833984375, 0.0158233642578125, 0.048736572265625, 0.043792724609375, -0.0013818740844726562, 0.00016880035400390625, -0.01087188720703125, 0.0618896484375, -0.050628662109375, -0.0283660888671875, -0.057830810546875, 0.03948974609375, -0.0025386810302734375, -0.041595458984375, 0.059356689453125, 0.04718017578125, 0.050811767578125, -0.010162353515625, 0.05072021484375, -0.02105712890625, -0.0043182373046875, -0.03802490234375, 0.060821533203125, -0.06683349609375, -0.0022125244140625, -0.05072021484375, -0.06304931640625, -0.0193939208984375, 0.049102783203125, 0.0165252685546875, 0.00496673583984375, 0.028472900390625, 0.0462646484375, -0.006389617919921875, 0.0027828216552734375, 0.01561737060546875, 0.00353240966796875, 0.0266571044921875, 0.078857421875, 0.047576904296875, -0.07318115234375, 0.04156494140625, -0.023956298828125, -0.01483917236328125, -0.0238037109375, -0.07110595703125, -0.069580078125, -0.0445556640625, -0.0389404296875, -0.041015625, -0.00589752197265625, 0.057281494140625, 0.05377197265625, -0.047943115234375, -0.0218505859375, 0.0090484619140625, 0.002483367919921875, -0.01873779296875, -0.0202789306640625, 0.0289459228515625, 0.02996826171875, -0.05657958984375, 0.0178375244140625, 0.0258026123046875, 0.043701171875, -0.01207733154296875, -0.043701171875, -0.0087127685546875, 0.003963470458984375, 0.044158935546875, 0.05426025390625, -0.051300048828125, -0.017333984375, -0.005916595458984375, -0.00989532470703125, 0.0084381103515625, 0.0240631103515625, -0.04437255859375, -0.00934600830078125, 0.041168212890625, 0.01090240478515625, 0.05023193359375, 0.004451751708984375, 0.0189056396484375, -0.042510986328125, 0.0129241943359375, -0.01255035400390625, 0.036041259765625, 0.00823974609375, -0.019866943359375, 0.05816650390625, 0.03704833984375, -0.04833984375, -0.05450439453125, -0.00634765625, -0.09619140625, -0.00867462158203125, 0.08209228515625, -0.006114959716796875, -0.0250701904296875, 0.0196075439453125, -0.044189453125, 0.01180267333984375, -0.034088134765625, 0.0276031494140625, 0.046600341796875, -0.01178741455078125, -0.01904296875, -0.05291748046875, 0.056396484375, 0.01226043701171875, -0.06610107421875, -0.0037937164306640625, 0.0491943359375, 0.0207977294921875, 0.01824951171875, 0.07763671875, -0.031890869140625, 0.0271148681640625, -0.0029144287109375, 0.01593017578125, -0.00789642333984375, -0.0199432373046875, -0.0350341796875, -0.004974365234375, -0.0182037353515625, -0.011383056640625 ] ]