Mehmed B. Duran

Results 5 issues of Mehmed B. Duran

In the `setPosition` [function](https://github.com/mpatacchiola/dissecting-reinforcement-learning/blob/c25b3a4708db0567e0ecbeab48ba0aac6d5395cd/src/4/gridworld.py#L98) function at [line 102](https://github.com/mpatacchiola/dissecting-reinforcement-learning/blob/c25b3a4708db0567e0ecbeab48ba0aac6d5395cd/src/4/gridworld.py#L102) there are two undefined variables (`tot_row` and `tot_col`).

There is a missing import statement for the `unicode` library which is used at the 37th row between these lines: ``` if args.encode: encode = lambda words: [x.lower().encode('utf-8') for x...

I'm trying to run the `analogy_tasksevaluation.py` and I am receiving the following error: ``` Traceback (most recent call last): File "/home/sana/Desktop/proj/glove-python-master/examples/analogy_tasks_evaluation.py", line 44, in metrics.read_analogy_file(args.test)] AttributeError: module 'glove.metrics' has no...

I am using the ZeroInflatedRegressor for the prediction of some materials' prices. For some materials I am getting this error: ``` Traceback (most recent call last): File "/home/bugra/project-mats/mat_analyser.py", line 61,...

enhancement
good first issue

I am trying to find the number of dates inside a CSV file with this code: ``` def is_date(val): count = 0 for v in val: try: parse(str(v)) count +=...