marthinwurer
marthinwurer
As of this post, there are only links to the next chapter at the top of the page. I'm not there when I want to go to the next chapter,...
As a first stab at #121, I've implemented a prototype of the tool -> select workflow. I'm uploading it now for feedback, even though just the one command works. I...
CamelCasing of library names caused issues with using the built-in SD library. I removed it, and fixed up the case where the stepper library example did not match that in...
I've tried to use the Arduino built-in SD card library. In my code, I have: ``` find_arduino_library(sd_lib SD ${board_id}) ``` Which raises an error: ``` Couldn't find library named Sd...
As per https://stackoverflow.com/a/56331273/3000741, using the scipy block reduce loses all mask information. This can cause lots of calculation errors. The one that I'm running into at the moment is with...
Moved some stuff around and made some performance improvements to the merge functionality. There were a lot of extra array copies and instances where larger data types than needed were...
In code: ``` one_deg.to_tiff(os.path.expanduser("~/path/to/dir/one_deg.tif")) ``` In file: ``` $ ls one_deg.tif.tif ``` I expected that the file would just be named `one_deg.tif`, not `.tif.tif`
Line of code and stack trace: ``` >>> raster = gr.from_file(os.path.expanduser("~/Downloads/datasets/elevation/one_deg.tif")) Traceback (most recent call last): File "/home/benjamin/.pyenv/versions/georasters/lib/python3.7/site-packages/numpy/ma/core.py", line 473, in _check_fill_value fill_value = np.array(fill_value, copy=False, dtype=ndtype) ValueError: cannot convert...
```python class simple(nn.Module): def __init__(self): super().__init__() self.conv1 = nn.Conv2d(3, 32, 3) self.deconv1 = nn.ConvTranspose2d(32, 3, 3) simple_model = simple() tracker2 = CheckLayerSat("my_experiment", save_to="plotcsv", modules=simple_model, device=image.device) ``` output: ``` added layer...
Hey all, I used to use the original version, and just now tried to use this fork as it seemed to be the most up to date one after a...