Yashu Seth

Results 5 issues of Yashu Seth

Hello Everyone, I went through the paper [Regularizing and Optimizing LSTM Language Models](https://arxiv.org/abs/1708.02182). In the algorithm (NT-ASGD) discussed in the paper, for the switching to take place, current validation loss...

``` python >>> from pydy.viz.shapes import Sphere,Cube >>> c = Cube('abcd') >>> s = Sphere('xyz') >>> print(s) Sphere unnamed color:grey material:default radius:xyz >>> print(c) Cube unnamed color:grey material:default length:abcd ```

Partial Python code related to it - ```python from dummyPy import OneHotEncoder import pandas as pd import dill, pickle X = pd.DataFrame() ## (71, 3000000) print(len(cat_col)) ## 50 encoder =...

bug

```python >>> import pandas as pd >>> from dummyPy import OneHotEncoder >>> data = pd.read_csv("titanic.csv") >>> encoder = OneHotEncoder(["Cabin", "Embarked"]) >>> encoder.fit(data) >>> encoder.transform(data) Traceback (most recent call last): File...

bug