大模型落地实战:技术选型到部署全解析

news2026/4/3 2:55:47
大模型落地实践指南技术路径与关键挑战企业级大模型应用需从技术选型开始。主流技术路径包括基于开源框架如LLaMA、Falcon的微调、使用API服务如GPT-4、Claude的快速接入以及混合部署模式。技术选型需综合考虑计算资源、数据隐私要求和响应延迟等指标。开源模型微调示例PyTorchfrom transformers import AutoModelForCausalLM, AutoTokenizer model AutoModelForCausalLM.from_pretrained(meta-llama/Llama-2-7b) tokenizer AutoTokenizer.from_pretrained(meta-llama/Llama-2-7b) # 微调数据准备 train_dataset load_custom_data() training_args TrainingArguments(output_dir./results, per_device_train_batch_size4) # 开始微调 trainer Trainer(modelmodel, argstraining_args, train_datasettrain_dataset) trainer.train()数据处理与知识蒸馏技术高质量数据预处理是模型效果的基础。企业需建立数据清洗流水线包括去重、标准化和隐私脱敏等环节。知识蒸馏技术能有效压缩模型规模# 知识蒸馏示例 teacher_model load_pretrained(gpt-4) student_model init_small_model() distill_loss KLDivLoss(teacher_logits, student_logits) task_loss CrossEntropyLoss(student_output, labels) total_loss 0.7*distill_loss 0.3*task_loss企业级部署架构设计生产环境部署需考虑高可用和弹性扩展。典型架构包含 - 负载均衡层Nginx反向代理 - 模型服务层FastAPI/Triton推理服务器 - 监控系统PrometheusGrafana指标收集GPU集群部署示例KubernetesapiVersion: apps/v1 kind:: llm-inference spec: replicas: 3 template: spec: containers: - name: triton-server image: nvcr.io/nvidia/tritonserver:22.12-py3 resources: limits: nvidia.com/gpu: 2性能优化与量化压缩模型量化可显著降低推理成本。主流方法包括FP16半精度和INT8量化# 量化示例 from torch.quantization import quantize_dynamic model_fp16 model.half() # 转换为FP16 model_int8 quantize_dynamic( model.float(), {torch.nn.Linear}, dtypetorch.qint8 )安全合规与持续监控企业应用必须建立合规机制 - 数据加密TLS传输AES存储加密 - 访问控制RBAC权限管理系统 - 日志审计ELK日志分析栈安全检测代码片段def input_sanitization(text): from profanity_filter import ProfanityFilter pf ProfanityFilter() return pf.censor(text)效果评估与迭代优化建立多维评估体系 - 离线指标BLEU、ROUGE、准确率 - 在线指标响应延迟、用户满意度 - 业务指标转化率、工单解决率A/B测试框架示例class ABTest: def __init__(self, model_a, model_b): self.traffic_split 0.5 def route_request(self, input): if random() self.traffic_split: return model_a.predict(input) else: return model_b.predict(input)成本控制与资源调度智能调度算法可降低推理成本def auto_scaling(current_qps): base_replicas 2 if current_qps 100: return base_replicas ceil(current_qps/50) return base_replicas通过上述技术路径的组合应用企业可实现大模型从实验环境到生产系统的平稳过渡。实际落地时需根据具体场景选择合适的技术栈并建立完善的运维体系保障服务稳定性。 醒来时告诉自己每一天都将是新的探索过去的不再重要未来正等待着你去书写与发现。每一次的尝试都是对未来的探索勇敢追逐梦想让心灵在风雨中感受到温暖与力量。决定自己未来的不仅是梦想更是勇气与努力让每一步都值回自己付出的每一分心血。在这条充满未知的道路上勇敢追求梦想意味着接受不完美学会享受成长过程中的每一次挑战。每一次的成功都源于心灵的光辉让每一步都带着温暖与激情书写出生命中最动人的乐章。https://blog.csdn.net/2601_95511490/article/details/159012259https://blog.csdn.net/yd0d8k6m/article/details/159012261https://blog.csdn.net/j9j1tbqq/article/details/159012263https://blog.csdn.net/2601_95511464/article/details/159012264https://blog.csdn.net/ic12vrqd/article/details/159012265https://blog.csdn.net/x0ue3ezr/article/details/159012267https://blog.csdn.net/2601_95511495/article/details/159012268https://blog.csdn.net/2601_95511510/article/details/159012269https://blog.csdn.net/gznfkhtg/article/details/159012266https://blog.csdn.net/2601_95511531/article/details/159012270https://blog.csdn.net/algvtkbl/article/details/159012271https://blog.csdn.net/wuvjwbbf/article/details/159012272https://blog.csdn.net/vejxhi8r/article/details/159012273https://blog.csdn.net/2601_95511516/article/details/159012274https://blog.csdn.net/jqkf0so7/article/details/159012276https://blog.csdn.net/tvstgm9j/article/details/159012275https://blog.csdn.net/j266nn99/article/details/159012278https://blog.csdn.net/h8o9puhu/article/details/159012279https://blog.csdn.net/2601_95511518/article/details/159012280https://blog.csdn.net/o7h485e7/article/details/159012281https://blog.csdn.net/2601_95511432/article/details/159012283https://blog.csdn.net/2601_95511457/article/details/159012284https://blog.csdn.net/e1viy4bi/article/details/159012285https://blog.csdn.net/zj6wav9z/article/details/159012286https://blog.csdn.net/eh9hs64a/article/details/159012287https://blog.csdn.net/2601_95511466/article/details/159012290https://blog.csdn.net/rm5vkeh2/article/details/159012291https://blog.csdn.net/tcf3iggn/article/details/159012296https://blog.csdn.net/efelqhrk/article/details/159012298https://blog.csdn.net/yhdp5gma/article/details/159012301https://blog.csdn.net/n7i6buoi/article/details/159012303https://blog.csdn.net/2601_95511460/article/details/159012304https://blog.csdn.net/lvvxtxws/article/details/159012305https://blog.csdn.net/2601_95511487/article/details/159012307https://blog.csdn.net/s41ungxg/article/details/159012308https://blog.csdn.net/fhoertba/article/details/159012313https://blog.csdn.net/p2k19rzp/article/details/159012314https://blog.csdn.net/v2xvlliv/article/details/159012322https://blog.csdn.net/qvqj8rgm/article/details/159012321https://blog.csdn.net/2601_95511523/article/details/159012320https://blog.csdn.net/emwl43v2/article/details/159012326https://blog.csdn.net/wpl8v7iy/article/details/159012328https://blog.csdn.net/ra5yzx6p/article/details/159012330https://blog.csdn.net/eeq85pqu/article/details/159012329https://blog.csdn.net/isv19tvj/article/details/159012331https://blog.csdn.net/2601_95511450/article/details/159012337https://blog.csdn.net/ciytx07c/article/details/159012339https://blog.csdn.net/wfwuaraa/article/details/159012341https://blog.csdn.net/bvr29p95/article/details/159012342https://blog.csdn.net/om9id8lp/article/details/159012343https://blog.csdn.net/2601_95511500/article/details/159012345https://blog.csdn.net/nwepuczn/article/details/159012332https://blog.csdn.net/ch8hrh12/article/details/159012348https://blog.csdn.net/2601_95511533/article/details/159012349https://blog.csdn.net/slbtgjie/article/details/159012350https://blog.csdn.net/demiawnz/article/details/159012352https://blog.csdn.net/2601_95511528/article/details/159012353https://blog.csdn.net/2601_95511480/article/details/159012354https://blog.csdn.net/ew0lamr8/article/details/159012355https://blog.csdn.net/t0min38o/article/details/159012356https://blog.csdn.net/kn7nr6ys/article/details/159012357https://blog.csdn.net/m3g06b2c/article/details/159012359https://blog.csdn.net/t3nm7if6/article/details/159012358https://blog.csdn.net/w3mbm3fl/article/details/159012360https://blog.csdn.net/jp0l815w/article/details/159012361https://blog.csdn.net/skoq46rk/article/details/159012362https://blog.csdn.net/qpfabvd1/article/details/159012363https://blog.csdn.net/zyb9eowv/article/details/159012365https://blog.csdn.net/tn62so18/article/details/159012366https://blog.csdn.net/b5f8e1c0/article/details/159012364https://blog.csdn.net/phbi2b0v/article/details/159012367https://blog.csdn.net/ix4ita12/article/details/159012369https://blog.csdn.net/het5sjcl/article/details/159012368https://blog.csdn.net/lgrxhsp0/article/details/159012370https://blog.csdn.net/umsnfpbi/article/details/159012372https://blog.csdn.net/2601_95511542/article/details/159012374https://blog.csdn.net/nenwtgyf/article/details/159012376https://blog.csdn.net/2601_95511442/article/details/159012379https://blog.csdn.net/g4akkd2j/article/details/159012391https://blog.csdn.net/2601_95511517/article/details/159012455https://blog.csdn.net/avnl9occ/article/details/159012456https://blog.csdn.net/tb73d5cw/article/details/159012464https://blog.csdn.net/tw54byzd/article/details/159012471https://blog.csdn.net/hvb974vw/article/details/159012473https://blog.csdn.net/ks32n84r/article/details/159012476https://blog.csdn.net/gjmfbh2v/article/details/159012487https://blog.csdn.net/msj6x6th/article/details/159012495https://blog.csdn.net/2601_95511466/article/details/159012488https://blog.csdn.net/ix4ita12/article/details/159012497https://blog.csdn.net/jw7tal3c/article/details/159012499https://blog.csdn.net/2601_95511462/article/details/159012502https://blog.csdn.net/xnvx1zox/article/details/159012501https://blog.csdn.net/b5f8e1c0/article/details/159012506https://blog.csdn.net/het5sjcl/article/details/159012507https://blog.csdn.net/ciytx07c/article/details/159012509https://blog.csdn.net/ptw2ustm/article/details/159012512https://blog.csdn.net/2601_95511461/article/details/159012513https://blog.csdn.net/tvstgm9j/article/details/159012518https://blog.csdn.net/hwqplawe/article/details/159012519https://blog.csdn.net/2601_95511464/article/details/159012521https://blog.csdn.net/z3w4ic97/article/details/159012522https://blog.csdn.net/u1zohlg1/article/details/159012523https://blog.csdn.net/m6sd0ioo/article/details/159012524https://blog.csdn.net/o7h485e7/article/details/159012526https://blog.csdn.net/uwxtp3a2/article/details/159012528https://blog.csdn.net/j9j1tbqq/article/details/159012529https://blog.csdn.net/2601_95511457/article/details/159012530https://blog.csdn.net/j266nn99/article/details/159012532https://blog.csdn.net/hwxo31xb/article/details/159012531https://blog.csdn.net/2601_95511506/article/details/159012533https://blog.csdn.net/2601_95511454/article/details/159012534https://blog.csdn.net/2601_95511537/article/details/159012536https://blog.csdn.net/2601_95511531/article/details/159012537https://blog.csdn.net/s4058jc8/article/details/159012538https://blog.csdn.net/2601_95511471/article/details/159012535https://blog.csdn.net/gznfkhtg/article/details/159012539https://blog.csdn.net/2601_95511536/article/details/159012540https://blog.csdn.net/wuvjwbbf/article/details/159012541https://blog.csdn.net/vejxhi8r/article/details/159012542https://blog.csdn.net/puuk708n/article/details/159012543https://blog.csdn.net/eeq85pqu/article/details/159012544https://blog.csdn.net/2601_95511518/article/details/159012545https://blog.csdn.net/2601_95511508/article/details/159012546https://blog.csdn.net/h8o9puhu/article/details/159012547https://blog.csdn.net/phtl57w6/article/details/159012549https://blog.csdn.net/vfp3k5kr/article/details/159012550https://blog.csdn.net/e7aonutk/article/details/159012551https://blog.csdn.net/lvvxtxws/article/details/159012552https://blog.csdn.net/b8mczygd/article/details/159012553https://blog.csdn.net/jqkf0so7/article/details/159012555https://blog.csdn.net/bvi7o3a1/article/details/159012556https://blog.csdn.net/bmi653qp/article/details/159012558https://blog.csdn.net/e1viy4bi/article/details/159012560https://blog.csdn.net/2601_95511497/article/details/159012559https://blog.csdn.net/w3mbm3fl/article/details/159012562https://blog.csdn.net/algvtkbl/article/details/159012563https://blog.csdn.net/za2b97ax/article/details/159012571https://blog.csdn.net/uwl09ooh/article/details/159012566https://blog.csdn.net/2601_95511510/article/details/159012570https://blog.csdn.net/2601_95511539/article/details/159012565https://blog.csdn.net/2601_95511440/article/details/159012572https://blog.csdn.net/ht1t8qbn/article/details/159012568https://blog.csdn.net/ra5yzx6p/article/details/159012574https://blog.csdn.net/yd0d8k6m/article/details/159012575https://blog.csdn.net/utzkjfyp/article/details/159012577https://blog.csdn.net/wpl8v7iy/article/details/159012578https://blog.csdn.net/rm5vkeh2/article/details/159012580https://blog.csdn.net/ogrzdfv6/article/details/159012582https://blog.csdn.net/tb73d5cw/article/details/159012583https://blog.csdn.net/2601_95511448/article/details/159012587https://blog.csdn.net/2601_95511516/article/details/159012590https://blog.csdn.net/u1zohlg1/article/details/159012595https://blog.csdn.net/2601_95511495/article/details/159012596https://blog.csdn.net/2601_95511537/article/details/159012597https://blog.csdn.net/b8mczygd/article/details/159012598https://blog.csdn.net/2601_95511523/article/details/159012599https://blog.csdn.net/2601_95511490/article/details/159012600https://blog.csdn.net/phtl57w6/article/details/159012613https://blog.csdn.net/n2v6j495/article/details/159012617https://blog.csdn.net/2601_95511497/article/details/159012619https://blog.csdn.net/2601_95511508/article/details/159012621https://blog.csdn.net/2601_95511440/article/details/159012622https://blog.csdn.net/x0ue3ezr/article/details/159012624https://blog.csdn.net/2601_95511506/article/details/159012625https://blog.csdn.net/2601_95511513/article/details/159012638https://blog.csdn.net/2601_95510825/article/details/159010482https://blog.csdn.net/rmiyy3gu/article/details/159010498https://blog.csdn.net/fckzyxbp/article/details/159010499https://blog.csdn.net/x8jvq2ja/article/details/159010503https://blog.csdn.net/ukxo08ws/article/details/159010506https://blog.csdn.net/p52f72nw/article/details/159010507https://blog.csdn.net/2601_95510819/article/details/159010511https://blog.csdn.net/2601_95498962/article/details/159010512https://blog.csdn.net/n3ph3jdz/article/details/159010516https://blog.csdn.net/tkcfwzmu/article/details/159010509https://blog.csdn.net/o78tg7nn/article/details/159010517https://blog.csdn.net/xks5ag39/article/details/159010525https://blog.csdn.net/d4qfcjw6/article/details/159010519https://blog.csdn.net/e8uhbc91/article/details/159010537https://blog.csdn.net/2601_95498981/article/details/159010542https://blog.csdn.net/odlyfxsb/article/details/159010546https://blog.csdn.net/yhq8spt7/article/details/159010547https://blog.csdn.net/dvzen3gh/article/details/159010551https://blog.csdn.net/bbyqho1l/article/details/159010553https://blog.csdn.net/rrotfuog/article/details/159010554https://blog.csdn.net/sm6cra3g/article/details/159010558https://blog.csdn.net/pg3qn1ks/article/details/159010559https://blog.csdn.net/n1j60p8s/article/details/159010564https://blog.csdn.net/r63577e8/article/details/159010565https://blog.csdn.net/e0szok6k/article/details/159010566https://blog.csdn.net/2601_95499027/article/details/159010568https://blog.csdn.net/xks5ag39/article/details/159010570https://blog.csdn.net/ukxo08ws/article/details/159010573https://blog.csdn.net/jeoyxysx/article/details/159010574https://blog.csdn.net/ch5dccot/article/details/159010575https://blog.csdn.net/hf7g7hi0/article/details/159010576https://blog.csdn.net/tkcfwzmu/article/details/159010577https://blog.csdn.net/o52r5896/article/details/159010578https://blog.csdn.net/rtru52y5/article/details/159010579https://blog.csdn.net/o78tg7nn/article/details/159010580https://blog.csdn.net/qb1yolm7/article/details/159010581https://blog.csdn.net/2601_95510827/article/details/159010582https://blog.csdn.net/2601_95510819/article/details/159010583https://blog.csdn.net/fckzyxbp/article/details/159010584https://blog.csdn.net/p52f72nw/article/details/159010585https://blog.csdn.net/mjllflfp/article/details/159010586https://blog.csdn.net/pp2vw7s2/article/details/159010588https://blog.csdn.net/ynyysep9/article/details/159010589https://blog.csdn.net/en8aoicy/article/details/159010590https://blog.csdn.net/iky6mnmc/article/details/159010587https://blog.csdn.net/wzmv5jbs/article/details/159010592https://blog.csdn.net/bw8keabq/article/details/159010594https://blog.csdn.net/n3ph3jdz/article/details/159010595https://blog.csdn.net/mgq8cm2n/article/details/159010597https://blog.csdn.net/rmiyy3gu/article/details/159010599https://blog.csdn.net/2601_95510825/article/details/159010602https://blog.csdn.net/2601_95510829/article/details/159010605https://blog.csdn.net/lrreo73e/article/details/159010603https://blog.csdn.net/ct7vmw7t/article/details/159010604https://blog.csdn.net/udpfbnjr/article/details/159010609https://blog.csdn.net/2601_95510810/article/details/159010611https://blog.csdn.net/n3eix1m1/article/details/159010612https://blog.csdn.net/yhq8spt7/article/details/159010613https://blog.csdn.net/z49ccn08/article/details/159010615https://blog.csdn.net/it5v36j6/article/details/159010617https://blog.csdn.net/d4qfcjw6/article/details/159010618https://blog.csdn.net/ra1jb2iy/article/details/159010619https://blog.csdn.net/odlyfxsb/article/details/159010622https://blog.csdn.net/sm6cra3g/article/details/159010623https://blog.csdn.net/2601_95510830/article/details/159010624https://blog.csdn.net/bbyqho1l/article/details/159010625https://blog.csdn.net/rrotfuog/article/details/159010626https://blog.csdn.net/l2p60msn/article/details/159010627https://blog.csdn.net/mcrj4c5j/article/details/159010629https://blog.csdn.net/e8uhbc91/article/details/159010631https://blog.csdn.net/hcn6xy65/article/details/159010630https://blog.csdn.net/2601_95499034/article/details/159010634https://blog.csdn.net/pg3qn1ks/article/details/159010636https://blog.csdn.net/fpae6hp5/article/details/159010637https://blog.csdn.net/2601_95498981/article/details/159010639https://blog.csdn.net/2601_95498962/article/details/159010641https://blog.csdn.net/2601_95510827/article/details/159010644https://blog.csdn.net/rswoczkp/article/details/159010647https://blog.csdn.net/pp2vw7s2/article/details/159010646https://blog.csdn.net/xtrx1k0d/article/details/159010649https://blog.csdn.net/2601_95498966/article/details/159010650https://blog.csdn.net/n1j60p8s/article/details/159010651https://blog.csdn.net/bw8keabq/article/details/159010652https://blog.csdn.net/har494jw/article/details/159010654https://blog.csdn.net/qb1yolm7/article/details/159010656https://blog.csdn.net/ldb278oa/article/details/159010660https://blog.csdn.net/2601_95499175/article/details/159010662https://blog.csdn.net/yj3xd52e/article/details/159010661https://blog.csdn.net/jxhrnv85/article/details/159010663https://blog.csdn.net/2601_95498991/article/details/159010666https://blog.csdn.net/w32cdpav/article/details/159010667https://blog.csdn.net/iky6mnmc/article/details/159010669https://blog.csdn.net/z5o06135/article/details/159010671https://blog.csdn.net/rtru52y5/article/details/159010672https://blog.csdn.net/hf7g7hi0/article/details/159010674https://blog.csdn.net/yvxtqx0m/article/details/159010675https://blog.csdn.net/e0szok6k/article/details/159010673https://blog.csdn.net/bvdipfoc/article/details/159010676https://blog.csdn.net/2601_95499027/article/details/159010678https://blog.csdn.net/p9osw5fh/article/details/159010680https://blog.csdn.net/ynyysep9/article/details/159010681https://blog.csdn.net/udpfbnjr/article/details/159010683https://blog.csdn.net/mjllflfp/article/details/159010684https://blog.csdn.net/wzmv5jbs/article/details/159010685https://blog.csdn.net/v0e9pxl7/article/details/159010688https://blog.csdn.net/lrreo73e/article/details/159010687https://blog.csdn.net/o52r5896/article/details/159010689https://blog.csdn.net/z49ccn08/article/details/159010693https://blog.csdn.net/2601_95499018/article/details/159010694https://blog.csdn.net/lmq847ri/article/details/159010695https://blog.csdn.net/jeoyxysx/article/details/159010696https://blog.csdn.net/xtrx1k0d/article/details/159010702https://blog.csdn.net/2601_95499038/article/details/159010706https://blog.csdn.net/njgnumdn/article/details/159010754https://blog.csdn.net/tqfhvnih/article/details/159010780https://blog.csdn.net/xu0vntxs/article/details/159010785https://blog.csdn.net/2601_95510970/article/details/159010787https://blog.csdn.net/2601_95498341/article/details/159010789https://blog.csdn.net/qx5fqjda/article/details/159010791https://blog.csdn.net/h37whlm4/article/details/159010792https://blog.csdn.net/2601_95510971/article/details/159010788https://blog.csdn.net/oqtxibeq/article/details/159010802https://blog.csdn.net/2601_95510966/article/details/159010803https://blog.csdn.net/q9rpngy5/article/details/159010804https://blog.csdn.net/eax8z7qm/article/details/159010808https://blog.csdn.net/2601_95510968/article/details/159010784https://blog.csdn.net/s1kcg4tu/article/details/159010800https://blog.csdn.net/2601_95498057/article/details/159010812https://blog.csdn.net/uvt0g69s/article/details/159010810https://blog.csdn.net/tcffyjqq/article/details/159010813https://blog.csdn.net/2601_95499471/article/details/159010820https://blog.csdn.net/nkycrtth/article/details/159010823https://blog.csdn.net/qrpsv2f0/article/details/159010824https://blog.csdn.net/sjp5dpn7/article/details/159010828https://blog.csdn.net/ooewovlq/article/details/159010829https://blog.csdn.net/yfks5amk/article/details/159010833https://blog.csdn.net/e2uiqthp/article/details/159010837https://blog.csdn.net/p1hc5l3y/article/details/159010831https://blog.csdn.net/yppwqr2c/article/details/159010816https://blog.csdn.net/mqhgg6fu/article/details/159010840https://blog.csdn.net/2601_95498038/article/details/159010841https://blog.csdn.net/2601_95498046/article/details/159010842https://blog.csdn.net/lso3j59x/article/details/159010843https://blog.csdn.net/rifn46u2/article/details/159010844https://blog.csdn.net/2601_95498335/article/details/159010845https://blog.csdn.net/g2u4smv0/article/details/159010846https://blog.csdn.net/gy4rpuux/article/details/159010847https://blog.csdn.net/2601_95498204/article/details/159010848https://blog.csdn.net/ajjxheta/article/details/159010850https://blog.csdn.net/ddwet8y8/article/details/159010852https://blog.csdn.net/2601_95498414/article/details/159010853https://blog.csdn.net/2601_95510969/article/details/159010854https://blog.csdn.net/olkumoyw/article/details/159010856https://blog.csdn.net/k165th7t/article/details/159010849https://blog.csdn.net/2601_95498092/article/details/159010857https://blog.csdn.net/sj89t6tc/article/details/159010858https://blog.csdn.net/mxqvkfsl/article/details/159010860https://blog.csdn.net/pxgipv4t/article/details/159010859https://blog.csdn.net/2601_95510974/article/details/159010862https://blog.csdn.net/2601_95498341/article/details/159010863https://blog.csdn.net/fgbaw2yb/article/details/159010864https://blog.csdn.net/xbolmzvk/article/details/159010866https://blog.csdn.net/h9n89u2i/article/details/159010865https://blog.csdn.net/zf2b7zne/article/details/159010870https://blog.csdn.net/xvah94vy/article/details/159010881https://blog.csdn.net/2601_95510971/article/details/159010874https://blog.csdn.net/njw4rpup/article/details/159010876https://blog.csdn.net/z3s8wpb6/article/details/159010879https://blog.csdn.net/dausostz/article/details/159010871https://blog.csdn.net/tqfhvnih/article/details/159010872https://blog.csdn.net/qx5fqjda/article/details/159010878https://blog.csdn.net/qqfc8z0i/article/details/159010880https://blog.csdn.net/l2l9ljjm/article/details/159010882https://blog.csdn.net/oo9ofmfq/article/details/159010883https://blog.csdn.net/2601_95510976/article/details/159010877https://blog.csdn.net/njgnumdn/article/details/159010875https://blog.csdn.net/i7bqwzc8/article/details/159010884https://blog.csdn.net/m96len0q/article/details/159010885https://blog.csdn.net/vpjblyli/article/details/159010886https://blog.csdn.net/eax8z7qm/article/details/159010887https://blog.csdn.net/ayj3rhmi/article/details/159010889https://blog.csdn.net/oqwbvj55/article/details/159010888https://blog.csdn.net/h37whlm4/article/details/159010891https://blog.csdn.net/2601_95498057/article/details/159010892https://blog.csdn.net/2601_95499632/article/details/159010893https://blog.csdn.net/2601_95510968/article/details/159010896https://blog.csdn.net/q9rpngy5/article/details/159010898https://blog.csdn.net/2601_95510966/article/details/159010899https://blog.csdn.net/s1kcg4tu/article/details/159010902https://blog.csdn.net/apicefri/article/details/159010900https://blog.csdn.net/2601_95499471/article/details/159010903https://blog.csdn.net/fss86npe/article/details/159010905https://blog.csdn.net/otgadz9k/article/details/159010913https://blog.csdn.net/yppwqr2c/article/details/159010910https://blog.csdn.net/nkycrtth/article/details/159010912https://blog.csdn.net/yfks5amk/article/details/159010909https://blog.csdn.net/xbolmzvk/article/details/159010916https://blog.csdn.net/p1hc5l3y/article/details/159010917https://blog.csdn.net/sj89t6tc/article/details/159010918https://blog.csdn.net/oqtxibeq/article/details/159010919https://blog.csdn.net/z3s8wpb6/article/details/159010923https://blog.csdn.net/2601_95510969/article/details/159010925https://blog.csdn.net/2601_95498046/article/details/159010927https://blog.csdn.net/vtvvoqgn/article/details/159010931https://blog.csdn.net/gy4rpuux/article/details/159010932https://blog.csdn.net/lso3j59x/article/details/159010933https://blog.csdn.net/2601_95498414/article/details/159010936https://blog.csdn.net/apicefri/article/details/159010939https://blog.csdn.net/ddwet8y8/article/details/159010938https://blog.csdn.net/2601_95499632/article/details/159010940https://blog.csdn.net/qwca6dhx/article/details/159010941https://blog.csdn.net/uvt0g69s/article/details/159010945https://blog.csdn.net/tcffyjqq/article/details/159010944https://blog.csdn.net/olkumoyw/article/details/159010942https://blog.csdn.net/i7bqwzc8/article/details/159010946https://blog.csdn.net/gl5f23pw/article/details/159010947https://blog.csdn.net/mxqvkfsl/article/details/159010949https://blog.csdn.net/m96len0q/article/details/159010950https://blog.csdn.net/njw4rpup/article/details/159010951https://blog.csdn.net/i6et2xaw/article/details/159010953https://blog.csdn.net/zf2b7zne/article/details/159010954https://blog.csdn.net/2601_95498092/article/details/159010955https://blog.csdn.net/mqhgg6fu/article/details/159010956https://blog.csdn.net/2601_95498204/article/details/159010957https://blog.csdn.net/2601_95510974/article/details/159010959https://blog.csdn.net/ajjxheta/article/details/159010960https://blog.csdn.net/k165th7t/article/details/159010961https://blog.csdn.net/dausostz/article/details/159010962https://blog.csdn.net/g2u4smv0/article/details/159010963https://blog.csdn.net/l2l9ljjm/article/details/159010964https://blog.csdn.net/h9n89u2i/article/details/159010965https://blog.csdn.net/2601_95510976/article/details/159010966https://blog.csdn.net/oo9ofmfq/article/details/159010967https://blog.csdn.net/vpjblyli/article/details/159010968https://blog.csdn.net/otgadz9k/article/details/159010971

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

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

相关文章

SpringBoot-17-MyBatis动态SQL标签之常用标签

文章目录 1 代码1.1 实体User.java1.2 接口UserMapper.java1.3 映射UserMapper.xml1.3.1 标签if1.3.2 标签if和where1.3.3 标签choose和when和otherwise1.4 UserController.java2 常用动态SQL标签2.1 标签set2.1.1 UserMapper.java2.1.2 UserMapper.xml2.1.3 UserController.ja…

wordpress后台更新后 前端没变化的解决方法

使用siteground主机的wordpress网站,会出现更新了网站内容和修改了php模板文件、js文件、css文件、图片文件后,网站没有变化的情况。 不熟悉siteground主机的新手,遇到这个问题,就很抓狂,明明是哪都没操作错误&#x…

网络编程(Modbus进阶)

思维导图 Modbus RTU(先学一点理论) 概念 Modbus RTU 是工业自动化领域 最广泛应用的串行通信协议,由 Modicon 公司(现施耐德电气)于 1979 年推出。它以 高效率、强健性、易实现的特点成为工业控制系统的通信标准。 包…

UE5 学习系列(二)用户操作界面及介绍

这篇博客是 UE5 学习系列博客的第二篇,在第一篇的基础上展开这篇内容。博客参考的 B 站视频资料和第一篇的链接如下: 【Note】:如果你已经完成安装等操作,可以只执行第一篇博客中 2. 新建一个空白游戏项目 章节操作,重…

IDEA运行Tomcat出现乱码问题解决汇总

最近正值期末周,有很多同学在写期末Java web作业时,运行tomcat出现乱码问题,经过多次解决与研究,我做了如下整理: 原因: IDEA本身编码与tomcat的编码与Windows编码不同导致,Windows 系统控制台…

利用最小二乘法找圆心和半径

#include <iostream> #include <vector> #include <cmath> #include <Eigen/Dense> // 需安装Eigen库用于矩阵运算 // 定义点结构 struct Point { double x, y; Point(double x_, double y_) : x(x_), y(y_) {} }; // 最小二乘法求圆心和半径 …

使用docker在3台服务器上搭建基于redis 6.x的一主两从三台均是哨兵模式

一、环境及版本说明 如果服务器已经安装了docker,则忽略此步骤,如果没有安装,则可以按照一下方式安装: 1. 在线安装(有互联网环境): 请看我这篇文章 传送阵>> 点我查看 2. 离线安装(内网环境):请看我这篇文章 传送阵>> 点我查看 说明&#xff1a;假设每台服务器已…

XML Group端口详解

在XML数据映射过程中&#xff0c;经常需要对数据进行分组聚合操作。例如&#xff0c;当处理包含多个物料明细的XML文件时&#xff0c;可能需要将相同物料号的明细归为一组&#xff0c;或对相同物料号的数量进行求和计算。传统实现方式通常需要编写脚本代码&#xff0c;增加了开…

LBE-LEX系列工业语音播放器|预警播报器|喇叭蜂鸣器的上位机配置操作说明

LBE-LEX系列工业语音播放器|预警播报器|喇叭蜂鸣器专为工业环境精心打造&#xff0c;完美适配AGV和无人叉车。同时&#xff0c;集成以太网与语音合成技术&#xff0c;为各类高级系统&#xff08;如MES、调度系统、库位管理、立库等&#xff09;提供高效便捷的语音交互体验。 L…

(LeetCode 每日一题) 3442. 奇偶频次间的最大差值 I (哈希、字符串)

题目&#xff1a;3442. 奇偶频次间的最大差值 I 思路 &#xff1a;哈希&#xff0c;时间复杂度0(n)。 用哈希表来记录每个字符串中字符的分布情况&#xff0c;哈希表这里用数组即可实现。 C版本&#xff1a; class Solution { public:int maxDifference(string s) {int a[26]…

【大模型RAG】拍照搜题技术架构速览:三层管道、两级检索、兜底大模型

摘要 拍照搜题系统采用“三层管道&#xff08;多模态 OCR → 语义检索 → 答案渲染&#xff09;、两级检索&#xff08;倒排 BM25 向量 HNSW&#xff09;并以大语言模型兜底”的整体框架&#xff1a; 多模态 OCR 层 将题目图片经过超分、去噪、倾斜校正后&#xff0c;分别用…

【Axure高保真原型】引导弹窗

今天和大家中分享引导弹窗的原型模板&#xff0c;载入页面后&#xff0c;会显示引导弹窗&#xff0c;适用于引导用户使用页面&#xff0c;点击完成后&#xff0c;会显示下一个引导弹窗&#xff0c;直至最后一个引导弹窗完成后进入首页。具体效果可以点击下方视频观看或打开下方…

接口测试中缓存处理策略

在接口测试中&#xff0c;缓存处理策略是一个关键环节&#xff0c;直接影响测试结果的准确性和可靠性。合理的缓存处理策略能够确保测试环境的一致性&#xff0c;避免因缓存数据导致的测试偏差。以下是接口测试中常见的缓存处理策略及其详细说明&#xff1a; 一、缓存处理的核…

龙虎榜——20250610

上证指数放量收阴线&#xff0c;个股多数下跌&#xff0c;盘中受消息影响大幅波动。 深证指数放量收阴线形成顶分型&#xff0c;指数短线有调整的需求&#xff0c;大概需要一两天。 2025年6月10日龙虎榜行业方向分析 1. 金融科技 代表标的&#xff1a;御银股份、雄帝科技 驱动…

观成科技:隐蔽隧道工具Ligolo-ng加密流量分析

1.工具介绍 Ligolo-ng是一款由go编写的高效隧道工具&#xff0c;该工具基于TUN接口实现其功能&#xff0c;利用反向TCP/TLS连接建立一条隐蔽的通信信道&#xff0c;支持使用Let’s Encrypt自动生成证书。Ligolo-ng的通信隐蔽性体现在其支持多种连接方式&#xff0c;适应复杂网…

铭豹扩展坞 USB转网口 突然无法识别解决方法

当 USB 转网口扩展坞在一台笔记本上无法识别,但在其他电脑上正常工作时,问题通常出在笔记本自身或其与扩展坞的兼容性上。以下是系统化的定位思路和排查步骤,帮助你快速找到故障原因: 背景: 一个M-pard(铭豹)扩展坞的网卡突然无法识别了,扩展出来的三个USB接口正常。…

未来机器人的大脑:如何用神经网络模拟器实现更智能的决策?

编辑&#xff1a;陈萍萍的公主一点人工一点智能 未来机器人的大脑&#xff1a;如何用神经网络模拟器实现更智能的决策&#xff1f;RWM通过双自回归机制有效解决了复合误差、部分可观测性和随机动力学等关键挑战&#xff0c;在不依赖领域特定归纳偏见的条件下实现了卓越的预测准…

Linux应用开发之网络套接字编程(实例篇)

服务端与客户端单连接 服务端代码 #include <sys/socket.h> #include <sys/types.h> #include <netinet/in.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <arpa/inet.h> #include <pthread.h> …

华为云AI开发平台ModelArts

华为云ModelArts&#xff1a;重塑AI开发流程的“智能引擎”与“创新加速器”&#xff01; 在人工智能浪潮席卷全球的2025年&#xff0c;企业拥抱AI的意愿空前高涨&#xff0c;但技术门槛高、流程复杂、资源投入巨大的现实&#xff0c;却让许多创新构想止步于实验室。数据科学家…

深度学习在微纳光子学中的应用

深度学习在微纳光子学中的主要应用方向 深度学习与微纳光子学的结合主要集中在以下几个方向&#xff1a; 逆向设计 通过神经网络快速预测微纳结构的光学响应&#xff0c;替代传统耗时的数值模拟方法。例如设计超表面、光子晶体等结构。 特征提取与优化 从复杂的光学数据中自…