jishnunair
commited on
Commit
•
cdc2217
1
Parent(s):
74e48b1
End of training
Browse files- README.md +68 -0
- config.json +587 -0
- model.safetensors +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +55 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
README.md
ADDED
@@ -0,0 +1,68 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
base_model: distilbert-base-cased
|
4 |
+
tags:
|
5 |
+
- generated_from_trainer
|
6 |
+
metrics:
|
7 |
+
- precision
|
8 |
+
- recall
|
9 |
+
- f1
|
10 |
+
- accuracy
|
11 |
+
model-index:
|
12 |
+
- name: distilBert_NER_finer
|
13 |
+
results: []
|
14 |
+
---
|
15 |
+
|
16 |
+
<!-- This model card has been generated automatically according to the information the Trainer had access to. You
|
17 |
+
should probably proofread and complete it, then remove this comment. -->
|
18 |
+
|
19 |
+
# distilBert_NER_finer
|
20 |
+
|
21 |
+
This model is a fine-tuned version of [distilbert-base-cased](https://huggingface.co/distilbert-base-cased) on the None dataset.
|
22 |
+
It achieves the following results on the evaluation set:
|
23 |
+
- Loss: 0.0198
|
24 |
+
- Precision: 0.9445
|
25 |
+
- Recall: 0.9640
|
26 |
+
- F1: 0.9541
|
27 |
+
- Accuracy: 0.9954
|
28 |
+
|
29 |
+
## Model description
|
30 |
+
|
31 |
+
More information needed
|
32 |
+
|
33 |
+
## Intended uses & limitations
|
34 |
+
|
35 |
+
More information needed
|
36 |
+
|
37 |
+
## Training and evaluation data
|
38 |
+
|
39 |
+
More information needed
|
40 |
+
|
41 |
+
## Training procedure
|
42 |
+
|
43 |
+
### Training hyperparameters
|
44 |
+
|
45 |
+
The following hyperparameters were used during training:
|
46 |
+
- learning_rate: 2e-05
|
47 |
+
- train_batch_size: 8
|
48 |
+
- eval_batch_size: 8
|
49 |
+
- seed: 42
|
50 |
+
- optimizer: Adam with betas=(0.9,0.999) and epsilon=1e-08
|
51 |
+
- lr_scheduler_type: linear
|
52 |
+
- num_epochs: 3
|
53 |
+
|
54 |
+
### Training results
|
55 |
+
|
56 |
+
| Training Loss | Epoch | Step | Validation Loss | Precision | Recall | F1 | Accuracy |
|
57 |
+
|:-------------:|:-----:|:----:|:---------------:|:---------:|:------:|:------:|:--------:|
|
58 |
+
| 0.0034 | 1.0 | 1620 | 0.0261 | 0.9167 | 0.9668 | 0.9411 | 0.9941 |
|
59 |
+
| 0.0031 | 2.0 | 3240 | 0.0182 | 0.9471 | 0.9651 | 0.9561 | 0.9956 |
|
60 |
+
| 0.0012 | 3.0 | 4860 | 0.0198 | 0.9445 | 0.9640 | 0.9541 | 0.9954 |
|
61 |
+
|
62 |
+
|
63 |
+
### Framework versions
|
64 |
+
|
65 |
+
- Transformers 4.38.2
|
66 |
+
- Pytorch 2.2.1+cu121
|
67 |
+
- Datasets 2.18.0
|
68 |
+
- Tokenizers 0.15.2
|
config.json
ADDED
@@ -0,0 +1,587 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "distilbert-base-cased",
|
3 |
+
"activation": "gelu",
|
4 |
+
"architectures": [
|
5 |
+
"DistilBertForTokenClassification"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
11 |
+
"id2label": {
|
12 |
+
"0": "O",
|
13 |
+
"1": "B-AccrualForEnvironmentalLossContingencies",
|
14 |
+
"2": "B-AcquiredFiniteLivedIntangibleAssetsWeightedAverageUsefulLife",
|
15 |
+
"3": "I-AcquiredFiniteLivedIntangibleAssetsWeightedAverageUsefulLife",
|
16 |
+
"4": "B-AllocatedShareBasedCompensationExpense",
|
17 |
+
"5": "B-AmortizationOfFinancingCosts",
|
18 |
+
"6": "B-AmortizationOfIntangibleAssets",
|
19 |
+
"7": "I-AmortizationOfIntangibleAssets",
|
20 |
+
"8": "B-AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount",
|
21 |
+
"9": "I-AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount",
|
22 |
+
"10": "B-AreaOfRealEstateProperty",
|
23 |
+
"11": "I-AreaOfRealEstateProperty",
|
24 |
+
"12": "B-AssetImpairmentCharges",
|
25 |
+
"13": "B-BusinessAcquisitionEquityInterestsIssuedOrIssuableNumberOfSharesIssued",
|
26 |
+
"14": "B-BusinessAcquisitionPercentageOfVotingInterestsAcquired",
|
27 |
+
"15": "I-BusinessAcquisitionPercentageOfVotingInterestsAcquired",
|
28 |
+
"16": "B-BusinessCombinationAcquisitionRelatedCosts",
|
29 |
+
"17": "B-BusinessCombinationConsiderationTransferred1",
|
30 |
+
"18": "B-BusinessCombinationContingentConsiderationLiability",
|
31 |
+
"19": "B-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibleAssetsOtherThanGoodwill",
|
32 |
+
"20": "B-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibles",
|
33 |
+
"21": "B-CapitalizedContractCostAmortization",
|
34 |
+
"22": "B-CashAndCashEquivalentsFairValueDisclosure",
|
35 |
+
"23": "B-ClassOfWarrantOrRightExercisePriceOfWarrantsOrRights1",
|
36 |
+
"24": "B-CommonStockCapitalSharesReservedForFutureIssuance",
|
37 |
+
"25": "B-CommonStockDividendsPerShareDeclared",
|
38 |
+
"26": "B-CommonStockParOrStatedValuePerShare",
|
39 |
+
"27": "B-CommonStockSharesAuthorized",
|
40 |
+
"28": "I-CommonStockSharesAuthorized",
|
41 |
+
"29": "B-CommonStockSharesOutstanding",
|
42 |
+
"30": "B-ConcentrationRiskPercentage1",
|
43 |
+
"31": "B-ContractWithCustomerLiability",
|
44 |
+
"32": "B-ContractWithCustomerLiabilityRevenueRecognized",
|
45 |
+
"33": "B-CumulativeEffectOfNewAccountingPrincipleInPeriodOfAdoption",
|
46 |
+
"34": "B-DebtInstrumentBasisSpreadOnVariableRate1",
|
47 |
+
"35": "B-DebtInstrumentCarryingAmount",
|
48 |
+
"36": "B-DebtInstrumentConvertibleConversionPrice1",
|
49 |
+
"37": "B-DebtInstrumentFaceAmount",
|
50 |
+
"38": "I-DebtInstrumentFaceAmount",
|
51 |
+
"39": "B-DebtInstrumentFairValue",
|
52 |
+
"40": "B-DebtInstrumentInterestRateEffectivePercentage",
|
53 |
+
"41": "B-DebtInstrumentInterestRateStatedPercentage",
|
54 |
+
"42": "B-DebtInstrumentMaturityDate",
|
55 |
+
"43": "I-DebtInstrumentMaturityDate",
|
56 |
+
"44": "B-DebtInstrumentRedemptionPricePercentage",
|
57 |
+
"45": "B-DebtInstrumentTerm",
|
58 |
+
"46": "I-DebtInstrumentTerm",
|
59 |
+
"47": "B-DebtInstrumentUnamortizedDiscount",
|
60 |
+
"48": "B-DebtWeightedAverageInterestRate",
|
61 |
+
"49": "B-DeferredFinanceCostsGross",
|
62 |
+
"50": "B-DeferredFinanceCostsNet",
|
63 |
+
"51": "B-DefinedBenefitPlanContributionsByEmployer",
|
64 |
+
"52": "B-DefinedContributionPlanCostRecognized",
|
65 |
+
"53": "B-Depreciation",
|
66 |
+
"54": "B-DerivativeFixedInterestRate",
|
67 |
+
"55": "B-DerivativeNotionalAmount",
|
68 |
+
"56": "B-DisposalGroupIncludingDiscontinuedOperationConsideration",
|
69 |
+
"57": "B-EffectiveIncomeTaxRateContinuingOperations",
|
70 |
+
"58": "B-EffectiveIncomeTaxRateReconciliationAtFederalStatutoryIncomeTaxRate",
|
71 |
+
"59": "B-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognized",
|
72 |
+
"60": "B-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedPeriodForRecognition1",
|
73 |
+
"61": "I-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedPeriodForRecognition1",
|
74 |
+
"62": "B-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedShareBasedAwardsOtherThanOptions",
|
75 |
+
"63": "B-EmployeeServiceShareBasedCompensationTaxBenefitFromCompensationExpense",
|
76 |
+
"64": "B-EquityMethodInvestmentOwnershipPercentage",
|
77 |
+
"65": "I-EquityMethodInvestmentOwnershipPercentage",
|
78 |
+
"66": "B-EquityMethodInvestments",
|
79 |
+
"67": "B-FiniteLivedIntangibleAssetUsefulLife",
|
80 |
+
"68": "I-FiniteLivedIntangibleAssetUsefulLife",
|
81 |
+
"69": "B-GainsLossesOnExtinguishmentOfDebt",
|
82 |
+
"70": "B-Goodwill",
|
83 |
+
"71": "B-GoodwillImpairmentLoss",
|
84 |
+
"72": "B-GuaranteeObligationsMaximumExposure",
|
85 |
+
"73": "B-IncomeLossFromEquityMethodInvestments",
|
86 |
+
"74": "B-IncomeTaxExpenseBenefit",
|
87 |
+
"75": "B-InterestExpense",
|
88 |
+
"76": "B-InterestExpenseDebt",
|
89 |
+
"77": "B-LeaseAndRentalExpense",
|
90 |
+
"78": "B-LesseeOperatingLeaseRenewalTerm",
|
91 |
+
"79": "I-LesseeOperatingLeaseRenewalTerm",
|
92 |
+
"80": "B-LesseeOperatingLeaseTermOfContract",
|
93 |
+
"81": "I-LesseeOperatingLeaseTermOfContract",
|
94 |
+
"82": "B-LettersOfCreditOutstandingAmount",
|
95 |
+
"83": "B-LineOfCredit",
|
96 |
+
"84": "B-LineOfCreditFacilityCommitmentFeePercentage",
|
97 |
+
"85": "B-LineOfCreditFacilityCurrentBorrowingCapacity",
|
98 |
+
"86": "B-LineOfCreditFacilityInterestRateAtPeriodEnd",
|
99 |
+
"87": "B-LineOfCreditFacilityMaximumBorrowingCapacity",
|
100 |
+
"88": "B-LineOfCreditFacilityRemainingBorrowingCapacity",
|
101 |
+
"89": "B-LineOfCreditFacilityUnusedCapacityCommitmentFeePercentage",
|
102 |
+
"90": "B-LongTermDebt",
|
103 |
+
"91": "B-LongTermDebtFairValue",
|
104 |
+
"92": "B-LossContingencyAccrualAtCarryingValue",
|
105 |
+
"93": "B-LossContingencyDamagesSoughtValue",
|
106 |
+
"94": "B-LossContingencyEstimateOfPossibleLoss",
|
107 |
+
"95": "B-LossContingencyPendingClaimsNumber",
|
108 |
+
"96": "I-LossContingencyPendingClaimsNumber",
|
109 |
+
"97": "B-MinorityInterestOwnershipPercentageByNoncontrollingOwners",
|
110 |
+
"98": "B-MinorityInterestOwnershipPercentageByParent",
|
111 |
+
"99": "B-NumberOfOperatingSegments",
|
112 |
+
"100": "B-NumberOfRealEstateProperties",
|
113 |
+
"101": "I-NumberOfRealEstateProperties",
|
114 |
+
"102": "B-NumberOfReportableSegments",
|
115 |
+
"103": "B-OperatingLeaseCost",
|
116 |
+
"104": "B-OperatingLeaseExpense",
|
117 |
+
"105": "B-OperatingLeaseLiability",
|
118 |
+
"106": "B-OperatingLeasePayments",
|
119 |
+
"107": "B-OperatingLeaseRightOfUseAsset",
|
120 |
+
"108": "B-OperatingLeaseWeightedAverageDiscountRatePercent",
|
121 |
+
"109": "B-OperatingLeaseWeightedAverageRemainingLeaseTerm1",
|
122 |
+
"110": "I-OperatingLeaseWeightedAverageRemainingLeaseTerm1",
|
123 |
+
"111": "B-OperatingLeasesRentExpenseNet",
|
124 |
+
"112": "B-OperatingLossCarryforwards",
|
125 |
+
"113": "B-PaymentsToAcquireBusinessesGross",
|
126 |
+
"114": "B-PaymentsToAcquireBusinessesNetOfCashAcquired",
|
127 |
+
"115": "B-PreferredStockDividendRatePercentage",
|
128 |
+
"116": "B-PreferredStockSharesAuthorized",
|
129 |
+
"117": "I-PreferredStockSharesAuthorized",
|
130 |
+
"118": "B-ProceedsFromIssuanceOfCommonStock",
|
131 |
+
"119": "B-PropertyPlantAndEquipmentUsefulLife",
|
132 |
+
"120": "I-PropertyPlantAndEquipmentUsefulLife",
|
133 |
+
"121": "B-PublicUtilitiesRequestedRateIncreaseDecreaseAmount",
|
134 |
+
"122": "B-RelatedPartyTransactionAmountsOfTransaction",
|
135 |
+
"123": "I-RelatedPartyTransactionAmountsOfTransaction",
|
136 |
+
"124": "B-RelatedPartyTransactionExpensesFromTransactionsWithRelatedParty",
|
137 |
+
"125": "I-RelatedPartyTransactionExpensesFromTransactionsWithRelatedParty",
|
138 |
+
"126": "B-RepaymentsOfDebt",
|
139 |
+
"127": "B-RestructuringAndRelatedCostExpectedCost1",
|
140 |
+
"128": "B-RestructuringCharges",
|
141 |
+
"129": "B-RevenueFromContractWithCustomerExcludingAssessedTax",
|
142 |
+
"130": "B-RevenueFromContractWithCustomerIncludingAssessedTax",
|
143 |
+
"131": "B-RevenueFromRelatedParties",
|
144 |
+
"132": "B-RevenueRemainingPerformanceObligation",
|
145 |
+
"133": "B-Revenues",
|
146 |
+
"134": "B-SaleOfStockNumberOfSharesIssuedInTransaction",
|
147 |
+
"135": "I-SaleOfStockNumberOfSharesIssuedInTransaction",
|
148 |
+
"136": "B-SaleOfStockPricePerShare",
|
149 |
+
"137": "B-ShareBasedCompensation",
|
150 |
+
"138": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardAwardVestingPeriod1",
|
151 |
+
"139": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardAwardVestingPeriod1",
|
152 |
+
"140": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod",
|
153 |
+
"141": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod",
|
154 |
+
"142": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriodWeightedAverageGrantDateFairValue",
|
155 |
+
"143": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedNumber",
|
156 |
+
"144": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodTotalFairValue",
|
157 |
+
"145": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAuthorized",
|
158 |
+
"146": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAuthorized",
|
159 |
+
"147": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAvailableForGrant",
|
160 |
+
"148": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsExercisesInPeriodTotalIntrinsicValue",
|
161 |
+
"149": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodGross",
|
162 |
+
"150": "B-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodWeightedAverageGrantDateFairValue",
|
163 |
+
"151": "B-SharePrice",
|
164 |
+
"152": "B-SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage",
|
165 |
+
"153": "I-SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage",
|
166 |
+
"154": "B-SharebasedCompensationArrangementBySharebasedPaymentAwardExpirationPeriod",
|
167 |
+
"155": "I-SharebasedCompensationArrangementBySharebasedPaymentAwardExpirationPeriod",
|
168 |
+
"156": "B-StockIssuedDuringPeriodSharesNewIssues",
|
169 |
+
"157": "I-StockIssuedDuringPeriodSharesNewIssues",
|
170 |
+
"158": "B-StockRepurchaseProgramAuthorizedAmount1",
|
171 |
+
"159": "B-StockRepurchaseProgramRemainingAuthorizedRepurchaseAmount1",
|
172 |
+
"160": "B-StockRepurchasedAndRetiredDuringPeriodShares",
|
173 |
+
"161": "B-StockRepurchasedDuringPeriodShares",
|
174 |
+
"162": "I-StockRepurchasedDuringPeriodShares",
|
175 |
+
"163": "B-SupplementalInformationForPropertyCasualtyInsuranceUnderwritersPriorYearClaimsAndClaimsAdjustmentExpense",
|
176 |
+
"164": "B-TreasuryStockAcquiredAverageCostPerShare",
|
177 |
+
"165": "B-TreasuryStockSharesAcquired",
|
178 |
+
"166": "I-TreasuryStockSharesAcquired",
|
179 |
+
"167": "B-TreasuryStockValueAcquiredCostMethod",
|
180 |
+
"168": "B-UnrecognizedTaxBenefits",
|
181 |
+
"169": "B-UnrecognizedTaxBenefitsThatWouldImpactEffectiveTaxRate",
|
182 |
+
"170": "I-DeferredFinanceCostsGross",
|
183 |
+
"171": "I-CommonStockParOrStatedValuePerShare",
|
184 |
+
"172": "I-LossContingencyEstimateOfPossibleLoss",
|
185 |
+
"173": "I-DefinedContributionPlanCostRecognized",
|
186 |
+
"174": "I-DebtInstrumentFairValue",
|
187 |
+
"175": "I-ContractWithCustomerLiabilityRevenueRecognized",
|
188 |
+
"176": "I-RevenueRemainingPerformanceObligation",
|
189 |
+
"177": "I-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognized",
|
190 |
+
"178": "I-DebtInstrumentInterestRateStatedPercentage",
|
191 |
+
"179": "I-OperatingLossCarryforwards",
|
192 |
+
"180": "I-MinorityInterestOwnershipPercentageByNoncontrollingOwners",
|
193 |
+
"181": "I-InterestExpense",
|
194 |
+
"182": "I-LongTermDebt",
|
195 |
+
"183": "I-ShareBasedCompensation",
|
196 |
+
"184": "I-DebtWeightedAverageInterestRate",
|
197 |
+
"185": "I-DebtInstrumentCarryingAmount",
|
198 |
+
"186": "I-DebtInstrumentConvertibleConversionPrice1",
|
199 |
+
"187": "I-IncomeTaxExpenseBenefit",
|
200 |
+
"188": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodWeightedAverageGrantDateFairValue",
|
201 |
+
"189": "I-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedShareBasedAwardsOtherThanOptions",
|
202 |
+
"190": "I-EquityMethodInvestments",
|
203 |
+
"191": "I-DebtInstrumentUnamortizedDiscount",
|
204 |
+
"192": "I-GainsLossesOnExtinguishmentOfDebt",
|
205 |
+
"193": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAvailableForGrant",
|
206 |
+
"194": "I-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibleAssetsOtherThanGoodwill",
|
207 |
+
"195": "I-PreferredStockDividendRatePercentage",
|
208 |
+
"196": "I-RevenueFromContractWithCustomerIncludingAssessedTax",
|
209 |
+
"197": "I-OperatingLeaseWeightedAverageDiscountRatePercent",
|
210 |
+
"198": "I-LineOfCredit",
|
211 |
+
"199": "I-LineOfCreditFacilityMaximumBorrowingCapacity",
|
212 |
+
"200": "I-EffectiveIncomeTaxRateReconciliationAtFederalStatutoryIncomeTaxRate",
|
213 |
+
"201": "I-LineOfCreditFacilityCommitmentFeePercentage",
|
214 |
+
"202": "I-BusinessCombinationConsiderationTransferred1",
|
215 |
+
"203": "I-CommonStockDividendsPerShareDeclared",
|
216 |
+
"204": "I-DebtInstrumentBasisSpreadOnVariableRate1",
|
217 |
+
"205": "I-DisposalGroupIncludingDiscontinuedOperationConsideration",
|
218 |
+
"206": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodGross",
|
219 |
+
"207": "I-CommonStockSharesOutstanding",
|
220 |
+
"208": "I-AmortizationOfFinancingCosts",
|
221 |
+
"209": "I-LineOfCreditFacilityCurrentBorrowingCapacity",
|
222 |
+
"210": "I-TreasuryStockValueAcquiredCostMethod",
|
223 |
+
"211": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedNumber",
|
224 |
+
"212": "I-DebtInstrumentInterestRateEffectivePercentage",
|
225 |
+
"213": "I-SaleOfStockPricePerShare",
|
226 |
+
"214": "I-CapitalizedContractCostAmortization",
|
227 |
+
"215": "I-RestructuringCharges",
|
228 |
+
"216": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodTotalFairValue",
|
229 |
+
"217": "I-AccrualForEnvironmentalLossContingencies",
|
230 |
+
"218": "I-CashAndCashEquivalentsFairValueDisclosure",
|
231 |
+
"219": "I-ProceedsFromIssuanceOfCommonStock",
|
232 |
+
"220": "I-Revenues",
|
233 |
+
"221": "I-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibles",
|
234 |
+
"222": "I-LettersOfCreditOutstandingAmount",
|
235 |
+
"223": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriodWeightedAverageGrantDateFairValue",
|
236 |
+
"224": "I-OperatingLeasePayments",
|
237 |
+
"225": "I-LineOfCreditFacilityRemainingBorrowingCapacity",
|
238 |
+
"226": "I-PaymentsToAcquireBusinessesGross",
|
239 |
+
"227": "I-TreasuryStockAcquiredAverageCostPerShare",
|
240 |
+
"228": "I-DeferredFinanceCostsNet",
|
241 |
+
"229": "I-StockRepurchaseProgramAuthorizedAmount1",
|
242 |
+
"230": "I-InterestExpenseDebt",
|
243 |
+
"231": "I-ContractWithCustomerLiability",
|
244 |
+
"232": "I-OperatingLeaseExpense",
|
245 |
+
"233": "I-Depreciation",
|
246 |
+
"234": "I-AllocatedShareBasedCompensationExpense",
|
247 |
+
"235": "I-LossContingencyAccrualAtCarryingValue",
|
248 |
+
"236": "I-LineOfCreditFacilityUnusedCapacityCommitmentFeePercentage",
|
249 |
+
"237": "I-SupplementalInformationForPropertyCasualtyInsuranceUnderwritersPriorYearClaimsAndClaimsAdjustmentExpense",
|
250 |
+
"238": "I-OperatingLeaseLiability",
|
251 |
+
"239": "I-RevenueFromRelatedParties",
|
252 |
+
"240": "I-PaymentsToAcquireBusinessesNetOfCashAcquired",
|
253 |
+
"241": "I-BusinessCombinationContingentConsiderationLiability",
|
254 |
+
"242": "I-LossContingencyDamagesSoughtValue",
|
255 |
+
"243": "I-NumberOfOperatingSegments",
|
256 |
+
"244": "I-BusinessAcquisitionEquityInterestsIssuedOrIssuableNumberOfSharesIssued",
|
257 |
+
"245": "I-OperatingLeaseRightOfUseAsset",
|
258 |
+
"246": "I-BusinessCombinationAcquisitionRelatedCosts",
|
259 |
+
"247": "I-UnrecognizedTaxBenefits",
|
260 |
+
"248": "I-GuaranteeObligationsMaximumExposure",
|
261 |
+
"249": "I-RestructuringAndRelatedCostExpectedCost1",
|
262 |
+
"250": "I-DefinedBenefitPlanContributionsByEmployer",
|
263 |
+
"251": "I-OperatingLeaseCost",
|
264 |
+
"252": "I-DerivativeFixedInterestRate",
|
265 |
+
"253": "I-Goodwill",
|
266 |
+
"254": "I-GoodwillImpairmentLoss",
|
267 |
+
"255": "I-CommonStockCapitalSharesReservedForFutureIssuance",
|
268 |
+
"256": "I-StockRepurchasedAndRetiredDuringPeriodShares",
|
269 |
+
"257": "I-EmployeeServiceShareBasedCompensationTaxBenefitFromCompensationExpense",
|
270 |
+
"258": "I-IncomeLossFromEquityMethodInvestments",
|
271 |
+
"259": "I-NumberOfReportableSegments",
|
272 |
+
"260": "I-LongTermDebtFairValue",
|
273 |
+
"261": "I-RepaymentsOfDebt",
|
274 |
+
"262": "I-ConcentrationRiskPercentage1",
|
275 |
+
"263": "I-DebtInstrumentRedemptionPricePercentage",
|
276 |
+
"264": "I-CumulativeEffectOfNewAccountingPrincipleInPeriodOfAdoption",
|
277 |
+
"265": "I-SharePrice",
|
278 |
+
"266": "I-UnrecognizedTaxBenefitsThatWouldImpactEffectiveTaxRate",
|
279 |
+
"267": "I-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsExercisesInPeriodTotalIntrinsicValue",
|
280 |
+
"268": "I-EffectiveIncomeTaxRateContinuingOperations",
|
281 |
+
"269": "I-RevenueFromContractWithCustomerExcludingAssessedTax",
|
282 |
+
"270": "I-StockRepurchaseProgramRemainingAuthorizedRepurchaseAmount1",
|
283 |
+
"271": "I-LineOfCreditFacilityInterestRateAtPeriodEnd",
|
284 |
+
"272": "I-ClassOfWarrantOrRightExercisePriceOfWarrantsOrRights1",
|
285 |
+
"273": "I-OperatingLeasesRentExpenseNet",
|
286 |
+
"274": "I-LeaseAndRentalExpense",
|
287 |
+
"275": "I-PublicUtilitiesRequestedRateIncreaseDecreaseAmount",
|
288 |
+
"276": "I-MinorityInterestOwnershipPercentageByParent",
|
289 |
+
"277": "I-AssetImpairmentCharges",
|
290 |
+
"278": "I-DerivativeNotionalAmount"
|
291 |
+
},
|
292 |
+
"initializer_range": 0.02,
|
293 |
+
"label2id": {
|
294 |
+
"B-AccrualForEnvironmentalLossContingencies": 1,
|
295 |
+
"B-AcquiredFiniteLivedIntangibleAssetsWeightedAverageUsefulLife": 2,
|
296 |
+
"B-AllocatedShareBasedCompensationExpense": 4,
|
297 |
+
"B-AmortizationOfFinancingCosts": 5,
|
298 |
+
"B-AmortizationOfIntangibleAssets": 6,
|
299 |
+
"B-AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount": 8,
|
300 |
+
"B-AreaOfRealEstateProperty": 10,
|
301 |
+
"B-AssetImpairmentCharges": 12,
|
302 |
+
"B-BusinessAcquisitionEquityInterestsIssuedOrIssuableNumberOfSharesIssued": 13,
|
303 |
+
"B-BusinessAcquisitionPercentageOfVotingInterestsAcquired": 14,
|
304 |
+
"B-BusinessCombinationAcquisitionRelatedCosts": 16,
|
305 |
+
"B-BusinessCombinationConsiderationTransferred1": 17,
|
306 |
+
"B-BusinessCombinationContingentConsiderationLiability": 18,
|
307 |
+
"B-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibleAssetsOtherThanGoodwill": 19,
|
308 |
+
"B-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibles": 20,
|
309 |
+
"B-CapitalizedContractCostAmortization": 21,
|
310 |
+
"B-CashAndCashEquivalentsFairValueDisclosure": 22,
|
311 |
+
"B-ClassOfWarrantOrRightExercisePriceOfWarrantsOrRights1": 23,
|
312 |
+
"B-CommonStockCapitalSharesReservedForFutureIssuance": 24,
|
313 |
+
"B-CommonStockDividendsPerShareDeclared": 25,
|
314 |
+
"B-CommonStockParOrStatedValuePerShare": 26,
|
315 |
+
"B-CommonStockSharesAuthorized": 27,
|
316 |
+
"B-CommonStockSharesOutstanding": 29,
|
317 |
+
"B-ConcentrationRiskPercentage1": 30,
|
318 |
+
"B-ContractWithCustomerLiability": 31,
|
319 |
+
"B-ContractWithCustomerLiabilityRevenueRecognized": 32,
|
320 |
+
"B-CumulativeEffectOfNewAccountingPrincipleInPeriodOfAdoption": 33,
|
321 |
+
"B-DebtInstrumentBasisSpreadOnVariableRate1": 34,
|
322 |
+
"B-DebtInstrumentCarryingAmount": 35,
|
323 |
+
"B-DebtInstrumentConvertibleConversionPrice1": 36,
|
324 |
+
"B-DebtInstrumentFaceAmount": 37,
|
325 |
+
"B-DebtInstrumentFairValue": 39,
|
326 |
+
"B-DebtInstrumentInterestRateEffectivePercentage": 40,
|
327 |
+
"B-DebtInstrumentInterestRateStatedPercentage": 41,
|
328 |
+
"B-DebtInstrumentMaturityDate": 42,
|
329 |
+
"B-DebtInstrumentRedemptionPricePercentage": 44,
|
330 |
+
"B-DebtInstrumentTerm": 45,
|
331 |
+
"B-DebtInstrumentUnamortizedDiscount": 47,
|
332 |
+
"B-DebtWeightedAverageInterestRate": 48,
|
333 |
+
"B-DeferredFinanceCostsGross": 49,
|
334 |
+
"B-DeferredFinanceCostsNet": 50,
|
335 |
+
"B-DefinedBenefitPlanContributionsByEmployer": 51,
|
336 |
+
"B-DefinedContributionPlanCostRecognized": 52,
|
337 |
+
"B-Depreciation": 53,
|
338 |
+
"B-DerivativeFixedInterestRate": 54,
|
339 |
+
"B-DerivativeNotionalAmount": 55,
|
340 |
+
"B-DisposalGroupIncludingDiscontinuedOperationConsideration": 56,
|
341 |
+
"B-EffectiveIncomeTaxRateContinuingOperations": 57,
|
342 |
+
"B-EffectiveIncomeTaxRateReconciliationAtFederalStatutoryIncomeTaxRate": 58,
|
343 |
+
"B-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognized": 59,
|
344 |
+
"B-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedPeriodForRecognition1": 60,
|
345 |
+
"B-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedShareBasedAwardsOtherThanOptions": 62,
|
346 |
+
"B-EmployeeServiceShareBasedCompensationTaxBenefitFromCompensationExpense": 63,
|
347 |
+
"B-EquityMethodInvestmentOwnershipPercentage": 64,
|
348 |
+
"B-EquityMethodInvestments": 66,
|
349 |
+
"B-FiniteLivedIntangibleAssetUsefulLife": 67,
|
350 |
+
"B-GainsLossesOnExtinguishmentOfDebt": 69,
|
351 |
+
"B-Goodwill": 70,
|
352 |
+
"B-GoodwillImpairmentLoss": 71,
|
353 |
+
"B-GuaranteeObligationsMaximumExposure": 72,
|
354 |
+
"B-IncomeLossFromEquityMethodInvestments": 73,
|
355 |
+
"B-IncomeTaxExpenseBenefit": 74,
|
356 |
+
"B-InterestExpense": 75,
|
357 |
+
"B-InterestExpenseDebt": 76,
|
358 |
+
"B-LeaseAndRentalExpense": 77,
|
359 |
+
"B-LesseeOperatingLeaseRenewalTerm": 78,
|
360 |
+
"B-LesseeOperatingLeaseTermOfContract": 80,
|
361 |
+
"B-LettersOfCreditOutstandingAmount": 82,
|
362 |
+
"B-LineOfCredit": 83,
|
363 |
+
"B-LineOfCreditFacilityCommitmentFeePercentage": 84,
|
364 |
+
"B-LineOfCreditFacilityCurrentBorrowingCapacity": 85,
|
365 |
+
"B-LineOfCreditFacilityInterestRateAtPeriodEnd": 86,
|
366 |
+
"B-LineOfCreditFacilityMaximumBorrowingCapacity": 87,
|
367 |
+
"B-LineOfCreditFacilityRemainingBorrowingCapacity": 88,
|
368 |
+
"B-LineOfCreditFacilityUnusedCapacityCommitmentFeePercentage": 89,
|
369 |
+
"B-LongTermDebt": 90,
|
370 |
+
"B-LongTermDebtFairValue": 91,
|
371 |
+
"B-LossContingencyAccrualAtCarryingValue": 92,
|
372 |
+
"B-LossContingencyDamagesSoughtValue": 93,
|
373 |
+
"B-LossContingencyEstimateOfPossibleLoss": 94,
|
374 |
+
"B-LossContingencyPendingClaimsNumber": 95,
|
375 |
+
"B-MinorityInterestOwnershipPercentageByNoncontrollingOwners": 97,
|
376 |
+
"B-MinorityInterestOwnershipPercentageByParent": 98,
|
377 |
+
"B-NumberOfOperatingSegments": 99,
|
378 |
+
"B-NumberOfRealEstateProperties": 100,
|
379 |
+
"B-NumberOfReportableSegments": 102,
|
380 |
+
"B-OperatingLeaseCost": 103,
|
381 |
+
"B-OperatingLeaseExpense": 104,
|
382 |
+
"B-OperatingLeaseLiability": 105,
|
383 |
+
"B-OperatingLeasePayments": 106,
|
384 |
+
"B-OperatingLeaseRightOfUseAsset": 107,
|
385 |
+
"B-OperatingLeaseWeightedAverageDiscountRatePercent": 108,
|
386 |
+
"B-OperatingLeaseWeightedAverageRemainingLeaseTerm1": 109,
|
387 |
+
"B-OperatingLeasesRentExpenseNet": 111,
|
388 |
+
"B-OperatingLossCarryforwards": 112,
|
389 |
+
"B-PaymentsToAcquireBusinessesGross": 113,
|
390 |
+
"B-PaymentsToAcquireBusinessesNetOfCashAcquired": 114,
|
391 |
+
"B-PreferredStockDividendRatePercentage": 115,
|
392 |
+
"B-PreferredStockSharesAuthorized": 116,
|
393 |
+
"B-ProceedsFromIssuanceOfCommonStock": 118,
|
394 |
+
"B-PropertyPlantAndEquipmentUsefulLife": 119,
|
395 |
+
"B-PublicUtilitiesRequestedRateIncreaseDecreaseAmount": 121,
|
396 |
+
"B-RelatedPartyTransactionAmountsOfTransaction": 122,
|
397 |
+
"B-RelatedPartyTransactionExpensesFromTransactionsWithRelatedParty": 124,
|
398 |
+
"B-RepaymentsOfDebt": 126,
|
399 |
+
"B-RestructuringAndRelatedCostExpectedCost1": 127,
|
400 |
+
"B-RestructuringCharges": 128,
|
401 |
+
"B-RevenueFromContractWithCustomerExcludingAssessedTax": 129,
|
402 |
+
"B-RevenueFromContractWithCustomerIncludingAssessedTax": 130,
|
403 |
+
"B-RevenueFromRelatedParties": 131,
|
404 |
+
"B-RevenueRemainingPerformanceObligation": 132,
|
405 |
+
"B-Revenues": 133,
|
406 |
+
"B-SaleOfStockNumberOfSharesIssuedInTransaction": 134,
|
407 |
+
"B-SaleOfStockPricePerShare": 136,
|
408 |
+
"B-ShareBasedCompensation": 137,
|
409 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardAwardVestingPeriod1": 138,
|
410 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod": 140,
|
411 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriodWeightedAverageGrantDateFairValue": 142,
|
412 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedNumber": 143,
|
413 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodTotalFairValue": 144,
|
414 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAuthorized": 145,
|
415 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAvailableForGrant": 147,
|
416 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsExercisesInPeriodTotalIntrinsicValue": 148,
|
417 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodGross": 149,
|
418 |
+
"B-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodWeightedAverageGrantDateFairValue": 150,
|
419 |
+
"B-SharePrice": 151,
|
420 |
+
"B-SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage": 152,
|
421 |
+
"B-SharebasedCompensationArrangementBySharebasedPaymentAwardExpirationPeriod": 154,
|
422 |
+
"B-StockIssuedDuringPeriodSharesNewIssues": 156,
|
423 |
+
"B-StockRepurchaseProgramAuthorizedAmount1": 158,
|
424 |
+
"B-StockRepurchaseProgramRemainingAuthorizedRepurchaseAmount1": 159,
|
425 |
+
"B-StockRepurchasedAndRetiredDuringPeriodShares": 160,
|
426 |
+
"B-StockRepurchasedDuringPeriodShares": 161,
|
427 |
+
"B-SupplementalInformationForPropertyCasualtyInsuranceUnderwritersPriorYearClaimsAndClaimsAdjustmentExpense": 163,
|
428 |
+
"B-TreasuryStockAcquiredAverageCostPerShare": 164,
|
429 |
+
"B-TreasuryStockSharesAcquired": 165,
|
430 |
+
"B-TreasuryStockValueAcquiredCostMethod": 167,
|
431 |
+
"B-UnrecognizedTaxBenefits": 168,
|
432 |
+
"B-UnrecognizedTaxBenefitsThatWouldImpactEffectiveTaxRate": 169,
|
433 |
+
"I-AccrualForEnvironmentalLossContingencies": 217,
|
434 |
+
"I-AcquiredFiniteLivedIntangibleAssetsWeightedAverageUsefulLife": 3,
|
435 |
+
"I-AllocatedShareBasedCompensationExpense": 234,
|
436 |
+
"I-AmortizationOfFinancingCosts": 208,
|
437 |
+
"I-AmortizationOfIntangibleAssets": 7,
|
438 |
+
"I-AntidilutiveSecuritiesExcludedFromComputationOfEarningsPerShareAmount": 9,
|
439 |
+
"I-AreaOfRealEstateProperty": 11,
|
440 |
+
"I-AssetImpairmentCharges": 277,
|
441 |
+
"I-BusinessAcquisitionEquityInterestsIssuedOrIssuableNumberOfSharesIssued": 244,
|
442 |
+
"I-BusinessAcquisitionPercentageOfVotingInterestsAcquired": 15,
|
443 |
+
"I-BusinessCombinationAcquisitionRelatedCosts": 246,
|
444 |
+
"I-BusinessCombinationConsiderationTransferred1": 202,
|
445 |
+
"I-BusinessCombinationContingentConsiderationLiability": 241,
|
446 |
+
"I-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibleAssetsOtherThanGoodwill": 194,
|
447 |
+
"I-BusinessCombinationRecognizedIdentifiableAssetsAcquiredAndLiabilitiesAssumedIntangibles": 221,
|
448 |
+
"I-CapitalizedContractCostAmortization": 214,
|
449 |
+
"I-CashAndCashEquivalentsFairValueDisclosure": 218,
|
450 |
+
"I-ClassOfWarrantOrRightExercisePriceOfWarrantsOrRights1": 272,
|
451 |
+
"I-CommonStockCapitalSharesReservedForFutureIssuance": 255,
|
452 |
+
"I-CommonStockDividendsPerShareDeclared": 203,
|
453 |
+
"I-CommonStockParOrStatedValuePerShare": 171,
|
454 |
+
"I-CommonStockSharesAuthorized": 28,
|
455 |
+
"I-CommonStockSharesOutstanding": 207,
|
456 |
+
"I-ConcentrationRiskPercentage1": 262,
|
457 |
+
"I-ContractWithCustomerLiability": 231,
|
458 |
+
"I-ContractWithCustomerLiabilityRevenueRecognized": 175,
|
459 |
+
"I-CumulativeEffectOfNewAccountingPrincipleInPeriodOfAdoption": 264,
|
460 |
+
"I-DebtInstrumentBasisSpreadOnVariableRate1": 204,
|
461 |
+
"I-DebtInstrumentCarryingAmount": 185,
|
462 |
+
"I-DebtInstrumentConvertibleConversionPrice1": 186,
|
463 |
+
"I-DebtInstrumentFaceAmount": 38,
|
464 |
+
"I-DebtInstrumentFairValue": 174,
|
465 |
+
"I-DebtInstrumentInterestRateEffectivePercentage": 212,
|
466 |
+
"I-DebtInstrumentInterestRateStatedPercentage": 178,
|
467 |
+
"I-DebtInstrumentMaturityDate": 43,
|
468 |
+
"I-DebtInstrumentRedemptionPricePercentage": 263,
|
469 |
+
"I-DebtInstrumentTerm": 46,
|
470 |
+
"I-DebtInstrumentUnamortizedDiscount": 191,
|
471 |
+
"I-DebtWeightedAverageInterestRate": 184,
|
472 |
+
"I-DeferredFinanceCostsGross": 170,
|
473 |
+
"I-DeferredFinanceCostsNet": 228,
|
474 |
+
"I-DefinedBenefitPlanContributionsByEmployer": 250,
|
475 |
+
"I-DefinedContributionPlanCostRecognized": 173,
|
476 |
+
"I-Depreciation": 233,
|
477 |
+
"I-DerivativeFixedInterestRate": 252,
|
478 |
+
"I-DerivativeNotionalAmount": 278,
|
479 |
+
"I-DisposalGroupIncludingDiscontinuedOperationConsideration": 205,
|
480 |
+
"I-EffectiveIncomeTaxRateContinuingOperations": 268,
|
481 |
+
"I-EffectiveIncomeTaxRateReconciliationAtFederalStatutoryIncomeTaxRate": 200,
|
482 |
+
"I-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognized": 177,
|
483 |
+
"I-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedPeriodForRecognition1": 61,
|
484 |
+
"I-EmployeeServiceShareBasedCompensationNonvestedAwardsTotalCompensationCostNotYetRecognizedShareBasedAwardsOtherThanOptions": 189,
|
485 |
+
"I-EmployeeServiceShareBasedCompensationTaxBenefitFromCompensationExpense": 257,
|
486 |
+
"I-EquityMethodInvestmentOwnershipPercentage": 65,
|
487 |
+
"I-EquityMethodInvestments": 190,
|
488 |
+
"I-FiniteLivedIntangibleAssetUsefulLife": 68,
|
489 |
+
"I-GainsLossesOnExtinguishmentOfDebt": 192,
|
490 |
+
"I-Goodwill": 253,
|
491 |
+
"I-GoodwillImpairmentLoss": 254,
|
492 |
+
"I-GuaranteeObligationsMaximumExposure": 248,
|
493 |
+
"I-IncomeLossFromEquityMethodInvestments": 258,
|
494 |
+
"I-IncomeTaxExpenseBenefit": 187,
|
495 |
+
"I-InterestExpense": 181,
|
496 |
+
"I-InterestExpenseDebt": 230,
|
497 |
+
"I-LeaseAndRentalExpense": 274,
|
498 |
+
"I-LesseeOperatingLeaseRenewalTerm": 79,
|
499 |
+
"I-LesseeOperatingLeaseTermOfContract": 81,
|
500 |
+
"I-LettersOfCreditOutstandingAmount": 222,
|
501 |
+
"I-LineOfCredit": 198,
|
502 |
+
"I-LineOfCreditFacilityCommitmentFeePercentage": 201,
|
503 |
+
"I-LineOfCreditFacilityCurrentBorrowingCapacity": 209,
|
504 |
+
"I-LineOfCreditFacilityInterestRateAtPeriodEnd": 271,
|
505 |
+
"I-LineOfCreditFacilityMaximumBorrowingCapacity": 199,
|
506 |
+
"I-LineOfCreditFacilityRemainingBorrowingCapacity": 225,
|
507 |
+
"I-LineOfCreditFacilityUnusedCapacityCommitmentFeePercentage": 236,
|
508 |
+
"I-LongTermDebt": 182,
|
509 |
+
"I-LongTermDebtFairValue": 260,
|
510 |
+
"I-LossContingencyAccrualAtCarryingValue": 235,
|
511 |
+
"I-LossContingencyDamagesSoughtValue": 242,
|
512 |
+
"I-LossContingencyEstimateOfPossibleLoss": 172,
|
513 |
+
"I-LossContingencyPendingClaimsNumber": 96,
|
514 |
+
"I-MinorityInterestOwnershipPercentageByNoncontrollingOwners": 180,
|
515 |
+
"I-MinorityInterestOwnershipPercentageByParent": 276,
|
516 |
+
"I-NumberOfOperatingSegments": 243,
|
517 |
+
"I-NumberOfRealEstateProperties": 101,
|
518 |
+
"I-NumberOfReportableSegments": 259,
|
519 |
+
"I-OperatingLeaseCost": 251,
|
520 |
+
"I-OperatingLeaseExpense": 232,
|
521 |
+
"I-OperatingLeaseLiability": 238,
|
522 |
+
"I-OperatingLeasePayments": 224,
|
523 |
+
"I-OperatingLeaseRightOfUseAsset": 245,
|
524 |
+
"I-OperatingLeaseWeightedAverageDiscountRatePercent": 197,
|
525 |
+
"I-OperatingLeaseWeightedAverageRemainingLeaseTerm1": 110,
|
526 |
+
"I-OperatingLeasesRentExpenseNet": 273,
|
527 |
+
"I-OperatingLossCarryforwards": 179,
|
528 |
+
"I-PaymentsToAcquireBusinessesGross": 226,
|
529 |
+
"I-PaymentsToAcquireBusinessesNetOfCashAcquired": 240,
|
530 |
+
"I-PreferredStockDividendRatePercentage": 195,
|
531 |
+
"I-PreferredStockSharesAuthorized": 117,
|
532 |
+
"I-ProceedsFromIssuanceOfCommonStock": 219,
|
533 |
+
"I-PropertyPlantAndEquipmentUsefulLife": 120,
|
534 |
+
"I-PublicUtilitiesRequestedRateIncreaseDecreaseAmount": 275,
|
535 |
+
"I-RelatedPartyTransactionAmountsOfTransaction": 123,
|
536 |
+
"I-RelatedPartyTransactionExpensesFromTransactionsWithRelatedParty": 125,
|
537 |
+
"I-RepaymentsOfDebt": 261,
|
538 |
+
"I-RestructuringAndRelatedCostExpectedCost1": 249,
|
539 |
+
"I-RestructuringCharges": 215,
|
540 |
+
"I-RevenueFromContractWithCustomerExcludingAssessedTax": 269,
|
541 |
+
"I-RevenueFromContractWithCustomerIncludingAssessedTax": 196,
|
542 |
+
"I-RevenueFromRelatedParties": 239,
|
543 |
+
"I-RevenueRemainingPerformanceObligation": 176,
|
544 |
+
"I-Revenues": 220,
|
545 |
+
"I-SaleOfStockNumberOfSharesIssuedInTransaction": 135,
|
546 |
+
"I-SaleOfStockPricePerShare": 213,
|
547 |
+
"I-ShareBasedCompensation": 183,
|
548 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardAwardVestingPeriod1": 139,
|
549 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriod": 141,
|
550 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsGrantsInPeriodWeightedAverageGrantDateFairValue": 223,
|
551 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsNonvestedNumber": 211,
|
552 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardEquityInstrumentsOtherThanOptionsVestedInPeriodTotalFairValue": 216,
|
553 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAuthorized": 146,
|
554 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardNumberOfSharesAvailableForGrant": 193,
|
555 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsExercisesInPeriodTotalIntrinsicValue": 267,
|
556 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodGross": 206,
|
557 |
+
"I-ShareBasedCompensationArrangementByShareBasedPaymentAwardOptionsGrantsInPeriodWeightedAverageGrantDateFairValue": 188,
|
558 |
+
"I-SharePrice": 265,
|
559 |
+
"I-SharebasedCompensationArrangementBySharebasedPaymentAwardAwardVestingRightsPercentage": 153,
|
560 |
+
"I-SharebasedCompensationArrangementBySharebasedPaymentAwardExpirationPeriod": 155,
|
561 |
+
"I-StockIssuedDuringPeriodSharesNewIssues": 157,
|
562 |
+
"I-StockRepurchaseProgramAuthorizedAmount1": 229,
|
563 |
+
"I-StockRepurchaseProgramRemainingAuthorizedRepurchaseAmount1": 270,
|
564 |
+
"I-StockRepurchasedAndRetiredDuringPeriodShares": 256,
|
565 |
+
"I-StockRepurchasedDuringPeriodShares": 162,
|
566 |
+
"I-SupplementalInformationForPropertyCasualtyInsuranceUnderwritersPriorYearClaimsAndClaimsAdjustmentExpense": 237,
|
567 |
+
"I-TreasuryStockAcquiredAverageCostPerShare": 227,
|
568 |
+
"I-TreasuryStockSharesAcquired": 166,
|
569 |
+
"I-TreasuryStockValueAcquiredCostMethod": 210,
|
570 |
+
"I-UnrecognizedTaxBenefits": 247,
|
571 |
+
"I-UnrecognizedTaxBenefitsThatWouldImpactEffectiveTaxRate": 266,
|
572 |
+
"O": 0
|
573 |
+
},
|
574 |
+
"max_position_embeddings": 512,
|
575 |
+
"model_type": "distilbert",
|
576 |
+
"n_heads": 12,
|
577 |
+
"n_layers": 6,
|
578 |
+
"output_past": true,
|
579 |
+
"pad_token_id": 0,
|
580 |
+
"qa_dropout": 0.1,
|
581 |
+
"seq_classif_dropout": 0.2,
|
582 |
+
"sinusoidal_pos_embds": false,
|
583 |
+
"tie_weights_": true,
|
584 |
+
"torch_dtype": "float32",
|
585 |
+
"transformers_version": "4.38.2",
|
586 |
+
"vocab_size": 28996
|
587 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5c7190a07c700ec2ed4a78ebb88cd3b690402a950d0282685eb427e8d7c28d87
|
3 |
+
size 261634204
|
special_tokens_map.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"mask_token": "[MASK]",
|
4 |
+
"pad_token": "[PAD]",
|
5 |
+
"sep_token": "[SEP]",
|
6 |
+
"unk_token": "[UNK]"
|
7 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"100": {
|
12 |
+
"content": "[UNK]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"101": {
|
20 |
+
"content": "[CLS]",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"102": {
|
28 |
+
"content": "[SEP]",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"103": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"clean_up_tokenization_spaces": true,
|
45 |
+
"cls_token": "[CLS]",
|
46 |
+
"do_lower_case": false,
|
47 |
+
"mask_token": "[MASK]",
|
48 |
+
"model_max_length": 512,
|
49 |
+
"pad_token": "[PAD]",
|
50 |
+
"sep_token": "[SEP]",
|
51 |
+
"strip_accents": null,
|
52 |
+
"tokenize_chinese_chars": true,
|
53 |
+
"tokenizer_class": "DistilBertTokenizer",
|
54 |
+
"unk_token": "[UNK]"
|
55 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9b3e5badaf067ce50f3688c122e61945c8f1e69f8baa32425948c1e7b310da10
|
3 |
+
size 4920
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|