【Canvas与钟表】“社会主义核心价值观“表盘

news2024/11/13 9:36:59

【成图】

【代码】

<!DOCTYPE html>
<html lang="utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<head>
     <title>387.干支表盘</title>
     <style type="text/css">
     .centerlize{
        margin:0 auto;
        width:1200px;
     }
     </style>
     </head>

     <body οnlοad="init();">
        <div class="centerlize">
            <canvas id="myCanvas" width="12px" height="12px" style="border:1px dotted black;">
                如果看到这段文字说您的浏览器尚不支持HTML5 Canvas,请更换浏览器再试.
            </canvas>
            <img id="myImg" src="387.jpg" style="display:none;"/>
        </div>
     </body>
</html>
<script type="text/javascript">
<!--
/*****************************************************************
* 将全体代码(从<!DOCTYPE到script>)拷贝下来,粘贴到文本编辑器中,
* 另存为.html文件,再用chrome浏览器打开,就能看到实现效果。
******************************************************************/

// canvas的绘图环境
var ctx;

// 高宽
const WIDTH=512;
const HEIGHT=512;

// 舞台对象
var stage;

//-------------------------------
// 初始化
//-------------------------------
function init(){
    // 获得canvas对象
    var canvas=document.getElementById('myCanvas');  
    canvas.width=WIDTH;
    canvas.height=HEIGHT;

    // 初始化canvas的绘图环境
    ctx=canvas.getContext('2d');  
    ctx.translate(WIDTH/2,HEIGHT/2);// 原点平移

    // 准备
    stage=new Stage();    
    stage.init();

    // 开幕
    animate();
}

// 播放动画
function animate(){    
    stage.update();    
    stage.paintBg(ctx);
    stage.paintFg(ctx);     

    // 循环
    if(true){
        //sleep(100);
        window.requestAnimationFrame(animate);   
    }
}

// 舞台类
function Stage(){
    // 初始化
    this.init=function(){
        
    }

    // 更新
    this.update=function(){    
        
    }

    // 画背景
    this.paintBg=function(ctx){
        ctx.clearRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);// 清屏    
    }

    // 画前景
    this.paintFg=function(ctx){
        // 底色
        ctx.fillStyle = "white";
        ctx.fillRect(-WIDTH/2,-HEIGHT/2,WIDTH,HEIGHT);        
        
        // 表盘半径,基准尺寸
        const R=220;

        // 外凸圈
        var r=R+12;
        ctx.save();
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        var lgrd=ctx.createLinearGradient(0,-r,0,r);
        lgrd.addColorStop(0,"rgb(209,214,217)");
        lgrd.addColorStop(1,"rgb(83,100,108)");        
        ctx.fillStyle=lgrd;
        ctx.fill();

        // 中圈
        ctx.save();
        ctx.rotate(Math.PI*5/4);
        r=R+10;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        ctx.clip();
        var img=document.getElementById("myImg");
        ctx.drawImage(img,0,0,300,300,-r,-r,2*r,2*r);
        ctx.restore();

        // 内凹圈
        r=R+2;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        var lgrd=ctx.createLinearGradient(0,-r,0,r);
        lgrd.addColorStop(0,"rgb(83,100,108)");    
        lgrd.addColorStop(1,"rgb(209,214,217)");        
        ctx.fillStyle=lgrd;
        ctx.fill();

        // 表盘开始
        ctx.fillStyle="rgb(76,97,120)";
        r=R;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();        
        ctx.fill();

        // 刻度
        r=R/20*19;
        ctx.strokeStyle="lightgrey";
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();
        ctx.stroke();
        
        for(var i=0;i<60;i++){
            var theta=i*Math.PI/30;
            var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));
            var rad=r/19*19.5;
            var pt2=createPt(rad*Math.cos(theta),rad*Math.sin(theta));
            
            //drawSolidCircle(ctx,pt.x,pt.y,(i%5==0)?3:1,"black");
            if(i%5==0){
                // 画三角形
                ctx.save();
                ctx.translate(pt2.x,pt2.y);
                ctx.rotate(theta+Math.PI/2*3);
                drawSolidRegTri(ctx,0,0,4,"lightgrey");
                ctx.restore();
            }else{
                // 画刻度                
                ctx.strokeStyle="lightgrey";
                ctx.beginPath();
                ctx.moveTo(pt.x,pt.y);
                ctx.lineTo(pt2.x,pt2.y);
                ctx.stroke();
            }
        }

        // 数字底圈
        r=R/20*18.8;
        ctx.fillStyle="rgb(177,211,184)";
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();        
        ctx.fill();

        // 数字
        r=R/20*17;
        var hours=["Ⅲ","Ⅳ","Ⅴ","Ⅵ","Ⅶ","Ⅷ","Ⅸ","Ⅹ","Ⅺ","Ⅻ","Ⅰ","Ⅱ"]; 
        for(var i=0;i<12;i++){
            var theta=i*Math.PI/6;
            var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));

            ctx.save();
            ctx.translate(pt.x,pt.y);
            ctx.rotate(theta+Math.PI/2);
            ctx.font="16px Microsoft YaHei UI";
            ctx.textAlign="center";
            ctx.textBaseLine="Middle";
            ctx.fillStyle="rgb(70,95,72)";
            ctx.fillText(hours[i],0,0);
            ctx.restore();
        }

        // 月份底圈
        r=R/20*16.5;
        ctx.fillStyle="rgb(76,97,120)";
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();        
        ctx.fill();

        // 社会主义核心价值观24字
        r=R/20*14.8;
        var hours=["富强","民主","文明","和谐","自由","平等","公正","法治","爱国","敬业","诚信","友善",]; 
        for(var i=0;i<12;i++){
            var theta=i*Math.PI/6-Math.PI/2;
            var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));

            ctx.save();
            ctx.translate(pt.x,pt.y);
            ctx.rotate(theta+Math.PI/2);
            ctx.font="16px 仿宋";
            ctx.textAlign="center";
            ctx.textBaseLine="Middle";
            ctx.fillStyle="lightgrey";
            ctx.fillText(hours[i],0,0);
            ctx.restore();
        }

        // 地支底圈
        r=R/20*14.2;
        ctx.fillStyle="rgb(177,211,184)";
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();        
        ctx.fill();

        // 地支文字
        r=R/20*12.5;
        var hours=["午","未","申","酉","戌","亥","子","丑","寅","卯","辰","巳",]; 
        for(var i=0;i<12;i++){
            var theta=i*Math.PI/6-Math.PI/2;
            var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));

            ctx.save();
            ctx.translate(pt.x,pt.y);
            ctx.rotate(theta+Math.PI/2);
            ctx.font="18px Microsoft YaHei UI";
            ctx.textAlign="center";
            ctx.textBaseLine="Middle";
            ctx.fillStyle="rgb(70,95,72";
            ctx.fillText(hours[i],0,0);
            ctx.restore();
        }

        // 分度辐射
        r=R/20*16.5;
        for(var i=0;i<12;i++){
            var theta=Math.PI*2/12*i+Math.PI/12;
            var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));

            // 画刻度                
            ctx.strokeStyle="grey";
            ctx.beginPath();
            ctx.moveTo(0,0);
            ctx.lineTo(pt.x,pt.y);
            ctx.stroke();
        }

        // 渐变圈
        r=R/20*11.9;
        var gnt2=ctx.createRadialGradient(0,0,0,0,0,r);
        gnt2.addColorStop(0,"rgb(76,97,120)");
        gnt2.addColorStop(0.9,"rgb(76,97,120)");
        gnt2.addColorStop(1,"rgb(47,59,71)");
        ctx.fillStyle=gnt2;
        ctx.beginPath();
        ctx.arc(0,0,r,0,Math.PI*2,false);
        ctx.closePath();        
        ctx.fill();

        // 中间的螺旋
        drawSpiral(ctx,0,0,R/1.8);

        // 得到当前时间
        var now=new Date();
        var s=now.getSeconds();
        var m=now.getMinutes();
        var h=now.getHours()+m/60;

        // 画表针
        drawHourPointer(ctx,h,R);
        drawMinutePointer(ctx,m,R);
        drawSecondPointer(ctx,s,R);

        // 画中心小圆点
        ctx.beginPath();
        ctx.arc(0,0,6,0,Math.PI*2,true);
        ctx.closePath();
        ctx.fillStyle="rgb(177,211,184)";
        ctx.fill();

        ctx.beginPath();
        ctx.arc(0,0,2,0,Math.PI*2,true);
        ctx.closePath();
        ctx.fillStyle="rgb(76,97,120)";
        ctx.fill();

        writeText(ctx,WIDTH/2-30,HEIGHT/2-5,"逆火原创","8px consolas","lightgrey");// 版权
    }
}

// 画中间的螺旋
function drawSpiral(ctx,x,y,radius){
    ctx.save();
    ctx.translate(x,y);

    var r=radius;// 初始半径,多边形顶点到屏幕中心的距离
    var gnt1=ctx.createRadialGradient(0,0,0,0,0,r); // 渐变色
    gnt1.addColorStop(0,"rgb(177,211,184)");
    gnt1.addColorStop(1,"rgb(76,97,120)");        
    
    const DELTA=Math.PI/40;// 每次转动的角度
    const N=5;// 边数
    const ANGLE=(N-2)*Math.PI/2/N;
    const RATIO=Math.sin(ANGLE)/Math.sin(Math.PI-ANGLE-DELTA);// 根据正弦定理计算半径缩小比例    
    const TIMES=30;// 往里画的次数

    ctx.lineWidth=1;        
    ctx.strokeStyle=gnt1;
    ctx.beginPath();
    for(var i=0;i<TIMES;i++){            
        r=r*RATIO;
        for(var j=0;j<=N;j++){
            var theta=-DELTA*i+ANGLE+Math.PI*2/N*j;
            var pt=createPt(r*Math.cos(theta),r*Math.sin(theta));
            ctx.lineTo(pt.x,pt.y);
        }
    }
    ctx.stroke();

    ctx.restore();
}

// 画时针
function drawHourPointer(ctx,h,radius){
    const R=radius;

    ctx.save();
    ctx.rotate(h*Math.PI/6-Math.PI/2);

    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(-R/11,0);
    ctx.lineTo(-R/11,R/55);
    ctx.lineTo(R-100,R/55);
    ctx.lineTo(R-90,0);
    ctx.closePath();
    ctx.fillStyle="rgb(171,172,166)";
    ctx.fill();

    ctx.fillStyle="rgb(171,172,166)";
    ctx.beginPath();
    ctx.arc(0,0,R/25,0,Math.PI,false);
    ctx.closePath();        
    ctx.fill();

    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(-R/11,0);
    ctx.lineTo(-R/11,-R/55);
    ctx.lineTo(R-100,-R/55);
    ctx.lineTo(R-90,0);
    ctx.closePath();
    ctx.fillStyle="rgb(252,252,250)";
    ctx.fill();

    ctx.fillStyle="rgb(252,252,250)";
    ctx.beginPath();
    ctx.arc(0,0,R/25,Math.PI,Math.PI*2,false);
    ctx.closePath();        
    ctx.fill();

    ctx.restore();
}

// 画分针
function drawMinutePointer(ctx,m,radius){
    const R=radius;

    ctx.save();
    ctx.rotate(m*Math.PI/30-Math.PI/2);

    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(-R/10,0);
    ctx.lineTo(-R/10,R/55);
    ctx.lineTo(R-47,R/55);
    ctx.lineTo(R-37,0);
    ctx.closePath();
    ctx.fillStyle="rgb(171,172,166)";
    ctx.fill();

    ctx.fillStyle="rgb(171,172,166)";
    ctx.beginPath();
    ctx.arc(0,0,R/27,0,Math.PI,false);
    ctx.closePath();        
    ctx.fill();

    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(-R/10,0);
    ctx.lineTo(-R/10,-R/55);
    ctx.lineTo(R-47,-R/55);
    ctx.lineTo(R-37,0);
    ctx.closePath();
    ctx.fillStyle="rgb(252,252,250)";
    ctx.fill();

    ctx.fillStyle="rgb(252,252,250)";
    ctx.beginPath();
    ctx.arc(0,0,R/27,Math.PI,Math.PI*2,false);
    ctx.closePath();        
    ctx.fill();

    ctx.restore();
}

// 画秒针
function drawSecondPointer(ctx,s,radius){
    const R=radius;

    ctx.save();
    ctx.rotate(s*Math.PI/30-Math.PI/2);

    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(-R/9,0);
    ctx.lineTo(-R/9,R/110);
    ctx.lineTo(R-40,R/110);
    ctx.lineTo(R-40,R/110*3);
    ctx.lineTo(R-10,0);
    ctx.closePath();
    ctx.fillStyle="rgb(171,172,166)";
    ctx.fill();

    ctx.beginPath();
    ctx.moveTo(0,0);
    ctx.lineTo(-R/9,0);
    ctx.lineTo(-R/9,-R/110);
    ctx.lineTo(R-40,-R/110);
    ctx.lineTo(R-40,-R/110*3);
    ctx.lineTo(R-10,0);
    ctx.closePath();
    ctx.fillStyle="rgb(252,252,250)";
    ctx.fill();


    ctx.restore();
}

/*----------------------------------------------------------
函数:绘制实心三角形
ctx:绘图上下文
x:三角形中心横坐标
y:三角形中心纵坐标
r:三角形中心到顶点的长度
color:填充色
----------------------------------------------------------*/
function drawSolidRegTri(ctx,x,y,r,color){
    ctx.fillStyle=color;
    // 画三角形
    var arr=createRegTriArr(x,y,r);
    ctx.beginPath();
    for(var j=0;j<arr.length;j++){
        ctx.lineTo(arr[j].x,arr[j].y);
    }
    ctx.closePath();
    
    ctx.fill();
}

/*----------------------------------------------------------
函数:创建一个以x,y为中心,r为半径的正三角形数组
ctx:绘图上下文
x:三角形中心横坐标
y:三角形中心纵坐标
r:三角形中心到顶点的长度
arr[0]为右下,arr[1]为左下,arr[2]为正上。
----------------------------------------------------------*/
function createRegTriArr(x,y,r){
    var arr=new Array();

    for(var i=0;i<3;i++){
        var theta=Math.PI*2/3*i+Math.PI/6;
        var pt=createPt(r*Math.cos(theta)+x,r*Math.sin(theta)+y);
        arr.push(pt);
    }

    return arr;
}


/*----------------------------------------------------------
函数:由坐标得到弧度
x:点横坐标
y:点纵坐标
----------------------------------------------------------*/
function getRad(x,y){
    var r=Math.sqrt(x*x+y*y);
    var theta=Math.asin(Math.abs(y)/r);

    if(x>=0 && y>=0){
        return theta;
    }else if(x<0 && y>=0){
        return Math.PI-theta;
    }else if(x<0 && y<0){
        return Math.PI+theta;
    }else if(x>=0 && y<0){
        return -theta;
    }

    return null;
}

/*----------------------------------------------------------
函数:用于绘制实心圆,用途是标记点以辅助作图
ctx:绘图上下文
x:矩形中心横坐标
y:矩形中心纵坐标
r:圆半径
color:填充圆的颜色
----------------------------------------------------------*/
function drawSolidCircle(ctx,x,y,r,color){
    ctx.fillStyle=color;
    ctx.beginPath();
    ctx.arc(x,y,r,0,Math.PI*2,false);
    ctx.closePath();
    ctx.fill();
}

/*----------------------------------------------------------
函数:创建一个二维坐标点
x:横坐标
y:纵坐标
Pt即Point
----------------------------------------------------------*/
function createPt(x,y){
    var retval={};
    retval.x=x;
    retval.y=y;
    return retval;
}

/*----------------------------------------------------------
函数:延时若干毫秒
milliseconds:毫秒数
----------------------------------------------------------*/
function sleep(milliSeconds) {
    const date = Date.now();
    let currDate = null;
    while (currDate - date < milliSeconds) {
        currDate = Date.now();
    } 
}

/*----------------------------------------------------------
函数:书写文字
ctx:绘图上下文
x:横坐标
y:纵坐标
text:文字
font:字体
color:颜色
----------------------------------------------------------*/
function writeText(ctx,x,y,text,font,color){
    ctx.save();
    ctx.textBaseline="bottom";
    ctx.textAlign="center";
    ctx.font = font;
    ctx.fillStyle=color;
    ctx.fillText(text,x,y);
    ctx.restore();
}

/*-------------------------------------------------------------
有些人,活了一辈子,
其实不过是认真过了一天,其余时间都在重复这一天而已,
也有人每天不重样,看似折腾,却活出了滋味。
--------------------------------------------------------------*/
//-->
</script>

【底图】

387.jpg

END

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.coloradmin.cn/o/2115193.html

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈,一经查实,立即删除!

相关文章

最大时间

题目描述 给定一个数组&#xff0c;里面有6个整数&#xff0c;求这个数组能够表示的最大 24 进制的时间是多少&#xff0c;输出这个时间&#xff0c;无法表示输出 invalid. 输入描述 输入为一个整数数组&#xff0c;数组内有六个整数。 输入整数数组长度为6&#xff0c;不需…

火语言RPA流程组件介绍--浏览网页

&#x1f6a9;【组件功能】&#xff1a;浏览器打开指定网址或本地html文件 配置预览 配置说明 网址URL 支持T或# 默认FLOW输入项 输入需要打开的网址URL 超时时间 支持T或# 打开网页超时时间 执行后后等待时间(ms) 支持T或# 当前组件执行完成后继续等待的时间 UserAgen…

微积分-积分应用5.4(功)

术语“功”在日常语言中用来表示完成一项任务所需的总努力量。在物理学中&#xff0c;它有一个依赖于“力”概念的技术含义。直观上&#xff0c;你可以将力理解为对物体的推或拉——例如&#xff0c;一个书本在桌面上的水平推动&#xff0c;或者地球对球的向下拉力。一般来说&a…

【iOS】——渲染原理与离屏渲染

图像渲染流水线&#xff08;图像渲染流程&#xff09; 图像渲染流程大致分为四个部分&#xff1a; Application 应用处理阶段&#xff1a;得到图元Geometry 几何处理阶段&#xff1a;处理图元Rasterization 光栅化阶段&#xff1a;图元转换为像素Pixel 像素处理阶段&#xff1…

图像去噪算法性能比较与分析

在数字图像处理领域&#xff0c;去噪是一个重要且常见的任务。本文将介绍一种实验&#xff0c;通过MATLAB实现多种去噪算法&#xff0c;并比较它们的性能。实验中使用了包括中值滤波&#xff08;MF&#xff09;、自适应加权中值滤波&#xff08;ACWMF&#xff09;、差分同态算法…

Clion不识别C代码或者无法跳转C语言项目怎么办?

如果是中文会显示&#xff1a; 此时只需要右击项目&#xff0c;或者你的源代码目录&#xff0c;将这个项目或者源码目录标记为项目源和头文件即可。 英文如下&#xff1a;

什么是数字化人才?数字化人才画像是怎么样的?(附数字化知识能力框架体系)

什么是数字化人才&#xff1f; 数字化人才是指具备较高信息素养&#xff0c;有效掌握数字化相关能力&#xff0c;并将这种能力不可或缺地应用于工作场景的相关人才。随着数字技术的快速发展和应用&#xff0c;数字化人才的需求日益增加&#xff0c;他们在大数据、“互联网”、…

编程效率飙升的秘密武器:Cursor编辑器的AI革命

有没有想过,写代码这件事其实可以更加轻松、高效?尤其是对于那些需要频繁修正、调试和优化的开发者们,Cursor编辑器带来的AI赋能,简直让人眼前一亮。相信很多人一提到AI,第一反应就是:“这真的靠谱吗?”今天,我就带你来揭开Cursor这款AI编辑器的神秘面纱,看看它是如何…

借助ChatGPT高效撰写优质论文的7大要素

大家好,感谢关注。我是七哥,一个在高校里不务正业,折腾学术科研AI实操的学术人。关于使用ChatGPT等AI学术科研的相关问题可以和作者七哥(yida985)交流,多多交流,相互成就,共同进步,为大家带来最酷最有效的智能AI学术科研写作攻略。 撰写一篇优秀的学术论文不仅需要深入…

onnxruntime——CUDA Execution Provider学习记录

ONNX Runtime&#xff08;简称 ORT&#xff09;是一个高性能的推理引擎&#xff0c;支持多种硬件加速器。CUDA Execution Provider 是 ONNX Runtime 提供的一个执行提供者&#xff08;Execution Provider&#xff09;&#xff0c;专门用于在 NVIDIA GPU 上加速推理。以下是详细…

ComfyUI 基础教程—— 应用 Controlnet 精准控制图像生成

一、前言 你是否有见过下面类似这样的图片&#xff1a; 看起来平平无奇&#xff0c;当你站远点看&#xff0c;或者把眼睛眯成一条缝了看&#xff0c;你会发现&#xff0c;这个图中藏有一些特别的元素。这就是利用了 Ai 绘画中的 ControlNet&#xff0c;实现对图片的相对更精…

实施经济实惠的DFIR 网络防御解决方案

数字取证 事件响应&#xff08;DFIR&#xff09;是防御的重要组成部分&#xff0c;它包括发现网络危险&#xff0c;调查它们&#xff0c;并采取措施阻止它们。这对于保护私有数据安全和确保IT系统正常工作非常重要。由于资金和资源有限&#xff0c;小公司往往难以建立有效的DFI…

数据库安全漏洞的克星:SqlMap

SqlMap&#xff1a;一键自动化&#xff0c;精准识别SQL注入漏洞。 - 精选真开源&#xff0c;释放新价值。 概览 sqlmap是一个广受认可的开源工具&#xff0c;专注于自动化SQL注入漏洞的检测和利用。它能够与多种数据库系统交互&#xff0c;包括但不限于MySQL、Oracle、Postgre…

Android源码修改 默认导航方式

1、静态修改 代码路径&#xff1a;frameworks/base/core/res/res/values/config.xml&#xff0c;由于我是用hbuilder打开 我们可以看到代码注释 <!-- Controls the navigation bar interaction mode: 0: 3 button mode (back, home, overview buttons) 1…

Excel和Word日常使用记录:

Excel使用总结 表格颜色填充&#xff1a; 合并单元格&#xff1a; 选中你要合并的单元格区域。 按下快捷键 Alt H&#xff0c;然后松开这些键。 再按下 M&#xff0c;接着按 C。 这个组合键执行的操作是&#xff1a;Alt H&#xff1a;打开“主页”选项卡。 M&#xff1a;选…

【Vue】状态管理模式Vuex

数据共享 流程搭建变更状态辅助函数分割模块 流程 Vuex是一个Vue的状态管理工具&#xff0c;状态就是数据&#xff08;某个状态在很多个组件来使用 &#xff0c;多个组件共同维护一份数据&#xff09; 搭建 1&#xff09;Vuex我们在脚手架搭建项目的时候直接搭建好了&#xff0…

面壁带来了小钢炮,MiniCPM3-4B

MiniCPM3-4B 是 MiniCPM 系列的第三代产品。 相比 MiniCPM1.0/MiniCPM2.0&#xff0c;MiniCPM3-4B 拥有更强大、更多用途的技能集&#xff0c;可以实现更广泛的应用。 MiniCPM3-4B 支持函数调用和代码解释器。 有关使用指南&#xff0c;请参阅高级功能。 MiniCPM3-4B 具有 32k …

微擎忘记后台登录用户名和密码怎么办?解决方法

微擎忘记后台登录名和登录密码是很常见的&#xff0c;服务器百科网fwqbk.com告诉你找回后台登录用户名和密码的方法&#xff1a; 一&#xff1a;找回微擎后台用户名 &#xff08;如果只是忘记了后台登录密码&#xff0c;请忽略此步骤&#xff0c;跳转到第二步&#xff09; 通…

博客摘录「 深度学习 | 编码器-解码器网络、seq2seq模型、束搜索算法」2024年9月7日

老师在课上是这样引入的&#xff1a; Sequence to Sequence Learning&#xff1a;两个循环神经网络组成。 红色部分和绿色部分都是RNN。 预测任务就是从一个序列到另一个序列。 第一个序列称之为原序列&#xff0c;第二个序列称为目标序列。两者…

【Windows】解决新版 Edge 浏览器开机自启问题(简单有效)

文章目录 1.前言2.查找资料3.查找方法4.解决办法 参考文章&#xff1a; 解决新版 Edge 浏览器开机自启问题&#xff08;简单有效&#xff09; Edge开机启动如何关闭 1.前言 电脑开机后edge浏览器开机自启动&#xff0c;并且在任务管理器–启动项内可看到edge浏览器&#xff0…