Tell Me Why

Tell Me Why 
Singer: Declan Galbraith 
Album: Tell me why 
NO.13 

In my dream, 在我梦中 
children sing 
a song of love for every boy and girl . 孩子们为所有人吟唱着一首爱的歌 
The sky is blue and fields are green 
and laughter is the language of the world. 蓝天碧草之间笑声成了世界通用的语言. 
Than I wake and all I see is a world full of people in need. 然而当我醒来的时候却发现世界上到处是需要帮助的人. 

Tell me why(why), 告诉我为什么 
does it have to be like this? 真的只能是这样吗? 
Tell me why(why), 告诉我为什么 
is there something I have missed? 是不是我错过了什么? 
Tell me why(why), 告诉我为什么 
cos' I don't understand, 因为我实在是无法理解 
when so many need somebody, 有那么多需要帮助的人 
we don't give a helping hand. 我们却不伸出援助之手 
Tell me why? 告诉我为什么 

Every day, 
I ask myself, 每天我都在问自己 
what will I have to do to be a man? 做为一个人我该做些什么 
Do I have to stand and fight, 
to prove to everybody who I am? 我是不是要站起来抗争,向所有人证明我的价值 
Is that what my life is for, 
to waste in a world full of war?而这是不是意味着我的一生就将耗费在这满是硝烟的世界? 

Tell me why(why), 告诉我为什么 
does it have to be like this? 真的只能是这样吗? 
Tell me why(why), 告诉我为什么 
is there something I have missed? 是不是我错过了什么? 
Tell me why(why), 告诉我为什么 
cos' I don't understand, 因为我实在是无法理解 
when so many need somebody, 有那么多需要帮助的人 
we don't give a helping hand. 我们却不伸出援助之手 
Tell me why? 告诉我为什么 

Tell me why (Tell me why)? 告诉我为什么 
Tell me why (Tell me why)? 告诉我为什么 
Tell me why (Tell me why)? 告诉我为什么 
Just tell me why! 这到底是为什么? 

Tell me why(why), 告诉我为什么 
does it have to be like this? 真的只能是这样吗? 
Tell me why(why), 告诉我为什么 
is there something I have missed? 是不是我错过了什么? 
Tell me why(why), 告诉我为什么 
cos' I don't understand, 因为我实在是无法理解 
when so many need somebody, 有那么多需要帮助的人 
we don't give a helping hand. 我们却不伸出援助之手 

Tell me why? 告诉我为什么 
(Why,why,does the tiger run) 为什么,为什么老虎也要逃跑 
Tell me why? 告诉我为什么 
(Why,why,do we shoot the gun) 为什么,为什么我们让子弹射出枪堂 
Tell me why? 告诉我为什么 
(Why,why,do we never learn) 为什么,为什么我们从来不吸取教训 
Can someone tell us why we let the forest burn? 谁能告诉我,为什么我们烧毁森林 

(Why,why,do we said we care) 为什么,为什么我们光说我们在乎 
Tell me why? 告诉我为什么 
(Why,why,do we stand and stare) 为什么,为什么我们只是站着旁观 
Tell me why? 告诉我为什么 
(do the dolphins cry) 为什么,为什么海豚在哭泣 
Can someone tell us why we let the ocean die? 谁能告诉我,为什么我们让海洋死去 


(Why,why,if we're all the same) 为什么,为什么,如果我们大家是一样的. 
Tell me why? 告诉我为什么 
(Why,why,do we pass and blame) 为什么,为什么我们却在互相谴责 
Tell me why? 告诉我为什么 
(Why,why,does it never end) 为什么,为什么这些永无休止 
Can someone tell us why we cannot just be friends? 谁能告诉我,为什么我们不能友好相处 


Why,why,(do we close our eyes) 为什么,为什么(我们闭上了我们的眼睛) 
Why,why,(do the greedy life) 为什么,为什么(我们让生命满是贪婪) 
Why,why,(do we fight for land) 为什么,为什么(我们为了土地而争斗) 
Can someone tell us why 'cos we don't understand? 谁能告诉我,因为我们实在无法知道 

Why,why?? 
为什么
why is my work flow for point cloud reconstructing not learning? can u tell me why ```mermaid flowchart TD A["原始CSV文件<br/>3_0001_cleaned.csv ... 3_0010_cleaned.csv<br/>每个文件: ~3944行 &times; ~25列<br/>数据: X,Y坐标 + 23个参数列"] --> B["数据预处理 (preprocessor.py)"] B --> B1["网格化插值到 72x55<br/>每个CSV: 23个参数 → 23张表面"] B1 --> B2["按表面计算 Min/Max<br/>保存 minmax_params.json"] B2 --> B3["归一化到 [-1,1]<br/>SimpleMinMaxNormalizer"] B3 --> SAMPLES["样本对象<br/>surface_data(72x55), surface_idx, scaling_info"] SAMPLES --> C["模型 (model.py)<br/>StructuredUnifiedModel<br/>Encoder CNN → Latent(128)<br/>Decoder ConvTranspose2d → Tanh([-1,1])"] C --> D["训练 (train.py)<br/>train_adaptive_unified_representation"] D --> D1["片段采样 16x16 滑动窗口<br/>智能采样: 动态间隔 1..10 覆盖控制"] D1 --> D2["反归一化到物理值用于评估<br/>(x+1)/2*range+min (min/max 来自 minmax_params)"] D2 --> D3["损失: 片段|重建-原始| 的std<br/>优化器: AdamW(lr=1e-3, wd=1e-4)<br/>调度: ReduceLROnPlateau"] D3 --> D4["收敛判定: max std < 0.001<br/>进度跟踪与覆盖自适应"] D --> E["测试 (train.py)<br/>test_piece_performance<br/>全域片段std统计"] B -.-> FB["文件: preprocessor.py<br/>类: ShapeFeatureLearningPreprocessor"] C -.-> FC["文件: model.py<br/>类: StructuredUnifiedModel"] D -.-> FD["文件: train.py<br/>create_unified_normalizer, train_adaptive_unified_representation"] F["可视化 (viz_real_features.py)"] -.-> C G["后处理 (postprocessor.py)"] -.-> E classDef node fill:#f8f8ff,stroke:#bbb,stroke-width:1px class A,B,B1,B2,B3,SAMPLES,C,D,D1,D2,D3,D4,E,FB,FC,FD,F,G node ```
最新发布
08-09
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值