Text Classification
Transformers
TensorBoard
Safetensors
roberta
Generated from Trainer
text-embeddings-inference
Instructions to use taeuk1/codebert-bin with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use taeuk1/codebert-bin with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-classification", model="taeuk1/codebert-bin")# Load model directly from transformers import AutoTokenizer, AutoModelForSequenceClassification tokenizer = AutoTokenizer.from_pretrained("taeuk1/codebert-bin") model = AutoModelForSequenceClassification.from_pretrained("taeuk1/codebert-bin") - Notebooks
- Google Colab
- Kaggle
File size: 2,734 Bytes
a8b54ba | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | epoch,step,split,loss,accuracy,f1,roc_auc
0.05734602592040371,500,train,0.034,,,
0.11469205184080743,1000,train,0.0001,,,
0.17203807776121116,1500,train,0.0,,,
0.22938410368161485,2000,train,0.0,,,
0.2867301296020186,2500,train,0.0,,,
0.3440761555224223,3000,train,0.0,,,
0.401422181442826,3500,train,0.0,,,
0.4587682073632297,4000,train,0.0,,,
0.5161142332836335,4500,train,0.0,,,
0.5734602592040372,5000,train,0.0,,,
0.6308062851244409,5500,train,0.0,,,
0.6881523110448446,6000,train,0.0,,,
0.7454983369652483,6500,train,0.0,,,
0.802844362885652,7000,train,0.0,,,
0.8601903888060557,7500,train,0.0,,,
0.9175364147264594,8000,train,0.0,,,
0.9748824406468631,8500,train,0.0,,,
1.032228466567267,9000,train,0.0,,,
1.0895744924876707,9500,train,0.0,,,
1.1469205184080744,10000,train,0.0,,,
1.2042665443284781,10500,train,0.0,,,
1.2616125702488818,11000,train,0.0,,,
1.3189585961692853,11500,train,0.0,,,
1.3763046220896893,12000,train,0.0,,,
1.4336506480100928,12500,train,0.0,,,
1.4909966739304967,13000,train,0.0,,,
1.5483426998509002,13500,train,0.0,,,
1.6056887257713042,14000,train,0.0,,,
1.6630347516917077,14500,train,0.0,,,
1.7203807776121116,15000,train,0.0,,,
1.777726803532515,15500,train,0.0,,,
1.835072829452919,16000,train,0.0,,,
1.8924188553733226,16500,train,0.0,,,
1.9497648812937265,17000,train,0.0,,,
2.00711090721413,17500,train,0.0,,,
2.064456933134534,18000,train,0.0,,,
2.1218029590549374,18500,train,0.0,,,
2.1791489849753414,19000,train,0.0,,,
2.236495010895745,19500,train,0.0,,,
2.293841036816149,20000,train,0.0,,,
2.3511870627365523,20500,train,0.0,,,
2.4085330886569563,21000,train,0.0,,,
2.4658791145773598,21500,train,0.0,,,
2.5232251404977637,22000,train,0.0,,,
2.580571166418167,22500,train,0.0,,,
2.6379171923385707,23000,train,0.0,,,
2.6952632182589746,23500,train,0.0,,,
2.7526092441793786,24000,train,0.0,,,
2.809955270099782,24500,train,0.0,,,
2.8673012960201856,25000,train,0.0,,,
2.9246473219405895,25500,train,0.0,,,
2.9819933478609935,26000,train,0.0,,,
3.039339373781397,26500,train,0.0,,,
3.0966853997018005,27000,train,0.0,,,
3.1540314256222044,27500,train,0.0,,,
3.211377451542608,28000,train,0.0,,,
3.268723477463012,28500,train,0.0,,,
3.3260695033834153,29000,train,0.0,,,
3.3834155293038193,29500,train,0.0,,,
3.440761555224223,30000,train,0.0,,,
3.4981075811446267,30500,train,0.0,,,
3.55545360706503,31000,train,0.0,,,
3.612799632985434,31500,train,0.0,,,
3.6701456589058377,32000,train,0.0,,,
3.7274916848262416,32500,train,0.0,,,
3.784837710746645,33000,train,0.0,,,
3.842183736667049,33500,train,0.0,,,
3.8995297625874525,34000,train,0.0,,,
3.9568757885078565,34500,train,0.0,,,
4.0,34876,eval,0.0,1.0,1.0,1.0
|