shotiq 0.0.1__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.
shotiq-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shotiq
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Intelligent dynamic shot allocation framework for Quantum Machine Learning
|
|
5
|
+
Home-page: https://shotiq-quantum
|
|
6
|
+
Author: Hongsuk Yi
|
|
7
|
+
Author-email: hsyi@kisti.re.kr
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: author-email
|
|
18
|
+
Dynamic: classifier
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
Dynamic: summary
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# ShotIQ: Intelligent Shot Allocator for Quantum Machine Learning
|
|
27
|
+
|
|
28
|
+
ShotIQ is a dynamic shot allocation framework designed to optimize quantum resources
|
|
29
|
+
by analyzing data difficulty and hardware noise characteristics.
|
|
30
|
+
|
|
31
|
+
- **Maximize Accuracy**: Strategic sampling for hard samples.
|
|
32
|
+
- **Minimize Cost**: Efficient resource routing for easy samples.
|
|
33
|
+
- **Noise-Aware**: Balancing statistical variance and hardware errors.
|
|
34
|
+
|
|
35
|
+
Full documentation and source code will be released soon.
|
shotiq-0.0.1/setup.cfg
ADDED
shotiq-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
# 패키지 설명을 위해 간단한 README 내용 정의
|
|
4
|
+
long_description = """
|
|
5
|
+
# ShotIQ: Intelligent Shot Allocator for Quantum Machine Learning
|
|
6
|
+
|
|
7
|
+
ShotIQ is a dynamic shot allocation framework designed to optimize quantum resources
|
|
8
|
+
by analyzing data difficulty and hardware noise characteristics.
|
|
9
|
+
|
|
10
|
+
- **Maximize Accuracy**: Strategic sampling for hard samples.
|
|
11
|
+
- **Minimize Cost**: Efficient resource routing for easy samples.
|
|
12
|
+
- **Noise-Aware**: Balancing statistical variance and hardware errors.
|
|
13
|
+
|
|
14
|
+
Full documentation and source code will be released soon.
|
|
15
|
+
"""
|
|
16
|
+
|
|
17
|
+
setup(
|
|
18
|
+
name="shotiq", # 선점할 핵심 패키지 명
|
|
19
|
+
version="0.0.1",
|
|
20
|
+
author="Hongsuk Yi",
|
|
21
|
+
author_email="hsyi@kisti.re.kr", # 본인 이메일로 변경 가능
|
|
22
|
+
description="Intelligent dynamic shot allocation framework for Quantum Machine Learning",
|
|
23
|
+
long_description=long_description,
|
|
24
|
+
long_description_content_type="text/markdown",
|
|
25
|
+
url="https://shotiq-quantum", # 선점하신 도메인이 있다면 입력
|
|
26
|
+
packages=find_packages(),
|
|
27
|
+
classifiers=[
|
|
28
|
+
"Programming Language :: Python :: 3",
|
|
29
|
+
"License :: OSI Approved :: Apache Software License", # B2B 사업에 유리한 라이선스
|
|
30
|
+
"Operating System :: OS Independent",
|
|
31
|
+
"Topic :: Scientific/Engineering :: Physics",
|
|
32
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
33
|
+
"Intended Audience :: Science/Research",
|
|
34
|
+
],
|
|
35
|
+
python_requires=">=3.8",
|
|
36
|
+
install_requires=[
|
|
37
|
+
# 현재는 이름 선점을 위한 깡통 패키지이므로 비워둡니다.
|
|
38
|
+
# 향후 "pennylane", "qiskit" 등을 추가하게 됩니다.
|
|
39
|
+
],
|
|
40
|
+
)
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: shotiq
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Intelligent dynamic shot allocation framework for Quantum Machine Learning
|
|
5
|
+
Home-page: https://shotiq-quantum
|
|
6
|
+
Author: Hongsuk Yi
|
|
7
|
+
Author-email: hsyi@kisti.re.kr
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Classifier: Topic :: Scientific/Engineering :: Physics
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
13
|
+
Classifier: Intended Audience :: Science/Research
|
|
14
|
+
Requires-Python: >=3.8
|
|
15
|
+
Description-Content-Type: text/markdown
|
|
16
|
+
Dynamic: author
|
|
17
|
+
Dynamic: author-email
|
|
18
|
+
Dynamic: classifier
|
|
19
|
+
Dynamic: description
|
|
20
|
+
Dynamic: description-content-type
|
|
21
|
+
Dynamic: home-page
|
|
22
|
+
Dynamic: requires-python
|
|
23
|
+
Dynamic: summary
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
# ShotIQ: Intelligent Shot Allocator for Quantum Machine Learning
|
|
27
|
+
|
|
28
|
+
ShotIQ is a dynamic shot allocation framework designed to optimize quantum resources
|
|
29
|
+
by analyzing data difficulty and hardware noise characteristics.
|
|
30
|
+
|
|
31
|
+
- **Maximize Accuracy**: Strategic sampling for hard samples.
|
|
32
|
+
- **Minimize Cost**: Efficient resource routing for easy samples.
|
|
33
|
+
- **Noise-Aware**: Balancing statistical variance and hardware errors.
|
|
34
|
+
|
|
35
|
+
Full documentation and source code will be released soon.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|