thak123's picture
Update config.py
2dd65a9
raw
history blame
669 Bytes
import os
from huggingface_hub import hf_hub_download,snapshot_download
# print(snapshot_download(repo_id="FFZG-cleopatra/Croatian-News-Classifier"))
model_link = hf_hub_download(repo_id="FFZG-cleopatra/Croatian-News-Classifier",filename = "pytorch_model.bin")
print(os.listdir())
model_name = model_link #"FFZG-cleopatra/Croatian-News-Classifier"
print("model-name:",model_name)
output_path = ""
drop_out = 0.3
max_length = 512
epochs = 5
label2id = {'neutral': 0, 'negative': 1, 'positive': 2}
id2label = {0: 'neutral', 1: 'negative', 2: 'positive'}
output_dir=""
batch_size=16 #32
learning_rate=2e-5
# from pip import _internal
# print(_internal.main(['list']))