• 2024-09-115 levels of text splitting
    https://github.com/langchain-ai/langchain/blob/master/cookbook/Multi_modal_RAG.ipynb Inthistutorialwearereviewingthe5LevelsOfTextSplitting.Thisisanunofficiallistputtogetherforfunandeducationalpurposes.Evertrytoputalongpiece
  • 2024-07-27js 对数组进行任意层、n层分组
    如果分组层数是动态的,即可以是n层,可以使用递归函数来实现。以下是一个示例代码,展示了如何实现动态层数分组:const_=require('lodash');//示例数据letdata=[{category:'A',type:'X',subType:'Alpha',value:1},{category:'A',type:'X&
  • 2024-06-11day12
    今天是day12第一题为二叉树的层序遍历"遍历长度法""借用队列,将root加入其中"classSolution:deflevelOrder(self,root:Optional[TreeNode])->List[List[int]]:ifnotroot:return[]queue=collections.deque([root])resu
  • 2023-12-11调度器 Nice 设计 【ChatGPT】
    https://www.kernel.org/doc/html/v6.6/scheduler/sched-nice-design.html调度器Nice设计本文档解释了在新的Linux调度器中重新设计和简化nice-levels实现的思路。在Linux下,nicelevels一直比较弱,人们不断地纠缠我们,希望让nice+19的任务使用更少的CPU时间。不
  • 2023-09-29Go - Using Log Levels
    Examplesofloglevelsfromhightoloware:•Fatal•Error•Warn•Info•DebugTosetuploglevelsforyourlogs,youcanaddtheleveltoeachlineofthelog.ThemoststraightforwardwayofdoingthisistousetheSetPrefixfunction:log.S
  • 2023-08-22oracle-行转列
    现有由多个诊断组成的字段,诊断个数不定,由英文逗号拼接。现需要将字段分解,每条诊断列为一行。转化前字段如下图:转化后字段如下图:SQL实现方法如下:selecta.id,substr(编码,instr(编码,',',1,levels.lvl)+1,instr(编码,',',1,levels.lvl+1)-(instr(编码,',',1,levels.lvl)+1)
  • 2023-08-01跳表的原理--Golang 实现一个简单跳表
    前言最近在看《Redis设计与实现》这本书,书中简单描述了跳表的性质和数据结构,但对它的具体实现没有多讲。书里对跳表结构的描述是这样的:跳跃表节点:typedefstructzskiplistNode{//后退指针structzskiplistNode*backward;//分值doublescore;//
  • 2023-06-12Python 绘图 colorbar 隐藏刻度保留标签 (颜色刻度 和标签刻度 两个)
      ax3=fig.add_axes(config['setpng']['colorbar'])#四个参数分别是左、下、宽、长  cb3=mpl.colorbar.ColorbarBase(ax3,cmap=_cmap,norm=norm)  #set_colorbar_ticks(cb3,levels,config['levels']['wind_s_label'])#色标刻度调整  
  • 2023-03-27MYSQL-另一种行转列的实现方式
    行转列的实现方式:使用mysql.help_topic--行转列SELECTb.help_topic_id,substring_index(a.levels,',',b.help_topic_id+1),substring_index(substring_inde
  • 2023-02-26vue中获取网址上的参数
    vue代码<template><div><h4>http://localhost:8080/#/test?levels=level1-1</h4><h4>获取levels1-1</h4>levels={{levels}}</div></template><