This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Set NVIDIA power limit above default | |
[Service] | |
Type=oneshot | |
ExecStartPre=/usr/bin/nvidia-smi -pm 1 | |
ExecStart=/usr/bin/nvidia-smi -pl 275 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x22c322a4ceea10b74a8c975d21a7d63c69a9e4b3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import torch | |
from torch.autograd import Function | |
from torch._thnn import type2backend | |
from torch.nn.modules.utils import _pair | |
update_output_name = 'SpatialConvolutionLocal_updateOutput' | |
grad_input_name = 'SpatialConvolutionLocal_updateGradInput' | |
grad_params_name = 'SpatialConvolutionLocal_accGradParameters' | |
class Conv2dLocal(Function): |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
Plots MaxF1 score. | |
------------------------------------------------- | |
The MIT License (MIT) | |
Copyright (c) 2017 Marvin Teichmann | |
More details: https://github.com/MarvinTeichmann/KittiSeg/blob/master/LICENSE |