|
|
|
|
|
by RockyMcNuts
3291 days ago
|
|
TensorFlow is low-level. scikit or sklearn is high level off-the-shelf ML, apply this algorithm to this dataset with these parameters. TFlearn is a high-level off-the-shelf library built on TensorFlow, giving you some of the benefits e.g. GPU. It's hard to get state of the art results using off-the-shelf algorithms, unless your problem is very vanilla you typically need to get under the hood and do custom hyperparameters and tuning. That's why ML competitions like Kaggle are interesting, there are so many ways to skin the cat you can't capture them all in off-the-shelf libraries. But you can get very useful results with a lot less effort using sklearn and TFlearn off-the-shelf. |
|