登录
首页 » Python » 40节点预测

40节点预测

于 2018-03-25 发布 文件大小:1KB
0 254
下载积分: 1 下载次数: 13

代码说明:

  利用人工智能RNN进行数据预测分析,效果还可以(Using artificial intelligence RNN to carry out data prediction and analysis, the effect is also possible.)

文件列表:

40节点预测.py, 2356 , 2018-01-22

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • this is the LOGO Home Collection
    这个是主页的LOGO合集-this is the LOGO Home Collection
    2022-03-18 23:45:57下载
    积分:1
  • neatupload,实现大文件的上传功能
    neatupload,实现大文件的上传功能-neatupload, upload large files to achieve functional
    2022-03-25 04:08:48下载
    积分:1
  • Fla.AnimatedPie
    一款强大的,可用于生成饼图的WEB控件。(great flash pie statistics web control)
    2009-11-13 01:17:38下载
    积分:1
  • a program of using ARP protocol.
    编程对ARP协议的理解-a program of using ARP protocol.
    2022-06-02 12:25:57下载
    积分:1
  • geting host address.
    获得主机的IP地址-geting host address.
    2023-08-02 03:45:02下载
    积分:1
  • Java实例第7章实例.rar
    Java网络编程实例第7章实例.rar-Java Network Programming examples Chapter 7 case. Rar
    2022-02-12 03:03:31下载
    积分:1
  • 33节点配重构
    对IEEE 33节点配电网重构进行编程分析,适合初学者学习。(Program analysis of IEEE 33 node distribution network reconstruction for beginners to learn)
    2020-09-15 19:57:56下载
    积分:1
  • 基于NUCLEUS 操作系统的FTP协议原代码
    基于NUCLEUS 操作系统的FTP协议原代码-FTP
    2022-03-02 12:41:45下载
    积分:1
  • 这是主要完成文件上传功能,对要写ftp序者是一个好的参考源码...
    这是主要完成文件上传功能,对要写ftp程序者是一个好的参考源码-This is the major file upload function, the right to write ftp procedures is a good reference source
    2022-06-02 12:44:45下载
    积分:1
  • c# 扫描IP Http Header
    c# 扫描IP Http Headerusing System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
    2014-06-23下载
    积分:1
  • 696518资源总数
  • 106164会员总数
  • 18今日下载