dvc refactoring
This commit is contained in:
parent
8216b1705f
commit
787daebe27
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,7 +1,6 @@
|
||||
.ipynb_checkpoints
|
||||
fake_job_postings.csv
|
||||
column_titles.csv
|
||||
data_test.csv
|
||||
data_dev.csv
|
||||
data_train.csv
|
||||
data.csv
|
||||
|
2500
data_test.csv
Normal file
2500
data_test.csv
Normal file
File diff suppressed because one or more lines are too long
@ -17,7 +17,7 @@ if __name__ == "__main__":
|
||||
company_profile = vectorizer.fit_transform(company_profile)
|
||||
model = torch.load('model')
|
||||
|
||||
data_test = data[1:100]
|
||||
data_test = pd.read_csv('data_test.csv', engine='python', header=None)
|
||||
data_test = data_test.dropna()
|
||||
x_test = data_test[5]
|
||||
y_test = data_test[17]
|
||||
|
Loading…
Reference in New Issue
Block a user