Mikhail Simin

Results 28 issues of Mikhail Simin

JS method of updating the position makes the sticky divs shake during scroll. If I'm not interested in supporting older browsers it would be great to leverage `position:fixed` again.

If the value for `numItersForTrainExamplesHistory` is adjusted mid training the Coach was only removing at most 1 old value. This change removes old values until the new history size is...

`__getstate__` and `__setstate__` are necessary for Pickling / Unpickling which will be utilized in multiprocessing. Conversation: #208 Proof of concept: #221

This works on Linux but not on Mac for some reason. Also this is just proof of concept. tqdm() bars are all screwed up, but can be easily fixed with...

I started with a blank requirements file and added libraries 1 by 1. For my game the resulting file was significantly smaller: ``` coloredlogs==14.0 torch==1.6.0 tqdm==4.48.2 ``` Plus pyyaml &...

Just want to start a conversation here -- this is an example of how one generic NNet file could exist (example in pytorch) ( #194 ) The only thing the...

In a similar approach to what @NMO13 is doing with #182 -- I think we could have a generic NNet file (one per library) and allow individual games to set...

Can you please add licensing and copyright information to each repo/project? Also what's the difference between https://github.com/byprogrammers/lets-code-react-native/tree/master/LCRN06-book-store-app and https://github.com/byprogrammers/LCRN06-book-store-app ?

I've a need to get/set values from an LFU cache directly, rather than as a function decorator. The need is as such: ```python def slow_function(*args, **kwargs) cache = choose_cache_out_of_many(*args) found...

When installing the requirements (automated via heroku in my scenario) the install fails with ImportError: No module named dj_database_url This can be resolved by adding: 'dj-database-url': 'dj-database-url>=0.3.0', to `askbot/__init__.py` inside...