MCPcopy Create free account

hub / github.com/AlexanderLutsenko/nobuco / functions

Functions654 in github.com/AlexanderLutsenko/nobuco

Functionconverter_EMAModel
(self, x)
examples/stateful1.py:65
Functionconverter_EMAModel
(self, x)
examples/stateful2.py:62
Functionconverter_FrozenBatchNorm
(self, input: Tensor)
nobuco/node_converters/torchvision.py:21
Functionconverter_GRU
(self: nn.GRU, input, hx=None)
nobuco/node_converters/recurrent.py:41
Functionconverter_GroupNorm
(self, input: Tensor)
nobuco/node_converters/normalization.py:53
Functionconverter_Identity
(self, input: Tensor)
nobuco/node_converters/misc.py:40
Functionconverter_InstanceNorm
(self, input: Tensor)
nobuco/node_converters/normalization.py:34
Functionconverter_LSTM
(self: nn.LSTM, input, hx=None)
nobuco/node_converters/recurrent.py:134
Functionconverter_LeakyRelu
(self, input: Tensor)
nobuco/node_converters/activation.py:74
Functionconverter_Linear
(self, input: Tensor)
nobuco/node_converters/linear.py:21
Functionconverter_MultiheadAttention
(self, query: Tensor, key: Tensor, value: Tensor, key_padding_
nobuco/node_converters/attention.py:15
Functionconverter_MultiheadAttentionModel
(self, x)
examples/multihead-attention.py:89
Functionconverter_PReLU
(self, input: Tensor)
nobuco/node_converters/activation.py:105
Functionconverter_ReLU
(self, input: Tensor)
nobuco/node_converters/activation.py:55
Functionconverter_SliceReLU
(self, x)
examples/converter_inside_converter.py:43
Functionconverter_StochasticDepth
(self, input: Tensor)
nobuco/node_converters/torchvision.py:13
Functionconverter__upcast
(t: Tensor)
nobuco/node_converters/torchvision.py:37
Functionconverter_abs
(input: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/math.py:191
Functionconverter_adaptiveAvgPool2D
(input: Tensor, output_size)
nobuco/node_converters/pooling.py:69
Functionconverter_add
(input, other, *args, **kwargs)
nobuco/node_converters/math.py:34
Functionconverter_all
(input: Tensor, dim=None, keepdim: _bool=False, *, out: Optional[Tensor]=None)
nobuco/node_converters/reduce.py:115
Functionconverter_amax
(input: Tensor, dim: Union[_int, _size]=(), keepdim: _bool=False, *, out: Optional[Tensor]=None)
nobuco/node_converters/reduce.py:231
Functionconverter_amin
(input: Tensor, dim: Union[_int, _size]=(), keepdim: _bool=False, *, out: Optional[Tensor]=None)
nobuco/node_converters/reduce.py:219
Functionconverter_any
(input: Tensor, dim=None, keepdim: _bool=False, *, out: Optional[Tensor]=None)
nobuco/node_converters/reduce.py:103
Functionconverter_arange
(start: Number, end: Number=None, step: Number=1, *, out: Optional[Tensor]=None, dtype: Optional[_dtype]=None,
nobuco/node_converters/math.py:286
Functionconverter_argmax
(input: Tensor, dim=None, keepdim: _bool=False, *, out=None)
nobuco/node_converters/reduce.py:197
Functionconverter_argmin
(input: Tensor, dim=None, keepdim: _bool=False, *, out=None)
nobuco/node_converters/reduce.py:175
Functionconverter_as_tensor
(data: Any, dtype: Optional[_dtype] = None, device: Device = None)
nobuco/node_converters/tensor_creation.py:48
Functionconverter_asarray
(obj: Any, *, dtype: Optional[_dtype] = None, device: Union[_device, str, None] = None, copy: Optional[_bool]
nobuco/node_converters/tensor_creation.py:63
Functionconverter_avg_pool2d
(input, kernel_size, stride=None, padding=0, ceil_mode=False, count_include_pad=True, divisor_override=None)
nobuco/node_converters/pooling.py:44
Functionconverter_baddbmm
(input: Tensor, batch1: Tensor, batch2: Tensor, *, beta: Number=1, alpha: Number=1, out: Optional[Tensor]=None
nobuco/node_converters/linear.py:91
Functionconverter_batched_nms
(boxes: Tensor, scores: Tensor, idxs: Tensor, iou_threshold: float)
nobuco/node_converters/torchvision.py:54
Functionconverter_bmm
(input: Tensor, mat2: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/linear.py:84
Functionconverter_bn_conv
(self, x)
examples/fusible.py:66
Functionconverter_bool
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:36
Functionconverter_broadcast_tensors
(*tensors)
nobuco/node_converters/tensor_broadcast.py:21
Functionconverter_broadcast_to
(input: Tensor, size)
nobuco/node_converters/tensor_broadcast.py:28
Functionconverter_canonical_mask
(mask: Optional[Tensor], mask_name: str, other_type: Optional, other_name: str, target_type, check_other: bool
nobuco/node_converters/tensor_creation.py:228
Functionconverter_cat
(tensors: Union[Tuple[Tensor, ...], List[Tensor]], dim=0, *, out: Optional[Tensor]=None)
nobuco/node_converters/tensor_manipulation.py:109
Functionconverter_cdist
(x1, x2, p=2., compute_mode='use_mm_for_euclid_dist_if_necessary')
nobuco/node_converters/math.py:317
Functionconverter_ceil
(input: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/math.py:198
Functionconverter_chunk
(input, chunks, dim=0)
nobuco/node_converters/tensor_manipulation.py:145
Functionconverter_clamp
(input: Tensor, min: Optional[Number]=None, max: Optional[Number]=None, *, out: Optional[Tensor]=None)
nobuco/node_converters/math.py:230
Functionconverter_clamp_max
(input: Tensor, max, *, out = None)
nobuco/node_converters/math.py:250
Functionconverter_clamp_min
(input: Tensor, min, *, out = None)
nobuco/node_converters/math.py:242
Functionconverter_clip
(input: Tensor, min: Optional[Tensor]=None, max: Optional[Tensor]=None, *, out: Optional[Tensor]=None)
nobuco/node_converters/activation.py:183
Functionconverter_clone
(input: Tensor, *, memory_format=None)
nobuco/node_converters/misc.py:54
Functionconverter_complex
(real: Tensor, imag: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/tensor_creation.py:240
Functionconverter_contiguous
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:12
Functionconverter_conv1d
(input: Tensor, weight: Tensor, bias: Optional[Tensor] = None, stride: Union[_int, _size] = 1,
nobuco/node_converters/convolution.py:95
Functionconverter_conv2d
(input: Tensor, weight: Tensor, bias: Optional[Tensor] = None, stride: Union[_int, _size] = 1,
nobuco/node_converters/convolution.py:382
Functionconverter_conv_transpose1d
(input: Tensor, weight: Tensor, bias: Optional[Tensor] = None, stride = 1, padding = 0, output_padding = 0, gr
nobuco/node_converters/convolution.py:239
Functionconverter_conv_transpose2d
(input: Tensor, weight: Tensor, bias: Optional[Tensor] = None, stride: Union[_i
nobuco/node_converters/convolution.py:542
Functionconverter_copy_
(self, src, non_blocking=False)
nobuco/node_converters/misc.py:47
Functionconverter_cos
(input, *args, **kwargs)
nobuco/node_converters/math.py:27
Functionconverter_cpu
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:19
Functionconverter_cumsum
(input: Tensor, dim, *, dtype: Optional[_dtype] = None, out: Optional[Tensor] = None)
nobuco/node_converters/math.py:272
Functionconverter_depth_to_space
(self, input: torch.Tensor)
nobuco/addons/torch/depth_to_space.py:24
Functionconverter_detach
(self)
nobuco/node_converters/grad.py:11
Functionconverter_div
(input: Union[Tensor, Number], other: Union[Tensor, Number], *, rounding_mode: Optional[str] = None, out: Opti
nobuco/node_converters/math.py:85
Functionconverter_dot
(input: Tensor, tensor: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/linear.py:70
Functionconverter_double
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:61
Functionconverter_dropout
(input: Tensor, p: float = 0.5, training: bool = True, inplace: bool = False)
nobuco/node_converters/dropout.py:17
Functionconverter_einsum
(*args: Any)
nobuco/node_converters/linear.py:98
Functionconverter_elu
(input: Tensor, alpha: float = 1.0, inplace: bool = False)
nobuco/node_converters/activation.py:214
Functionconverter_embedding
(input: Tensor, weight: Tensor, padding_idx: Optional[int] = None, max_norm: Optional[float] = None,
nobuco/node_converters/linear.py:155
Functionconverter_empty
(*size: _int, names: Optional[Sequence[Union[str, None]]]=None, memory_format = None, dtype = None, layout = N
nobuco/node_converters/tensor_creation.py:119
Functionconverter_empty_like
(input: Tensor, *, memory_format=None, dtype=None, layout=None, device=None, pin_memory=False, requires_grad=F
nobuco/node_converters/tensor_creation.py:198
Functionconverter_eq
(input: Tensor, other: Number, *, out: Optional[Tensor]=None)
nobuco/node_converters/comparison.py:44
Functionconverter_exp
(input: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/math.py:156
Functionconverter_expand
(self, *sizes)
nobuco/node_converters/tensor_manipulation.py:176
Functionconverter_expand_as
(self, other)
nobuco/node_converters/tensor_manipulation.py:194
Functionconverter_fill
(input, value)
nobuco/node_converters/misc.py:15
Functionconverter_fill_
(self, value)
nobuco/node_converters/tensor_creation.py:221
Functionconverter_float
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:56
Functionconverter_floor
(input: Tensor, *, out: Optional[Tensor]=None)
nobuco/node_converters/math.py:205
Functionconverter_floor_divide
(input: Union[Tensor, Number], other: Union[Tensor, Number], *, out: Optional[Tensor]=None)
nobuco/node_converters/math.py:106
Functionconverter_force_pytorch_order
(inputs)
nobuco/funcs.py:30
Functionconverter_force_tensorflow_order
(inputs)
nobuco/funcs.py:20
Functionconverter_full
(size: _size, fill_value: Number, *, names=None, dtype: Optional[_dtype]=None, layout: Optional[_layout]=None,
nobuco/node_converters/tensor_creation.py:131
Functionconverter_full_like
(input: Tensor, fill_value: Number, *, memory_format=None, dtype=None, layout=None, device=None, pin_memory=Fa
nobuco/node_converters/tensor_creation.py:206
Functionconverter_gather
(input: Tensor, dim, index: Tensor, *, sparse_grad: _bool=False, out: Optional[Tensor]=None)
nobuco/node_converters/tensor_manipulation.py:326
Functionconverter_ge
(input: Tensor, other: Number, *, out: Optional[Tensor]=None)
nobuco/node_converters/comparison.py:23
Functionconverter_gelu
(input: Tensor, approximate='none')
nobuco/node_converters/activation.py:202
Functionconverter_get_crop
(x, crop_y, crop_x, h, w)
examples/static_crop.py:22
Functionconverter_getattribute
(self, attribute: str)
nobuco/node_converters/tensor_getattribute.py:11
Functionconverter_getitem
(self, *slices)
nobuco/node_converters/slice.py:316
Functionconverter_grid_sample
(input: Tensor, grid: Tensor, mode: str = "bilinear", padding_mode: str = "zeros", align_corners: Optional[boo
nobuco/node_converters/grid_sampling.py:33
Functionconverter_gt
(input: Tensor, other: Number, *, out: Optional[Tensor]=None)
nobuco/node_converters/comparison.py:16
Functionconverter_half
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:51
Functionconverter_hardsigmoid
(input: Tensor, inplace: bool = False)
nobuco/node_converters/activation.py:129
Functionconverter_hardswish
(input: Tensor, inplace: bool = False)
nobuco/node_converters/activation.py:143
Functionconverter_hardtanh
(input: Tensor, min_val: float = -1.0, max_val: float = 1.0, inplace: bool = False)
nobuco/node_converters/activation.py:136
Functionconverter_int
(self, memory_format=None)
nobuco/node_converters/tensor_cast.py:41
Functionconverter_interpolate
(input: Tensor, size: Optional[int] = None, scale_factor: Optional[List[float]] = None, mode: str = 'nearest',
nobuco/node_converters/interpolation.py:14
Functionconverter_invert
(input: Tensor)
nobuco/node_converters/boolean.py:25
Functionconverter_irfft
(input, n=None, dim=-1, norm=None, *, out=None)
nobuco/node_converters/fft.py:27
Functionconverter_irfft2
(input, s=None, dim=(-2, -1), norm=None, *, out=None)
nobuco/node_converters/fft.py:47
Functionconverter_isnan
(input: Tensor)
nobuco/node_converters/misc.py:33
Functionconverter_istft
(input, n_fft, hop_length=None, win_length=None, window=None, center=True, normalized=Fals
nobuco/node_converters/fft.py:110
← previousnext →301–400 of 654, ranked by callers