glove-python icon indicating copy to clipboard operation
glove-python copied to clipboard

Toy Python implementation of http://www-nlp.stanford.edu/projects/glove/

Results 67 glove-python issues
Sort by recently updated
recently updated
newest added

I am running the command **pip install glove_python** C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.13.26128\bin\HostX86\x86\link.exe /nologo /INCREMENTAL:NO /LTCG /nodefaultlib:libucrt.lib ucrt.lib /DLL /MANIFEST:EMBED,ID=2 /MANIFESTUAC:NO /LIBPATH:c:\users\hi5an\appdata\local\programs\python\python35-32\libs /LIBPATH:c:\users\hi5an\appdata\local\programs\python\python35-32\PCbuild\win32 "/LIBPATH:C:\Program Files (x86)\Microsoft Visual Studio\2017\BuildTools\VC\Tools\MSVC\14.13.26128\Lib\x86" "/LIBPATH:C:\Program Files...

I have followed the installation guidance in Wiki, but still failed. Environment : `Windows 10` `Python 3.7` `MinGW 8.2.0-4` Here is the log : ```cmd (venv) D:\Python\glove-python>python setup.py build_ext --compiler=mingw32...

Hi, I was wondering if anyone can help me figure out how I can use this library(glove-python) to fine-tune the pre-trained GloVe vectors on my corpus on its original task....

When training glove recently, I found that train loss is necessary, so I resubmit a pr

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...

When running `pip install python` on Linux Mint 19: > running bdist_wheel running build running build_py creating build creating build/lib.linux-x86_64-3.7 creating build/lib.linux-x86_64-3.7/glove copying glove/glove.py -> build/lib.linux-x86_64-3.7/glove copying glove/corpus.py -> build/lib.linux-x86_64-3.7/glove...

Complete output (6 lines): usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...] or: setup.py --help [cmd1 cmd2 ...] or: setup.py --help-commands or: setup.py cmd --help error: option --all not recognized...

after I use command "pip install glove-python-binary" to install, I got a wrong feedback when i import it. ` (glove) D:\python_project\education_data\transformer_model\glove-python>python Python 3.6.2 |Continuum Analytics, Inc.| (default, Jul 20 2017,...

This method turns using Glove easier to use in machine learning method that requires the vector representation. Don't know if the name ```word_vector_by_word``` is the best name, please suggest me...