FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
Project_Chronos/setup.py at main · FonaTech/Project_Chronos · GitHub
FonaTech
/
Project_Chronos
Public
Notifications
You must be signed in to change notification settings
Fork
21
Star
204
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
Project_Chronos
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
23 lines (22 loc) · 618 Bytes
Breadcrumbs
Project_Chronos
/
setup.py
Copy path
File metadata and controls
23 lines (22 loc) · 618 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from
setuptools
import
setup
,
find_packages
setup
(
name
=
"project-chronos"
,
version
=
"0.1.0"
,
description
=
"On-device low-latency lookahead dual-layer MoE inference architecture"
,
packages
=
find_packages
(),
python_requires
=
">=3.10"
,
install_requires
=
[
"torch>=2.1.0"
,
"transformers>=4.40.0"
,
"datasets>=2.18.0"
,
"safetensors>=0.4.0"
,
"optuna>=3.6.0"
,
"numpy>=1.24.0"
,
],
entry_points
=
{
"console_scripts"
: [
"chronos-train=train_chronos:main"
,
"chronos-eval=chronos.eval.io_profiler:main"
,
],
},
)
Back
|
FazBrowse Home
|
New Git URL