由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Mathematics版 - 这种分段曲线怎么拟合?
相关主题
写了一篇computational geometry小文章,哪位牛人肯给看看请问Maximum Eigenvalue怎么求?谢谢
急问个优化的问题 (转载)matlab里边的 null matrix怎么个用法。
菜鸟请教一个小问题如何求取最优值?
问个简单的问题解高次方程组3元3次
谁能帮忙科普一下iteration算法阿?求教数学问题
请教 fixed point iteration问一个数值分析历史有关的问题,希望大家互相帮助,多多发帖活跃一下,真的谢谢了!!
非线性优化问题求助!(大包子奉送)Banach space里面的closed set等价于
变系数常微分方程组的一般解?a question about convergence almost surely
相关话题的讨论汇总
话题: thr话题: low话题: high话题: 拟合话题: iterations
进入Mathematics版参与讨论
1 (共1页)
c*u
发帖数: 916
1
我有一组实验数据,理论上应当符合以下规律:
y = y_high, if x > thr
y = y_low, if x < thr
y_high, y_low, thr 是未知的常数,thr是所需要得到的东西.好像3D bruteforce
search 寻找最低点不是很有效率.
举个通俗的例子,假设x是温度,y是水的体积,那么Thr是熔点.但是实验数据中
y的测量有很大noise, 所以必须拟合.
谢谢,
A*******r
发帖数: 768
2
神经网络

【在 c*u 的大作中提到】
: 我有一组实验数据,理论上应当符合以下规律:
: y = y_high, if x > thr
: y = y_low, if x < thr
: y_high, y_low, thr 是未知的常数,thr是所需要得到的东西.好像3D bruteforce
: search 寻找最低点不是很有效率.
: 举个通俗的例子,假设x是温度,y是水的体积,那么Thr是熔点.但是实验数据中
: y的测量有很大noise, 所以必须拟合.
: 谢谢,

c*u
发帖数: 916
3
ai.. unfortunately i have no idea how to build neural network.
I just did a try. It looks like iteration works pretty well. Just need make
a guess of y_high and y_low, find the best thr. Then set y_high, y_low as
the mean values for xthr. Repeat the iterations until converge.
Only takes 2-5 iterations to converge. Calculation time is O(n) instead of
O(n^3). For the data, it seems the fitting rarely stuck in local maxima.
Sorry for the dumb question.

【在 A*******r 的大作中提到】
: 神经网络
1 (共1页)
进入Mathematics版参与讨论
相关主题
a question about convergence almost surely谁能帮忙科普一下iteration算法阿?
another question about convergence请教 fixed point iteration
问measure的setwise convergence非线性优化问题求助!(大包子奉送)
[合集] one problem about infinite products变系数常微分方程组的一般解?
写了一篇computational geometry小文章,哪位牛人肯给看看请问Maximum Eigenvalue怎么求?谢谢
急问个优化的问题 (转载)matlab里边的 null matrix怎么个用法。
菜鸟请教一个小问题如何求取最优值?
问个简单的问题解高次方程组3元3次
相关话题的讨论汇总
话题: thr话题: low话题: high话题: 拟合话题: iterations