-
Notifications
You must be signed in to change notification settings - Fork 305
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Feature] Support log processed dataset & Fix doc (#101)
* fix dataset docs * support log processed dataset * fix bugs when import python function to config files * Verify the correctness of the config file for the custom dataset * rename * fix entry point * fix docs * fix bugs when import python function to config files * update toy datasets
- Loading branch information
Showing
17 changed files
with
535 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -104,7 +104,6 @@ venv.bak/ | |
.mypy_cache/ | ||
|
||
# custom | ||
/data | ||
.vscode | ||
.idea | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
[{ | ||
"conversation":[ | ||
{ | ||
"input": "", | ||
"output": "I am an artificial intelligence (AI) assistant named Puyu. I was created by the Shanghai AI Laboratory and my purpose is to assist users with various tasks through natural language processing technology." | ||
} | ||
] | ||
}, | ||
{ | ||
"conversation":[ | ||
{ | ||
"input": "", | ||
"output": "I am an artificial intelligence programmed to assist with various types of tasks, including answering questions, providing information, and performing automated processes." | ||
} | ||
] | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
[{ | ||
"conversation":[ | ||
{ | ||
"input": "Hello?", | ||
"output": "Hello! How can I help you?" | ||
}, | ||
{ | ||
"input": "What's the date today?", | ||
"output": "Today is Monday, August 14, 2023." | ||
}, | ||
{ | ||
"input": "Thank you!", | ||
"output": "You are welcome." | ||
} | ||
] | ||
}, | ||
{ | ||
"conversation":[ | ||
{ | ||
"input": "Hello?", | ||
"output": "Hello! How can I help you?" | ||
}, | ||
{ | ||
"input": "How's the weather today in Rosso?", | ||
"output": "The weather in Rosso on Wednesday, August 16th, is going to be cloudy for most of the day, together with moderate rain around noon." | ||
}, | ||
{ | ||
"input": "Thank you!", | ||
"output": "You are welcome." | ||
} | ||
] | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[{ | ||
"conversation": | ||
[ | ||
{ | ||
"input": "Give three tips for staying healthy.", | ||
"output": "1.Eat a balanced diet. 2. Exercise regularly. 3. Get enough sleep." | ||
} | ||
] | ||
}, | ||
{ | ||
"conversation": | ||
[ | ||
{ | ||
"input": "How to study English?", | ||
"output": "1. Set clear goals. 2. Create a study plan. 3. Build vocabulary. 4. Practice speaking." | ||
} | ||
] | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.