nomic 3.0.38__tar.gz → 3.0.39__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of nomic might be problematic. Click here for more details.
- {nomic-3.0.38 → nomic-3.0.39}/PKG-INFO +1 -1
- {nomic-3.0.38 → nomic-3.0.39}/nomic/dataset.py +4 -2
- {nomic-3.0.38 → nomic-3.0.39}/nomic.egg-info/PKG-INFO +1 -1
- {nomic-3.0.38 → nomic-3.0.39}/setup.py +1 -1
- {nomic-3.0.38 → nomic-3.0.39}/README.md +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/__init__.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/atlas.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/aws/__init__.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/aws/sagemaker.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/cli.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/data_inference.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/data_operations.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/embed.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/pl_callbacks/__init__.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/pl_callbacks/pl_callback.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/settings.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic/utils.py +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic.egg-info/SOURCES.txt +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic.egg-info/dependency_links.txt +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic.egg-info/entry_points.txt +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic.egg-info/requires.txt +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/nomic.egg-info/top_level.txt +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/pyproject.toml +0 -0
- {nomic-3.0.38 → nomic-3.0.39}/setup.cfg +0 -0
|
@@ -1064,7 +1064,7 @@ class AtlasDataset(AtlasClass):
|
|
|
1064
1064
|
elif isinstance(topic_model, NomicTopicOptions):
|
|
1065
1065
|
pass
|
|
1066
1066
|
elif topic_model:
|
|
1067
|
-
topic_model = NomicTopicOptions()
|
|
1067
|
+
topic_model = NomicTopicOptions(topic_label_field=indexed_field)
|
|
1068
1068
|
else:
|
|
1069
1069
|
topic_model = NomicTopicOptions(build_topic_model=False)
|
|
1070
1070
|
|
|
@@ -1168,7 +1168,9 @@ class AtlasDataset(AtlasClass):
|
|
|
1168
1168
|
topic_field = None
|
|
1169
1169
|
topic_model.build_topic_model = False
|
|
1170
1170
|
else:
|
|
1171
|
-
topic_field =
|
|
1171
|
+
topic_field = (
|
|
1172
|
+
topic_model.topic_label_field if topic_model.topic_label_field != indexed_field else None
|
|
1173
|
+
)
|
|
1172
1174
|
else:
|
|
1173
1175
|
topic_field = topic_model.topic_label_field
|
|
1174
1176
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|