tile2vec icon indicating copy to clipboard operation
tile2vec copied to clipboard

Examples not working

Open bashwizard opened this issue 5 years ago • 1 comments

Following notebooks are not working:

  1. Example 1: Sampling triplets from image dataset FileNotFoundError: [Errno 2] No such file or directory: '../data/naip_tifs'

  2. Example 2: Train Tile2vec from scratch NameError Traceback (most recent call last) in 1 t0 = time() ----> 2 with open(results_fn, 'w') as file: 3 4 print('Begin training.................') 5 for epoch in range(0, epochs):

NameError: name 'results_fn' is not defined

Thanks in advance for the kind help!

bashwizard avatar Jul 28 '20 07:07 bashwizard

The Example - 2 can be run successfully through adding a txt file "results_fn.txt".

results_fn = '/.../results_fn.txt'

Arandinglv avatar Dec 11 '24 03:12 Arandinglv