6.1 KiB
Method Writing Guide
Goal
Write the Method section clearly by following this sequence:
- Answer key method-design questions.
- Draw a pipeline figure sketch.
- Write the method section step by step.
Pre-Writing Questions
Before writing Method, first answer: (1) what modules exist in the method, and (2) for each module, what is the workflow, why this module is needed, and why this module works.
Recommended organization:
- List all modules in the pipeline.
- For each module, answer three questions:
- How does the module run?
- Why do we need this module?
- Why does this module work?
- Organize answers as a mind map or a table for clarity.
Method Writing Steps
Method writing steps: (1) draw pipeline figure sketch, (2) map subsections from the sketch, (3) plan each subsection with motivation/design/advantages, (4) write module design first, (5) then add motivation and technical advantages.
Step-by-step workflow:
- Draw the pipeline figure sketch.
- Use the sketch to organize Method subsection structure.
- For each subsection, plan three parts: motivation, module design, and technical advantages.
- Write module design first to build a concrete backbone.
- Add motivation and technical advantages afterward.
Three Elements of a Pipeline Module
A pipeline module has three elements: Module design, Motivation of this module, and Technical advantages of this module.
1) Module Design
Definition:
- Describe representation/network/data-structure details.
- Describe the forward process clearly: given input -> step 1 -> step 2 -> step 3 -> output.
2) Motivation of This Module
Definition:
- Explain why this module is needed.
- Use problem-driven logic: because problem X exists, we design module Y.
3) Technical Advantages of This Module
Definition:
- Explain why this module has technical advantage over alternatives.
- Tie advantage to measurable behavior when possible.
Example of the Three Elements
Local cite:
references/examples/method/example-of-the-three-elements.md
Method Content Decomposition
flowchart LR
A["Draw the technical pipeline figure"] --> B["Decompose Method content"]
B --> C1["Subsection 1 (Technical Module 1)"]
B --> C2["Subsection 2 (Technical Module 2)"]
B --> C3["Subsection 3 (Technical Module 3)"]
C1 --> D1["Motivation"]
C1 --> D2["Detailed design"]
C1 --> D3["Technical advantage"]
How to Write Module Design
Module design usually has two parts: (1) describe specific data/network structures, and (2) describe forward process as input -> steps -> output.
Writing structure:
- Define key structures first (representation, network, data structure).
- Write forward process in strict execution order.
- End with output interpretation or purpose.
Sentence skeleton:
We represent ... with ...Given [input], we first ... then ... finally ...This produces [output], which is used for ...
Local cite:
references/examples/method/module-design-instant-ngp.md
How to Write Module Motivation
Module motivation is usually problem-driven: because a problem exists, we design xx to solve it.
Typical opening sentences:
A remaining problem/challenge is ...However, we ...Previous methods have difficulty in ...
Local cite:
references/examples/method/module-motivation-patterns.md
How to Check Whether Method is Easy to Understand
Check method clarity from three levels: writing logic, paragraph writing, and sentence writing.
1) Logic-level check
- After finishing the paper, summarize the Method writing logic again.
- Check whether this summarized logic is smooth and easy to follow.
2) Paragraph-level check
- The first sentence of each paragraph should make readers immediately understand what this paragraph is about.
- One paragraph should clearly deliver one message.
3) Sentence-level check
- Carefully check whether the motivation of each sentence is explicit. Keep one thing clear to readers at all times: why this sentence content is needed.
- Carefully check sentence-to-sentence flow.
- Carefully check term consistency and avoid changing key terms back and forth.
Method Section Skeleton
\section{Method}
% Overview
% Section 3.1
% Section 3.2
% Section 3.3
Local cite:
references/examples/method/section-skeleton.md
Overview Subsection
Overview should usually include: setting, core contribution, optional pipeline figure pointer, and a map of what each subsection contains.
Writing structure:
- One to two sentences for task setting.
- One to two sentences for core contribution.
- If pipeline/framework is novel, point to overview figure.
- Tell readers what Section 3.1/3.2/3.3 covers.
Local cite:
references/examples/method/overview-template.md
Section 3.1 and Other Module Subsections
Basic subsection logic: (1) motivation of this module, (2) module forward process/module design, (3) technical advantages of this module.
Local cite:
references/examples/method/example-of-the-three-elements.md
Module Writing Pattern (Mermaid)
flowchart TB
M1["State module motivation (challenge)"] --> M2["Define module design (representation/network)"]
M2 --> M3["Describe forward process (input -> steps -> output)"]
M3 --> M4["Explain technical advantages and verifiable gains"]
Implementation Details
Implementation details include hyperparameters (e.g., layer count, feature dimensions), coordinate transforms/normalization, and other practical details. Put them near the end of Method or in a dedicated Implementation Details section.
Example Bank
references/examples/method-examples.mdreferences/examples/method/pre-writing-questions.mdreferences/examples/method/module-triad-neural-body.mdreferences/examples/method/module-design-instant-ngp.mdreferences/examples/method/module-motivation-patterns.mdreferences/examples/method/section-skeleton.mdreferences/examples/method/overview-template.mdreferences/examples/method/example-of-the-three-elements.mdreferences/examples/method/method-writing-common-issues-note.md