The Wayback Machine - http://web.archive.org/web/20200711063945/https://github.com/topics/deeplearning?l=python
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 863 public repositories matching this topic...

ludwig
ZeroAurora
ZeroAurora commented Mar 6, 2020

Is your feature request related to a problem? Please describe.
Other related issues: #408 #251
I trained a Chinese model for spaCy, linked it to [spacy's package folder]/data/zh (using spacy link) and want to use that for ludwig. However, when I tried to set the config for ludwig, I received an error, which tell me that there is no way to load the Chinese model.

ValueError: Key ch
micheletufano
micheletufano commented Dec 11, 2017

From the code (input_pipeline.py) I can see that the ParallelTextInputPipeline automatically generates the SEQUENCE_START and SEQUENCE_END tokens (which means that the input text does not need to have those special tokens).

Does ParallelTextInputPipeline also perform **_padding

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
JakeStevens
JakeStevens commented May 8, 2018

The README states:
If you already had a version of PyTorch installed on your system, please verify that the active torch package is at least version 0.1.11

However, my version of PyTorch (0.3.1) >= 0.1.11, but there are compatibility issues. The README should be updated to reflect the actual minimum version supported.

Given that the code uses no_grad, which is introduced in 0.4.0, the minim

This repository allows you to get started with a gui based training a State-of-the-art Deep Learning model with little to no configuration needed! Training with TensorFlow has never been so easy.

  • Updated Jun 23, 2020
  • Python
alontrais
alontrais commented Aug 29, 2019

I need to convert Yolo model to OpenVINO format for opencv/cvat/auto_annotation.
I use opencv CVAT for auto annotation https://github.com/opencv/cvat/tree/develop/cvat/apps/auto_annotation.

To annotate a task with a custom model I need to prepare 4 files:

  1. Model config (*.xml) - a text file with network configuration.
  2. Model weights (*.bin) - a binary file with trained weights.
  3. Label
Wikipedia
Wikipedia
You can’t perform that action at this time.