國外軟體

12月銷售軟體排行

1. MindManager 視覺化思考繪圖軟體
2. EViews 預測分析計量軟體
3. LISREL 線性結構分析軟體

4.

ATLAS.ti 定性量化分析軟體
5.

EndNote 參考書目軟體

6.

Stata 資料管理統計繪圖軟體

7. See5/C5.0  資料探勘軟體
8. HLM 階層分析軟體
9.

Expert Choice  AHP專家決策分析軟體

10. Grapher 3D科學繪圖軟體

 

 

柏際股份有限公司
TEL 02-2592-3171
FAX 02-2592-3172
info@bockytech.com.tw

Google

**提供各式軟.硬體代訂服務! **
如有未列於網站之產品需求,
請來電或來信詢問!
info@bockytech.com.tw


 

NeuroShell Run-Time Server    類神經網路發展系統

神經網路運行時服務器允許你創建了一個簡單的介面與神經網路預測或神經網路分級火災網絡,從自己的計算機程序,Excel電子表格,或從網頁(基於Windows的服務器)。這意味著你可以使用net用新的數據模型不使用我們的接口。 神經網路運行時服務器有幾個不同的方案:

1.兩種不同的神經網路運行時的ActiveX控件(NSRUN.OCX和NSRUN.DLL)

2.“類神經消防程序(NSFIRE.EXE)

3. 神經網路消防Excel中添加(NSFIRE.XLA)

4. 神經網路運行Excel添加(NSRUN.XLA) 

5. 神經網路運行的包裝的DLL(NSWRAP.DLL)

 

The NeuroShell Run-Time Server allows you to fire networks created with the NeuroShell Predictor or NeuroShell Classifier from either a simple interface, from your own computer programs, from Excel spreadsheets or from a web page (Windows based servers only). That means you can use the net models with new data without using our interface.

1. NeuroShell Run-Time ActiveX Controls (NSRUN.OCX and NSRUN.DLL)
Use the NeuroShell Run-Time ActiveX controls to embed the firing of your networks into your own programs. The Run-Time Server provides two separate ActiveX controls. In your program you simply place a call to a control's method ‘Predict’, passing the location of your trained network and the network's inputs. The call returns the network's output, which you may use as needed inside your program. You may call the method Predict as many times as required for as many nets as needed.

NeuroShell Run-Time ActiveX controls work with programming languages such as Microsoft® Visual Basic®, C++, and Borland™ Delphi™. Note, however, that it is much easier to use Microsoft Visual Basic to create applications with ActiveX controls than it is to use other languages. You are strongly urged to use Visual Basic to call ActiveX controls because it makes it much easier to use them.

The NSRUN.DLL ActiveX control encapsulates a method called PredictFromWeb which works in the Active Server Page (ASP) programming environment. This means you can install the Run-Time Server on a Windows-based Web server and fire your networks from the ASP through the Internet. The product contains two types of examples of firing the networks on the web: one example is for regular ASP programming; the other is for VB.NET programming.

2. NeuroShell Fire Program (NSFIRE.EXE)
The NeuroShell Fire program (NSFIRE.EXE) is a stand-alone program that allows you to interactively enter input values and instantly view the output for one example at a time. It can also create a log file of your inputs and predictions.

 

3. NeuroShell Fire Excel Add-in (NSFIRE.XLA)
The NeuroShell Fire Excel Add-In enables you to fire your networks from within an Excel spreadsheet. This program uses the file named NSFIRE.XLA.

There are two ways to fire the network from within Excel: the Dialog Box or the FireNet function.

Dialog Box
A dialog box guides you in placing neural network calls into your spreadsheet.

 

Next, specify the range which contains the input values and the column where the output values will be placed. The output of the network is placed in the specified column. (You can select multiple rows of data as the input range and the net will provide answers for all selected rows.)

FireNet Function Call
To use the FireNet Function, you do not need to start the Add-In from the Excel Tools Menu. Instead you will place a call of the function FireNet in each cell where you want to get results from the network. The function FireNet specifies the range of the input values. The output will be placed in the cell that contains the FireNet function. This method recalls the network each time the spreadsheet recalculates so the network's results are updated.

The following example returns the prediction generated by the network stored in the file C:\NEUROSHELL\PREDICTOR\EXAMPLES\BURGER.NET. The network's four inputs are located in cells A2:D2. The predictions are made using Enhanced Generalization.

=EZFIRE.XLA!FireNet(A2:D2, "C:\NeuroShell\Predictor\Examples\BURGER.NET", 1)
 


4. NeuroShell Run Excel Add-in (NSRUN.XLA)
This program uses the file NSRUN.XLA that allows you to call a network trained in either the NeuroShell Predictor or NeuroShell Classifier from within a cell in an Excel spreadsheet.

This is a version of the program that may be sent to people who do not own either the Predictor or Classifier software. The software that you distribute to your users should include the file NSRUN.XLA, which the user loads as an Excel Add-In.

To use this program the user places a call of the function FireNet in each cell where he/she wants to get results from the network. The function FireNet specifies the range of the input values. The output will be placed in the cell that contains the FireNet function. This method recalls the network each time the spreadsheet recalculates so the network's results are updated.

5. NeuroShell Run Wrapper DLL (NSWRAP.DLL)
This is a regular Dynamic Link Library (DLL) to call the run-time functions. The name of the DLL is NSWRAP.DLL. This DLL was built to facilitate the usage of the Run-Time from programming languages such as C/C++ and Pascal.

NSWRAP.DLL represents itself as a wrapper around the NeuroShell Run-Time OLE Automation server NSRUN.DLL. In other words, the NSWRAP.DLL is a client for the NSRUN.DLL server, which can be called from an application program. The sequence of calls in this case may be represented by this diagram:

[End-user application program] -> [NSWRAP.DLL] -> [NSRUN.DLL]

This feature avoids somewhat complex and cumbersome OLE-programming, which is otherwise required to build a client for the NSRUN.DLL.

The nswrap.dll encapsulates 4 functions:
OpenNetwork
– This creates a neural network object and reads the network file. It gives you back the number of inputs the network expects and the number of outputs with which it will respond. Normally, you will already know the number of inputs and outputs. Also, this function returns the level of the Enhanced Generalization, as it was set up when you saved the network in the Predictor/Classifier. Predictor always return 1 as the number of outputs, Classifier returns the number of output classes as the number of outputs.

FireNetwork – Once the network is successfully opened with OpenNetwork, use FireNetwork to pass inputs to the net and receive back outputs, both in double precision floating point arrays which you designate in your program. You will also need to specify the Enhanced Generalization level at which you want to fire the net.

CloseNetwork – Execute this when you no longer need to execute the network. It will release all memory space and other system resources taken by the network. The next time your program needs to execute the network, it will have to do another OpenNetwork.

GetMissingDataSpecifier – Returns a special constant value to be used as a substitute of the missing data (if any) in your inputs.

Distribution Rights
The programs labeled above as distributable may be sold or otherwise distributed outside of your company or government agency as part of your computer programs or Excel spreadsheets. You do not have to pay any royalties to provide NSRUN.XLA or NSRUN.DLL with your programs. The programs labeled NOT distributable may only be sent to employees of your company or government agency, but not to anyone else including employees of parent or subsidiary companies or agencies. Programs that may be distributed have the word RUN in their names. Programs that may not be distributed have the word FIRE in their names.

 

Ward Systems Group, Inc.公司產品

AI Trilogy

GeneHunter

NeuroShell Predictor

NeuroShell Classifier

NeuroShell Run-Time Server

NeuroShell 2

NeuroShell Trader, Trader Professional, and DayTrader Professional

NeuroShell Engine

 

 

請填寫你的資料以便寄送產品相關訊息:

公司: 部門:
姓名: 職稱:
電話: EMAIL:

請選取您所要的產品訊息:

NeuroShell Run-Time Server   軟體資料
NeuroShell Run-Time Server   軟體報價
如有其他需要請填寫在底下空格內:

確定送出資料  重填