Skip to content

Commit

Permalink
Merge branch 'master' of github.com:jolibrain/deepdetect into dlib
Browse files Browse the repository at this point in the history
  • Loading branch information
cchadowitz committed Jun 14, 2018
2 parents d5abc88 + 9503c57 commit c86a2a6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Expand Up @@ -16,6 +16,7 @@ DeepDetect relies on external machine learning libraries through a very generic
| | Training | Prediction | Classification | Object Detection | Segmentation | Regression | Autoencoder | OCR / Seq2Seq |
|------------|----------|------------|----------------|-----------|-----------|------------|-------------|-------------|
| Caffe | Y | Y | Y | Y | Y | Y | Y | Y |
| Caffe2 | N | Y | N | N | N | N | N | N |
| XGBoost | Y | Y | Y | N | N | Y | N/A | N |
| Tensorflow | N | Y | Y | N | N | N | N | N |
| T-SNE | Y | N/A | N/A | N/A | N/A | N/A | N/A | N |
Expand All @@ -27,16 +28,18 @@ DeepDetect relies on external machine learning libraries through a very generic
| | Training | Prediction |
|------------|----------|------------|
| Caffe | Y | Y |
| XGBoost | Y | N |
| Tensorflow | Y | Y |
| T-SNE | N | N |
| Caffe2 | N | Y |
| XGBoost | Y | Y |
| Tensorflow | N | Y |
| T-SNE | Y | N |
| Dlib | N | Y |

#### Input data support per library (current):

| | CSV | SVM | Text words | Text characters | Images |
|------------|-----|-----|------------|-----------------|--------|
| Caffe | Y | Y | Y | Y | Y |
| Caffe2 | N | N | N | N | Y |
| XGBoost | Y | Y | Y | N | N |
| Tensorflow | N | N | N | N | Y |
| T-SNE | Y | N | N | N | Y | (*)
Expand Down
12 changes: 12 additions & 0 deletions src/backends/tsne/tsneinputconns.h
Expand Up @@ -44,6 +44,18 @@ namespace dd
int _D = -1; /**< problem dimensions */
int _N = -1; /**< number of samples */

// for API info only
int width() const
{
return -1;
}

// for API info only
int height() const
{
return -1;
}

//TODO: parameters, ids
};

Expand Down

0 comments on commit c86a2a6

Please sign in to comment.