-
Notifications
You must be signed in to change notification settings - Fork 5
Text2Gremlin Data Generation and Model Fine-Tuning System (Vertical Scenarios and General Scenarios) #52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Text2Gremlin Data Generation and Model Fine-Tuning System (Vertical Scenarios and General Scenarios) #52
Changes from 73 commits
52f2e01
fadaaf7
b775d29
f0588a1
5f3b039
822272f
441b32c
2de2096
c92f09a
25ca990
25a2876
541aa20
eb7eb01
f0579e8
9c13457
b14ffb3
7cd8427
4da021c
bc10fe2
6ea48d5
78f8c2a
b7f3f4a
332b879
8a94bad
676d28c
90f346f
4120356
67b523a
bccc147
44592b4
a1d614c
471e141
c1a7834
2788dcf
cbe7abb
28aa83c
9eafaa2
dade70c
21c1bb2
fceae69
a1df93e
faff1d9
77dd85d
696b3bb
6bac37d
897dcfb
8ba59be
d7c261f
f85c6e4
8ac9671
13764f9
ae38958
0ebdb15
a6f7740
180719e
1c967f3
eb3f51c
7e28c00
d6bcfaf
2e10379
d9da0b8
8019f8a
1ff125a
b534331
5b2bf1f
118aaa4
0887abd
519ef99
e9bb59c
6bbf946
95b5adb
ccb0b97
ae16a5c
b4abe6d
da15880
06f21ff
8f70d8e
dad6814
b539bc0
479710f
9ea3c32
4850e5a
29652d5
e5406d5
7bcc64c
763e3e9
a183eba
ee21a93
3910a34
a7ecbea
8bcb369
ab15620
ed3d433
9faa1ca
c6c7556
aea50d7
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| # 配置文件 | ||
| config.json | ||
| .env | ||
| output/ | ||
|
|
||
|
Comment on lines
+1
to
+5
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Fixed in 118aaa4. Added output/ and .env to the module .gitignore. |
||
| # Python | ||
| __pycache__/ | ||
| *.py[cod] | ||
| *$py.class | ||
| *.so | ||
| .Python | ||
| *.egg-info/ | ||
| .eggs/ | ||
|
Comment on lines
+1
to
+13
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里给
text2gremlin/**/*.py放开了比较多 lint 规则。考虑到这次新增的核心 generator/visitor 本身已经很大,继续大范围豁免会让后续维护更难。建议只对 ANTLR generated files 或确实需要的脚本做更小范围的 ignore;核心库代码尽量保留复杂度、重复定义、print 等检查,至少逐步收紧。