Text Generation
Transformers
Safetensors
English
llama
axolotl
Generated from Trainer
instruct
finetune
chatml
gpt4
synthetic data
science
physics
chemistry
biology
math
llama3
conversational
Eval Results
Inference Endpoints
text-generation-inference
Einstein-v6.1-Llama3-8B / data /remove_empty_output.py
Weyaxi's picture
add data trained to make this model
4413631 verified
import json
with open('merged_all.json', 'r') as file:
data = json.load(file)
print(f"Normal len: {len(data)}")
data = [row for row in data if row["output"] != ""]
print(f"After len: {len(data)}")
with open('merged_all.json', 'w') as file:
json.dump(data, file, indent=1)