Skip to content
#

deeplearning

Deep learning is an AI function and subset of machine learning, used for processing large amounts of complex data.

Here are 1,805 public repositories matching this topic...

Flamefire
Flamefire commented Nov 13, 2019

Judging by the logic in https://github.com/horovod/horovod/blob/38e91bee84efbb5b563a4928027a75dc3974633b/setup.py#L1369 it is clear, that before installing Horovod one needs to install the underlying framework(s) (TensorFlow, PyTorch, ...).

This is not mentioned in the installation instructions which made me think, I can install Horovod and then any framework I like (or switch between them) and

gorgonia
nlp-architect
aribornstein
aribornstein commented Dec 25, 2018

Target objective:

Steps to objective:

nlp_architect/models/cross_doc_coref/system/cdc_utils.py

def load_mentions_vocab(mentions_files, filter_stop_words=False):
    logger.info('Loading mentions files...')
    mentions = []
    logger.info('Done loading mentions files, starting local dump creation...')
    for _file in mentions_files:
        mentions.extend(Menti
bug
ari62
ari62 commented Aug 26, 2019

Concerning the tutorial here:
https://deeplearning4j.org/tutorials/04-feed-forward
A number of possible corrections I may or may not be right about:
The first example has an input and output layer but it says:
"As you can see above that we have made a feed-forward network configuration with one hidden layer. "

Also the input layer is a DenseLayer, not a FeedForwardLayer as I would assume it

ghk829
ghk829 commented May 30, 2019

I run this code

import os
os.environ['is_test_suite']="True" # this is writen due to bug for multiprocessing and pickling I issued. #426 
from auto_ml import Predictor
from auto_ml.utils import get_boston_dataset
from auto_ml.utils_models import load_ml_model

# Load data
df_train, df_test = get_boston_dataset()

# Tell auto_ml which column is 'output'
# Also note columns t
You can’t perform that action at this time.