From 4bfa818e447c68e9f0605b7553c136175502dc22 Mon Sep 17 00:00:00 2001 From: Fabien Campagne Date: Mon, 12 Dec 2016 14:29:54 -0500 Subject: [PATCH] Fix links for version to javadoc.io for version 1.1.1. --- README.md | 2 +- docs/framework/framework.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 79a56c6f..eb449cc6 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ This project provides: - A deep learning model training and evaluation framework (codename Matcha). Builds on [DL4J](http://deeplearning4j.org) and provides abstractions and organizing principles useful when training -and evaluating models in practice (see [doc](/./docs/doc.md)). Supports both CPU and GPU model training +and evaluating models in practice (see [doc](./docs/doc.md)). Supports both CPU and GPU model training and inference. We distribute the CPU version on maven, but you can build the project and choose the GPU maven profile to compile a CUDA version on the appropriate hardware. diff --git a/docs/framework/framework.md b/docs/framework/framework.md index 92b3a008..7f515e3e 100644 --- a/docs/framework/framework.md +++ b/docs/framework/framework.md @@ -3,7 +3,7 @@ Matcha provides an abstraction over [DeepLearning4J](https://deeplearning4j.org/ the practical development and evaluation of deep learning models. Since Matcha is a Java-based framework, it is best documented in Javadocs. -You can find the Javadocs at [javadoc.io](www.javadoc.io/doc/org.campagnelab.dl/framework) +You can find the Javadocs at [javadoc.io](http://www.javadoc.io/doc/org.campagnelab.dl/framework) This page provides pointers to help you understand the organizing principles of the framework. Use these pointers together @@ -64,7 +64,7 @@ with Matcha is that with Matcha, switching the model architecture can be done by changing a command line argument when using the train-model tool. ### DomainDescriptor -The [````DomainDescriptor````](http://static.javadoc.io/org.campagnelab.dl/framework/1.1/org/campagnelab/dl/framework/domains/DomainDescriptor.html) can be implemented for new domains to configure +The [````DomainDescriptor````](http://static.javadoc.io/org.campagnelab.dl/framework/1.1.1/org/campagnelab/dl/framework/domains/DomainDescriptor.html) can be implemented for new domains to configure which FeatureMappers, LabelMappers, ModelArchitecture and performance metric should be used to train and evaluate a model.