summaryrefslogtreecommitdiffstats
path: root/ml/dlib/dlib/dnn.h
diff options
context:
space:
mode:
Diffstat (limited to 'ml/dlib/dlib/dnn.h')
-rw-r--r--ml/dlib/dlib/dnn.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/ml/dlib/dlib/dnn.h b/ml/dlib/dlib/dnn.h
deleted file mode 100644
index db59948fb..000000000
--- a/ml/dlib/dlib/dnn.h
+++ /dev/null
@@ -1,37 +0,0 @@
-// Copyright (C) 2015 Davis E. King (davis@dlib.net)
-// License: Boost Software License See LICENSE.txt for the full license.
-#ifndef DLIB_DNn_
-#define DLIB_DNn_
-
-// DNN module uses template-based network declaration that leads to very long
-// type names. Visual Studio will produce Warning C4503 in such cases
-#ifdef _MSC_VER
-# pragma warning( disable: 4503 )
-#endif
-
-#include "dnn/tensor.h"
-#include "dnn/input.h"
-
-// Problem: Visual Studio's vcpkgsrv.exe constantly uses a single CPU core,
-// apparently never finishing whatever it's trying to do. Moreover,
-// this issue prevents some operations like switching from Debug to
-// Release (and vice versa) in the IDE. (Your mileage may vary.)
-// Workaround: Keep manually killing the vcpkgsrv.exe process.
-// Solution: Disable IntelliSense for some files. Which files? Unfortunately
-// this seems to be a trial-and-error process.
-#ifndef __INTELLISENSE__
-#include "dnn/layers.h"
-#endif // __INTELLISENSE__
-
-#include "dnn/loss.h"
-#include "dnn/core.h"
-#include "dnn/solvers.h"
-#include "dnn/trainer.h"
-#include "dnn/cpu_dlib.h"
-#include "dnn/tensor_tools.h"
-#include "dnn/utilities.h"
-#include "dnn/validation.h"
-
-#endif // DLIB_DNn_
-
-