全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果93,908个

基于Python Dash库制作酷炫的可视化大屏_python_脚本之家

dcc.Graph(id="heatmap", style={"height": "90%", "width": "98%"}, config=dict(displayModeBar=False),) ], className="col-6 chart_div",), html.Div([ html.P("文章列表"), html.Div(get_news_table(get_df()), id='click-data'), ], className="col-6 chart_div", style={"ov...
www.jb51.net/article/2332...htm 2025-3-19

SDO Relational Data Access Service Functions

Quite possibly the data in the data graph will go through a number of modifications. The data graph can be serialised into the PHP session and so may have a lifetime beyond just one client-server interaction. Data objects can be created and added to the graph, the data objects already in...
www.jb51.net/shouce/php5/zh/ref.sdo... 2025-3-23

14个华丽的javascript图表资源和插件_CSS教程_CSS_网页制作_脚本之家

Flotr是基于 Prototype 的Javascript绘图框架 .Flotr让你通过一些很简单的语法就可以绘制引人注目的图表。 13.Yahoo! UI Library: Charts The YUI Charts 可通过很多格式来控制形象化的表列数据,包括了垂直列表,双杠图,线形,饼状图。 14.TufteGraph TufteGraph 是一款漂亮的l jquery图表插件。
www.jb51.net/css/173...html 2025-3-22

Python之torch.no_grad()函数使用和示例_python_脚本之家

File E:\anaconda\lib\site-packages\torch\autograd\__init__.py:173, in backward(tensors, grad_tensors, retain_graph, create_graph, grad_variables, inputs) 168 retain_graph = create_graph 170 # The reason we repeat same the comment below is that ...
www.jb51.net/python/3186407...htm 2025-3-19

pytorch .detach() .detach_() 和 .data用于切断反向传播的实现_python...

"""Returns a new Variable, detached from the current graph. Result will never require gradient. If the input is volatile, the output will be volatile too. .. note:: Returned Variable uses the same data tensor, as the original one, and ...
www.jb51.net/article/1773...htm 2025-3-17

使用Vue-neo4j实现绘制三国人物图谱关系_vue.js_脚本之家

type: 'graph', layout: 'force', force: { edgeLength: 40, repulsion: 50, gravity: 0.1 }, symbolSize: 50, roam: true, label: { show: true }, edgeSymbol: ['circle', 'arrow'], edgeSymbolSize: [4, 10], edgeLabel: { fontSize: 20 }, data: this.echartsData, // links: [], ...
www.jb51.net/javascript/320287c...htm 2025-3-21

详解使用Pytorch Geometric实现GraphSAGE模型_python_脚本之家

# Use METIS algorithm to partition the graph into multiple subgraphs. cluster_data = ClusterData(data, num_parts=2, recursive=False, transform=NormalizeFeatures(), degree=deg)这里我们将原始图分成两个子图,并对每个子图进行规范化特征转换。注意,在使用ClusterData方法之前,需要将原始图转换为无向图。另...
www.jb51.net/article/2822...htm 2025-3-8

在Flask使用TensorFlow的几个常见错误及解决_python_脚本之家

但是在使用后又遇到了The Session graph is empty……的错误即第二点,不过估摸着这个是个例,应该是程序问题。 常见错误二 2. RuntimeError: The Session graph is empty. Add operations to the graph before calling run(). 在相关代码使用前添加graph即可。
www.jb51.net/python/3126945...htm 2025-3-15

Python算法之图的遍历_python_脚本之家

# Walking Through a Connected Component of a Graph Represented Using Adjacency Sets def walk(G, s, S=set()): # Walk the graph from node s P, Q = dict(), set() # Predecessors + "to do" queue P[s] = None # s has no predecessor Q.add(s) # We plan on starting with s whil...
www.jb51.net/article/1284...htm 2025-3-17

Python中的时序分析和可视化案例详解_python_脚本之家

# Resampling the time series data based on monthly 'M' frequency df_month = df.resample("M").mean() # using subplot fig, ax = plt.subplots(figsize=(6, 6)) # plotting bar graph ax.bar(df_month['2016':].index, df_month.loc['2016':, "Volume"], width=25, align='center')...
www.jb51.net/python/3166198...htm 2025-3-24