text stringlengths 12 14.7k |
|---|
Maple (software) : The Maple engine is used within several other products from Maplesoft: MapleNet allows users to create JSP pages and Java Applets. MapleNet 12 and above also allow users to upload and work with Maple worksheets containing interactive components. MapleSim, an engineering simulation tool. Maple Quantum... |
Maple (software) : Maplesoft, division of Waterloo Maple, Inc. – official website |
Massive Online Analysis : Massive Online Analysis (MOA) is a free open-source software project specific for data stream mining with concept drift. It is written in Java and developed at the University of Waikato, New Zealand. |
Massive Online Analysis : MOA is an open-source framework software that allows to build and run experiments of machine learning or data mining on evolving data streams. It includes a set of learners and stream generators that can be used from the graphical user interface (GUI), the command-line, and the Java API. MOA c... |
Massive Online Analysis : ADAMS Workflow: Workflow engine for MOA and Weka Streams: Flexible module environment for the design and execution of data stream experiments Vowpal Wabbit List of numerical analysis software |
Massive Online Analysis : MOA Project home page at University of Waikato in New Zealand SAMOA Project home page at Yahoo Labs |
MATLAB : MATLAB (an abbreviation of "MATrix LABoratory") is a proprietary multi-paradigm programming language and numeric computing environment developed by MathWorks. MATLAB allows matrix manipulations, plotting of functions and data, implementation of algorithms, creation of user interfaces, and interfacing with prog... |
MATLAB : For a complete list of changes of both MATLAB an official toolboxes, check MATLAB previous releases. |
MATLAB : The MATLAB application is built around the MATLAB programming language. Common usage of the MATLAB application involves using the "Command Window" as an interactive mathematical shell or executing text files containing MATLAB code. |
MATLAB : MATLAB has tightly integrated graph-plotting features. For example, the function plot can be used to produce a graph from two vectors x and y. The code: produces the following figure of the sine function: MATLAB supports three-dimensional graphics as well: MATLAB supports developing graphical user interface (G... |
MATLAB : MATLAB can call functions and subroutines written in the programming languages C or Fortran. A wrapper function is created allowing MATLAB data types to be passed and returned. MEX files (MATLAB executables) are the dynamically loadable object files created by compiling such functions. Since 2014 increasing tw... |
MATLAB : In 2020, MATLAB withdrew services from two Chinese universities as a result of US sanctions. The universities said this will be responded to by increased use of open-source alternatives and by developing domestic alternatives. |
MATLAB : Comparison of numerical-analysis software List of numerical-analysis software |
MATLAB : Official website |
MeeMix : MeeMix Ltd is a company specializing in personalizing media-related content recommendations, discovery and advertising for the telecommunication industry, founded in 2006. On January 1, 2008, MeeMix launched meemix.com, a public personalized internet radio serving as an online testbed for the development of mu... |
MeeMix : Behavioral targeting Collaborative filtering Internet radio Personalization Predictive analytics |
MeeMix : MeeMix online radio |
Megvii : Megvii (Chinese: 旷视; pinyin: Kuàngshì) is a Chinese technology company that designs image recognition and deep-learning software. Based in Beijing, the company develops artificial intelligence (AI) technology for businesses and for the public sector. Megvii is the largest provider of third-party authentication... |
Megvii : The company was founded in Beijing with Megvii standing for "mega vision." It was started by Yin Qi and two college friends.: 101 The company's core product, Face++, launched in 2012 as the first online facial recognition platform in China. In 2015 Megvii created Brain++, a deep-learning engine to help train i... |
Megvii : Official website |
Mlpack : mlpack is a free, open-source and header-only software library for machine learning and artificial intelligence written in C++, built on top of the Armadillo library and the ensmallen numerical optimization library. mlpack has an emphasis on scalability, speed, and ease-of-use. Its aim is to make machine learn... |
Mlpack : mlpack includes a range of design features that make it particularly well-suited for specialized applications, especially in the Edge AI and IoT domains. Its C++ codebase allows for seamless integration with sensors, facilitating direct data extraction and on-device preprocessing at the Edge. Below, we outline... |
Mlpack : The following shows a simple example how to train a decision tree model using mlpack, and to use it for the classification. Of course you can ingest your own dataset using the Load function, but for now we are showing the API:The above example demonstrate the simplicity behind the API design, which makes it si... |
Mlpack : mlpack is fiscally sponsored and supported by NumFOCUS, Consider making a tax-deductible donation to help the developers of the project. In addition mlpack team participates each year Google Summer of Code program and mentors several students. |
Mlpack : Armadillo (C++ library) List of numerical analysis software List of numerical libraries Numerical linear algebra Scientific computing |
Mlpack : Official website mlpack on GitHub |
Mlpy : mlpy is a Python, open-source, machine learning library built on top of NumPy/SciPy, the GNU Scientific Library and it makes an extensive use of the Cython language. mlpy provides a wide range of state-of-the-art machine learning methods for supervised and unsupervised problems and it is aimed at finding a reaso... |
Mlpy : Regression: least squares, ridge regression, least angle regression, elastic net, kernel ridge regression, support vector machines (SVM), partial least squares (PLS) Classification: linear discriminant analysis (LDA), Basic perceptron, Elastic Net, logistic regression, (Kernel) Support Vector Machines (SVM), Dia... |
Mlpy : scikit-learn, an open source machine learning library for the Python programming language Infer.NET, an open source machine learning library for the .NET Framework |
Mlpy : Official website |
Oracle Data Mining : Oracle Data Mining (ODM) is an option of Oracle Database Enterprise Edition. It contains several data mining and data analysis algorithms for classification, prediction, regression, associations, feature selection, anomaly detection, feature extraction, and specialized analytics. It provides means ... |
Oracle Data Mining : Oracle Corporation has implemented a variety of data mining algorithms inside its Oracle Database relational database product. These implementations integrate directly with the Oracle database kernel and operate natively on data stored in the relational database tables. This eliminates the need for... |
Oracle Data Mining : Oracle Data Mining was first introduced in 2002 and its releases are named according to the corresponding Oracle database release: Oracle Data Mining 9iR2 (9.2.0.1.0 - May 2002) Oracle Data Mining 10gR1 (10.1.0.2.0 - February 2004) Oracle Data Mining 10gR2 (10.2.0.1.0 - July 2005) Oracle Data Minin... |
Oracle Data Mining : As of release 11gR1 Oracle Data Mining contains the following data mining functions: Data transformation and model analysis: Data sampling, binning, discretization, and other data transformations. Model exploration, evaluation and analysis. Feature selection (Attribute Importance). Minimum descript... |
Oracle Data Mining : Most Oracle Data Mining functions accept as input one relational table or view. Flat data can be combined with transactional data through the use of nested columns, enabling mining of data involving one-to-many relationships (e.g. a star schema). The full functionality of SQL can be used when prepa... |
Oracle Data Mining : Users can access Oracle Data Mining through Oracle Data Miner, a GUI client application that provides access to the data mining functions and structured templates (called Mining Activities) that automatically prescribe the order of operations, perform required data transformations, and set model pa... |
Oracle Data Mining : Oracle Data Mining provides a native PL/SQL package (DBMS_DATA_MINING) to create, destroy, describe, apply, test, export and import models. The code below illustrates a typical call to build a classification model: where 'credit_risk_model' is the model name, built for the express purpose of classi... |
Oracle Data Mining : As of release 10gR2, Oracle Data Mining contains built-in SQL functions for scoring data mining models. These single-row functions support classification, regression, anomaly detection, clustering, and feature extraction. The code below illustrates a typical usage of a classification model: |
Oracle Data Mining : In Release 11gR2 (11.2.0.2), ODM supports the import of externally created PMML for some of the data mining models. PMML is an XML-based standard for representing data mining models. |
Oracle Data Mining : The PL/SQL package DBMS_PREDICTIVE_ANALYTICS automates the data mining process including data preprocessing, model building and evaluation, and scoring of new data. The PREDICT operation is used for predicting target values classification or regression while EXPLAIN ranks attributes in order of inf... |
Oracle Data Mining : T. H. Davenport, Competing on Analytics, Harvard Business Review, January 2006. I. Ben-Gal,Outlier detection, In: Maimon O. and Rockach L. (Eds.) Data Mining and Knowledge Discovery Handbook: A Complete Guide for Practitioners and Researchers," Kluwer Academic Publishers, 2005, ISBN 0-387-24435-2. ... |
Oracle Data Mining : Oracle LogMiner - in contrast to generic data mining, targets the extraction of information from the internal logs of an Oracle database |
Oracle Data Mining : Oracle Data Mining at Oracle Technology Network. Oracle Data Mining Blog. Oracle Database 11g at Oracle Technology Network. Oracle Data Mining and Analytics Blog. Oracle Wiki for Data Mining. Oracle Data Mining RSS Feed. Oracle Data Mining at Oracle Technology Network. Oracle Data Mining related bl... |
Programming with Big Data in R : Programming with Big Data in R (pbdR) is a series of R packages and an environment for statistical computing with big data by using high-performance statistical computation. The pbdR uses the same programming language as R with S3/S4 classes and methods which is used among statisticians... |
Programming with Big Data in R : Programming with pbdR requires usage of various packages developed by pbdR core team. Packages developed are the following. Among these packages, pbdMPI provides wrapper functions to MPI library, and it also produces a shared library and a configuration file for MPI environments. All ot... |
Programming with Big Data in R : Raim, A.M. (2013). Introduction to distributed computing with pbdR at the UMBC High Performance Computing Facility (PDF) (Technical report). UMBC High Performance Computing Facility, University of Maryland, Baltimore County. HPCF-2013-2. Archived from the original (PDF) on 2014-02-04. R... |
Picollator : Picollator is an Internet search engine that performs searches for web sites and multimedia by visual query (image) or text, or a combination of visual query and text. Picollator recognizes objects in the image, obtains their relevance to the text and vice versa, and searches in accordance with all informa... |
Picollator : Picollator identifies human faces in the images and creates a database of people's faces. This allows the user to search for other images of the submitted person, lookalikes and/or similar images in images found on websites. Picollator can be used in any language. |
Picollator : 2006 – Recogmission LLC developed a desktop application for photo collections management. The system automatically classifies, manages and retrieves photographs stored locally or in corporate databases. 2007 – Recogmission started Picollator multimedia search engine project, now in Beta stage. 2008 – Picol... |
Picollator : Most image search engines match user textual query and picture tags. Picollator is based on a different approach. Patterns and objects found in the image are stored in its database, therefore it is able to recognise the contents of the image and compare it to other images to find similarities. To search fo... |
Picollator : ru:Recogmission LLC has developed an indexing engine for multimedia information search based on the visual query. Recogmission develops solutions for multimedia information (image, text and video) indexing and searching on the web and in corporate environments. |
Picollator : Picollator Loves My Girlish Smile, Inside the Marketers Studio - David Berkowitz's Marketing Blog Archived 2008-06-12 at the Wayback Machine. March 20, 2008 Picollator - Image search engine, Phil Bradley's weblog. March 31, 2008 Image-Based Queries, Techpin. March 16, 2008 Picollator: Buscador de rostros, ... |
Piranha (software) : Piranha is a text mining system. It was developed for the United States Department of Energy (DOE) by Oak Ridge National Laboratory (ORNL). The software processes free-text documents and shows relationships amongst them, a technique valuable across numerous data domains, from health care fraud to n... |
Piranha (software) : Cui, X., Beaver, J., St. Charles, J., Potok, T. (September 2008). Proceedings of the IEEE Swarm Intelligence Symposium, St. Louis, Mo. Dimensionality Reduction for High Dimensional Particle Swarm Clustering. Yasin, Rutrell (Nov 29, 2012) GCN. Energy lab's Piranha puts teeth into text analysis Frank... |
Piranha (software) : 2007 R&D 100 Magazine's Award Piranha (software) |
Piranha (software) : U.S. patent 7,072,883 – System for gathering and summarizing internet information U.S. patent 7,315,858 – Method for gathering and summarizing internet information U.S. patent 7,693,903 U.S. patent 7,805,446 – Agent-based method for distributed clustering of textual information U.S. patent 7,937,38... |
Piranha (software) : DOE Energy Innovlation Portal (2014) Agent-Based Software for Gathering and Summarizing Textual and Internet Information. ORNL Piranha website |
R (programming language) : R is a programming language for statistical computing and data visualization. It's been adopted in the fields of data mining, bioinformatics and data analysis. The core R language is augmented by a large number of extension packages, containing reusable code, documentation, and sample data. R... |
R (programming language) : R was started by professors Ross Ihaka and Robert Gentleman as a programming language to teach introductory statistics at the University of Auckland. The language was inspired by the S programming language, with most S programs able to run unaltered in R. The language was also inspired by Sch... |
R (programming language) : R packages are collections of functions, documentation, and data that expand R. For example, packages add report features such as RMarkdown, Quarto, knitr and Sweave. Packages also add the capability to implement various statistical techniques such as linear, generalized linear and nonlinear ... |
R (programming language) : R comes installed with a command line console. Available for installation are various integrated development environments (IDE). IDEs for R include R.app (OSX/macOS only), Rattle GUI, R Commander, RKWard, RStudio, and Tinn-R. General purpose IDEs that support R include Eclipse via the StatET ... |
R (programming language) : The R Core Team was founded in 1997 to maintain the R source code. The R Foundation for Statistical Computing was founded in April 2003 to provide financial support. The R Consortium is a Linux Foundation project to develop R infrastructure. The R Journal is an open access, academic journal w... |
R (programming language) : The main R implementation is written primarily in C, Fortran, and R itself. Other implementations include: pretty quick R (pqR), by Radford M. Neal, attempts to improve memory management. Renjin is an implementation of R for the Java Virtual Machine. CXXR and Riposte are implementations of R ... |
R (programming language) : Although R is an open-source project, some companies provide commercial support: Oracle provides commercial support for the Big Data Appliance, which integrates R into its other products. IBM provides commercial support for in-Hadoop execution of R. |
R (programming language) : All R version releases from 2.14.0 onward have codenames that make reference to Peanuts comics and films. In 2018, core R developer Peter Dalgaard presented a history of R releases since 1997. Some notable early releases before the named releases include: Version 1.0.0 released on 29 February... |
R (programming language) : Comparison of numerical-analysis software Comparison of statistical packages List of numerical-analysis software List of statistical software Rmetrics |
R (programming language) : Wickham, Hadley; Çetinkaya-Rundel, Mine; Grolemund, Garrett (2023). R for data science: import, tidy, transform, visualize, and model data (2nd ed.). Beijing Boston Farnham Sebastopol Tokyo: O'Reilly. ISBN 978-1-4920-9740-2. Gagolewski, Marek (2024). Deep R Programming. doi:10.5281/ZENODO.749... |
R (programming language) : R Technical Papers Big Book of R, curated list of R-related programming books Books Related to R - R Project, partially annotated curated list of books relating to R or S. |
RapidMiner : RapidMiner is a data science platform that analyses the collective impact of an organization's data. It was acquired by Altair Engineering in September 2022. |
RapidMiner : RapidMiner, formerly known as YALE (Yet Another Learning Environment), was developed by Ralf Klinkenberg, Ingo Mierswa, and Simon Fischer in 2001 at the Artificial Intelligence Unit of the Technical University of Dortmund. Starting in 2006, its development was driven by Rapid-I, a company founded by Ingo M... |
RapidMiner : RapidMiner uses a client/server model with the server offered either on-premises or in public or private cloud infrastructures. RapidMiner provides data mining and machine learning procedures including: data loading and transformation (ETL), data preprocessing and visualization, predictive analytics and st... |
RapidMiner : The report noted that RapidMiner provides deep and broad modeling capabilities for automated end-to-end model development. In the 2018 annual software poll, KD-nuggets readers voted RapidMiner as one of the most popular data analytics software with the poll’s respondents citing the software package as the ... |
RapidMiner : About 50 developers worldwide participated in the development of the open-source RapidMiner with the majority of the contributors being employees of RapidMiner. The company that develops RapidMiner received a $16 million Series C funding with participation from venture capital firms Nokia Growth Partners, ... |
RapidMiner : The RapidMiner data science platform consists of the following main components: RapidMiner Studio, RapidMiner AI Hub and RapidMiner Go which can be deployed as a part of the AI Hub. This video explains the links between the main elements and advises on the suitability of each component for different user g... |
RapidMiner : Official website |
Rattle GUI : Rattle GUI is a free and open source software (GNU GPL v2) package providing a graphical user interface (GUI) for data mining using the R statistical programming language. Rattle is used in a variety of situations. Currently there are 15 different government departments in Australia, in addition to various... |
Rattle GUI : File Inputs = CSV, TXT, Excel, ARFF, ODBC, R Dataset, RData File, Library Packages Datasets, Corpus, and Scripts. Statistics = Min, Max, Quartiles, Mean, St Dev, Missing, Medium, Sum, Variance, Skewness, Kurtosis, chi square. Statistical tests = Correlation, Wilcoxon-Smirnov, Wilcoxon Rank Sum, T-Test, F-T... |
Rattle GUI : The capabilities of R are extended through user-submitted packages, which allow specialized statistical techniques, graphical devices, as well as import/export capabilities to many external data formats. Rattle uses these packages - RGtk2, pmml, colorspace, ada, amap, arules, biclust, cba, descr, doBy, e10... |
Rattle GUI : R interfaces |
Rattle GUI : Graham J Williams (2011). Data Mining with Rattle and R: The Art of Excavating Data for Knowledge Discovery, Springer, Use R!. In 2010, Rattle was listed in the top 10 graphical user interfaces in statistical software by Decision Stats. Rattle is described as an "attractive, easy-to-use front end ... data ... |
Rattle GUI : Official home page Source code page |
Renjin : Renjin is an implementation of the R programming language atop the Java Virtual Machine. It is free software released under the GPL. Renjin is tightly integrated with Java to allow the embedding of the interpreter into any Java application with full two-way access between the Java and R code. Renjin's developm... |
Renjin : Renjin's roots lie in an abortive 2010 attempt to compile the GNU R interpreter for the JVM via nestedvm, a toolchain which involves cross-compiling C and Fortran code to a static MIPS binary, which nestedvm can then translate to JVM bytecode. This proved challenging as GNU R had grown to rely heavily on dynam... |
Renjin : Official website |
SAS (software) : SAS (previously "Statistical Analysis System") is a statistical software suite developed by SAS Institute for data management, advanced analytics, multivariate analysis, business intelligence, criminal investigation, and predictive analytics. SAS' analytical software is built upon artificial intelligen... |
SAS (software) : SAS is a software suite that can mine, alter, manage and retrieve data from a variety of sources and perform statistical analysis on it. SAS provides a graphical point-and-click user interface for non-technical users and more through the SAS language. SAS programs have DATA steps, which retrieve and ma... |
SAS (software) : As of 2011, SAS's largest set of products was its line for customer intelligence. Numerous SAS modules for web, social media and marketing analytics may be used to profile customers and prospects, predict their behaviors and manage and optimize communications. SAS also provides the SAS Fraud Framework.... |
SAS (software) : According to IDC, SAS is the largest market-share holder in "advanced analytics" with 35.4 percent of the market as of 2013. It is the fifth largest market-share holder for business intelligence (BI) software with a 6.9% share and the largest independent vendor. It competes in the BI market against SAP... |
SAS (software) : Comparison of numerical-analysis software Comparison of OLAP servers JMP (statistical software), a subsidiary of SAS Institute Inc. SAS language R (programming language) |
SAS (software) : Greenberg, Bernard G.; Cox, Gertrude M.; Mason, David D.; Grizzle, James E.; Johnson, Norman L.; Jones, Lyle V.; Monroe, John; Simmons, Gordon D. Jr. (1978). Nourse, E. Shepley (ed.). "Statistical Training and Research: The University of North Carolina System". International Statistical Review. 46 (2):... |
SAS (software) : Official website SAS OnDemand for Academics No-cost access for learners (free SAS Profile required) A Glossary of SAS terminology SAS for Developers SAS community forums |
SAS Viya : SAS Viya is an artificial intelligence, analytics and data management platform developed by SAS Institute. |
SAS Viya : SAS Viya was released in 2016. The software was containerized with the release of Viya 4 in 2020. |
SAS Viya : The platform is cloud-native, and is executed on SAS's Cloud Analytics Services (CAS) engine. It is compatible with open source software, allowing users to build models using open sources tool such as R, Python and Jupyter. It integrates with major large language models like GPT-4 and Gemini Pro. The platfor... |
SAS Viya : SAS (software) == References == |
Scikit-learn : scikit-learn (formerly scikits.learn and also known as sklearn) is a free and open-source machine learning library for the Python programming language. It features various classification, regression and clustering algorithms including support-vector machines, random forests, gradient boosting, k-means an... |
Scikit-learn : The scikit-learn project started as scikits.learn, a Google Summer of Code project by French data scientist David Cournapeau. The name of the project stems from the notion that it is a "SciKit" (SciPy Toolkit), a separately developed and distributed third-party extension to SciPy. The original codebase w... |
Scikit-learn : Large catalogue of well-established machine learning algorithms and data pre-processing methods (i.e. feature engineering) Utility methods for common data-science tasks, such as splitting data into train and test sets, cross-validation and grid search Consistent way of running machine learning models (es... |
Scikit-learn : Fitting a random forest classifier: |
Scikit-learn : scikit-learn is largely written in Python, and uses NumPy extensively for high-performance linear algebra and array operations. Furthermore, some core algorithms are written in Cython to improve performance. Support vector machines are implemented by a Cython wrapper around LIBSVM; logistic regression an... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.