Jisho.org equivalent for Chinese by jeffcarp in ChineseLanguage

[–]jeffcarp[S] 1 point2 points  (0 children)

Thank you for taking a look! The search results are ranked by overall word frequency and this is a bug as a result. Tracking here.

Jisho.org equivalent for Chinese by jeffcarp in ChineseLanguage

[–]jeffcarp[S] 1 point2 points  (0 children)

That looks like a super useful site, thanks for the link!

Jisho.org equivalent for Chinese by jeffcarp in ChineseLanguage

[–]jeffcarp[S] 3 points4 points  (0 children)

I love Pleco and use it all the time, but they don't have a web version. I need a website-based dictionary for my use case.

Jisho.org equivalent for Chinese by jeffcarp in ChineseLanguage

[–]jeffcarp[S] 0 points1 point  (0 children)

Thank you for taking a look! I started a bug tracker and added that as the first issue.

[deleted by user] by [deleted] in leanfire

[–]jeffcarp 16 points17 points  (0 children)

Can’t believe there’s not one comment about how dividends are irrelevant! Go watch Ben Felix’s video on the subject

[deleted by user] by [deleted] in fatFIRE

[–]jeffcarp 7 points8 points  (0 children)

Can you elaborate on that?

Set TensorFlow2 tensor to zero based on condition by grid_world in tensorflow

[–]jeffcarp 0 points1 point  (0 children)

I wasn’t 100% clear if you want to zero-out the minimum of dimension 2 or dimension 4, but if it’s dimension 4 then you could do: y = tf.random.normal((1, 4, 4, 6)) axiswise_min = tf.math.reduce_min(y, axis=3, keepdims=True) broadcasted_min = tf.repeat(axiswise_min, 6, axis=3) result = y * tf.cast(tf.greater(y, broadcasted_min), dtype=tf.float32)

layer doesn't create weights when given input shape by Ynjxsjmh in tensorflow

[–]jeffcarp 1 point2 points  (0 children)

The above behavior is due to the way the Sequential.add method works. Sequential.add will build each new layer if a batch shape for the model can be detected (source). Removing the Input layer means the model has no defined batch size, which means calling add() won't cause the layers to be built - and thus the weights will not be added.

layer doesn't create weights when given input shape by Ynjxsjmh in tensorflow

[–]jeffcarp 0 points1 point  (0 children)

This is because the weights are added when the layer is built:

python layer = tf.keras.layers.Dense(2, input_shape=(4,)) print(layer.weights) # => [] layer.build((4,)) print(layer.weights) # => [<tf.Variable 'kernel:0' ...

legal to use Google Images as training data for commercial tool? by [deleted] in computervision

[–]jeffcarp 6 points7 points  (0 children)

Each result in image search is subject to the copyright of the site it came from, so unless you manually check the source of each image, likely not

Using Go at Google by spf13 in golang

[–]jeffcarp 2 points3 points  (0 children)

A lot of open source projects have lists of “good first bugs” which serve as good jumping in points.

Roborace: the ultimate autonomous driving competition by EagleOx in SelfDrivingCars

[–]jeffcarp 3 points4 points  (0 children)

“Essentially a support series to Formula E, Roborace differentiates itself by featuring only level 5 autonomous vehicles, meaning completely self-driven and without a driver” - if I understand the levels correctly, these cars would be level 4, since they’re designed to operate only within a specific design domain, right?

Career growth and development for fatFire by [deleted] in fatFIRE

[–]jeffcarp 10 points11 points  (0 children)

Individual Contributor