CO 759, Winter 2018, HW1: Hello World
Due: Wednesday, February 7

On this assignment you are welcome to get help from fellow students and friends. But I would like everyone to have the experience of sitting down and building a neural net with one of the available software platforms. For students familiar with Python, the Pytorch package is a good choice.

The following files contain all labeled graphs on n = 4, 5, 6 nodes. Each line contains a graph, where the edges are indicated by a 0-1 vector. The components of the vector correspond to the edges ordered lexicographically. For example, for n = 4 the edges are [0,1] [0,2] [0,3] [1,2] [1,3] [2,3]. The last character indicates if the graph is connected or not (Y == Yes, N == No).

graphs4.txt
graphs5.txt
graphs6.txt

Here is the C code used to generate the graphs: allgen.c