⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 svm(支持向量机)分类算法本质上是二类分类器
💻
字号:
# Makefile for SVM-multiclass, 03.07.04CC = gccLD = gcc#CC = attolcc -mempro -perfpro -block -proc -- gcc#LD = attolcc -mempro -perfpro -block -proc -- gccCFLAGS = -O3 -fomit-frame-pointer -ffast-math -Wall LDFLAGS = -O3 -lm -Wall#CFLAGS = -g -Wall#LDFLAGS = -g -lm#CFLAGS = -pg -Wall#LDFLAGS = -pg -lm -Wall all: svm_multiclass_learn_hideo svm_multiclass_classify.PHONY: cleanclean: svm_light_clean svm_struct_clean	rm -f *.o *.tcov *.d core gmon.out *.stackdump #-----------------------##----   SVM-light   ----##-----------------------#svm_light_hideo_noexe: 	cd svm_light; make svm_learn_hideo_noexesvm_light_loqo_noexe: 	cd svm_light; make svm_learn_loqo_noexesvm_light_clean: 	cd svm_light; make clean#----------------------##----  STRUCT SVM  ----##----------------------#svm_struct_noexe: 	cd svm_struct; make svm_struct_noexesvm_struct_clean: 	cd svm_struct; make clean#-------------------------##----  SVM MULTICLASS ----##-------------------------#svm_multiclass_classify: svm_light_hideo_noexe svm_struct_noexe svm_struct_api.o svm_struct/svm_struct_classify.o svm_struct/svm_struct_common.o svm_struct/svm_struct_main.o 	$(LD) $(LDFLAGS) svm_struct_api.o svm_struct/svm_struct_classify.o svm_light/svm_common.o svm_struct/svm_struct_common.o -o svm_multiclass_classify $(LIBS)svm_multiclass_learn_loqo: svm_light_loqo_noexe svm_struct_noexe svm_struct_api.o svm_struct/svm_struct_learn.o svm_struct/svm_struct_common.o svm_struct/svm_struct_main.o 	$(LD) $(LDFLAGS) svm_struct/svm_struct_learn.o svm_struct_api.o svm_light/svm_loqo.o svm_light/pr_loqo/pr_loqo.o svm_light/svm_learn.o svm_light/svm_common.o svm_struct/svm_struct_common.o svm_struct/svm_struct_main.o -o svm_multiclass_learn $(LIBS)svm_multiclass_learn_hideo: svm_light_hideo_noexe svm_struct_noexe svm_struct_api.o  svm_struct/svm_struct_learn.o svm_struct/svm_struct_common.o svm_struct/svm_struct_main.o	$(LD) $(LDFLAGS) svm_struct/svm_struct_learn.o svm_struct_api.o svm_light/svm_hideo.o svm_light/svm_learn.o svm_light/svm_common.o svm_struct/svm_struct_common.o svm_struct/svm_struct_main.o -o svm_multiclass_learn $(LIBS)svm_struct_api.o: svm_struct_api.c svm_struct_api.h svm_struct_api_types.h svm_struct/svm_struct_common.h	$(CC) -c $(CFLAGS) svm_struct_api.c -o svm_struct_api.o

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -