Spaces:
Runtime error
Runtime error
Update components/neuro_symbolic_engine.py
Browse files
components/neuro_symbolic_engine.py
CHANGED
@@ -5,7 +5,7 @@ class NeuroSymbolicEngine:
|
|
5 |
"""Combines neural networks with symbolic reasoning"""
|
6 |
def __init__(self):
|
7 |
self.symbolic_reasoner = SymbolicReasoner()
|
8 |
-
self.neural_network = AutoModelForCausalLM.from_pretrained("
|
9 |
|
10 |
def integrate_reasoning(self, query: str) -> str:
|
11 |
"""Integrate neural and symbolic reasoning"""
|
|
|
5 |
"""Combines neural networks with symbolic reasoning"""
|
6 |
def __init__(self):
|
7 |
self.symbolic_reasoner = SymbolicReasoner()
|
8 |
+
self.neural_network = AutoModelForCausalLM.from_pretrained("Raiff1982/Codette", trust_remote_code=True)
|
9 |
|
10 |
def integrate_reasoning(self, query: str) -> str:
|
11 |
"""Integrate neural and symbolic reasoning"""
|