nomic-ai / nomic
- воскресенье, 2 апреля 2023 г. в 00:14:16
Interact with Massive Embedding and Text Datasets in Your Web Browser
Explore, label, search and share massive datasets in your web browser.
Example Maps
Install the Nomic client with:
pip install nomic
Login/create your Nomic account:
nomic login
Follow the instructions to obtain your access token. Enter your access token with:
nomic login [token]
Make your first map:
from nomic import atlas
import numpy as np
num_embeddings = 10000
embeddings = np.random.rand(num_embeddings, 256)
response = atlas.map_embeddings(embeddings=embeddings)
print(response)
Explore Atlas' documentation to make more advanced maps.