首页
学习
活动
专区
圈层
工具
发布
    • 综合排序
    • 最热优先
    • 最新优先
    时间不限
  • 来自专栏愷龍的Blog

    Broadband Networks and Internet Architecture 宽带和Internet架构

    Cloud-Enabling Technology云使能技术 Broadband Networks and Internet Architecture 宽带和Internet架构 -All clouds forms of service middleware can be deployed and operated within cloud-based environments summary ↻ Broadband

    1K10编辑于 2022-09-26
  • 来自专栏啄木鸟软件测试

    记一次移动光猫(GM219-S)安全测试

    Router  | Login:  | Password:  | GetRequest:  | Star-Net Broadband Router  | Login : GET / HTTP/1.0  | Password:  | Help:  | HELP  | Star-Net Broadband Router  | Login : Password:  | NCP:  | Star-Net Broadband Router  | Login: DmdT^@^@^@  | ^@^@^@^A^@^@^@ ^@^@  | NULL:  | Star-Net Broadband Router  | Login:  | RPCCheck:  | Star-Net Broadband Router  | Login:  | ^@^@(r  | SIPOptions:  | Star-Net Broadband Router  | Login: OPTIONS

    4.5K20发布于 2019-12-12
  • 来自专栏GEE数据专栏,GEE学习专栏,GEE错误集等专栏

    Google Earth Engine ——MCD43A3 V6反照率模型数据集是一个每天16天的产品。它提供了MODIS表面反射波段(波段1到波段7)以及3个宽光谱波段(可见光、近红外和短波)

    Albedo_BSA_vis Black-sky albedo for visible brodband 0 32766 0.001 Albedo_BSA_nir Black-sky albedo for NIR broadband 0 32766 858nm 0.001 Albedo_BSA_shortwave Black-sky albedo for shortwave broadband 0 32766 0.001 Albedo_WSA_Band1 0 32766 0.001 Albedo_WSA_nir White-sky albedo for NIR broadband 0 32766 858nm 0.001 Albedo_WSA_shortwave White-sky albedo for shortwave broadband 0 32766 0.001 BRDF_Albedo_Band_Mandatory_Quality_Band1 BRDF BRDF inversions) BRDF_Albedo_Band_Mandatory_Quality_vis BRDF albedo mandatory quality for visible broadband

    55210编辑于 2024-02-02
  • 来自专栏GEE数据专栏,GEE学习专栏,GEE错误集等专栏

    Google Earth Engine ——MCD43C3第6版双向反射分布函数和反照率(BRDF/Albedo)反照率数据集是在0.05度(赤道5,600米)的气候模拟网格(CMG)中使用16天数据

    Albedo_BSA_vis Black-sky albedo for visible brodband 0 32766 0.001 Albedo_BSA_nir Black-sky albedo for NIR broadband 0 32766 858nm 0.001 Albedo_BSA_shortwave Black-sky albedo for shortwave broadband 0 32766 0.001 Albedo_WSA_Band1 White-sky albedo for band 7 0 32766 2105-2155nm 0.001 Albedo_WSA_vis White-sky albedo for visible broadband 0 32766 0.001 Albedo_WSA_nir White-sky albedo for NIR broadband 0 32766 858nm 0.001 Albedo_WSA_shortwave White-sky albedo for shortwave broadband 0 32766 0.001 BRDF_Quality Global albedo quality 0 BRDF_Quality

    44010编辑于 2024-02-02
  • 来自专栏嵌入式程序猿

    那些傻傻分不清楚的802.x协议

    IEEE 802.16:Broadband Wireless MAN Standard - WiMAX IEEE 802.17:弹性分组环 Resilient Packet Ring IEEE 802.18 :无线管制 Radio Regulatory TAG IEEE 802.19:共存 Coexistence TAG IEEE 802.20:移动宽带无线接入 Mobile Broadband Wireless

    1K100发布于 2018-04-11
  • 来自专栏Python 商业数据分析案例

    Python 实现随机森林预测宽带客户离网(附源数据与代码)

    import pandas as pd import numpy as np df = pd.read_csv('broadband.csv') # 宽带客户数据 df.head(); df.info () 参数说明 本代码文件只为演示随机森林的用法和调优方法,所以数据参数我们只需关注最后一个broadband 即可0-离开,1-留存。 其他自变量意思可不做探究,毕竟真实工作中的数据集也完全不一样,首先将列名全部小写 df.rename(str.lower, axis='columns', inplace=True) 现在查看因变量broadband 分布情况,看是否存在不平衡 from collections import Counter print('Broadband: ', Counter(df['broadband'])) ## Broadband ## 根据原理部分,可知随机森林是处理数据不平衡问题的利器 接着拆分测试集与训练集,客户id没有用,故丢弃cust_id, y = df['broadband'] X = df.iloc[:, 1:-

    1.8K00发布于 2020-08-02
  • BUUCTF voip 1

    其他非正式的名称有IP电话(IP telephony)、互联网电话(Internet telephony)、宽带电话(broadband telephony)以及宽带电话服务(broadband phone

    33400编辑于 2025-08-18
  • 来自专栏GEE数据专栏,GEE学习专栏,GEE错误集等专栏

    Google Earth Engine ——MCD43A1 V6双向反射分布函数和反照率(BRDF/Albedo)模型参数数据集是一个500米每日16天的产品2000年至今

    BRDF inversions) BRDF_Albedo_Band_Mandatory_Quality_vis BRDF albedo mandatory quality for visible broadband magnitude BRDF inversions) BRDF_Albedo_Band_Mandatory_Quality_nir BRDF albedo mandatory quality for NIR broadband inversions) BRDF_Albedo_Band_Mandatory_Quality_shortwave BRDF albedo mandatory quality for shortwave broadband magnitude BRDF inversions) BRDF_Albedo_Band_Mandatory_Quality_nirBRDF albedo mandatory quality for NIR broadband0BRDF_Albedo_Band_Mandatory_Quality_nir inversions) BRDF_Albedo_Band_Mandatory_Quality_shortwaveBRDF albedo mandatory quality for shortwave broadband0BRDF_Albedo_Band_Mandatory_Quality_shortwave

    51010编辑于 2024-02-02
  • 来自专栏早起Python

    原理+代码|深入浅出Python随机森林预测实战

    import pandas as pd import numpy as np df = pd.read_csv('broadband.csv') # 宽带客户数据 df.head(); df.info 参数说明 本代码文件只为演示随机森林的用法和调优方法,所以数据参数我们只需关注最后一个broadband 即可0-离开,1-留存。 其他自变量意思可不做探究,毕竟真实工作中的数据集也完全不一样,首先将列名全部小写 df.rename(str.lower, axis='columns', inplace=True) 现在查看因变量broadband 分布情况,看是否存在不平衡 from collections import Counter print('Broadband: ', Counter(df['broadband'])) ## Broadband ## 根据原理部分,可知随机森林是处理数据不平衡问题的利器 接着拆分测试集与训练集,客户id没有用,故丢弃cust_id, y = df['broadband'] X = df.iloc[:, 1:-

    1.8K20发布于 2020-07-27
  • 来自专栏不能显示专栏创建者

    全速前进

    原文:In the second half of 2016, almost 60 percent of U.S. broadband households were likely to upgrade. can be drawn that the more a consumer has "invested" in OTT services the greater perceived risk of broadband

    36600发布于 2020-12-20
  • 来自专栏气象学家

    中科大突破湍流大气遥感极限!

    近日,中国科学技术大学薛向辉教授团队联合香港中文大学任伟教授团队,以“Broadband photon-counting dual-comb spectroscopy with attowatt sensitivity Broadband photon-counting dual-comb spectroscopy with attowatt sensitivity over turbulent optical paths

    12010编辑于 2026-03-25
  • 来自专栏iRF射频前端产业观察

    经典Doherty PA

    transmitters  Inverse Class F mode is very practical for carrier and peaking GaN HEMT amplifiers  Broadband

    49120编辑于 2022-05-16
  • 来自专栏硅光技术分享

    基于45°微曲面反射镜的垂直耦合器

    ., "Mirror-based polarization-insensitive broadband vertical optical coupling for Si waveguide". A. Noriki, et.al., "Broadband and Polarization-Independent Efficient Vertical Optical Coupling With 45°

    1.4K20发布于 2020-08-13
  • 来自专栏资讯类翻译专栏

    5G的推出包括对供应链的挑战,WFH价值 (technology)

    risks to some businesses and consumers if it helps launch a high-speed wireless alternative to wired broadband Politicians and broadband proponents paint a darker picture. higher bandwidth and lower latency Make working from home more feasible by providing a higher-speed broadband Mobile Needs Push Beyond Fixed Broadband When 4G was developed, wireless systems were defined by essentially "While WFH creates the need for more broadband capacity in more places, fast-forwarding 5G adoption will

    85040发布于 2020-12-18
  • 来自专栏Pseudoyu

    ECOM6013 Topic 2 Internet and E-Commerce Infrasture

    ISPs provide Tier 3 ISPs with Internet access Tier 3 Internet Services Providers Services Narrowband Broadband Computer network-based (wireless local area network-based) Wi-Fi (IEEE 802.11 standards) High speed, fixed broadband

    61220编辑于 2023-04-11
  • 来自专栏硅光技术分享

    3dB分束器进展——adiabatic型定向耦合器

    韩国一课题组基于adiabatic型定向耦合器,实现了超低损耗0.06dB和超高光学带宽100nm的3dB分束器,相关文章发表于Applied Sciences, 文章标题为"Low-Loss and Broadband Vinh Huu Nguyen,et.al., "Low-Loss and Broadband Silicon Photonic 3-dB Power Splitter with Enhanced Coupling

    3K20发布于 2020-08-13
  • 来自专栏Live专区

    运营商常见网络设备及用户上网过程

    AC:(Access Controller)接入控制器 OLT:(optical line terminal)光线路终端 SW:(switch)交换机 BRAS:(Broadband Remote Access Server)宽带远程接入服务器 BNG:(Broadband Network Gateway)宽带网络网关 SR:(Service Router)业务路由器 CR:(Core Router),核心路由器

    3.6K80编辑于 2022-08-16
  • 来自专栏云深知网络 可编程P4君

    赶快上车!博通与FTC就涉嫌强制买卖芯片达成和解

    美国 2021年7月,美国联邦贸易委员会(FTC)和博通同意就该公司利用其在部分芯片市场(STB SOC、DSL Broadband SOC以及Fiber Broadband SOC)的主导地位排挤潜在竞争对手的指控达成和解

    51730编辑于 2023-02-15
  • 重磅!诺基亚官宣出售产品线

    The transaction will strengthen Inseego’s position as a global wireless broadband leader with a broader portfolio spanning fixed wireless, mobile broadband, and cloud-managed connectivity for consumer and 参考资料: 1、Inseego to acquire Nokia's Fixed Wireless Access business to create a global wireless broadband www.nokia.com/newsroom/inseego-to-acquire-nokias-fixed-wireless-access-business-to-create-a-global-wireless-broadband-leader

    6510编辑于 2026-05-06
  • 来自专栏媒矿工厂

    5G时代的媒体远程生产

    Requirements and Approaches for Broadcast Quality Media Streaming[C]//2018 IEEE International Symposium on Broadband Requirements for Ultra-High Definition Media Distribution[C]//2018 IEEE International Symposium on Broadband programmable edge-to-cloud virtualization for the 5G Media industry[C]//2018 IEEE International Symposium on Broadband

    1.5K20发布于 2018-09-21
领券