MooRating

Rating star using Mootools.

As unregisted user cannot download the attachment, so I delete it.

Tested in Mozilla Firefox and IE 7.0.

js
[code]
/*
* Rating star using Mootools.
*
* Modified from Dynamic Rating stars @copyright 2006 Beau D. Scott
* http://beauscott.com
*
* Note:valueBox must use continuous integers.If not, there could be some bugs.
* messageBox and valueBox keys must begin from zero.
*/
Rating = new Class( {

initialize : function(options) {

this.options = $extend( {
bindField : null,
maxRating : 5,
container : null,
imageDirectory : "images/",
callback : null,
actionURL : null,
value : 0,
locked : false,
useOpacityStyle : true,
messageBox : $H( {
0 : "Poor",
1 : "Nothing special",
2 : "Worth watching",
3 : "Pretty cool",
4 : "Awesome!"
}),
valueBox : $H( {
0 : 1,
1 : 2,
2 : 3,
3 : 4,
4 : 5
})
}, options || {});

if (this.options.messageBox.length != this.options.maxRating
|| this.options.valueBox.length != this.options.maxRating) {
alert("messageBox's length and valueBox's length must be equal to maxRating");
return;
}

/**
* hover and empty ratings imageSrc.
*/
this.hoverImages = {
EMPTY : this.options.imageDirectory + "empty.gif",
HALF : this.options.imageDirectory + "hover-half.gif",
FULL : this.options.imageDirectory + "hover.gif"
};

/**
* preload images
*/
for (var x in this.hoverImages) {
var y = document.createElement("img");
y.src = this.hoverImages[x];
}

/**
* selected and empty ratings imageSrc.
*/
this.selectedImages = {
EMPTY : this.options.imageDirectory + "empty.gif",
HALF : this.options.imageDirectory + "selected-half.gif",
FULL : this.options.imageDirectory + "selected.gif"
};
/**
* preload images
*/
for (var x in this.selectedImages) {
var y = document.createElement("img");
y.src = this.selectedImages[x];
}

if ($defined(this.options.container)) {
this.container = $(this.options.container);
} else {
this.id = "ratecontainer" + Math.random(0, 10000);
document.write('<span id="' + this.id + '"></span>');
this.container = $(this.id);
}

this.initialized = false;
this.rated = false;
this.ratings = [];
this.value = -1;
this.locked = this.options.locked ? true : false;
this.useOpacityStyle = this.options.useOpacityStyle ? true : false;

this.display();
this.setValue(this.options.value);
this.initialized = true;
},

display : function() {
for (var i = 0;i < this.options.maxRating; i++) {
var rating = document.createElement("img");
rating.src = this.locked
? this.selectedImages.EMPTY
: this.hoverImages.EMPTY;
rating.style.cursor = "pointer";
rating.title = this.options.messageBox.get(i);
if (!this.locked) {
rating.addEvent("mouseover", this.hover.bind(this));
rating.addEvent("click", this.rate.bind(this));
rating.addEvent("mouseout", this.clear.bind(this));
}
this.ratings.push(rating);
this.container.appendChild(rating);
}
},

setValue : function(val) {
if (this.locked && this.initialized)
return;

// iterate on options.valueBox to search key for val.

for (var i = 0;i < this.options.valueBox.length; i++) {
var value = this.options.valueBox.get(i);
if (value == val + .5) {
this.value = i - .5;
break;
} else if (value == val) {
this.value = i;
break;
}
}
/*
* this.options.valueBox.each(function(value, key) { if (value == val +
* .5) { this.value = key - .5; } else if (value == val) { this.value =
* key; } }, this);
*/
if (this.options.bindField) {
$(this.options.bindField).value = val;
}
if (this.initialized) {
if (this.options.actionURL) {
// ajax submit.
new Ajax(this.options.actionURL + val, {
method : "get",
onComplete : this.options["callback"]
}).request();
} else if (this.options.callback) {
this.options["callback"](val);
}
}
this.clear();
},

hover : function(ev) {
if (this.locked)
return;
var rating = new Event(ev).target;
var greater = false;

this.ratings.each(function(el) {
el.src = greater ? this.hoverImages.EMPTY : this.hoverImages.FULL;
if (rating == el) {
greater = true;
// TODO use opacity style, maybe more beautiful styles should be
// added.
if (this.useOpacityStyle) {
var fx = new Fx.Style(el, "opacity", {
duration : 500,
wait : false
});
fx.start(.5, 1);
}
}
}, this);
},

rate : function(ev) {
if (this.locked)
return;
var rating = new Event(ev).target;
this.rated = true;

this.ratings.some(function(el, i) {
if (el == rating) {
this.setValue(this.options.valueBox.get(i));
return true;
}
}, this);
},

clear : function(ev) {
if (this.locked && this.initialized)
return;
var greater = false;
this.ratings.each(function(el, i) {
if (i > this.value)
greater = true;
if ((this.initialized && this.rated) || this.value == -1)
el.src = greater ? (this.value + .5 == i)
? this.hoverImages.HALF
: this.hoverImages.EMPTY : this.hoverImages.FULL;
else
this.ratings[i].src = greater ? (this.value + .5 == i)
? this.selectedImages.HALF
: this.selectedImages.EMPTY : this.selectedImages.FULL;
}, this)
}
});
[/code]


Usage:
[code]
<script>
var rating = new Rating({
value:0.5,
locked:false,
bindField:'test',
callback:showRate
});

function showRate(val){
rating.locked=true;
}
</script>
[/code]
主要内容:本文详细介绍了一种QRBiLSTM(分位数回归双向长短期记忆网络)的时间序列区间预测方法。首先介绍了项目背景以及模型的优势,比如能够有效利用双向的信息,并对未来的趋势上限和下限做出估计。接着从数据生成出发讲述了具体的代码操作过程:数据预处理,搭建模型,进行训练,并最终可视化预测结果与计算分位数回归的边界线。提供的示例代码可以完全运行并且包含了数据生成环节,便于新手快速上手,深入学习。此外还指出了模型未来发展的方向,例如加入额外的输入特性和改善超参数配置等途径提高模型的表现。文中强调了时间序列的标准化和平稳检验,在样本划分阶段需要按时间序列顺序进行划分,并在训练阶段采取合适的手段预防过度拟合发生。 适合人群:对于希望学习和应用双向长短时记忆网络解决时序数据预测的初学者和具有一定基础的研究人员。尤其适用于有金融数据分析需求、需要做多一步或多步预测任务的从业者。 使用场景及目标:应用于金融市场波动预报、天气状况变化预测或是物流管理等多个领域内的决策支持。主要目的在于不仅能够提供精确的数值预计还能描绘出相应的区间概率图以增强结论置信程度。 补充说明:本教程通过一个由正弦信号加白噪构造而成的简单实例来指导大家理解和执行QRBiLSTM流程的所有关键步骤,这既方便于初学者跟踪学习,又有利于专业人士作为现有系统的补充参考工具。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值