reproduce / full_eval.py
attilasimko's picture
new files, posible model
ccf0698
raw
history blame
360 Bytes
from evaluations.repo_evaluations import full_evaluation
# importing os module for environment variables
import os
# importing necessary functions from dotenv library
from dotenv import load_dotenv
# loading variables from .env file
load_dotenv()
token = os.getenv("githubToken")
res = full_evaluation()
res.to_csv("data/results.csv", sep="\t", index=False)