satyrmipt

Results 16 issues of satyrmipt

## Description of your problem **What steps will reproduce the problem?** 1) Brackets autoclosure in spyder notebook do not work in spite of it works in Editor. I type "print("...

type:Enhancement

## Description of your problem **What steps will reproduce the problem?** Can not activate help display for any function in help pane while working in notebook. All buttons in Tools...

Consider the code i took from https://pypi.org/project/pogema/1.0.1/ import gym from pogema import GridConfig ``` # Define random configuration grid_config = GridConfig(num_agents=4, # number of agents size=8, # size of the...

Please recommend how users should synchronize versions of tf, keras and keras rl? - [OK ] Check that you are up-to-date with the master branch of Keras-RL. You can update...

Please look at the code below. Is there a way to avoid transliteration of "sheet" substring to "шеет" one in the 2nd case? Code: from nltk.stem import SnowballStemmer stemmer =...

### Search before asking - [X] I have searched the YOLOv8 [issues](https://github.com/ultralytics/ultralytics/issues) and found no similar feature requests. ### Description Have you ever seen how yolo train process output looks...

enhancement

Not a problem but question. I train my model with images gathered to dataset by `keras.utils.image_dataset_from_directory`: ``` train_ds, val_ds = keras.utils.image_dataset_from_directory( directory=ds_path, labels='inferred', label_mode='int', color_mode = 'rgb', batch_size=BS, image_size=(IMG_SIZE, IMG_SIZE),...

type:support
stat:awaiting response from contributor
stale

### Search before asking - [X] I have searched the YOLOv5 [issues](https://github.com/ultralytics/yolov5/issues) and [discussions](https://github.com/ultralytics/yolov5/discussions) and found no similar questions. ### Question I'm trying to teach the model to detect objects...

question

Looks like interval ends are always excluded. May i control this behaviour? See no such parameters in Interval docstring ``` it.Interval(1, 2).overlaps(2,3), it.Interval(1, 2).overlaps(1,1), it.Interval(1, 2).overlaps(2,2) # (False, False, False)...

I predict for 1, 2, and 3 steps forward in time with the same lookback_len. Why predictions for first steps are different in all three predictions? It is the same...