📝 Article Type: Research Paper

Cross-Architecture Statistical Comparison of Machine Translation Output: SMT versus Six Large Language Models — Ziyan Wang, Yufan Duan, Youxi He (New Talent Academy, Beijing)

Keywords: SMT, LLM, Machine Translation, Mixed-effects Models,
Lexical Diversity, Stylometry

Introduction

Machine translation based on ML has become an indispensable part in
today’s world. In the past, translation systems were based on SMT, which
relies on no neural network infrastructure, generating translations
purely through approaches like parallel corpora, n-gram language models,
and beam-search decoding. Statistical machine translation and large
language models represent two fundamentally different approaches to the
translation task. SMT decomposes translation into discrete sub-problems
(word alignment, phrase extraction, and language model scoring), each
optimized independently (Koehn et al. 2007). Recently, however,
Transformer-driven systems become the mainstream, for they can capture
nuances and produce high-quality translation (Luong, Pham, and Manning
2015; Vaswani et al. 2017). LLMs learn a unified mapping from source to
target text through next-token prediction over billions of parameters
(Vaswani et al. 2017).

The question lies in this: how can we distinguish the subtle differences
between the texts from the two paradigms statistically? Despite this
divergence, existing comparisons have focused almost exclusively on BLEU
scores and human-rated adequacy, treating the output as a black-box
quality signal. Few studies examine whether these paradigms produce
different texts: differences in vocabulary choice, sentence structure,
or stylistic register that persist even when translations are judged
equally accurate. Such text-internal properties matter for downstream
applications: downstream models (e.g., information retrieval, authorship
attribution) respond to surface-level distributional shifts, and
translation consumers may respond differently to lexically sparse versus
diverse output regardless of semantic fidelity.

Past literatures that involved with stylometric studies focused on the
difference between LLM-generated text and human-written text
(Muñoz-Ortiz, Gómez-Rodrı́guez, and Vilares 2024; Reinhart et al. 2025).
Based on their methodology, we have conducted the first statistical
investigation focusing on the difference between texts generated by two
ML paradigms, where translated texts generated by traditional
phrase-based statistical machine translation (SMT) and six LLMs are the
subjects, including 833 translations (360 from SMT and 473 from LLMs).
The analysis has four layers: lexical diversity, sentence complexity,
sentiment polarity, and stylometric features. To eliminate possible
confounds, we use a 2×2×22 \times 2 \times 2 factorial design (architecture
×\times direction ×\times genre), employing mixed-effects models,
Kolmogorov–Smirnov tests, and SVM classification.

The SVM achieves 98%98\% accuracy, with lexical diversity (STTR Cohen’s
d=+2.83d = +2.83, SMT more diverse) as the largest divergence and sentence
length second (d=0.86d = -0.86, LLM outputs 2.6 ×\times longer on average).
Genre proves a strong mediating factor when source text identity is
controlled. Only lexical diversity remains robust (β=+0.27\beta = +0.27,
p<0.01p<0.01); sentence-length and sentiment differences stem from
translation direction. These results provide empirical evidence for
stylistic divergence between translation architectures.

The remainder of this paper is organized as follows.
Section 2 describes the experimental design,
translation systems, feature extraction, and statistical procedures.
Section 3 presents findings.
Section 4 interprets results and outlines
limitations. Section 5 concludes.

Methods

Experimental Design

We used a 2×2×22 \times 2 \times 2 factorial design with Architecture (SMT
vs. LLM), Direction (ZH\toEN vs. EN\toZH), and Genre (News
vs. Literature) as factors. A prospective power analysis for a two-sided
two-sample tt-test establishes the required sample size for detecting a
large effect (d=0.8d = 0.8):

n \geq \frac{2(z_{1-\alpha/2} + z_{1-\beta})^2}{d^2}, \label{eq:power}$$ where $\alpha = 0.05$, $\beta = 0.20$ (power $= 0.80$). With $z_{0.975} = 1.96$ and $z_{0.80} = 0.842$, Equation [eq:power] yields $n \geq 25$ per group. The actual corpus | Architecture | Models/Variants | ZH$\to$EN | EN$\to$ZH | Total | | |:-------------|----------------:|----------:|----------:|------:|----:| | SMT | 5 | 200 | 160 | 360 | | | LLM | 6 | 233 | 240 | 473 | | | Total | — | 433 | 400 | 833 | | Factorial design with sample sizes ### Source Texts A total of 80 source texts (20 per category) were selected: Chinese news articles sourced from public Xinhua publications, Chinese literary excerpts drawn from five or more authors including Lu Xun, Wang Xiaobo, and Yu Hua; English news articles from publicly available sources; and English literary passages comprising original short works and excerpts from Project Gutenberg. Text length ranged from 200 to 800 words. All texts were stored in UTF-8 encoding. ## Translation Systems ### SMT The SMT system was a custom Python phrase-based pipeline following the noisy-channel decomposition: $$P(\mathbf{e} \mid \mathbf{f}) \propto P(\mathbf{f} \mid \mathbf{e}) \cdot P(\mathbf{e}), \label{eq:noisy}$$ where $\mathbf{f}$ is the source sentence, $\mathbf{e}$ the target sentence, $P(\mathbf{f} \mid \mathbf{e})$ the translation model, and $P(\mathbf{e})$ the language model. Word alignment was performed using IBM Model 2 and HMM alignment via `fast_align` (Dyer, Chahuneau, and Smith 2013), followed by grow-diag-final-and (gdfa) symmetrization. Phrase pairs were extracted with four features (direct and inverse phrase translation probabilities, direct and inverse lexical weighting). Decoding employed a beam-search with future cost estimation and recombination, guided by a Kneser-Ney smoothed 3-gram language model (Kneser and Ney 1995). The modified Kneser-Ney interpolation is: $$\begin{gathered} P_{\text{KN}}(w_i \mid w_{i-2}^{i-1}) = \frac{\max(c(w_{i-2}^{i}) - D, 0)}{\sum_{w'} c(w_{i-2}^{i-1} w')} \\ + \gamma(w_{i-2}^{i-1}) \cdot P_{\text{KN}}(w_i \mid w_{i-1}), \label{eq:kn} \end{gathered}$$ where $D$ is a learned discount parameter and $\gamma$ ensures normalization. The system was trained on the WMT news-commentary v12 corpus ( 50,000 sentence pairs). The primary alignment variant (fast_align $+$ gdfa) yielded 65,909 phrase pairs. ### LLMs Six decoder-only LLMs were accessed via commercial APIs. DeepSeek V4 Pro and DeepSeek V4 Flash were served through the DeepSeek API; GLM-5.1, GLM-5, Kimi K2.6, and Qwen3.6-Plus through OpenCode Go. Temperature was set to $T = 0.0$, seed to 42, and reasoning was disabled where available. A uniform prompt template was used (Appendix 7). Qwen3.6-plus completed 73 of 80 source texts; the remaining 7 were Chinese-to-English literary translations lost to API timeouts. Table 2 lists specifications. | Model | Provider | Context | Reasoning | $n$ | |:------------------|:-------------|:-------:|----------:|----:| | deepseek-v4-pro | DeepSeek API | 1M | Disabled | 80 | | deepseek-v4-flash | DeepSeek API | 1M | Disabled | 80 | | glm-5.1 | OpenCode Go | 203K | Disabled | 80 | | glm-5 | OpenCode Go | 128K | Disabled | 80 | | kimi-k2.6 | OpenCode Go | 256K | N/A | 80 | | qwen3.6-plus | OpenCode Go | 260K | N/A | 73 | LLM model specifications ## Feature Extraction Nineteen features were extracted across four dimensions (Table 3). **Lexical diversity** was measured using STTR (standardized type–token ratio), MTLD, and HD-D, computed with Jieba for Chinese tokenization. STTR is defined as the mean type–token ratio across overlapping 100-word windows with 50-word stride: $$\text{STTR} = \frac{1}{K} \sum_{k=1}^{K} \frac{|V_k|}{100}, \label{eq:sttr}$$ where $K$ is the number of windows and $|V_k|$ is the number of unique types in window $k$. Texts shorter than 100 words fall back to global TTR. **Sentence complexity** was captured by the mean, standard deviation, skewness, and kurtosis of sentence length, with sentence boundaries detected by regex. **Sentiment** was assessed using VADER (Hutto and Gilbert 2014) for English output and a custom keyword-based polarity lexicon (15 positive and 15 negative words per language) for Chinese output. The polarity score for each text is: $$\text{Pol} = \frac{N_{\text{pos}} - N_{\text{neg}}}{N_{\text{total}}} \in [-1, +1]. \label{eq:polarity}$$ **Stylometry** included character-type distribution entropy and function-word ratios (approximately 150 words for English, 100 for Chinese). Character-type distribution entropy measures diversity across four character categories (alphabetic $\alpha$, punctuation $\sigma$, digit $\delta$, other $\omega$): $$H(\mathbf{p}) = -\sum_{i \in \{\alpha,\sigma,\delta,\omega\}} p_i \ln p_i, \label{eq:entropy}$$ where $\mathbf{p} = (p_\alpha, p_\sigma, p_\delta, p_\omega)$ is the probability vector of character types. =10em | Dimension | Metrics | Tool | |:--------------------|:--------------------------------------------------------------|:---------------------------------------------------------------| | Lexical Diversity | STTR, MTLD, HD-D | Python, Jieba (Chinese tokenization) | | Sentence Complexity | Mean, SD, skewness, kurtosis of sent. len. | Regex-based sentence segmentation | | Sentiment | Polarity | VADER (Hutto and Gilbert 2014) (EN), keyword lexicon (ZH) | | Stylometry | Char.-type entropy, func. word ratio, alpha/punct/digit ratio | Custom word lists ($\sim$150 EN, $\sim$100 ZH) | Feature extraction summary ## Statistical Methods #### Mixed-effects model. The primary analysis used linear mixed-effects models with restricted maximum likelihood estimation via `statsmodels`. For each dependent variable, the model includes a random intercept for source text identity to account for the paired design: $$Y_{ij} = \beta_0 + \beta_1 S_{ij} + \beta_2 D_{ij} + \beta_3 G_{ij} + \beta_4 (S{:}D)_{ij} + \beta_5 (S{:}G)_{ij} + \beta_6 (D{:}G)_{ij} + \beta_7 (S{:}D{:}G)_{ij} + u_j + \varepsilon_{ij}, \label{eq:mixed}$$ where $S_{ij}$ is the SMT indicator, $D_{ij}$ the direction, $G_{ij}$ the genre, $S{:}D$ etc. denote interactions, $u_j \sim \mathcal{N}(0, \sigma_u^2)$ is the source-text random intercept, and $\varepsilon_{ij} \sim \mathcal{N}(0, \sigma^2)$ the residual. The primary test is $\beta_1$ (architecture main effect). #### Kolmogorov–Smirnov test. Distributional differences in sentence length between architectures are assessed at the text-pair level using the two-sample KS statistic: $$D = \sup_x |F_{\text{SMT}}(x) - F_{\text{LLM}}(x)|. \label{eq:ks}

Effect size.

All pairwise comparisons are reported with Cohen’s dd, using the pooled
standard deviation:

d = \frac{\mu_{\text{SMT}} - \mu_{\text{LLM}}}{s_p}, \qquad s_p = \sqrt{\frac{(n_1-1)s_1^2 + (n_2-1)s_2^2}{n_1 + n_2 - 2}}. \label{eq:cohensd}

SVM classification.

As multivariate convergent validation, a linear SVM with C=1.0C = 1.0 and
balanced class weights classifies architecture from the full feature
vector: $$\hat{y} = \operatorname{sign}(\mathbf{w}^\top \mathbf{x} + b),
\label{eq:svm}$$ with GroupKFold (K=5K = 5, groups == source text) to
prevent data leakage. Features are standardized to zz-scores within
each fold.

Multiplicity correction.

All pp-values across hypothesis tests are adjusted using the
Holm–Bonferroni procedure (Holm 1979), which controls the family-wise
error rate at α=0.05\alpha = 0.05: $$p_{(i)} \leq \frac{\alpha}{k - i + 1},
\label{eq:holm}$$ where p(1)p(k)p_{(1)} \leq \cdots \leq p_{(k)} are the
sorted pp-values and k=4k = 4 tests per family.

Results

Descriptive Statistics

Table 4 reports descriptive statistics.
Lexical diversity (STTR) showed the largest architecture effect: SMT
translations (mean = 0.952) exceeded LLM translations (mean = 0.745),
Cohen’s d=+2.83d{=}+2.83, Kolmogorov–Smirnov D=0.918D{=}0.918: near-complete
distributional separation. Mean sentence length produced a moderate
effect (d=0.86d{=}-0.86, SMT 3.53 vs. LLM 9.33 words per sentence).
Sentiment polarity shifted positive in LLM translations (d=0.46d{=}-0.46).
POS tag entropy and function word ratio showed negligible effects
(d=0.02d{=}-0.02, d=0.29d{=}-0.29).

By direction, the STTR effect remained large for ZH \to EN
(d=+1.88d{=}+1.88) but was inflated in EN \to ZH primarily due to a
segmentation artifact: Jieba tokenization of SMT Chinese output produced
single-token “sentences” (mean length \approx 1.0), driving SMT STTR
to near ceiling (0.983). Sentiment polarity and function word ratio
registered 0.000 for both architectures in the EN \to ZH condition:
the English-trained sentiment model and English function word list
produced null outputs on Chinese text. These metrics were excluded from
EN \to ZH analyses in subsequent tests. The ZH \to EN-only STTR
effect (d=+1.88d{=}+1.88) showed the architecture difference persisted
without this measurement confound.

ZH\toEN EN\toZH
2-3 (lr)4-5 (lr)6-7 Metric SMT LLM SMT LLM dd KS DD
STTR 0.928 0.763 0.983 0.727 +2.83+2.83 0.918
Mean sentence length 5.56 17.90 1.00 1.01 0.86-0.86 0.490
Sentiment polarity 0.127 0.597 0.000 0.000 0.46-0.46 0.387
POS entropy 0.589 0.582 0.304 0.354 0.02-0.02 0.233
Function word ratio 0.178 0.291 0.000 0.000 0.29-0.29 0.333^\dagger
Alphabetic ratio 0.784 0.807 0.903 0.897 0.19-0.19 0.211

Descriptive statistics and effect sizes: SMT vs. LLM

^\dagger: EN\toZH sentiment and function word ratio are zero for
both architectures, a measurement artifact from sentiment model and
function word list operating on Chinese output. These metrics are
excluded from EN\toZH comparisons.

Table 5 breaks down effect sizes by
genre. The STTR architecture effect was larger in news (d=+11.16d{=}+11.16)
than in literature (d=+1.91d{=}+1.91), driven by near-ceiling SMT performance
on news texts (SMT mean STTR = 0.997). Sentiment polarity likewise
showed a genre asymmetry: news d=0.92d{=}-0.92 versus literature
d=0.12d{=}-0.12, a ratio of 7.7:1. Mean sentence length effects were more
consistent across genres (dnews/dlit=1.19|d_{\text{news}}|/|d_{\text{lit}}|{=}1.19),
length differences between architectures operate independently of text
domain. POS entropy showed a small genre reversal: negative in news
(d=0.26d{=}-0.26), slightly positive in literature (d=+0.14d{=}+0.14); the
architecture effect on syntactic diversity, while small, may interact
with genre characteristics.

| Metric | News dd | Literature dd | dnews/dlit|d_{\text{news}}| / |d_{\text{lit}}| |
|:---------------------|:--------:|:--------------:|:--------------------------------------:|
| STTR | +11.16+11.16 | +1.91+1.91 | 5.84 |
| Mean sentence length | 0.94-0.94 | 0.78-0.78 | 1.19 |
| Sentiment polarity | 0.92-0.92 | 0.12-0.12 | 7.71 |
| POS entropy | 0.26-0.26 | +0.14+0.14 | 1.83 |
| Function word ratio | 0.54-0.54 | 0.09-0.09 | 5.83 |

Genre-stratified effect sizes

Hypothesis Testing

Table 6 summarizes the four hypotheses
with Holm-corrected tests. H1, that LLM translations have lower lexical
diversity than SMT, was supported: Cohen’s d=+2.83d{=}+2.83, KS D=0.918D{=}0.918,
and the mixed-effects model showed robustness
(βSMT=+0.2716\beta_{\text{SMT}}{=}+0.2716, p<0.001p{<}0.001). H2 predicted longer
sentences in LLM output; the univariate effect was moderate
(d=0.86d{=}-0.86, KS D=0.490D{=}0.490) but the mixed-model coefficient was
negligible (β=0.0009\beta{=}-0.0009, p=0.996p{=}0.996); the apparent length
difference is driven by source-text identity, not architecture. H3, that
LLM translations express more positive sentiment, showed a moderate
univariate effect (d=0.46d{=}-0.46) that vanishes in the EN \to ZH
direction (d=0.00d{=}0.00). H4 predicted lower POS tag entropy in LLM
output; the effect was small (d=0.02d{=}-0.02, KS D=0.233D{=}0.233) and reached
significance only through sample size. Only H1 was both statistically
and practically large.

Metric Cohen’s dd KS DD Robust?
H1 STTR (Lexical Diversity) +2.83+2.83 0.918
H2 Mean Sentence Length 0.86-0.86 0.490 ^\dagger
H3 Sentiment Polarity 0.46-0.46 0.387 ^\ddagger
H4 POS Tag Entropy 0.02-0.02 0.233

Hypothesis test results (Holm-corrected)

\dagger: Large univariate effect, but mixed-model coefficient
β=0.0009\beta{=}-0.0009 (p=0.996p{=}0.996). H2 is not robust despite
significant KS test.
\ddagger: Effect vanishes (d=0d{=}0) in EN\toZH direction.

Mixed-effects Model Estimates

Table 7 reports mixed-effects model
coefficients for the architecture fixed effect, controlling source text
identity as a random intercept. Only STTR produced a substantial
coefficient: βSMT=+0.2716\beta_{\text{SMT}}{=}+0.2716 (p<0.001p{<}0.001). Mean sentence
length, sentiment polarity, and function word ratio each yielded
coefficients near zero (β0.0009|\beta|{\leq}0.0009, p0.996p{\geq}0.996): their
apparent univariate effects are absorbed by source-text-level variation.
POS entropy reached statistical significance (β=0.040\beta{=}-0.040,
p=0.009p{=}0.009) but the raw effect size (d=0.02d{=}-0.02) is negligible. STTR
is the sole metric that consistently differentiates SMT from LLM
translations when source text identity is modelled.

Metric β\beta (SMT) pp Significant?
STTR +0.2716+0.2716 <0.001<0.001 Yes
Mean sentence len. 0.0009-0.0009 0.9960.996 No
Sentiment polarity 0\sim0 1.01.0 No
POS entropy 0.040-0.040 0.0090.009 Yes^\ast
Function word ratio 0\sim0 1.01.0 No

Mixed-effects model: architecture main effect (pooled, N=833N{=}833)

^\ast: Statistically significant but effect size negligible (raw
d=0.02d=-0.02).

SVM Classification

We trained a linear SVM with GroupKFold cross-validation (K=5K{=}5,
grouped by source text) on standardized features.
Figure 1 shows the confusion matrix;
Figure 2 plots feature coefficients. The
classifier achieved 97.96% accuracy (±1.35%\pm 1.35\%), F1 98.25%
(±1.14%\pm 1.14\%), and MCC 0.959 (±0.027\pm 0.027). The normalized feature
weight vector from the linear decision boundary reveals the
discriminative contribution of each dimension:

\mathbf{w} = (-2.18_{\text{STTR}}, +1.89_{\text{Len}}, -0.07_{\text{Pol}}, -0.80_{\text{Ent}}, -1.22_{\text{FW}}). \label{eq:svm-weights}$$ STTR carried the largest negative weight ($-2.18$, SMT), followed by mean sentence length ($+1.89$, LLM). Function word ratio ($-1.22$) and POS entropy ($-0.80$) contributed moderately; sentiment polarity was negligible ($-0.07$). Mean sentence length’s prominence in the SVM (weight $+1.89$) contrasts with its null mixed-model coefficient ($\beta{=}-0.0009$, $p{=}0.996$). The SVM exploited sentence length patterns tied to specific source texts, a signal absorbed by the random intercept in the mixed model. The classifier’s performance thus partly reflects source-level regularities, not pure architecture properties.

SVM confusion matrix: SMT vs. LLM classification
SVM feature weights. Negative SMT; positive LLM.
## Inter-Model Comparison Table 8 compares the six individual LLMs against the SMT mean. Within-group variation among the LLMs was much smaller than the SMT–LLM gap. STTR ranged from 0.737 (glm-5) to 0.753 (qwen3.6-plus), a spread of 0.016, 8% of the architecture gap ($+0.21$). Mean sentence length varied from 8.6 to 9.7 words across LLMs (SMT mean: 3.5). Sentiment polarity and POS entropy showed similarly narrow ranges (0.238–0.359 and 0.453–0.474). Qwen3.6-plus, despite the highest STTR and shortest mean sentence length among LLMs, remained within the LLM distribution; no individual model approached SMT-level lexical characteristics. The SMT–LLM distinction is an architecture-level phenomenon, not an artifact of model selection. | Model | STTR | Sent. len | Polarity | POS ent. | |:------------------|:---------:|:---------:|:---------:|:---------:| | deepseek-v4-flash | 0.746 | 9.3 | 0.265 | 0.474 | | deepseek-v4-pro | 0.745 | 9.4 | 0.294 | 0.471 | | glm-5.1 | 0.739 | 9.6 | 0.284 | 0.467 | | glm-5 | 0.737 | 9.7 | 0.319 | 0.466 | | kimi-k2.6 | 0.748 | 9.4 | 0.359 | 0.466 | | qwen3.6-plus$^*$ | 0.753 | 8.6 | 0.238 | 0.453 | | **LLM mean** | **0.745** | **9.3** | **0.294** | **0.466** | | **SMT mean** | **0.952** | **3.5** | **0.071** | **0.462** | Comparison of six LLM models (means) $^*$: $n=73$ (7 missing ZH$\to$EN literary texts). SMT numbers: overall means across all 5 alignment variants ($N{=}360$). # Discussion ## Summary of Findings SMT and LLM translations differ systematically. An SVM classifier separates the two architectures at 98% accuracy. STTR yields the largest Cohen’s $d$ ($+2.83$), survives mixed-effects modeling with source text identity as a random intercept ($\beta=+0.27$, $p<0.001$), and dominates SVM feature weights ($-2.18$). Sentence length and sentiment are fragile: their architecture effects vanish once source text identity is controlled. Sentence length yields $\beta=-0.0009$ ($p=0.996$); sentiment drops to $d=0$ in the EN$\to$ZH subset. ## Interpretation ### Why SMT Produces More Diverse Vocabulary SMT relies on phrase-table recombination (Koehn, Och, and Marcu 2003): multiple valid phrase segmentations of the same source sentence compete during decoding, producing variation in output tokenization and higher type–token diversity. LLMs at $T=0$ converge to the single highest-probability decoding path: conservative lexical choice, lower STTR. The effect peaks in news (within-genre $d=+11.16$). SMT phrase tables cover news vocabulary broadly with little out-of-vocabulary penalty; the same penalty degrades performance on literary domains. The architecture realizes its full diversity advantage when source text is drawn from a regularized register. ### Why LLM Outputs Are Longer SMT decoders apply an explicit word penalty and n-gram language model constraints, biasing toward shorter output. LLMs lack these constraints. The asymmetry is magnified in ZH$\to$EN: SMT outputs average 5.56 words per sentence vs. 17.90 for LLMs (Table 4). Character-dense Chinese source text expands into English; SMT’s length penalty suppresses this expansion, LLMs permit it. ### Why Architecture Effects Are Fragile for Sentiment and Stylometry The sentiment architecture effect ($d=-0.46$ globally) does not generalize across directions or genres. It is absent in EN$\to$ZH ($d=0$) and concentrated in news ($d=-0.92$). RLHF-induced positivity bias likely interacts with the factual, event-oriented lexicon of news but does not extend to literary or cross-lingual contexts. POS entropy yields $d=-0.02$; statistical significance is an artifact of sample size ($N=833$), not a meaningful distributional difference. SVM assigns sentence length a high weight ($+1.89$), yet the mixed model finds no architecture effect on length ($p=0.996$). Sentence length captures source-level properties correlated with architecture; the classifier exploits this correlation without genuine discriminative power. ### The Chinese Segmentation Artifact EN$\to$ZH SMT output, tokenized by Jieba, frequently yields single-token “sentences” (mean length near 1.0), inflating STTR to a near-ceiling 0.983. Sentiment and function word ratio produce 0.000 for both architectures in the EN$\to$ZH direction: the sentiment model and function word list are designed for English, not Chinese. These metrics are excluded from EN$\to$ZH analyses. The ZH$\to$EN-only STTR effect ($d=+1.88$) shows the lexical diversity finding is not a segmentation artifact. ## Limitations Several limitations apply. (1) $T=0.0$ is not strictly deterministic: GPU floating-point non-determinism introduces minor variation across identical runs, though negligible relative to the observed architecture differences. (2) A single SMT implementation (custom Python pipeline) is used; results may not generalize to production systems. (3) No human reference translations are available, precluding quality or naturalness comparisons. (4) English source texts are synthetically generated. (5) Qwen3.6-plus is incomplete (73 of 80 texts, all 7 missing in CN literary ZH$\to$EN). (6) EN$\to$ZH sentiment and function word ratio are measurement artifacts (uniformly 0.000) and excluded from corresponding analyses. ## Implications and Future Work STTR provides a lightweight architecture-detection diagnostic requiring no labeled training data; it could be applied at scale to large translation corpora. Future work should validate at sentence level, explore non-zero temperature variance (where LLM output diversity may increase), test encoder-decoder NMT architectures, and incorporate human reference translations to anchor the magnitude of architecture-driven differences against a quality baseline. # Conclusion SMT and LLM translations differ systematically across quantitative dimensions. STTR is the most robust differentiator: $d=+2.83$, surviving mixed-effects controls ($\beta=+0.27$, $p<0.001$) and dominating SVM discriminative performance (98% accuracy). Sentence length and sentiment effects are weaker; they largely reflect source-level confounding rather than architecture properties. Text analysis pipelines should not treat translations from different architectures as homogeneous. Lexical diversity metrics depend on the underlying translation architecture. Studies that aggregate SMT and LLM translations without accounting for this difference risk conflating architecture-driven variation with genuine source-text or language effects. # Declaration of AI Use DeepSeek V4 Pro and DeepSeek V4 Flash are applied to assist the following tasks: SMT system implementation, batch translation scripting, and statistical analysis automation. Apart from that, six LLMs are employed as experimental subjects. No AI is used during the writing process, decisions, or data analysis. The human authors take full responsibility for all content. # Author Contributions Ziyan Wang: experimental design, SMT system implementation and training, batch translation pipeline, statistical analysis, manuscript writing and revision. Yufan Duan: literature review, presentation, manuscript drafting. Youxi He: data collection, presentation, manuscript drafting. # Acknowledgments We thank the course instructors of the Statistics Group Project for their guidance. OpenCode Go and DeepSeek API access supported the experimental infrastructure. The project team acknowledges the computing resources and collaborative tools that made this work possible. # Source Text Inventory The corpus comprises 80 source texts across four categories: Chinese news (20 texts, sourced from Xinhua, 2023–2025), Chinese literary prose (20 texts, drawn from five or more authors including Yu Hua, Mo Yan, Su Tong, Wang Xiaobo, Zhang Ailing, and Lu Xun), English news (20 texts, publicly available), and English literary passages (20 texts, original compositions). Texts range from 200 to 800 words. A full inventory with per-text word counts is maintained in the project repository. # Prompt Template The following system prompt was used for all LLM translations: “You are a professional translator. Translate accurately and naturally, preserving meaning, tone, and style.” The user prompt template was: “Translate the following {genre} text from {source_lang} to {target_lang}. Output only the translation. Preserve paragraph breaks.” The source text was appended to this template. All models were run with temperature $T=0.0$, seed 42, and reasoning disabled. ## References Dyer, Chris, Victor Chahuneau, and Noah A. Smith. 2013. “A Simple, Fast, and Effective Reparameterization of IBM Model 2.” In *Proceedings of the 2013 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies (NAACL-HLT 2013)*, 644–48. Holm, Sture. 1979. “A Simple Sequentially Rejective Multiple Test Procedure.” *Scandinavian Journal of Statistics* 6 (2): 65–70. Hutto, Clayton J., and Eric Gilbert. 2014. “VADER: A Parsimonious Rule-Based Model for Sentiment Analysis of Social Media Text.” In *Proceedings of the Eighth International AAAI Conference on Weblogs and Social Media (ICWSM 2014)*. Kneser, Reinhard, and Hermann Ney. 1995. “Improved Backing-Off for M-Gram Language Modeling.” In *Proceedings of the IEEE International Conference on Acoustics, Speech, and Signal Processing (ICASSP 1995)*, 181–84. Koehn, Philipp, Hieu Hoang, Alexandra Birch, Chris Callison-Burch, Marcello Federico, Nicola Bertoldi, Brooke Cowan, et al. 2007. “Moses: Open Source Toolkit for Statistical Machine Translation.” In *Proceedings of the 45th Annual Meeting of the Association for Computational Linguistics (ACL 2007) Companion Volume: Demo and Poster Sessions*, 177–80. Koehn, Philipp, Franz Josef Och, and Daniel Marcu. 2003. “Statistical Phrase-Based Translation.” In *Proceedings of the 2003 Human Language Technology Conference of the North American Chapter of the Association for Computational Linguistics (HLT-NAACL 2003)*, 127–33. Luong, Minh-Thang, Hieu Pham, and Christopher D. Manning. 2015. “Effective Approaches to Attention-Based Neural Machine Translation.” In *Proceedings of the 2015 Conference on Empirical Methods in Natural Language Processing (EMNLP 2015)*, 1412–21. Muñoz-Ortiz, Alberto, Carlos Gómez-Rodrı́guez, and David Vilares. 2024. “Contrasting Linguistic Patterns in Human and LLM-Generated News Text.” *Artificial Intelligence Review* 57 (10): 265. . Reinhart, Alex, Ben Markey, Michael Laudenbach, Kachatad Pantusen, Ronald Yurko, Gordon Weinberg, and David West Brown. 2025. “Do LLMs Write Like Humans? Variation in Grammatical and Rhetorical Styles.” *Proceedings of the National Academy of Sciences* 122 (8): e2422455122. . Vaswani, Ashish, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Łukasz Kaiser, and Illia Polosukhin. 2017. “Attention Is All You Need.” In *Advances in Neural Information Processing Systems 30 (NeurIPS 2017)*, 5998–6008. [^1]: Email: `xieguaiwu@163.com` [^2]: Email: `Charlotteduan16@qq.com` [^3]: Email: `melodyy1002@outlook.com`