Module 'gensim.models.word2vec' has no attribute 'keyedvectors'

I cant seem to get

model = word2vec.KeyedVectors.load_word2vec_format(w2v_path+'.bin', binary=True)

working.

I get an attribute error:

AttributeError: module ‘gensim.models.word2vec’ has no attribute ‘KeyedVectors’

Changes to the API?

Thank you

steps:-

  1. from gensim.models import KeyedVectors
  2. model = KeyedVectors.load(model_path)