Understanding the Challenges Faced During the Management of Data Mining Models


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements UNIX and Linux RSS News Understanding the Challenges Faced During the Management of Data Mining Models
# 1  
Old 09-22-2008
Understanding the Challenges Faced During the Management of Data Mining Models

HPL-2008-118 Understanding the Challenges Faced During the Management of Data Mining Models - Jain, Jhilmil; Ari, Ismail; Li, Jun
Keyword(s): data mining models, model lifecycle, challenges
Abstract: While the IT industry is moving forward with service-based solutions, they have left behind critical processes and soft IT assets unmanaged, especially at the intersection of business processes with Business Intelligence (BI). In this paper, we describe the challenges faced by statisticians and busi ...
Full Report

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. AIX

Howto find the data and management IP address

Can anyone help me to find the data and management IP address on a IBM unix server without looking at the /etc/hosts file. sometimes the hosts file may not make it obvious between the data & mgmt ip addresses. thanks (5 Replies)
Discussion started by: amerjit.jhalley
5 Replies

2. Shell Programming and Scripting

Issue faced while accessing data from files on different servers.

I have two log files of same name and structure which resides on different servers with ssh-keygen installed. I want to search for a list of strings available in an array on last 15 minutes logs of both files and calculate the total count of occurence of each string. Sample format of both file... (0 Replies)
Discussion started by: poweroflinux
0 Replies

3. Shell Programming and Scripting

Data mining a text file.

I'm auditing UID consistency across our hosts, and have created the following datafile, consisting of four fields. I would like to get a count of the combination of the last two fields. ie: I would like to find out how many instances there are of "root 0" and how many of "uucp 5", for every line... (3 Replies)
Discussion started by: akbar
3 Replies

4. Shell Programming and Scripting

data management

I am wondering if there is either a unix file management utility out there. I currently manage about 4 TBs of data and sometimes need to determine who is using what space. ( i can run it either on solaris or linux). Frank (1 Reply)
Discussion started by: frankkahle
1 Replies
Login or Register to Ask a Question
ADDLOMODEL(3)						       MBK LOGICAL FUNCTIONS						     ADDLOMODEL(3)

NAME
addlomodel - create a tempotary logical model and add it to a list ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "mlo.h" lofig_list *addlomodel(model, name) lofig_list *model; char *name; PARAMETERS
model Pointer to the head of a model list name Name of the model to be created DESCRIPTION
addlomodel creates a new lofig_list element and adds it to the front of the list pointed to by model, and becomes itself the list head. The addlomodel function is mosty used to create a temporary list of lofig in order to represent the "in file" instances' models. In fact, all the file format used with mbk have the notion of models local to files, so they are not figure, but are temporarly used to create instance connectors, for example. For details on the structure, see lofig(3). RETURN VALUE
addlomodel returns a pointer to the new head of model list. ERROR
"*** mbk error *** addlomodel impossible : model name already exists" The model, not the figure, is already present in the model list pointed to by model, and since a model should be unique, this can't be. EXAMPLE
#include "mut.h" #include "mlo.h" void add_model(name) char *name; { MODEL = addlomodel(MODEL, name); } SEE ALSO
mbk(1), lofig(3), getlomodel(3), freelomodel(3). BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 ADDLOMODEL(3)