REVIEW 4 major objections 4 minor 43 references
SEDULity: A Proof-of-Learning Framework for Distributed and Secure Blockchains with Efficient Useful Work
T0 review · 4 major / 4 minor · reviewed 2026-08-03 · deepseek-v4-flash
Pith's one-line read SEDULity replaces the PoW nonce with a machine-learning training step, and claims anyone can verify a block by re-running that step.
desk verdict A coherent PoL protocol design whose central verification mechanism quietly assumes away the one thing that makes it impossible – bit-exact SGD reproducibility. read the letter →
The pith
A machine-rendered reading of the paper's core claim, the machinery that carries it, and where it could break.
The reading
What carries the argument
The central object is the useful work function f_U defined in equation (10), which wraps a τ-epoch SGD training step inside two hash evaluations: f_U = f_H(f_H(f_M^τ(W_{s-1}, σ_{φ_s}(D_tr))), f_H(B_{h-1})). The stage training f_M^τ is the hard-to-compute useful work; the hash-to-threshold check f_U < T_p is the easy-to-verify PoW-style condition. The seed φ_s = g(f_H(B_h), s) derived from the template block is what makes each miner's task unique and prevents model theft/reuse. Verifiability is carried by the equality check f_H(f_M^τ(W_{s-1}, σ_{φ_s}(D_tr))) = f_H(W_s), which any node can perform by re-running the training stage. The capture-the-flag flags embedded in the seed give verifiers
What would settle it
Run the same stochastic-gradient-descent stage twice on two different GPUs (or with different low-level library settings) and hash the resulting weights: if the hashes differ, the protocol's universal verification equation f_H(f_M^τ(W_{s-1}, σ_φ(D_tr))) = f_H(W_s) would reject an honestly trained block. This experiment can settle whether 'noise-resistant training reproduction' holds on commodity hardware.
Extended reading notes
Core claim
The paper's central discovery is a useful function f_U = f_H(f_H(f_M^τ(W_{s-1}, σ_{φ_s}(D_tr))), f_H(B_{h-1})) that substitutes for the PoW condition f_H(B_h) < T. In words: before a block is valid, the prover must train τ epochs of a machine-learning stage starting from previous weights and a shuffled dataset, then show that the hash of the new weights concatenated with the previous block hash is below the difficulty threshold T_p. The random seed for the epoch shuffle is derived from the template block, so the block content and the training computation are bound together; the prover cannot reuse a trained checkpoint at a different height, and an adversary who tampers with the ledger invali
Load-bearing premise
The whole scheme rests on the assumption that the same training step run twice produces exactly the same numbers; if hardware or library noise makes two honest miners compute slightly different model weights, their hashes will disagree and valid blocks will be rejected. The paper admits exact reproduction is currently impossible and simply assumes 'noise-resistant training reproduction'.
Editorial extensions
If this is right
- If SEDULity works as claimed, blockchain consensus can produce trained machine-learning models rather than only consuming electricity, so mining power becomes reusable for downstream ML tasks.
- A fork attack or history rewrite requires controlling a majority of total training power, the same security threshold as PoW, because every miner's training work contributes to consensus security.
- Model theft and checkpoint reuse are prevented without trusted hardware or a trusted platform, because the training seed is derived from the block hash and stage index.
- A small number of verified stages per task (α = O(1)) plus a modest penalty-to-reward ratio suffices to make full honesty the profit-maximizing strategy, per the paper's Theorem 1.
- The same block-derived-randomness trick extends to other useful computations that can be made order-dependent, such as matrix multiplication, provided the computation cost outweighs the communication cost.
Reading between the lines
- If the bit-reproducibility barrier is solved, this design could be adapted to train a single shared model across the network by making each block's training task a continuation of the previous block's weights; the paper instead assigns each miner a fresh task.
- The same block-derived-seed trick could be applied to other iterative computations with order-dependent intermediates, such as graph traversal or numerical solvers; whether the result remains genuinely 'useful' would need a concrete downstream use.
- The simulated 86.8% useful-work ratio at p = 0.00005 is a testable target: a real deployment could measure actual energy spent on productive training versus verification and redundant training, and compare against that parameter point.
- Because block validity is independent of task quality, a gap remains between 'the claimed epochs were trained' and 'the resulting model is useful'; closing that gap may require a performance or data-quality check on the final weights, which the paper leaves implicit.
Editorial analysis
A structured set of objections, weighed in public.
Referee Report
Summary. The manuscript proposes SEDULity, a Proof-of-Learning (PoL) consensus framework in which each miner is assigned a distinct ML training task and receives a block generation opportunity (BGO) after every τ training epochs. Block validity is governed by the useful function f_U = fH(fH(fM^τ(W_{s-1}, σ_φ_s(D_tr))), fH(B_{h-1})) < T_p, and block verification consists of re-running the corresponding training stage and comparing hashes. Task verification is delegated to a randomly appointed committee of verifiers, who use probabilistic verification; a capture-the-flag (CTF) protocol is added to incentivize honest verification. The authors claim that the framework is fully distributed, secure, efficient in terms of useful work, and that rational miners are incentivized to train honestly via a sufficient penalty condition. The paper also sketches an extension to matrix multiplication and presents MATLAB simulations of system dynamics.
Significance. The high-level idea is timely and potentially valuable: replacing competition-based PoL with per-stage block generation opportunities on distinct tasks would address redundant training and winner-take-all security issues in earlier PoL designs. Encoding block data into the training seed is a natural way to bind proofs to the chain and prevent model theft. The formal incentive condition (Theorem 1) and the useful-work metrics (UBGR, UWR) are useful contributions if the framework is sound. However, the central block- and task-verification mechanism depends on bit-exact reproducibility of stochastic gradient descent, which the paper's own footnote (Section 3.2, Footnote 1) concedes is currently impossible and then simply assumes away without a mechanism. Because this assumption is load-bearing, the main claim of a distributed, secure, and efficient PoL framework is not currently supported.
major comments (4)
- [Section 3.2 (Footnote 1) and Sections 4.3, 4.4] The verification of both blocks and task proofs reduces to the equality fH(fM^τ(W_{s-1}, σ_φ_s(D_tr))) = fH(W_s). This requires every honest miner's SGD execution to produce bit-identical weights from the same W_{s-1}, shuffled data, and seed. Section 3.2, Footnote 1 states that exact reproduction is impossible due to low-level library/hardware noise, citing [38], and simply "assumes noise-resistant training reproduction" without specifying any mechanism. Because a cryptographic hash has an avalanche effect, any floating-point or non-deterministic GPU difference changes the hash completely, so honest miners on different hardware/software stacks would produce different fH(W_s). This breaks both completeness (valid blocks rejected) and soundness (miners cannot agree on a valid block). This is not a minor implementation detail: it invalidates the core consensus mechanism as written. The sim
- [Section 5.1, last paragraph] The unstated security theorem of the paper is that "rewriting the history requires more than half of the total computational power." This is asserted without proof or a formal adversary model. In PoW, the statement follows from the independence of hash trials and a well-defined chain-growth process. Here, block generation opportunities are tied to ML training stages of arbitrary tasks: the probability of producing a block depends on task assignment, download times, stage duration τ, and the computational cost of fM, and these are not interchangeable with hash invocations. No theorem for chain growth, common prefix, liveness, or fork resolution is provided. The paper needs a formal security analysis of the longest-chain protocol under this new block generation process before the central security claim can be accepted.
- [Section 7, Theorem 1 and Lemma 1] The incentive-security result relies entirely on Lemma 1 imported from [27], which bounds the probability q(ρ) of a dishonest prover passing verification by (1−κ+κρ)^α. The manuscript does not verify that the assumptions of this lemma hold in the SEDULity protocol, where (i) some stages are publicly verified by all miners because they generated blocks, (ii) the CTF protocol changes the verifier's strategy to a two-attempt flag-search procedure, and (iii) verification is performed by a committee of gv verifiers rather than a single verifier. The statement after Eq. (42) that committee verification is "similar to just increasing α to gvα" is a heuristic, not a proof. Without a formal justification, the claim that rational miners are incentivized to train fully honestly is not established.
- [Section 8] The simulations do not train any ML model and do not execute the hash-based verification of Eq. (9). Block generation opportunities are "realized by coin tosses with success probability p" (Section 8), which models the lottery aspect but omits the actual useful function f_U, the training reproducibility assumption, and the cost of re-running fM^τ for verification. Consequently, the reported UBGR/UWR values and fork rates are derived from assumed timing parameters rather than from measurements of the proposed consensus mechanism. The simulations therefore cannot validate the feasibility of the central block/task verification procedure, nor can they compensate for the lack of a reproducibility mechanism.
minor comments (4)
- [Section 3.2, Footnote 1] Typo: "noise-resistant training reproduction is this paper" should read "in this paper."
- [Section 5.2] The phrase "if we were to give a single opportunity for each task (τ = S)" appears to be a notational slip: with a single stage, τ should be the total number of training epochs E, not the number of stages S.
- [Table 1] The last row, "Ours", reads "Above limitations are overcome and decentralized"; this should be rephrased grammatically, e.g., "Overcomes the above limitations and is decentralized."
- [General] Several references are to arXiv preprints (e.g., [27], [38]) that have since appeared at peer-reviewed venues; the authors may want to cite the published versions.
Circularity Check
No significant circularity; the incentive theorem imports an external lemma, and the main weakness is an admitted reproducibility assumption rather than a circular derivation.
full rationale
The derivation chain is not circular in the sense defined here. The core useful function f_U = fH(fH(f^τ_M(W_{s-1}, σ_φs(D_tr))), fH(B_{h-1})) is the protocol's definition (Section 4.3, Eq. 10), not a prediction obtained from fitted parameters; block validity is defined by fU < Tp and by the equality check fH(f^τ_M(...)) = fH(W_s). No fitted constant is later relabeled as an output. The incentive theorem (Section 7, Theorem 1) imports Lemma 1 from [27] (Zhao et al.), an external reference, and derives the sufficient penalty condition γ ≥ (1−κ)^α/(1−(1−κ)^α) algebraically from the honest-condition definition; it does not assume the desired conclusion. The only author self-citation is [15] in the related-work discussion (the importance of preventing solution theft), which is contextual and not load-bearing for the framework's security or incentive claims. The paper does contain an explicitly admitted load-bearing assumption in Footnote 1 (Section 3.2): exact SGD reproduction is impossible per [38], and the paper 'assumes noise-resistant training reproduction' without specifying a mechanism. This is a real completeness/soundness gap and a correctness risk, but it is not a circular reduction: the verification equality is conditional on an unproven assumption rather than being equivalent to its own output by construction. The simulations are parameter sweeps (p, α, γ) of a hand-built MATLAB model, not predictions forced by a fitted input. Overall circularity burden is low: one minor self-citation, no definitional or fitted-input circularity.
Assumptions & free parameters
free parameters (8)
- Block win probability p =
1e-4 baseline; 5e-5 gives peak UWR in Fig. 3
- Stage length τ =
4 epochs
- Number of verified stages α =
10 in baseline; 1,2,5,10 in Fig. 4
- Penalty-to-task-reward ratio γ =
0, 0.05, 0.1 in Fig. 4
- Task length E =
4000 epochs (jittered 0.9E-1.1E)
- Group size g and verifier count gv =
g=25, gv=5
- Latency cost model =
8 epochs download, 4 epochs weight transfer, 2-4 stages block verification
- CTF flag ratio ξ =
not specified
assumptions (7)
- standard math Hash functions are uniformly random, preimage-resistant, and avalanche-like (Section 3.1).
- ad hoc to paper ML training is deterministic: Ws is a unique function of Ws-1 and shuffled data (Eq. 3), and bit-exact reproduction across provers/verifiers is assumed (Footnote 1).
- domain assumption Longest-chain rule with first-seen tie-breaking yields eventual consensus (Section 3.1).
- domain assumption All miners have equal computing power; adversaries are unions of honest-size miners (Section 3.1).
- domain assumption All miners interrupt useful training to verify every block (Section 5.2).
- standard math The upper bound q(ρ) ≤ (1-κ+κρ)^α from [27, Appendix E.3] is valid for this protocol (Lemma 1).
- domain assumption Verifiers are rational but not colluding; CTF flags force honest verification with extra reward (Section 6).
invented entities (2)
-
Noise-resistant training reproduction
-
CTF random flags ω_s
Cite this review
Pith. "Pith review of SEDULity: A Proof-of-Learning Framework for Distributed and Secure Blockchains with Efficient Useful Work." pith.science (2026). https://pith.science/paper/K2ENGOV4
@misc{pith2026251213666,
author = {Pith},
title = {Pith review of: SEDULity: A Proof-of-Learning Framework for Distributed and Secure Blockchains with Efficient Useful Work},
year = {2026},
howpublished = {\url{https://pith.science/paper/K2ENGOV4}},
note = {Machine review of arXiv:2512.13666}
}
read the original abstract
The security and decentralization of Proof-of-Work (PoW) have been well-tested in existing blockchain systems. However, its tremendous energy waste has raised concerns about sustainability. Proof-of-Useful-Work (PoUW) aims to redirect the meaningless computation to meaningful tasks such as solving machine learning (ML) problems, giving rise to the branch of Proof-of-Learning (PoL). While previous studies have proposed various PoLs, they all, to some degree, suffer from security, decentralization, or efficiency issues. In this paper, we propose a PoL framework that trains ML models efficiently while maintaining blockchain security in a fully distributed manner. We name the framework SEDULity, which stands for a Secure, Efficient, Distributed, and Useful Learning-based blockchain system. Specifically, we encode the template block into the training process and design a useful function that is difficult to solve but relatively easy to verify, as a substitute for the PoW puzzle. We show that our framework is distributed, secure, and efficiently trains ML models. We further demonstrate that the proposed PoL framework can be extended to other types of useful work and design an incentive mechanism to incentivize task verification. We show theoretically that a rational miner is incentivized to train fully honestly with well-designed system parameters. Finally, we present simulation results to demonstrate the performance of our framework and validate our analysis.
Figures
Reference graph
Works this paper leans on
-
[27]
Proof-of - learning with incentive security ,
Z. Zhao, Z. Fang, X. Wang, X. Chen, and Y . Zhou, “Proof-of - learning with incentive security ,” arXiv preprint arXiv: 2404.09005 , Apr. 2024
arXiv 2024
-
[39]
A proof of useful work for artificial intelligence on the block chain,
A. Lihu, J. Du, I. Barjaktarevic, P . Gerzanics, and M. Ha rvilla, “A proof of useful work for artificial intelligence on the block chain,” arXiv preprint arXiv:2001.09244 , Jan. 2020
arXiv 2001
-
[38]
Proof-of-learning is currently more broken than you think,
C. Fang et al., “Proof-of-learning is currently more broken than you think,” in Proc. IEEE 8th IEEE Eur. Symp. Secur. Privacy (EuroSP’23), Delft, NL, Jul. 2023, pp. 797–816
2023
-
[1]
A survey on consensus mechanisms and mining strategy management in blockchain networks,
W. Wang et al. , “A survey on consensus mechanisms and mining strategy management in blockchain networks,” IEEE Access, vol. 7, pp. 22 328–22 370, Jan. 2019
2019
-
[2]
A survey of decentralizing applications via blockchain: The 5G and beyond perspective,
K. Y ue et al. , “A survey of decentralizing applications via blockchain: The 5G and beyond perspective,” IEEE Commun. Surv. T utorials, vol. 23, no. 4, pp. 2191–2217, Sep. 2021
2021
-
[3]
A survey of bloc kchain based systems: Scalability issues and solutions, applicati ons and future challenges,
T. A. Alghamdi, R. Khalid, and N. Javaid, “A survey of bloc kchain based systems: Scalability issues and solutions, applicati ons and future challenges,” IEEE Access , vol. 12, pp. 79 626–79 651, Jun. 2024
2024
-
[4]
Bitcoin: A peer-to-peer electronic cash sy stem,
S. Nakamoto, “Bitcoin: A peer-to-peer electronic cash sy stem,” T ech. Rep., Oct. 2008
2008
-
[5]
EPoW: Energy-effi cient proof-of-work,
S. Y u, Y . Qiao, J. Bo, F. Y ang, and S. Wang, “EPoW: Energy-effi cient proof-of-work,” IEEE T rans. Netw. Sci. Eng., vol. 11, no. 6, pp. 6285– 6297, Jun. 2024
2024
Show all 43 references
-
[6]
Long- and short-term prediction of bitcoin energy consumption,
A. Ghadertootoonchi, M. Bararzadeh, and M. Fani, “Long- and short-term prediction of bitcoin energy consumption,” in Proc. 8th Int. Conf. T echnol. Energy Management (ICTEM’23), Mazandaran, IR, Feb. 2023, pp. 1–5
2023
-
[7]
Primecoin: Cryptocurrency with prime number pr oof- of-work
S. King, “Primecoin: Cryptocurrency with prime number pr oof- of-work.” Jul. 2013. [Online]. Available: https://primec oin.io/ primecoin-paper.pdf
2013
-
[8]
Sustainable blockchain through proof of exerc ise,
A. Shoker, “Sustainable blockchain through proof of exerc ise,” in IEEE 16th Int. Symp. Netw. Comput. Appl. (NCA’17) , Cambridge, MA, USA, Oct. 2017, pp. 1–9
2017
-
[9]
Evolved PoW: Integrati ng the matrix computation in machine learning into blockchain min ing,
Y . Wei, Z. An, S. Leng, and K. Y ang, “Evolved PoW: Integrati ng the matrix computation in machine learning into blockchain min ing,” IEEE Internet Things J. , vol. 10, no. 8, pp. 6689 – 6702, Apr. 2023
2023
-
[10]
Proofs of us eful work from arbitrary matrix multiplication,
I. Komargodski, I. Schen, and O. Weinstein, “Proofs of us eful work from arbitrary matrix multiplication,” Cryptology ePrint Archive , Apr. 2025. [Online]. Available: https://eprint.iacr.org/2025/685
2025
-
[11]
Proofs of useful work,
M. Ball, A. Rosen, M. Sabin, and P . N. Vasudevan, “Proofs of useful work,” Cryptology ePrint Arch. , Mar. 2017. [Online]. Available: https://eprint.iacr.org/2017/203.pdf
2017
-
[12]
Proof-of-search: Combining blockchain co nsensus formation with solving optimization problems,
N. Shibata, “Proof-of-search: Combining blockchain co nsensus formation with solving optimization problems,” IEEE Access , vol. 7, pp. 172 994–173 006, Nov . 2019
2019
-
[13]
Ofelimos: Combinatorial optimization via proof-of-useful-work: A p rovably secure blockchain protocol,
M. Fitzi, A. Kiayias, G. Panagiotakos, and A. Russell, “ Ofelimos: Combinatorial optimization via proof-of-useful-work: A p rovably secure blockchain protocol,” in Proc. 42nd Annu. Int. Cryptology Conf. (CRYPTO’22) , Santa Barbara, US, Aug. 2022. [Online]. Available: https://d...
2022 doi
-
[14]
Proof-of-useful-work: Blockchain mining by solving real-life optimization problems,
M. Todorovi´ c et al. , “Proof-of-useful-work: Blockchain mining by solving real-life optimization problems,” Symmetry, vol. 14, no. 9, Sep. 2022. [Online]. Available: https://www.mdpi.co m/ 2073-8994/14/9/1831
2022
-
[15]
Optimizati on- based proof of useful work: Framework, modeling, and securi ty analysis,
W. Cao, X. Ling, J. Wang, X. Gao, and Z. Ding, “Optimizati on- based proof of useful work: Framework, modeling, and securi ty analysis,” arXiv preprint ArXiv:2405.19027 , Mar. 2025
2025 arXiv
-
[16]
Blockcha in and machine learning for communications and networking system s,
Y . Liu, F. R. Y u, X. Li, H. Ji, and V . C. M. Leung, “Blockcha in and machine learning for communications and networking system s,” IEEE Commun. Surv. T utorials , vol. 22, no. 2, pp. 1392–1431, Feb. 2020
2020
-
[17]
Survey on blockchain-enhanced ma- chine learning,
O. Ural and K. Y oshigoe, “Survey on blockchain-enhanced ma- chine learning,” IEEE Access , vol. 11, pp. 145 331–145 362, Dec. 2023
2023
-
[18]
Secure and effici ent federated learning through layering and sharding blockcha in,
S. Y uan, B. Cao, Y . Sun, Z. Wan, and M. Peng, “Secure and effici ent federated learning through layering and sharding blockcha in,” IEEE T rans. Netw. Sci. Eng., vol. 11, no. 3, pp. 3120–3134, Feb. 2024
2024
-
[19]
A survey of large language models,
W. X. Zhao et al. , “A survey of large language models,” arXiv preprint arXiv: 2303.18223, Mar. 2023
2023 arXiv
-
[20]
Large language models: A survey ,
S. Minaee et al., “Large language models: A survey ,” arXiv preprint arXiv: 2402.06196, Feb. 2024
2024 arXiv
-
[21]
Energy-recycling b lockchain with proof-of-deep-learning,
C. Chenli, B. Li, Y . Shi, and T. Jung, “Energy-recycling b lockchain with proof-of-deep-learning,” in 2019 IEEE Int. Conf. Blockchain Cryptocurrency (ICBC’19), Seoul, KR, May 2019, pp. 19–23
2019
-
[22]
Coin.AI: A proof-of-useful- work scheme for blockchain-based distributed deep learnin g,
A. Baldominos and Y . Saez, “Coin.AI: A proof-of-useful- work scheme for blockchain-based distributed deep learnin g,” Entropy, vol. 21, no. 8, Jul. 2019. [Online]. Available: https: //www.mdpi.com/1099-4300/21/8/723
2019
-
[23]
Proof-of-l earning: A blockchain consensus mechanism based on machine learning c om- petitions,
F. Bravo-Marquez, S. Reeves, and M. Ugarte, “Proof-of-l earning: A blockchain consensus mechanism based on machine learning c om- petitions,” in Proc. IEEE Int. Conf. Decentralized Appl. Infrastruct. (DAPPCON’19), San Francisco, CA, USA, Apr. 2019, pp. 119–124
2019
-
[24]
Proof of learn ing (PoLe): Empowering neural network training with consensus building on blockchains,
Y . Liu, Y . Lan, B. Li, C. Miao, and Z. Tian, “Proof of learn ing (PoLe): Empowering neural network training with consensus building on blockchains,” Comput. Netw., vol. 201, no. 108594, pp. 1–12, Dec. 2021. [Online]. Available: https://www.scienc edirect. com/science/article...
2021
-
[25]
Proof of federated lea rn- ing: A novel energy-recycling consensus algorithm,
X. Qu, S. Wang, Q. Hu, and X. Cheng, “Proof of federated lea rn- ing: A novel energy-recycling consensus algorithm,” IEEE T rans. Parallel Distrib. Syst. , vol. 32, no. 8, pp. 2074–2085, Aug. 2021
-
[26]
A platform-free proof of federated learning consensus mecha nism for sustainable blockchains,
Y . Wang, H. Peng, Z. Su, T. H. Luan, A. Benslimane, and Y . Wu , “A platform-free proof of federated learning consensus mecha nism for sustainable blockchains,” IEEE J. Sel. Areas Commun. , vol. 40, no. 12, pp. 3305–3324, Oct. 2022
2022
-
[28]
Snow white: Robustly reconfi gurable consensus and applications to provably secure proof of stak e,
P . Daian, R. Pass, and E. Shi, “Snow white: Robustly reconfi gurable consensus and applications to provably secure proof of stak e,” in Proc. 23rd Int. Conf. Financ. Cryptogr. Data Secur. (FC’19) . St. Kitts, KN: Springer-V erlag, Feb. 2019, p. 23–41. [Online]. Availab le: htt...
2019 doi
-
[29]
Coinami: A cryptocurrency with DNA sequence 15 alignment as proof-of-work,
A. M. Ileri, H. I. Ozercan, A. Gundogdu, A. K. Senol, M. Y . O zkaya, and C. Alkan, “Coinami: A cryptocurrency with DNA sequence 15 alignment as proof-of-work,” arXiv preprint ArXiv: 1602.03031 , Feb. 2016
2016 arXiv
-
[30]
The proof is in the pudding: Proofs of work for solving discrete logarithms,
M. Hastings, N. Heninger, and E. Wustrow, “The proof is in the pudding: Proofs of work for solving discrete logarithms,” Cryptology ePrint Arch. , Oct. 2018. [Online]. Available: https://eprint.iacr.org/2018/939
2018
-
[31]
Conquering generals: An NP-hard proof of useful work,
A. F. Loe and E. A. Quaglia, “Conquering generals: An NP-hard proof of useful work,” in Proc. 1st Workshop Cryptocurrencies Blockchains Distrib. Syst. (CryBlock’1 8), Munich, DE, Jun. 2018, pp. 54 – 59. [Online]. Available: https: //doi.org/10.1145/3211933.3211943
2018
-
[32]
REM: Resource-Efficient mining for blockchains,
F. Zhang, I. Eyal, R. Escriva, A. Juels, and R. V . Renesse , “REM: Resource-Efficient mining for blockchains,” in Proc. 26th USENIX Secur. Symp. , Vancouver, BC, Aug. 2017, pp. 1427–
2017
-
[33]
COCP: Blockchain proof-of-useful-work lever- aging real-life applications,
T. Davidovi´ cet al., “COCP: Blockchain proof-of-useful-work lever- aging real-life applications,” in Proc. 4th Int. Conf. Blockchain Com- put. Appl. (BCCA’22) , San Antonio, TX, USA, Sep. 2022, pp. 107– 110
2022
-
[34]
A mining pool so lution for novel proof-of-neural-architecture consensus,
B. Li, Q. Lu, W. Jiang, T. Jung, and Y . Shi, “A mining pool so lution for novel proof-of-neural-architecture consensus,” in Proc. IEEE Int. Conf. Blockchain Cryptocurrency (ICBC’21) , Sydney , AU, May 2021, pp. 1–3
2021
-
[35]
Proof-of-federa ted- learning-subchain: Free partner selection subchain based on fed- erated learning,
B. Li, B. Shen, Q. Lu, T. Jung, and Y . Shi, “Proof-of-federa ted- learning-subchain: Free partner selection subchain based on fed- erated learning,” in Proc. 5th Int. Conf. Blockchain Comput. Appl. (BCCA’23), Kuwait, KW, Oct. 2023, pp. 600–605
2023
-
[36]
Proof-of-learning: D efini- tions and practice,
H. Jia, M. Y aghini, C. A. Choquette-Choo, N. Dullerud, A . Thudi, V . Chandrasekaran, and N. Papernot, “Proof-of-learning: D efini- tions and practice,” in Proc. IEEE Symp. Secur. Privacy (SP’21) , San Francisco, CA, USA, May 2021, pp. 1039–1056
2021
-
[37]
”Adv er- sarial examples
R. Zhang, J. Liu, Y . Ding, Z. Wu, Q. Wang, and K. Ren, “”Adv er- sarial examples” for proof-of-learning,” in Proc. IEEE Symp. Secur. Privacy (SP’22), San Francisco, CA, USA, May 2022
2022
-
[40]
Scalable distributed dnn training using commodity gpu cloud computing,
N. Str ¨ om, “Scalable distributed dnn training using commodity gpu cloud computing,” Interspeech 2015 , 2015. [Online]. Available: https://www.amazon.science/publi cations/ scalable-distributed-dnn-training-using-commodity-g pu-cloud-computing
2015
-
[41]
SoK: Is proof-of-useful-work really useful?
P . Dikshit, A. Emami, J. Sedlmeir, and G. Fridgen, “SoK: Is proof-of-useful-work really useful?” Cryptology ePrint Archive , Oct. 2025. [Online]. Available: https://eprint.iacr.org /2025/1814
2025
-
[42]
IPFS - content addressed, versioned, p2p file system,
J. Benet, “IPFS - content addressed, versioned, p2p file system,” arXiv preprint arXiv: 1407.3561 , Jul. 2014
2014 arXiv
-
[1444]
Available: https://www.usenix.org/conf erence/ usenixsecurity17/technical-sessions/presentation/zhang
[Online]. Available: https://www.usenix.org/conf erence/ usenixsecurity17/technical-sessions/presentation/zhang
Reviewed August 3, 2026 · model on record in the stance chip above.
Discussion (0). Continue with ORCID to comment.