Update README.md
Browse files
README.md
CHANGED
@@ -36,8 +36,11 @@ output = tokenizer.decode(outputs[0])
|
|
36 |
|
37 |
backstory=(output.split("\n\n"))[1].split("\n\n")[0]
|
38 |
goal=(output.split(backstory)[1].replace("<eos>","")).replace("\n\n","")
|
39 |
-
print("backstory:
|
40 |
-
print("goal:
|
|
|
|
|
|
|
41 |
```
|
42 |
# Training Data
|
43 |
We have 103 rows of descriptions of different roles and their respective goals and backstory which is used to train the models, see [this dataset](https://huggingface.co/datasets/DrDrek/crewai_finetuning_dataset) for details.
|
|
|
36 |
|
37 |
backstory=(output.split("\n\n"))[1].split("\n\n")[0]
|
38 |
goal=(output.split(backstory)[1].replace("<eos>","")).replace("\n\n","")
|
39 |
+
print("backstory:",backstory)
|
40 |
+
print("goal:",goal)
|
41 |
+
#Output:
|
42 |
+
#>>backstory: I am a junior software developer with a passion for building innovative and user-friendly applications. I am currently studying Computer Science at the University of Waterloo, and I am always looking for new challenges and opportunities to grow as a developer.
|
43 |
+
#>>goal: I am a strong believer in the power of technology to improve people's lives, and I am dedicated to using my skills to make a positive impact in the world.I am always looking for new ways to learn and grow, and I am excited to see where my journey takes me.
|
44 |
```
|
45 |
# Training Data
|
46 |
We have 103 rows of descriptions of different roles and their respective goals and backstory which is used to train the models, see [this dataset](https://huggingface.co/datasets/DrDrek/crewai_finetuning_dataset) for details.
|