Skip to content

Tag: python-3.x

Python RegEx check string

im trying to set correct version on output. I have this possible strings: 0.0.4.1 # 1. 7.51.4.1 # 2. 0.1.4.1 # 3. and i need to check, if the “0.” is on the start (to set output without 0. or 0.0.) Output 1. will have just “4.1”, 2. gonna stay the same and 3. will be 1.4.1 Im trying to

Wrong result with regular expressions

Any idea why the regular expression below cuts the ‘fl’ part of the sentence ? This is the result I get : Answer You’re replacing all non-alphabetical characters with whitespace. In your code, the ‘fl’ is actually fl – a single unicode (non-AZ) character, so it is being remo…

How to create n-dimensional sparse tensor? (pytorch)

I want to initialize tensor to sparse tensor. When tensor’s dimensional is 2, I can use torch.nn.init.sparse(tensor, sparsity=0.1) Result But when tensor dimensions > 2, this function isn’t work. Result I need this because I want to use it to initialize the convolution weights. torch.nn.init.sp…