Datamining in C
Project to Implement Generic Datamining Algorithms
Implement Datamining Algorithms described in [Guide to Data Mining] (http://guidetodatamining.com) and "Algorithms of the Intelligent Web" in C.
Example
// Example for using Collaborative Filtering with Euclidean Distance
// 1. Compile
gcc examples/collaborative_filtering/example2.c -o recommend -lm
// 2. recommend (can use ratings.csv in sample datafiles)
./recommend <ratings.csv>
Demo
References
- [Guide to Data Mining] (http://guidetodatamining.com/)
- Algorithms of the Intelligent Web
License
Copyright [2017] [Sabelo Mhlambi]
Licensed under the MIT License. You may obtain a copy of the License at
https://opensource.org/licenses/MIT
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.