Pith. sign in

REVIEW 4 major objections 5 minor 30 references

A method for classification of data with uncertainty using hypothesis testing

T0 review · 4 major / 5 minor · reviewed 2026-08-08 · deepseek-v4-flash

Pith's one-line read Two hypothesis tests let a binary classifier abstain on ambiguous and out-of-distribution inputs using only training-data thresholds.

desk verdict A simple, clearly described abstention rule for binary classification that plausibly flags class overlap but makes an unsupported claim about OOD detection. read the letter →

arxiv 2502.08582 v2 pith:MZSIFF2C submitted 2025-02-12 cs.LG

classification cs.LG
keywords hypothesistestinguncertaintyquantificationbinaryclassificationrejectoptionout-of-distributiondetectionempiricaldistributionquantilethresholdpneumoniachestX-ray
verification ladder T0 review T1 audit T2 compute T3 formal

The pith

A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.

The reading

This paper tries to establish that a binary classifier can flag both kinds of dangerous inputs—data that falls in the overlap between the two classes and data that lies outside the training distribution—using only two hypothesis tests on the classifier's own score. For each class, the distribution of that score is estimated from the training data, and a central acceptance interval is cut at the $\alpha$-quantile and $(1-\alpha)$-quantile. A new input whose score falls inside both intervals is treated as ambiguous; a score outside both intervals is treated as out-of-distribution; a score inside exactly one interval is assigned to that class. The significance level $\alpha$ is set by the user, so no threshold optimization, resampling, or model modification is required. If the method holds up, high-risk applications such as clinical image diagnosis gain an explicit "I don't know" option with a tunable trade-off between coverage and accuracy.

What carries the argument

The machine is a pair of simultaneous hypothesis tests on the scalar score $g(x)$—the SVM discriminant value or the logit feeding a sigmoid—whose test statistic is the score itself. Each test's acceptance region is the central interval from the $\alpha$-quantile to the $(1-\alpha)$-quantile of that class's empirical training-score histogram. The whole argument runs on the position of the score relative to the two intervals: inside both means "both classes plausible", outside both means "neither class plausible", and these two zones are exactly the method's two kinds of uncertainty.

What would settle it

Run the method on a genuine out-of-distribution dataset whose scores mostly fall inside the training score range, for example images from a new domain that the network still scores near typical training scores; whenever the method confidently assigns those inputs to one of the two classes instead of flagging them uncertain, the claim that it detects out-of-distribution data is contradicted.

Watch

Extended reading notes

Core claim

The central claim is that the uncertainty of a binary prediction can be read directly from the position of one scalar feature, $g(x)$, relative to two per-class empirical null distributions. For class $i$, the null hypothesis $H^i_0$ says $g(x)$ follows $F_i$, the class-$i$ distribution, and the acceptance region is the central interval between the empirical $\alpha$-quantile and $(1-\alpha)$-quantile of the training scores for that class. The decision rule is: accept both hypotheses, and the point is in the ambiguous overlap; reject both, and the point lies outside both training distributions and is reported as out-of-distribution; accept exactly one, and the point is classified as that class. The experiments reproduce the expected trade-off: a larger $\alpha$ narrows the acceptance intervals and, on the pneumonia dataset, raises coverage while lowering accuracy on the inputs that receive labels.

Load-bearing premise

The load-bearing premise is that each class's empirical training-score distribution is a valid null distribution for hypothesis tests on future inputs, so a new score that falls outside both central intervals can be read as out-of-distribution rather than as the result of calibration shift or a feature-distribution shift.

Editorial extensions

If this is right

  • Any classifier that emits a scalar score can gain an abstention rule by computing two per-class training quantiles; no resampling, architecture change, or threshold search is needed.
  • Raising $\alpha$ narrows the acceptance intervals; in the reported pneumonia experiment this raised coverage from 83.97% at $\alpha=1\%$ to 93.91% at $\alpha=5\%$ while lowering accuracy from 99.24% to 97.39%.
  • A rejection is interpretable: the method states whether the score was plausible for both classes, plausible for neither, or plausible for exactly one.
  • Applying the method to X-ray screening gives a clinical decision support in which the model declines to answer when the evidence is ambiguous, matching the "I don't know" behavior medical AI has been missing.

Reading between the lines

Editorial extensions of the paper, not claims the author makes directly.

  • The same recipe should transfer to any scalar confidence score, including softmax probability, distance to a decision boundary, or reconstruction error, so the abstention rule could be grafted onto models that were never designed for uncertainty.
  • Because the OOD verdict is defined purely by the training-score range, inputs that are out-of-distribution in reality but happen to score inside that range are invisible to the method; a dedicated OOD benchmark would reveal how large this blind spot is.
  • The empirical nulls ignore miscalibration; pairing the quantile intervals with calibration (for example temperature scaling of the logits) could make $\alpha$ an honest false-positive control rather than an empirical quantile statement.
  • A one-vs-rest extension of the two-test rule would give a multi-class abstention rule with the same "inside everything / outside everything" logic, but the paper only demonstrates the binary case.
Share X Bluesky LinkedIn Reddit HN

Signed reviews

No signed human review yet.

Editorial analysis

A structured set of objections, weighed in public.

Desk editor's note, referee report, and a circularity audit.

Referee Report

4 major / 5 minor

Summary. The paper proposes a post-hoc abstention rule for binary classification. For a model that outputs a scalar feature g(x) (an SVM decision value or a logit), the method computes the empirical distribution of g over each class in the training set and defines a central acceptance interval for each class from its quantiles at the chosen significance level α. A new input is classified as class 1 or class 2 if its test statistic falls inside exactly one acceptance interval; it is declared uncertain if it falls inside both intervals (treated as class-overlap ambiguity) or outside both intervals (treated as out-of-distribution). The method is illustrated on a two-spiral SVM benchmark and on a DenseNet-121 pneumonia chest X-ray classification task, with coverage and accuracy reported for several significance levels. The authors emphasize that the method requires no resampling, no model modification, and no threshold optimization.

Significance. If the method's claims were fully supported, it would be an attractive addition to the selective-classification toolbox: it is simple, transparent, requires only training-set feature quantiles, and its threshold is interpretable as a significance level. The visual histogram-based diagnostics in Figures 2 and 5 are genuinely useful, and applying a weighted loss to handle class imbalance in the X-ray experiment is a sensible methodological choice. However, the central out-of-distribution-detection claim currently rests on no held-out OOD evaluation, and the only independent experiment does not compare against existing abstention methods. As a result, the significance of the paper is conditional on substantial additional validation rather than established by the current evidence.

major comments (4)
  1. [Abstract; §4.4–4.5] The central claim that the method "is capable of detecting ... out-of-distribution data" is not tested anywhere in the manuscript. The chest X-ray experiment uses a test set containing only 390 pneumonia and 234 normal images, which are drawn from the same two classes as the training data. Table 1 reports coverage, accuracy, recall, precision, specificity, and F1-score on those in-distribution test images, but no out-of-distribution image set is used and no metric for OOD detection (for example, AUROC for the "outside both intervals" decision) is reported. An OOD test set or a synthetic distribution shift is required before this claim can be evaluated.
  2. [§3, Figs. 2–3] The spiral experiment does not provide independent evidence for OOD detection because all data in Figure 1 are used as training data and the visualization is performed on the same input grid. Type II uncertainty is defined, by construction, as the test statistic lying outside both per-class central intervals, i.e., in the intersection of the rejection regions I1 and I2; therefore the observation that the squares in Figures 3(b)–3(d) appear outside the training envelope is a restatement of the decision rule rather than a detection result. A held-out region of the input space, a separately generated spiral, or a separate OOD dataset would be needed to test the claim.
  3. [§2.1–2.3, Eq. (4)] The method relies on an unstated identifiability assumption: that OOD inputs map to feature values t outside the central intervals of both per-class empirical training distributions. The null distribution Fi is approximated by the empirical distribution of training feature values, but this only describes where in-distribution training features lie; it does not imply anything about where OOD features will land. Because the scalar logit g(x) is not a sufficient statistic for the in-distribution versus OOD distinction, there is no guarantee that OOD inputs will fall outside the training quantile intervals. The authors should either state and empirically justify this assumption with an explicit OOD experiment, or remove the OOD-detection claim from the abstract and title.
  4. [§4.4, Table 1] The experimental results are reported without baselines. A confidence-thresholded softmax classifier, an MC-dropout variance threshold, or a conformal-prediction abstention rule would provide a minimal comparison for the coverage–accuracy trade-off, and all reported metrics are single-run values with no error bars or seed information. As it stands, Table 1 shows that the method abstains on some fraction of the test set, but it does not show that this abstention is more effective than simply thresholding the model's own confidence.
minor comments (5)
  1. [Throughout] There are several typos that should be corrected: "modefication" in the Introduction, "Applicatioin" in the Section 4 heading, "croses" in the Figure 1 caption, and "the the acceptance regions" in the description of experiment (iii) in Section 3.
  2. [§4.5] The statement in the Discussion that "coverage does not necessarily decrease as the significance level increases" is confusing because increasing α shrinks both central intervals, which affects the two uncertainty types in opposite directions; the authors should explain which effect dominates in the X-ray data.
  3. [§2.3] Equation (4) writes the empirical distribution using a Dirac delta, but the text later refers to "the interval between the 2.5% and 97.5% points"; it would be clearer to define the empirical CDF as a step function and then define the quantile interval explicitly.
  4. [References] There are duplicate entries for Arulananth et al. (2024), and the Hinton and van Camp reference is missing page numbers; these should be cleaned up.
  5. [§4.2/4.4] No information is given about the number of training runs or random seeds, and no code or data availability statement is provided, which limits reproducibility.

Circularity Check

2 steps flagged · score 6.0 of 10

OOD and ambiguity 'detection' reduces to the quantile-interval definition; no independent OOD test is performed.

  1. self definitional [Section 2.1, Section 2.3 (Eq. 4), abstract]
    "The two classes are deemed uncertain if both types of hypothesis testing can be rejected, i.e., if the value of the test statistic is an element of I1 and I2. Additionally, if neither type of hypothesis testing can be rejected, i.e., if the value of the test statistic is an element of I c 1 and I c 2, then the two classes are considered uncertain as well."

    This defines the two uncertainty classes purely by membership in the acceptance/rejection regions of per-class tests, and Eq. (4) sets those regions from the empirical training feature histograms. The abstract then claims the method 'is capable of detecting ... out-of-distribution data,' i.e., it predicts OOD by checking t ∈ I1 ∩ I2, the very condition used to define OOD. The X-ray experiment has no OOD test set, and the spiral experiment uses all data as training, so nothing falsifies the defining equivalence. The OOD claim is a restatement of the definition plus an unstated assumption that OOD inputs map outside the training quantile intervals.

  2. self definitional [Section 3 (spiral benchmark, Figs. 2-3)]
    "The purpose of this experiment is to visualize class regions. Therefore, all the data in Figure 1 are used as training data. ... A comparison of these results reveals that the proposed method effectively distinguishes between data while preserving the classification of data whose basis is ambiguous."

    Ambiguity is not measured against an external label; type I uncertainty is defined in Section 2.1 as the feature lying in both acceptance regions (the central quantile intervals of the two empirical training distributions). Marking the overlap region near the decision boundary as 'uncertain' therefore restates the construction. Because all data are training data, the figure cannot show that the method detects genuinely ambiguous inputs better than the definition already does.

full rationale

The paper's threshold rule is self-contained: thresholds are α and 1−α quantiles of per-class training feature histograms, and the X-ray experiment reports an internal coverage/accuracy tradeoff. That part is not circular. The circularity lies in the two headline capabilities. Section 2.1 defines type I uncertainty (ambiguity) as the feature lying in both central acceptance regions and type II uncertainty (OOD) as the feature lying outside both rejection regions; Section 2.3 makes these regions from the empirical training distributions (Eq. 4). The abstract then presents detection of ambiguous and OOD data as a property of the method. For ambiguity, the spiral 'benchmark' uses all data as training and simply colors the overlap of the two quantile intervals, which is the definition. For OOD, no OOD data are tested at all (the X-ray test set contains only pneumonia positive/negative), so the claim rests on the unstated assumption that OOD inputs map to feature values outside the training intervals. The observed X-ray metrics are real evidence for the familiar coverage-confidence tradeoff, but they do not test the OOD claim. One or two definitional reductions affect the central claims, so a score of 6 (partial circularity) is appropriate.

Assumptions & free parameters 3 free parameters · 3 assumptions · 0 invented entities

The method rests on treating training-logit histograms as true null distributions and on a decision rule that is asserted rather than derived. The only free parameter that the authors explicitly vary is α, but the SVM kernel parameter and DenseNet training details are unreported and also shape the entire pipeline. No new entities are introduced.

free parameters (3)
  • Significance level α = 1.0%, 2.5%, 5.0%
    Chosen by hand in Section 4.4; it directly determines the quantile thresholds and thus the coverage/accuracy tradeoff. The paper frames this as context-dependent rather than optimized, but it is still a free parameter.
  • SVM RBF kernel parameter γ
    Used in Section 3 but its value is not reported; it fully determines the training feature distribution and therefore all thresholds.
  • DenseNet training hyperparameters = learning rate 1e-3; epochs, batch size, seed unreported
    Training procedure affects g(x) and hence the empirical quantiles; unreported details make reproduction impossible.
assumptions (3)
  • domain assumption For each class, the feature values g(x) follow a fixed probability distribution F_i that can be approximated by the empirical distribution of training features (Eq. 4).
    Section 2.3; this is the foundation of the hypothesis tests. It ignores distribution shift, model miscalibration, and the fact that g(x) depends on the trained model.
  • ad hoc to paper A level-α central interval of the empirical distribution functions as a valid acceptance region for a hypothesis test on new data.
    Sections 2.1 and 4.4; the paper assumes the α-quantile interval has the usual hypothesis-test interpretation, but no proof of size or power is provided and the null distribution is itself estimated.
  • ad hoc to paper If a test score falls in both acceptance intervals or in both rejection regions, the correct decision is to abstain.
    Section 2.1; this decision rule is asserted, not derived from a loss function or error-cost model.

how reviews work

0 comments
Cite this review

Pith. "Pith review of A method for classification of data with uncertainty using hypothesis testing." pith.science (2026). https://pith.science/paper/MZSIFF2C

@misc{pith2026250208582,
  author       = {Pith},
  title        = {Pith review of: A method for classification of data with uncertainty using hypothesis testing},
  year         = {2026},
  howpublished = {\url{https://pith.science/paper/MZSIFF2C}},
  note         = {Machine review of arXiv:2502.08582}
}
abstract

Binary classification is a task that involves the classification of data into one of two distinct classes. It is widely utilized in various fields. However, conventional classifiers tend to make overconfident predictions for data that belong to overlapping regions of the two class distributions or for data outside the distributions (out-of-distribution data). Therefore, conventional classifiers should not be applied in high-risk fields where classification results can have significant consequences. In order to address this issue, it is necessary to quantify uncertainty and adopt decision-making approaches that take it into account. Many methods have been proposed for this purpose; however, implementing these methods often requires performing resampling, improving the structure or performance of models, and optimizing the thresholds of classifiers. We propose a new decision-making approach using two types of hypothesis testing. This method is capable of detecting ambiguous data that belong to the overlapping regions of two class distributions, as well as out-of-distribution data that are not included in the training data distribution. In addition, we quantify uncertainty using the empirical distribution of feature values derived from the training data obtained through the trained model. The classification threshold is determined by the $\alpha$-quantile and ($1-\alpha$)-quantile, where the significance level $\alpha$ is set according to each specific situation.

Discussion (0). Continue with ORCID to comment.

Reference graph

Works this paper leans on

30 extracted references · 14 canonical work pages

  1. [2]

    , Prakash , S.W

    barticle Arulananth , T. , Prakash , S.W. , Ayyasamy , R.K. , Kavitha , e.a. : Classification of paediatric pneumonia using modified densenet-121 deep-learning model . IEEE Access ( 2024 ) 10.1109/ACCESS.2024.3371151 barticle

  2. [3]

    , Wulandari , A

    bchapter Anggreainy , M.S. , Wulandari , A. , Illyasu , A.M. : Pneumonia detection using dense convolutional network (densenet) architecture . In: 2021 4th International Seminar on Research of Information Technology and Intelligent Systems (ISRITI) , pp. 556 -- 559 ( 2021 ). 10.1109/ISRITI54043.2021.9702803 bchapter

  3. [4]

    , Cornebise , J

    bchapter Blundell , C. , Cornebise , J. , Kavukcuoglu , K. , Wierstra , D. : Weight uncertainty in neural networks . In: Proceedings of the 32nd International Conference on International Conference on Machine Learning - Volume 37 . ICML'15 , pp. 1613 -- 1622 . JMLR.org , Lille, France ( 2015 ). 10.1145/. 1772690.1772758 bchapter

  4. [5]

    , De Stefano , C

    barticle Cordella , L.P. , De Stefano , C. , Tortorella , F. , Vento , M. : A method for improving classification reliability of multilayer perceptrons . IEEE Transactions on Neural Networks 6 ( 5 ), 1140 -- 1147 ( 1995 ) 10.1109/72.410358 barticle

  5. [6]

    : On optimum recognition error and reject tradeoff

    barticle Chow , C. : On optimum recognition error and reject tradeoff . IEEE Trans. Inf. Theor. 16 ( 1 ), 41 -- 46 ( 2006 ) 10.1109/TIT.1970.1054406 barticle

  6. [7]

    , Wiener , Y

    barticle El-Yaniv , R. , Wiener , Y. : On the foundations of noise-free selective classification . Journal of Machine Learning Research 11 ( 53 ), 1605 -- 1641 ( 2010 ) 10.5555/1756006.1859904 barticle

  7. [8]

    , Dasgupta , A

    bchapter Ghosh , S. , Dasgupta , A. , Swetapadma , A. : A study on support vector machine based linear and non-linear pattern classification . In: 2019 International Conference on Intelligent Sustainable Systems (ICISS) , pp. 24 -- 28 ( 2019 ). 10.1109/ISS1.2019.8908018 bchapter

  8. [9]

    , El-Yaniv , R

    botherref Geifman , Y. , El-Yaniv , R. : Selective classification for deep neural networks. ArXiv abs/1705.08500 (2017) 10.48550/arXiv.1705.08500 botherref

Show all 30 references
  1. [10]

    , El-Yaniv , R

    bchapter Geifman , Y. , El-Yaniv , R. : S elective N et: A deep neural network with an integrated reject option . In: Chaudhuri , K. , Salakhutdinov , R. (eds.) Proceedings of the 36th International Conference on Machine Learning . Proceedings of Machine Learning Research , vo...

  2. [11]

    , Ghahramani , Z

    barticle Gal , Y. , Ghahramani , Z. : Dropout as a bayesian approximation . arXiv preprint arXiv:1506.02157 ( 2015 ) 10.48550/arXiv.1506.02142 barticle

  3. [12]

    , Ghahramani , Z

    bchapter Gal , Y. , Ghahramani , Z. : Dropout as a bayesian approximation: Representing model uncertainty in deep learning . In: Balcan , M.F. , Weinberger , K.Q. (eds.) Proceedings of The 33rd International Conference on Machine Learning . Proceedings of Machine Learning Rese...

  4. [13]

    , Georgescu , B

    barticle Ghesu , F.C. , Georgescu , B. , Mansoor , A. , Yoo , Y. , Gibson , E. , Vishwanath , R. , Balachandran , A. , Balter , J.M. , Cao , Y. , Singh , R. , Singh , R. , Digumarthy , S.R. , Kalra , M.K. , Grbic , S. , Comaniciu , D. : Quantifying and leveraging predictive un...

  5. [14]

    , Tucker , A

    barticle Ghoshal , B. , Tucker , A. : Estimating uncertainty and interpretability in deep learning for coronavirus (covid-19) detection . arXiv preprint arXiv:2003.10769 ( 2020 ) 10.48550/arXiv.2003.10769 barticle

  6. [15]

    , Liu , Z

    bchapter Huang , G. , Liu , Z. , Van Der Maaten , L. , Weinberger , K.Q. : Densely connected convolutional networks . In: Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition , pp. 4700 -- 4708 ( 2017 ). 10.1109/CVPR.2017.243 bchapter

  7. [16]

    , Camp , D

    bchapter Hinton , G.E. , Camp , D. : Keeping the neural networks simple by minimizing the description length of the weights . In: Proceedings of the Sixth Annual Conference on Computational Learning Theory . COLT '93 , pp. 5 -- 13 . Association for Computing Machinery , New Yo...

  8. [17]

    , Anitha , J

    bchapter Joseph , H. , Anitha , J. : Enhanced pneumonia detection through advanced ai-driven hybrid models: A comparative study of deep learning architectures . In: 2024 1st International Conference on Trends in Engineering Systems and Technologies (ICTEST) , pp. 01 -- 05 ( 20...

  9. [18]

    , Allken , V

    barticle Leibig , C. , Allken , V. , Ayhan , M.S. , Berens , P. , Wahl , S. : Leveraging uncertainty information from deep neural networks for disease detection . Scientific reports 7 ( 1 ), 1 -- 14 ( 2017 ) 10.1038/s41598-017-17876-z barticle

  10. [19]

    , Ihler , S

    botherref Laves , M.-H. , Ihler , S. , Ortmaier , T. : Uncertainty Quantification in Computer-Aided Diagnosis: Make Your Model say I don t know for Ambiguous Cases (2019). https://openreview.net/forum?id=rJevPsX854 botherref

  11. [20]

    : Chest X-Ray Images (Pneumonia)

    botherref Mooney , P. : Chest X-Ray Images (Pneumonia). https://www.kaggle.com/datasets/paultimothymooney/chest-xray-pneumonia. Licensed under CC BY 4.0. Accessed: 2024-11-29 (2017) botherref

  12. [21]

    , Sai , B.C

    botherref M , S. , Sai , B.C. , Tinnaluri , Y. , Tella , T. : Accurate prediction of classifcation score using densenet for acute pneumonia. 2024 2nd International Conference on Intelligent Data Communication Technologies and Internet of Things (IDCIoT), 1293--1299 (2024) 10.1...

  13. [22]

    , Guleria , K

    barticle Sharma , S. , Guleria , K. : A deep learning based model for the detection of pneumonia from chest x-ray images using vgg-16 and neural networks . Procedia Computer Science 218 , 357 -- 366 ( 2023 ) 10.1016/j.procs.2023.01.018 . International Conference on Machine Lea...

  14. [23]

    : Improving predictive inference under covariate shift by weighting the log-likelihood function

    barticle Shimodaira , H. : Improving predictive inference under covariate shift by weighting the log-likelihood function . Journal of Statistical Planning and Inference 90 ( 2 ), 227 -- 244 ( 2000 ) 10.1016/S0378-3758(00)00115-4 barticle

  15. [24]

    , Hinton , G

    barticle Srivastava , N. , Hinton , G. , Krizhevsky , A. , Sutskever , I. , Salakhutdinov , R. : Dropout: A simple way to prevent neural networks from overfitting . Journal of Machine Learning Research 15 ( 56 ), 1929 -- 1958 ( 2014 ) 10.5555/2627435.2670313 barticle

  16. [25]

    , Jahmunah , V

    botherref Seoni , S. , Jahmunah , V. , Salvi , M. , Barua , P.D. , Molinari , F. , Acharya , U.R. : Application of uncertainty quantification to artificial intelligence in healthcare: A review of last decade (2013--2023). Computers in Biology and Medicine, 107441 (2023) 10.101...

  17. [26]

    , Krauledat , M

    barticle Sugiyama , M. , Krauledat , M. , M \"u ller , K.-R. : Covariate shift adaptation by importance weighted cross validation . Journal of Machine Learning Research 8 ( 35 ), 985 -- 1005 ( 2007 ) 10.5555/1314498.1390324 barticle

  18. [27]

    , Pathak , G

    bchapter Tyagi , K. , Pathak , G. , Nijhawan , R. , Mittal , A. : Detecting pneumonia using vision transformer and comparing with other techniques . In: 2021 5th International Conference on Electronics, Communication and Aerospace Technology (ICECA) , pp. 12 -- 16 ( 2021 ). 10...

  19. [28]

    : Statistical Learning Theory

    bbook Vapnik , V.N. : Statistical Learning Theory . Wiley-Interscience , New York ( 1998 ) bbook

  20. [29]

    , Chen , Z

    botherref Zou , K. , Chen , Z. , Yuan , X. , Shen , X. , Wang , M. , Fu , H. : A review of uncertainty estimation and its application in medical imaging. Meta-Radiology, 100003 (2023) 10.1016/j.metrad.2023.100003 botherref

  21. [30]

    , " * write output.state after.block = add.period write newline

    ENTRY address archive author booktitle chapter doi edition editor eid eprint howpublished institution journal key keywords month note number organization pages publisher school series title type url volume year archivePrefix primaryClass adsurl adsnote version label extra.labe...

  22. [31]

    write newline

    " write newline "" before.all 'output.state := FUNCTION add.period duplicate empty 'skip "." * add.blank if FUNCTION if.digit duplicate "0" = swap duplicate "1" = swap duplicate "2" = swap duplicate "3" = swap duplicate "4" = swap duplicate "5" = swap duplicate "6" = swap dupl...

Pith tools

Reviewed August 8, 2026 · model on record in the stance chip above.