PyTorch-NEAT icon indicating copy to clipboard operation
PyTorch-NEAT copied to clipboard

Results 12 PyTorch-NEAT issues
Sort by recently updated
recently updated
newest added

Adding this file will allow this repository to be used as a Python package.

def dense_from_coo(shape, conns, dtype=torch.float64): mat = torch.zeros(shape, dtype=dtype) idxs, weights = conns if len(idxs) == 0: return mat rows, cols = np.array(idxs).transpose() mat[torch.LongTensor(rows), torch.LongTensor(cols)] = torch.tensor( weights, dtype=dtype) return mat...

I'm doing some research in continual learning, and a HyperNEAT implementation would come in handy. I have tried many things, and for the life of me I cannot get this...

After running the _adaptive_ _example_ I was able to spot some errors. These were mainly related to the the tensors having different device type (cpu and cuda). Tensors expected to...

Currently running the **adaptive HyperNEAT** example using `device = "cuda:0"` Population size: 100 Elitism: 10% No multiprocessing It runs okay for several generations, up until the following exception is thrown...

When running pip install -r requirements.txt, I got the error : ERROR: No matching distribution found for torch==0.4.0 (from -r requirements.txt (line 5))

No matter how I attempt to start one of the examples (adaptive) I get this error. Full log here. ```Traceback (most recent call last): File "g:/Emulators/ML AI open AI/env2.py", line...

I am trying to run the examples.simple.main.py and I encounter the following exception: `RuntimeError: tensors used as indices must be long or byte tensors` I have the following packages installed...

Is there some means of performing backpropagation on the resultant neural network?

readability improved.