Andy7475

Results 2 issues of Andy7475

The code from your homepage from sklearn.datasets import fetch_20newsgroups from sklearn.feature_extraction.text import CountVectorizer from enstop import EnsembleTopics news = fetch_20newsgroups(subset='all') data = CountVectorizer().fit_transform(news.data) model = EnsembleTopics(n_components=20).fit(data) topics = model.components_ doc_vectors...

Currently in the course notebooks you have hardcoded in a model name that is deprecated resulting in a 404 tool_use\03_structured_outputs.ipynb response = client.messages.create( model="claude-3-sonnet-20240629",