AndreyForty commited on
Commit
bab7a71
·
verified ·
1 Parent(s): d37b016

Update src/paper_classifier.py

Browse files
Files changed (1) hide show
  1. src/paper_classifier.py +2 -2
src/paper_classifier.py CHANGED
@@ -3,12 +3,12 @@ from __future__ import annotations
3
  from typing import Iterable
4
  from pathlib import Path
5
 
6
- BASE_DIR = Path(__file__).resolve().parent.parent
7
- DEFAULT_MODEL_DIR = BASE_DIR
8
 
9
  BASE_MODEL_NAME = "distilbert/distilbert-base-cased"
 
10
  MAX_LENGTH = 256
11
  TOP_P_THRESHOLD = 0.95
 
12
  EXPECTED_ARXIV_CATEGORIES = [
13
  "Computer Science",
14
  "Physics",
 
3
  from typing import Iterable
4
  from pathlib import Path
5
 
 
 
6
 
7
  BASE_MODEL_NAME = "distilbert/distilbert-base-cased"
8
+ DEFAULT_MODEL_DIR = Path(__file__).resolve().parent.parent
9
  MAX_LENGTH = 256
10
  TOP_P_THRESHOLD = 0.95
11
+
12
  EXPECTED_ARXIV_CATEGORIES = [
13
  "Computer Science",
14
  "Physics",