Skip to main content
4 votes
2 answers
830 views

I am trying to install gensim to do some topic modelling. But I keep having the same problem, which is that it can't prepare metadata when collecting from scipy. I hope maybe you guys can help. Here ...
Choptdei's user avatar
1 vote
1 answer
418 views

import gensim import numpy import scipy print("gensim version:", gensim.__version__) print("numpy version:", numpy.__version__) print("scipy version:", scipy.__version__) ...
Nguyễn Anh Minh's user avatar
0 votes
0 answers
72 views

I'm working with LDA on a Portuguese news corpus (~800k documents with an average of 28 words each after cleaning the data), and I’m trying to evaluate topic quality using perplexity. When I compute ...
O Basile's user avatar
1 vote
1 answer
198 views

I am trying to install the python package gensim. I installed scipy, smart_open and numpy, and ran pip install gensim. the installation failed in the preparing metadata stage and a behemoth 954 lines ...
Aviv's user avatar
  • 47
0 votes
1 answer
869 views

I am trying to import gensim into colab. !pip install gensim I get the following error: /usr/local/lib/python3.11/dist-packages/numpy/__init__.py in __getattr__(attr) 365 raise ...
Canuck's user avatar
  • 687
2 votes
1 answer
3k views

I've had some problems using GENSIM. After running: pip install --upgrade gensim i execute: import gensim.downloader as api I get the following error: ------------------------------------------------...
robintux's user avatar
  • 141
0 votes
1 answer
111 views

Python's Gensim package offers a dynamic topic model called LdaSeqModel(). I have run into the same problem as in this issue from the Gensim mailing list (which has not been solved). The problem is ...
hyco's user avatar
  • 221
2 votes
0 answers
49 views

I have a word2vec.model file. I am using this file in my lambda function. It was working fine. There was some change in the data file, so I had to retrain the model and use the updated word2vec.model ...
Teja Rao's user avatar
0 votes
3 answers
3k views

trying to install gensim on MacBook Pro (i7, Sonoma 14.7.1) using PyCharm ([email protected]). I've tried several suggestions from stack, github and other sources but none worked. Based on what little I ...
Blejzer's user avatar
  • 1,123
0 votes
1 answer
88 views

Windows10, IDLE, The download time is too long for the below code. import gensim.downloader as api word_vec_list = api.load('word2vec-google-news-300') Is it possible that I download only fewer words? ...
Repairer's user avatar
  • 135
-4 votes
1 answer
94 views

Code: import nltk import numpy as np import re import pandas as pd from sklearn.feature_extraction.text import TfidfVectorizer from scipy.sparse.linalg import svds from gensim.summarization.summarizer ...
user25453231's user avatar
0 votes
1 answer
329 views

I have bought a new macbook and have installed python 3.12.5 on it. I am trying to import and run libraries for Natural Langauge Processing in a Jupyter Notebook, and all is well... except when it ...
M K Snowman's user avatar
0 votes
1 answer
103 views

Trying this project: webvectors This code works fine nlpl_zip="C:/180.zip" with zipfile.ZipFile(nlpl_zip, "r") as archive: stream = archive.open("model.bin") ...
user26623260's user avatar
1 vote
3 answers
242 views

I am trying to build a sentiment analysing model, using the GloVe word embeddings... I found multiple sources on how to import the embeddings into python, this one seemed to be the simplest... Trying ...
Mel7's user avatar
  • 21
-1 votes
1 answer
33 views

I am trying to build a model that uses transcribed audio and on-screen text to classify a video ad as political or non-political, as well as extracts the name of the candidate and sponsor. How can I ...
Moulik Kumar's user avatar

15 30 50 per page
1
2 3 4 5
164