Mayur
Mayur
A clear and concise description of what the bug is. #### How to reproduce the bug 1. Go to homepage 2. Hover on + sign on top right corner ->...
In ``` def get_loss(args): y_pred, y_true = args y_true = tf.cast(y_true, 'int32') loss = tf.nn.sparse_softmax_cross_entropy_with_logits(labels=y_true, logits=y_pred) mask = tf.cast(tf.not_equal(y_true, 0), 'float32') loss = tf.reduce_sum(loss * mask, -1) / tf.reduce_sum(mask, -1)...
I tried translating different english sentences,but got same translation. Tried decode_sequence and decode_sequence_fast too. trained for 2 epochs,it that a problem?
### SUMMARY If cell value is null don't color it in table chart with conditional formatting, will fix pivot table later if it has similar issue. fixes: https://github.com/apache/superset/issues/21341 ### BEFORE/AFTER...
A clear and concise description of what the bug is. When table chart is saved with conditional formatting, it reloads the page without those customizations. But after reloading it again...
### SUMMARY Migrates D3 bubble chart to Echart's scatter. Bubble chart has different controls than scatter, so replacing it first then plan to combine scatter and bubble chart types later....
### SUMMARY fixes: #22189 ### BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF ### TESTING INSTRUCTIONS 1. create table chart 2. setup csv report on that chart and enable `Ignore cache when generating...
A clear and concise description of what the bug is. Api to get data of a saved chart used by reports to send csv data doesn't respect force parameter resulting...
importing note_seq fails due to `@attr.s` line, which looks incompatible with attrs latest version. so pinning it to attrs == 22.1.0 works.