oracle-ads 2.11.13__py3-none-any.whl → 2.11.14__py3-none-any.whl

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.
ads/common/oci_logging.py CHANGED
@@ -614,13 +614,14 @@ class OCILog(OCILoggingModelMixin, oci.logging.models.Log):
614
614
  A list of log records.
615
615
  Each log record is a dictionary with the following keys: `id`, `time`, `message`.
616
616
  """
617
- return self._search_and_format(
617
+ tail_logs = self._search_and_format(
618
618
  source=source,
619
619
  limit=limit,
620
- sort_order=SortOrder.ASC,
620
+ sort_order=SortOrder.DESC,
621
621
  time_start=time_start,
622
622
  log_filter=log_filter,
623
623
  )
624
+ return sorted(tail_logs, key=lambda log: log["time"])
624
625
 
625
626
  def head(
626
627
  self,
@@ -854,14 +855,15 @@ class ConsolidatedLog:
854
855
  Expression for filtering the logs. This will be the WHERE clause of the query.
855
856
  Defaults to None.
856
857
  """
858
+ tail_logs = self._search_and_format(
859
+ source=source,
860
+ limit=limit,
861
+ sort_order=SortOrder.DESC,
862
+ time_start=time_start,
863
+ log_filter=log_filter,
864
+ )
857
865
  self._print(
858
- self._search_and_format(
859
- source=source,
860
- limit=limit,
861
- sort_order=SortOrder.ASC,
862
- time_start=time_start,
863
- log_filter=log_filter,
864
- )
866
+ sorted(tail_logs, key=lambda log: log["time"])
865
867
  )
866
868
 
867
869
  def head(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: oracle_ads
3
- Version: 2.11.13
3
+ Version: 2.11.14
4
4
  Summary: Oracle Accelerated Data Science SDK
5
5
  Keywords: Oracle Cloud Infrastructure,OCI,Machine Learning,ML,Artificial Intelligence,AI,Data Science,Cloud,Oracle
6
6
  Author: Oracle Data Science
@@ -13,6 +13,7 @@ Classifier: Operating System :: OS Independent
13
13
  Classifier: Programming Language :: Python :: 3.8
14
14
  Classifier: Programming Language :: Python :: 3.9
15
15
  Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
16
17
  Requires-Dist: PyYAML>=6
17
18
  Requires-Dist: asteval>=0.9.25
18
19
  Requires-Dist: cerberus>=1.3.4
@@ -20,8 +21,8 @@ Requires-Dist: cloudpickle>=1.6.0
20
21
  Requires-Dist: fsspec>=0.8.7
21
22
  Requires-Dist: gitpython>=3.1.2
22
23
  Requires-Dist: jinja2>=2.11.2
23
- Requires-Dist: matplotlib>=3.1.3, <=3.8.4
24
- Requires-Dist: numpy>=1.19.2, <2.0.0
24
+ Requires-Dist: matplotlib>=3.1.3,<=3.8.4
25
+ Requires-Dist: numpy>=1.19.2,<2.0.0
25
26
  Requires-Dist: oci>=2.125.3
26
27
  Requires-Dist: ocifs>=1.1.3
27
28
  Requires-Dist: pandas>1.2.1; python_version<'3.9'
@@ -40,7 +41,7 @@ Requires-Dist: jupyter_server ; extra == "aqua"
40
41
  Requires-Dist: hdfs[kerberos] ; extra == "bds"
41
42
  Requires-Dist: ibis-framework[impala] ; extra == "bds"
42
43
  Requires-Dist: sqlalchemy ; extra == "bds"
43
- Requires-Dist: lightgbm<4.0.0 ; extra == "boosted"
44
+ Requires-Dist: lightgbm ; extra == "boosted"
44
45
  Requires-Dist: xgboost ; extra == "boosted"
45
46
  Requires-Dist: datefinder>=0.7.1 ; extra == "data"
46
47
  Requires-Dist: fastavro>=0.24.2 ; extra == "data"
@@ -48,7 +49,7 @@ Requires-Dist: htmllistparse>=0.6.0 ; extra == "data"
48
49
  Requires-Dist: openpyxl>=3.0.7 ; extra == "data"
49
50
  Requires-Dist: oracledb>=1.0 ; extra == "data"
50
51
  Requires-Dist: pandavro>=1.6.0 ; extra == "data"
51
- Requires-Dist: sqlalchemy>=1.4.1, <=1.4.46 ; extra == "data"
52
+ Requires-Dist: sqlalchemy>=1.4.1,<=1.4.46 ; extra == "data"
52
53
  Requires-Dist: oracle-ads[opctl] ; extra == "feature-store-marketplace"
53
54
  Requires-Dist: kubernetes ; extra == "feature-store-marketplace"
54
55
  Requires-Dist: conda-pack ; extra == "forecast"
@@ -73,20 +74,21 @@ Requires-Dist: statsmodels ; extra == "forecast"
73
74
  Requires-Dist: plotly ; extra == "forecast"
74
75
  Requires-Dist: oracledb ; extra == "forecast"
75
76
  Requires-Dist: report-creator==1.0.9 ; extra == "forecast"
76
- Requires-Dist: geopandas ; extra == "geo"
77
+ Requires-Dist: geopandas<1.0.0 ; extra == "geo"
77
78
  Requires-Dist: oracle_ads[viz] ; extra == "geo"
78
79
  Requires-Dist: transformers ; extra == "huggingface"
80
+ Requires-Dist: tf-keras ; extra == "huggingface"
79
81
  Requires-Dist: langchain-community<0.0.32 ; extra == "llm"
80
82
  Requires-Dist: langchain>=0.1.10,<0.1.14 ; extra == "llm"
81
83
  Requires-Dist: evaluate>=0.4.0 ; extra == "llm"
82
84
  Requires-Dist: ipython>=7.23.1, <8.0 ; extra == "notebook"
83
85
  Requires-Dist: ipywidgets~=7.6.3 ; extra == "notebook"
84
- Requires-Dist: lightgbm<4.0.0 ; extra == "onnx"
85
- Requires-Dist: onnx>=1.12.0 ; extra == "onnx"
86
+ Requires-Dist: lightgbm ; extra == "onnx"
87
+ Requires-Dist: onnx>=1.12.0,<=1.15.0 ; extra == "onnx"
86
88
  Requires-Dist: onnxmltools>=1.10.0 ; extra == "onnx"
87
- Requires-Dist: onnxruntime>=1.10.0,<1.16 ; extra == "onnx"
89
+ Requires-Dist: onnxruntime~=1.17.0,!=1.16.0 ; extra == "onnx"
88
90
  Requires-Dist: oracle_ads[viz] ; extra == "onnx"
89
- Requires-Dist: protobuf<=3.20 ; extra == "onnx"
91
+ Requires-Dist: protobuf ; extra == "onnx"
90
92
  Requires-Dist: skl2onnx>=1.10.4 ; extra == "onnx"
91
93
  Requires-Dist: tf2onnx ; extra == "onnx"
92
94
  Requires-Dist: xgboost<=1.7 ; extra == "onnx"
@@ -114,14 +116,10 @@ Requires-Dist: spacy==3.6.1 ; extra == "pii"
114
116
  Requires-Dist: report-creator==1.0.9 ; extra == "pii"
115
117
  Requires-Dist: pyspark>=3.0.0 ; extra == "spark"
116
118
  Requires-Dist: oracle_ads[viz] ; extra == "tensorflow"
117
- Requires-Dist: tensorflow ; extra == "tensorflow"
118
- Requires-Dist: dask==2023.5.0 ; extra == "testsuite" and ( python_version=='3.8')
119
- Requires-Dist: dask==2023.10.1 ; extra == "testsuite" and ( python_version>='3.9')
119
+ Requires-Dist: tensorflow<=2.15.1 ; extra == "tensorflow"
120
120
  Requires-Dist: arff ; extra == "testsuite"
121
121
  Requires-Dist: category_encoders==2.6.3 ; extra == "testsuite"
122
122
  Requires-Dist: cohere==4.53 ; extra == "testsuite"
123
- Requires-Dist: dask==2023.10.1 ; extra == "testsuite" and ( python_version>='3.9')
124
- Requires-Dist: dask==2023.5.0 ; extra == "testsuite" and ( python_version=='3.8')
125
123
  Requires-Dist: faiss-cpu ; extra == "testsuite"
126
124
  Requires-Dist: fastparquet==2024.2.0 ; extra == "testsuite"
127
125
  Requires-Dist: imbalanced-learn ; extra == "testsuite"
@@ -132,17 +130,18 @@ Requires-Dist: notebook==6.4.12 ; extra == "testsuite"
132
130
  Requires-Dist: opensearch-py ; extra == "testsuite"
133
131
  Requires-Dist: pdfplumber ; extra == "testsuite"
134
132
  Requires-Dist: py4j ; extra == "testsuite"
135
- Requires-Dist: pyarrow ; extra == "testsuite"
133
+ Requires-Dist: pyarrow>=15.0.0 ; extra == "testsuite"
136
134
  Requires-Dist: statsmodels ; extra == "testsuite" and ( python_version=='3.8')
137
135
  Requires-Dist: statsmodels>=0.14.1 ; extra == "testsuite" and ( python_version>='3.9')
138
136
  Requires-Dist: tables ; extra == "testsuite"
137
+ Requires-Dist: tables>3.9.0 ; extra == "testsuite" and ( python_version>='3.9')
139
138
  Requires-Dist: xlrd>=1.2.0 ; extra == "testsuite"
140
- Requires-Dist: spacy ; extra == "text"
139
+ Requires-Dist: spacy>=3.4.2 ; extra == "text"
141
140
  Requires-Dist: wordcloud>=1.8.1 ; extra == "text"
142
141
  Requires-Dist: oracle_ads[viz] ; extra == "torch"
143
142
  Requires-Dist: torch ; extra == "torch"
144
143
  Requires-Dist: torchvision ; extra == "torch"
145
- Requires-Dist: bokeh>=3.0.0, <3.2.0 ; extra == "viz"
144
+ Requires-Dist: bokeh>=3.0.0,<3.2.0 ; extra == "viz"
146
145
  Requires-Dist: folium>=0.12.1 ; extra == "viz"
147
146
  Requires-Dist: graphviz<0.17 ; extra == "viz"
148
147
  Requires-Dist: scipy>=1.5.4 ; extra == "viz"
@@ -84,7 +84,7 @@ ads/common/model_metadata.py,sha256=Md1soURHww8GHMG3q_HV0RHVb6dPtg9FZ_7Wmd9L-Yc,
84
84
  ads/common/object_storage_details.py,sha256=K1dj-VugV_Fi7H4Mpn6pDjlKZva_cqPQNeAXXyLoI7g,9554
85
85
  ads/common/oci_client.py,sha256=SmME1qdCFtOdMtC7-703C732e4lEK71kNfTSqBRFkSM,6053
86
86
  ads/common/oci_datascience.py,sha256=biBgm-udtSYRL46XYfBFJjpkPFcw2ew-xvp3rbbpwmI,1698
87
- ads/common/oci_logging.py,sha256=OCb4Sc56mCZkwe3lIetNLUcZ5N_yEIqCrTbhlTbwoyk,41813
87
+ ads/common/oci_logging.py,sha256=U0HRAUkpnycGpo2kWMrT3wjQVFZaWqLL6pZ2B6_epsM,41925
88
88
  ads/common/oci_mixin.py,sha256=mhja5UomrhXH43uB0jT-u2KaT37op9tM-snxvtGfc40,34548
89
89
  ads/common/oci_resource.py,sha256=zRa4z5yh5GoOW_6ZE57nhMmK2d94WUqyFqvaNvje9Co,4484
90
90
  ads/common/serializer.py,sha256=dwAEqZCJRNXt9YxBsW8hICdBzMehPtUlHLnrA7GX5hY,18854
@@ -784,8 +784,8 @@ ads/type_discovery/unknown_detector.py,sha256=yZuYQReO7PUyoWZE7onhhtYaOg6088wf1y
784
784
  ads/type_discovery/zipcode_detector.py,sha256=3AlETg_ZF4FT0u914WXvTT3F3Z6Vf51WiIt34yQMRbw,1421
785
785
  ads/vault/__init__.py,sha256=x9tMdDAOdF5iDHk9u2di_K-ze5Nq068x25EWOBoWwqY,245
786
786
  ads/vault/vault.py,sha256=hFBkpYE-Hfmzu1L0sQwUfYcGxpWmgG18JPndRl0NOXI,8624
787
- oracle_ads-2.11.13.dist-info/entry_points.txt,sha256=9VFnjpQCsMORA4rVkvN8eH6D3uHjtegb9T911t8cqV0,35
788
- oracle_ads-2.11.13.dist-info/LICENSE.txt,sha256=zoGmbfD1IdRKx834U0IzfFFFo5KoFK71TND3K9xqYqo,1845
789
- oracle_ads-2.11.13.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
790
- oracle_ads-2.11.13.dist-info/METADATA,sha256=lshh7w4VT5pefbtOMDHBwzJUcpovBZ6Z7Ydc0Fy3gzk,15717
791
- oracle_ads-2.11.13.dist-info/RECORD,,
787
+ oracle_ads-2.11.14.dist-info/entry_points.txt,sha256=9VFnjpQCsMORA4rVkvN8eH6D3uHjtegb9T911t8cqV0,35
788
+ oracle_ads-2.11.14.dist-info/LICENSE.txt,sha256=zoGmbfD1IdRKx834U0IzfFFFo5KoFK71TND3K9xqYqo,1845
789
+ oracle_ads-2.11.14.dist-info/WHEEL,sha256=EZbGkh7Ie4PoZfRQ8I0ZuP9VklN_TvcZ6DSE5Uar4z4,81
790
+ oracle_ads-2.11.14.dist-info/METADATA,sha256=VS5pSQS-pL21nnWdUGVWliq6Mvpn5Ir7wbkN0i1DGx8,15586
791
+ oracle_ads-2.11.14.dist-info/RECORD,,