From 077abb35cd04f18b16faf1e1744c7bbcbbdd71e6 Mon Sep 17 00:00:00 2001 From: Jonas Date: Wed, 7 Feb 2018 08:09:03 +0100 Subject: [PATCH] fix relative link to demo (#3066) --- doc/how_to/external_memory.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/how_to/external_memory.md b/doc/how_to/external_memory.md index e50c02e57..72f09a221 100644 --- a/doc/how_to/external_memory.md +++ b/doc/how_to/external_memory.md @@ -11,7 +11,7 @@ filename#cacheprefix The ```filename``` is the normal path to libsvm file you want to load in, ```cacheprefix``` is a path to a cache file that xgboost will use for external memory cache. -The following code was extracted from [../demo/guide-python/external_memory.py](../demo/guide-python/external_memory.py) +The following code was extracted from [../../demo/guide-python/external_memory.py](../../demo/guide-python/external_memory.py) ```python dtrain = xgb.DMatrix('../data/agaricus.txt.train#dtrain.cache') ```