Milind Dalvi

Results 12 issues of Milind Dalvi

Upon running `ml.data_structures.get_time_bars` on following tick data, returns unix timestamp with incorrect values ``` # mlfinlab version 1.5.0 df_tmp = pd.read_excel('temp_tick.xlsx') ml.data_structures.get_time_bars(df_tmp[['date_time', 'price', 'volume']], resolution='D', num_units=1, batch_size=1000000, verbose=False) ``` Tick...

**Describe the bug** ![image](https://user-images.githubusercontent.com/8969776/158212824-fa0e0578-3d01-426d-af15-53fd1709dcd8.png)

**Describe the bug** The `mlfinlab.data_structures.get_time_bars(**kwargs)` is generating unix timestamp flavor for returned date_time column. **To Reproduce** ``` t0 = time.perf_counter() # 15 minutes chosen for legacy reasons df_time_bars = ml.data_structures.get_time_bars(df[['date_time',...

Hello CodeReclaimers, I was taking a look at [evolve.py](https://github.com/CodeReclaimers/neat-python/blob/master/examples/openai-lander/evolve.py#L62) in the openai-lander example and noticed the use of [different discounts](https://github.com/CodeReclaimers/neat-python/blob/master/examples/openai-lander/evolve.py#L39) for each genome. My question is, what is the significance...

**This is not an issue.** This is to help contributors @CodeReclaimers, @drallensmith, @bennr01, @evolvingmeat, a glimpse at all the TODO's found in this repository. # Code related ### [@](https://github.com/CodeReclaimers/neat-python/blob/master/docs/module_summaries.rst) Module...

I wanted a start with index 0 instead of 1 hence, custom mapping using enumerate, ``` oe_mapping = [{'col': c, 'mapping': {map_: map_idx for map_idx, map_ in enumerate(df[c].unique())}} for c...

bug

It seems that EncogAnalyst.Save(FileInfo) method is not saving the customized data, especially classes. Eg. With following code: ``` 'Analyst Dim analyst = New EncogAnalyst() 'Wizard Dim wizard = New AnalystWizard(analyst)...

As defined in the book the FFD approach of getWeights which is Xt =Σl∗k=0 𝜔̃ kXt−k, uses k which is k = 0,…, T − 1. Thus a limit/size parameter...

The MultiNEAT download website page says **Novely Search is coming to Python soon.** Is novelty search ready for python? It would be really cool if you could provide some example...

I wish to get UserInfo of logged in user, how do I get the same ? ``` from simple_salesforce import Salesforce sf = Salesforce(username='my_username', password='my_password', security_token='my_security_token') sf.UserInfo.get('user_id') ``` --------------------------------------------------------------------------- ```...